/* =====================================================================
   Lifted Roots — STYLES
   Change brand colours & fonts in the :root block below and they update
   across the whole site.
   ===================================================================== */

:root {
  /* Brand palette */
  --espresso:  #2b1d14;   /* deep brown — text & dark sections */
  --espresso-2:#1c130d;   /* darker brown */
  --cream:     #f7f0e4;   /* page background */
  --cream-2:   #efe4d1;   /* soft panels */
  --gold:      #c6a15b;   /* primary accent */
  --gold-2:    #dec185;   /* light gold */
  --green:     #6e7a56;   /* botanical secondary */
  --terra:     #b5623c;   /* warm accent */
  --ink:       #2b1d14;

  /* Type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Poppins", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --max: 1200px;
  --radius: 18px;
  --shadow: 0 20px 50px -24px rgba(43,29,20,.55);
  --shadow-sm: 0 10px 30px -18px rgba(43,29,20,.5);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; }

/* ---------- Shared bits ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: 96px 28px; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section__title { font-size: clamp(2rem, 4.4vw, 3.1rem); color: var(--espresso); }
.section__lead { margin-top: 14px; color: #6b5949; font-size: 1.05rem; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow--gold { color: var(--gold-2); }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 100px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold  { background: var(--gold); color: var(--espresso-2); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-2); }
.btn--dark  { background: var(--espresso); color: var(--cream); }
.btn--dark:hover { background: var(--espresso-2); }
.btn--ghost { border-color: rgba(247,240,228,.55); color: var(--cream); }
.btn--ghost:hover { background: rgba(247,240,228,.12); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.is-scrolled {
  background: rgba(247,240,228,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -20px rgba(43,29,20,.6);
  padding: 10px 28px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__seal { width: 46px; height: 46px; border-radius: 12px; transition: width .3s ease; }
.nav__word {
  font-family: var(--serif); font-size: 1.32rem; font-weight: 700;
  color: var(--cream); letter-spacing: .02em; transition: color .3s ease;
}
.nav.is-scrolled .nav__word { color: var(--espresso); }
.nav.is-scrolled .nav__seal { width: 40px; height: 40px; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: rgba(247,240,228,.9); position: relative; padding: 4px 0;
  transition: color .25s ease;
}
.nav.is-scrolled .nav__links a { color: var(--espresso); }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--gold); color: var(--espresso-2) !important;
  padding: 9px 20px; border-radius: 100px; font-weight: 600;
}
.nav__cta:hover { background: var(--gold-2); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--cream); transition: .3s; }
.nav.is-scrolled .nav__toggle span { background: var(--espresso); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--cream); overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, #3b2718 0%, var(--espresso) 45%, var(--espresso-2) 100%);
}
.hero__grain {
  position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background:
    radial-gradient(60% 60% at 78% 22%, rgba(198,161,91,.20), transparent 60%),
    radial-gradient(50% 50% at 18% 82%, rgba(110,122,86,.18), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; padding: 120px 24px 60px; max-width: 780px; }
.hero__emblem { width: 118px; margin: 0 auto 26px; filter: drop-shadow(0 10px 24px rgba(0,0,0,.35)); animation: floaty 6s ease-in-out infinite; }
.hero__emblem--logo {
  width: 148px; border-radius: 24px;
  border: 1px solid rgba(198,161,91,.45);
  box-shadow: 0 18px 44px -18px rgba(0,0,0,.6);
}
.hero__eyebrow {
  text-transform: uppercase; letter-spacing: .5em; font-size: .78rem;
  color: var(--gold-2); font-weight: 600; margin-bottom: 18px; padding-left: .5em;
}
.hero__title { font-size: clamp(3.2rem, 9vw, 6rem); letter-spacing: .01em; margin-bottom: 12px; }
.hero__tag { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem,2.6vw,1.7rem); color: var(--gold-2); margin-bottom: 22px; }
.hero__sub { font-size: 1.05rem; color: rgba(247,240,228,.86); max-width: 560px; margin: 0 auto 36px; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 1.4rem; color: var(--gold-2); animation: bounce 2s infinite;
}
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
@keyframes bounce { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* ---------- Marquee ---------- */
.marquee { background: var(--gold); color: var(--espresso-2); overflow: hidden; padding: 13px 0; }
.marquee__track {
  display: inline-flex; gap: 26px; white-space: nowrap;
  font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: .78rem;
  animation: scroll 26s linear infinite;
}
.marquee__track span { flex: none; }
@keyframes scroll { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------- Story ---------- */
.story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.story__media { position: relative; }
.story__media > img:first-child {
  border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%;
}
.story__badge {
  position: absolute; width: 128px; bottom: -30px; right: -22px;
  border-radius: 50%; box-shadow: var(--shadow); border: 4px solid var(--cream);
}
.story__text p { color: #5f4e40; margin-bottom: 18px; font-size: 1.05rem; }
.story__text .btn { margin-top: 10px; }

/* ---------- Promise / pillars ---------- */
.promise { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); max-width: none; }
.promise > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.pillar {
  background: #fffdf8; border: 1px solid rgba(198,161,91,.28);
  border-radius: var(--radius); padding: 34px 26px; text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.pillar__icon {
  font-size: 1.7rem; width: 60px; height: 60px; margin: 0 auto 18px;
  display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-2), #fff);
  border: 1px solid rgba(198,161,91,.4);
}
.pillar h3 { font-size: 1.25rem; color: var(--espresso); margin-bottom: 10px; }
.pillar p { font-size: .93rem; color: #6b5949; }

/* ---------- Gallery ---------- */
.gallery__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.gallery__item {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  aspect-ratio: 1/1; box-shadow: var(--shadow-sm);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__cap {
  position: absolute; inset: auto 0 0 0; padding: 40px 18px 16px;
  color: var(--cream); font-weight: 500; font-size: .9rem; letter-spacing: .03em;
  background: linear-gradient(to top, rgba(28,19,13,.82), transparent);
  opacity: 0; transform: translateY(8px); transition: .3s ease;
}
.gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }

/* ---------- Videos ---------- */
.videos { background: var(--espresso); color: var(--cream); max-width: none; }
.videos .section__title { color: var(--cream); }
.videos > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.videos__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
.video__card { background: rgba(247,240,228,.05); border: 1px solid rgba(198,161,91,.3); border-radius: var(--radius); overflow: hidden; }
.video__frame { position: relative; aspect-ratio: 4/5; background: #000; }
.video__frame iframe, .video__frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.video__cap { padding: 16px 20px; font-weight: 500; color: var(--gold-2); }

/* ---------- Products ---------- */
.products__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product {
  background: #fffdf8; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(198,161,91,.25); text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product__art {
  aspect-ratio: 1/1; display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% 15%, #3b2718, var(--espresso));
  position: relative;
}
.product__art img { width: 58%; opacity: .95; filter: drop-shadow(0 12px 20px rgba(0,0,0,.4)); }
.product__body { padding: 22px 18px 26px; }
.product__body h3 { font-size: 1.2rem; color: var(--espresso); margin-bottom: 4px; }
.product__note { font-size: .85rem; color: #8a7461; margin-bottom: 12px; }
.product__price { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); border-radius: 100px; padding: 6px 14px; }

/* ---------- Newsletter ---------- */
.newsletter {
  background:
    radial-gradient(90% 120% at 50% 0%, #3b2718, var(--espresso-2));
  color: var(--cream); text-align: center; padding: 90px 28px;
}
.newsletter__inner { max-width: 560px; margin: 0 auto; }
.newsletter__emblem { width: 78px; margin: 0 auto 22px; opacity: .95; }
.newsletter h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.newsletter p { color: rgba(247,240,228,.82); margin-bottom: 28px; }
.newsletter__form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter__form input {
  flex: 1; padding: 15px 20px; border-radius: 100px; border: 1.5px solid rgba(247,240,228,.3);
  background: rgba(247,240,228,.08); color: var(--cream); font-family: var(--sans); font-size: .95rem;
}
.newsletter__form input::placeholder { color: rgba(247,240,228,.5); }
.newsletter__form input:focus { outline: none; border-color: var(--gold); }
.newsletter__note { min-height: 22px; margin-top: 16px; font-size: .9rem; color: var(--gold-2); }

/* ---------- Journal ---------- */
.journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post {
  background: #fffdf8; border: 1px solid rgba(198,161,91,.22); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .3s ease, box-shadow .3s ease;
}
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post__tag { display: inline-block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--green); margin-bottom: 14px; }
.post h3 { font-size: 1.3rem; color: var(--espresso); margin-bottom: 10px; }
.post p { font-size: .95rem; color: #6b5949; }

/* ---------- Footer ---------- */
.footer { background: var(--espresso-2); color: var(--cream); padding-top: 66px; }
.footer__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px 50px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start;
}
.footer__word { width: 260px; max-width: 70%; margin-bottom: 18px; }
.footer__tag { font-family: var(--serif); font-style: italic; color: var(--gold-2); font-size: 1.1rem; }
.footer__loc { color: rgba(247,240,228,.6); font-size: .9rem; margin-top: 8px; }
.footer__contact { text-align: right; }
.footer__mail { font-size: 1.25rem; font-family: var(--serif); color: var(--cream); border-bottom: 1px solid var(--gold); padding-bottom: 3px; }
.footer__mail:hover { color: var(--gold-2); }
.footer__socials { display: flex; gap: 12px; justify-content: flex-end; margin-top: 22px; }
.footer__socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(198,161,91,.5); color: var(--gold-2); transition: .25s ease;
}
.footer__socials a:hover { background: var(--gold); color: var(--espresso-2); transform: translateY(-3px); }
.footer__socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer__bar {
  border-top: 1px solid rgba(247,240,228,.12); padding: 22px 28px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  max-width: var(--max); margin: 0 auto; font-size: .82rem; color: rgba(247,240,228,.55);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(20,13,9,.94);
  display: none; align-items: center; justify-content: center; flex-direction: column; padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(90vw, 860px); max-height: 80vh; border-radius: 12px; box-shadow: var(--shadow); }
.lightbox__cap { color: var(--gold-2); margin-top: 18px; font-family: var(--serif); font-style: italic; font-size: 1.1rem; }
.lightbox__close { position: absolute; top: 22px; right: 26px; background: none; border: 0; color: var(--cream); font-size: 1.6rem; cursor: pointer; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
    background: var(--espresso); padding: 40px; transform: translateX(100%);
    transition: transform .35s ease; box-shadow: -20px 0 60px -30px #000;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { color: var(--cream) !important; font-size: 1.05rem; }
  .nav__toggle { display: flex; z-index: 60; }
  .story { grid-template-columns: 1fr; gap: 40px; }
  .story__media { max-width: 460px; margin: 0 auto; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .journal__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__contact { text-align: left; }
  .footer__socials { justify-content: flex-start; }
}
@media (max-width: 540px) {
  .section { padding: 68px 20px; }
  .pillars, .products__grid, .gallery__grid { grid-template-columns: 1fr 1fr; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form input { text-align: center; }
  .footer__bar { flex-direction: column; }
}
