/* ==========================================================================
   HEALING SEA BUCKTHORN — style.css
   --------------------------------------------------------------------------
   EASY EDITING: The colours, fonts and spacing all live in the ":root" block
   right below. Change a value there and it updates across the whole website.
   ========================================================================== */

:root {
  /* ---- Brand colours (change these to re-skin the site) ---- */
  --sand:        #FAF6EF;   /* page background */
  --cream:       #FFFDF9;   /* cards */
  --bark:        #2E2A22;   /* main text */
  --stone:       #6F6857;   /* muted text */
  --berry:       #E4791B;   /* sea buckthorn orange — main accent */
  --berry-deep:  #C25E0C;   /* darker accent for hover */
  --moss:        #4A5D3F;   /* deep green */
  --moss-soft:   #7C8F6F;
  --line:        #E7DFD1;   /* borders */

  /* ---- Shape & motion ---- */
  --radius:      22px;
  --radius-sm:   14px;
  --shadow:      0 4px 20px rgba(46, 42, 34, .06);
  --shadow-lift: 0 16px 38px rgba(46, 42, 34, .14);
  --ease:        cubic-bezier(.22, .61, .36, 1);

  /* ---- Layout ---- */
  --max:         1160px;
  --pad:         24px;
}

/* --------------------------- Base --------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--sand);
  color: var(--bark);
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto,
               Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.4px;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.2rem; letter-spacing: -.2px; }

p  { margin: 0 0 1em; }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  display: inline-block;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--berry);
  font-weight: 600;
  margin-bottom: 14px;
}

.lead { color: var(--stone); font-size: 1.06rem; max-width: 62ch; }

.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }

.section-head { max-width: 660px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* --------------------------- Buttons --------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .25s var(--ease);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--berry);
  color: #fff;
  box-shadow: 0 8px 22px rgba(228, 121, 27, .28);
}
.btn--primary:hover { background: var(--berry-deep); box-shadow: 0 12px 28px rgba(228,121,27,.36); }

.btn--ghost {
  background: transparent;
  color: var(--bark);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--berry); color: var(--berry); }

.btn--whatsapp { background: #1EA95A; color: #fff; box-shadow: 0 8px 22px rgba(30,169,90,.28); }
.btn--whatsapp:hover { background: #17904B; }

.btn--block { width: 100%; }
.btn--sm { padding: 11px 20px; font-size: .88rem; }

/* --------------------------- Navigation --------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 34px; height: 34px; flex: none;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #FFC46B, var(--berry) 62%, var(--berry-deep));
  box-shadow: inset 0 -3px 7px rgba(0,0,0,.14);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: Georgia, serif; font-size: 1.06rem; }
.brand__tag  { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a {
  font-size: .93rem;
  color: var(--stone);
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--berry);
  transition: width .28s var(--ease);
}
.nav__links a:hover { color: var(--bark); }
.nav__links a:hover::after,
.nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--bark); }

.nav__toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  padding: 8px; width: 42px; height: 42px;
}
.nav__toggle span {
  display: block; height: 2px; width: 22px;
  background: var(--bark); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span + span { margin-top: 5px; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------- Hero --------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  background:
    radial-gradient(900px 460px at 82% -8%, rgba(228,121,27,.20), transparent 62%),
    radial-gradient(760px 420px at 6% 104%, rgba(74,93,63,.16), transparent 60%),
    var(--sand);
}
.hero__inner { position: relative; z-index: 2; max-width: 720px; }
.hero h1 { margin-bottom: .18em; }
.hero__sub {
  font-family: Georgia, serif;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  color: var(--moss);
  margin-bottom: 22px;
}
.hero__text { color: var(--stone); font-size: 1.08rem; max-width: 52ch; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* soft mountain silhouette at the base of the hero */
.hero__ridge {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: 150px; z-index: 1; opacity: .5;
}

.hero__strip {
  display: flex; flex-wrap: wrap; gap: 10px 30px;
  margin-top: 38px; padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: .87rem; color: var(--stone);
}
.hero__strip span { display: inline-flex; align-items: center; gap: 8px; }
.hero__strip span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--berry); flex: none;
}

/* --------------------------- Product cards --------------------------- */
.category + .category { margin-top: 66px; }

.category__head {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 26px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.category__head h2 { margin: 0; font-size: clamp(1.5rem, 3vw, 2rem); }
.category__note { color: var(--stone); font-size: .9rem; }

.grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(228,121,27,.35);
}

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(140deg, #F6E7D2, #EED9BC);
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }

.card__badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.92);
  color: var(--moss);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}

.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 6px; }
.card__desc { color: var(--stone); font-size: .93rem; margin-bottom: 16px; flex: 1; }

.card__meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 18px;
  padding-top: 14px; border-top: 1px dashed var(--line);
}
.card__size {
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--stone);
}
.card__price { font-family: Georgia, serif; font-size: 1.32rem; color: var(--berry-deep); }

/* --------------------------- Feature list (About page) --------------------------- */
.features { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.feature {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon {
  width: 40px; height: 40px; margin-bottom: 14px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(228,121,27,.12);
  color: var(--berry-deep);
  font-size: 1.05rem;
}
.feature h3 { margin-bottom: 4px; font-size: 1.05rem; }
.feature p { margin: 0; color: var(--stone); font-size: .92rem; }

/* --------------------------- Split (About text + image) --------------------------- */
.split {
  display: grid;
  gap: 46px;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
}
.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: linear-gradient(140deg, #EFE3CE, #DCE3D2);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------- Contact --------------------------- */
.panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-grid { display: grid; gap: 40px; grid-template-columns: 1fr 1fr; align-items: start; }

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .label {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--stone); display: block; margin-bottom: 2px;
}
.contact-list .value { font-size: 1rem; word-break: break-word; }

/* Placeholder styling — makes YOUR-… text obvious so nothing ships unedited */
.placeholder {
  background: rgba(228,121,27,.11);
  border: 1px dashed rgba(228,121,27,.45);
  border-radius: 8px;
  padding: 2px 8px;
  font-size: .9rem;
  color: var(--berry-deep);
}

/* --------------------------- CTA band --------------------------- */
.band {
  background: var(--moss);
  color: #F4F1E8;
  border-radius: var(--radius);
  padding: 52px 44px;
  text-align: center;
}
.band h2 { color: #fff; }
.band p { color: rgba(244,241,232,.82); max-width: 54ch; margin: 0 auto 26px; }

/* --------------------------- Footer --------------------------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  margin-top: 20px;
  color: var(--stone);
  font-size: .88rem;
}
.footer__inner { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer a:hover { color: var(--berry); }
.footer__note { font-size: .8rem; opacity: .8; margin-top: 10px; }

/* --------------------------- Scroll reveal --------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------- Responsive --------------------------- */
@media (max-width: 900px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .panel { padding: 30px 24px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 62px 0; }
  .hero { padding: 70px 0 66px; }

  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; left: 0; right: 0; top: 72px;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--sand);
    border-bottom: 1px solid var(--line);
    padding: 0 var(--pad);
    max-height: 0; overflow: hidden;
    transition: max-height .35s var(--ease);
  }
  .nav.is-open .nav__links { max-height: 340px; padding-bottom: 16px; }
  .nav__links a { width: 100%; padding: 14px 0; font-size: 1rem; }
  .nav__links .btn { margin-top: 10px; width: 100%; }

  .category__head { flex-direction: column; gap: 4px; }
  .band { padding: 40px 22px; }
  .hero__cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
