/* =========================================================
   MAYURPANKH INVITATIONS — STYLESHEET
   Mobile-first. Breakpoints: 640 / 900 / 1200 / 1440
   ========================================================= */

/* ---------- Design tokens ---------- */
:root{
  /* colour */
  --cream:        #FAF6EC;
  --cream-soft:   #F1E9D6;
  --card:         #FFFDF8;
  --ink:          #241F19;
  --ink-soft:     #6B6153;
  --ink-faint:    #A79E8D;
  --green-900:    #1C332F;
  --green-800:    #24413C;
  --green-700:    #2F4A44;
  --green-600:    #3C5C55;
  --gold-700:     #A6803F;
  --gold-600:     #B8905A;
  --gold-400:     #D8B584;
  --gold-200:     #EDDDBE;
  --line:         rgba(36,31,25,0.12);
  --line-on-dark: rgba(250,246,236,0.18);

  /* type */
  --font-serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* type scale */
  --step-eyebrow: 0.75rem;
  --step-body:    1rem;
  --step-lg:      1.125rem;
  --step-h4:      1.25rem;
  --step-h3:      clamp(1.4rem, 1.1rem + 1.2vw, 1.85rem);
  --step-h2:      clamp(1.9rem, 1.4rem + 2.2vw, 2.85rem);
  --step-h1:      clamp(2.4rem, 1.7rem + 3.2vw, 4rem);

  /* layout */
  --maxw: 1240px;
  --gutter: 1.25rem;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-card: 0 1px 2px rgba(28,51,47,0.06), 0 8px 24px -14px rgba(28,51,47,0.28);
  --ease: cubic-bezier(.22,.61,.36,1);
}

@media (min-width: 640px){
  :root{ --gutter: 2rem; }
}
@media (min-width: 1200px){
  :root{ --gutter: 3rem; }
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, ul, ol{ margin: 0; }
ul, ol{ padding: 0; list-style: none; }
img{ max-width: 100%; display: block; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a{ color: inherit; text-decoration: none; }
input, textarea{ font: inherit; }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible{
  outline: 2px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: 2px;
}

body{
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--step-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap{
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section{ position: relative; }

.section-pad{ padding-block: 4rem; }
@media (min-width: 900px){ .section-pad{ padding-block: 6.5rem; } }

.eyebrow-note{
  /* Used sparingly: only where content genuinely is a label, not decoration */
  font-size: var(--step-eyebrow);
  letter-spacing: 0.08em;
  color: var(--gold-700);
}

h1, h2, h3, h4{
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h2{ font-size: var(--step-h2); }
h3{ font-size: var(--step-h3); }

.section-head{
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 2.75rem;
}
.section-head p{
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-size: var(--step-lg);
}
.section-head.align-left{
  text-align: left;
  margin-inline: 0;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:active{ transform: scale(0.97); }

.btn-primary{
  background: var(--green-800);
  color: var(--cream);
}
.btn-primary:hover{ background: var(--green-900); }

.btn-gold{
  background: var(--gold-600);
  color: var(--green-900);
}
.btn-gold:hover{ background: var(--gold-700); color: var(--cream); }

.btn-outline{
  background: transparent;
  border: 1px solid var(--gold-400);
  color: var(--ink);
}
.btn-outline:hover{ border-color: var(--gold-700); background: var(--gold-200); }

.btn-outline-light{
  background: transparent;
  border: 1px solid var(--line-on-dark);
  color: var(--cream);
}
.btn-outline-light:hover{ border-color: var(--gold-400); background: rgba(250,246,236,0.06); }

.btn-sm{ padding: 0.6rem 1.15rem; font-size: 0.8125rem; }
.btn-block{ width: 100%; }

.btn svg{ width: 1em; height: 1em; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(36,65,60,0.97);
  color: var(--cream);
  border-bottom: 1px solid var(--line-on-dark);
}
.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4.5rem;
}

.brand{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--cream);
}
.brand .mark{ color: var(--gold-400); width: 26px; height: 26px; flex-shrink: 0; }
.brand .word{ white-space: nowrap; }

.primary-nav{ display: none; }
.primary-nav ul{ display: flex; gap: 2rem; }
.primary-nav a{
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,246,236,0.82);
  padding-block: 0.4rem;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"]{ color: var(--cream); border-color: var(--gold-400); }

.header-cta{ display: none; align-items: center; gap: 0.75rem; }

.nav-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--cream);
}
.nav-toggle svg{ width: 22px; height: 22px; }

@media (min-width: 900px){
  .primary-nav{ display: block; }
  .header-cta{ display: inline-flex; }
  .nav-toggle{ display: none; }
}

/* Mobile drawer */
.mobile-nav{
  position: fixed;
  inset: 0;
  z-index: 70;
  visibility: hidden;
}
.mobile-nav[data-open="true"]{ visibility: visible; }

.mobile-nav__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(20,30,27,0.5);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.mobile-nav[data-open="true"] .mobile-nav__backdrop{ opacity: 1; }

.mobile-nav__panel{
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(84vw, 360px);
  background: var(--green-800);
  color: var(--cream);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  overflow-y: auto;
}
.mobile-nav[data-open="true"] .mobile-nav__panel{ transform: translateX(0); }

.mobile-nav__top{ display: flex; align-items: center; justify-content: space-between; }
.mobile-nav__close{ width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }
.mobile-nav__close svg{ width: 20px; height: 20px; }

.mobile-nav ul{ display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a{
  display: block;
  padding: 0.85rem 0.25rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  border-bottom: 1px solid var(--line-on-dark);
}
.mobile-nav__foot{ margin-top: auto; display: flex; flex-direction: column; gap: 0.75rem; }

/* ---------- Hero ---------- */
.hero{
  background: linear-gradient(180deg, var(--green-800) 0%, var(--green-700) 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero .wrap{
  padding-block: 3.5rem 3rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px){
  .hero .wrap{
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding-block: 5rem;
  }
}

.hero-copy{ max-width: 34rem; }
.hero-copy h1{
  color: var(--cream);
  font-size: var(--step-h1);
}
.hero-copy p{
  margin-top: 1.25rem;
  font-size: var(--step-lg);
  color: rgba(250,246,236,0.82);
  max-width: 32ch;
}
.hero-actions{
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-visual{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 30rem;
  margin-inline: auto;
  box-shadow: var(--shadow-card);
}
.hero-visual img{ width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after{
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(250,246,236,0.25);
  border-radius: inherit;
  pointer-events: none;
}

/* Marquee strip beneath hero */
.marquee{
  border-top: 1px solid var(--line-on-dark);
  padding-block: 1.25rem;
  overflow: hidden;
}
.marquee__track{
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: marquee 42s linear infinite;
}
@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation: none; overflow-x: auto; }
}
.marquee__track img{
  height: 6rem;
  width: 4.4rem;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
@media (min-width: 640px){
  .marquee__track img{ height: 8rem; width: 5.8rem; }
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ---------- Collections (3 cards) ---------- */
.collections{ background: var(--cream); }
.collection-grid{
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px){
  .collection-grid{ grid-template-columns: repeat(3, 1fr); }
}

.collection-card{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  box-shadow: var(--shadow-card);
}
.collection-card img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.collection-card:hover img{ transform: scale(1.04); }
.collection-card::before{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,51,47,0) 35%, rgba(20,30,27,0.86) 100%);
}
.collection-card__body{
  position: relative;
  padding: 1.75rem;
  width: 100%;
}
.collection-card__body h3{ color: var(--cream); font-size: var(--step-h3); }
.collection-card__body p{
  margin-top: 0.4rem;
  font-size: 0.875rem;
  color: rgba(250,246,236,0.78);
  max-width: 30ch;
}
.collection-card__link{
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--gold-400);
  font-weight: 600;
}
.collection-card__link svg{ width: 14px; height: 14px; transition: transform .25s var(--ease); }
.collection-card:hover .collection-card__link svg{ transform: translateX(3px); }

/* ---------- Product collection rows ---------- */
.collection-row{
  padding-block: 3.5rem;
  border-top: 1px solid var(--line);
}
.collection-row:nth-of-type(even){ background: var(--cream-soft); }

.collection-row__head{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 720px){
  .collection-row__head{
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.collection-row__head h2{ font-size: var(--step-h2); }
.collection-row__head p{ color: var(--ink-soft); margin-top: 0.5rem; max-width: 42ch; }

.product-track{
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 0.5rem;
  margin: 0 calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-400) transparent;
}
.product-track::-webkit-scrollbar{ height: 6px; }
.product-track::-webkit-scrollbar-thumb{ background: var(--gold-400); border-radius: var(--radius-pill); }

.product-card{
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 15.5rem;
  background: var(--card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px){ .product-card{ width: 17.5rem; } }

.product-card--grid{ width: 100%; }

.product-card__media{
  position: relative;
  aspect-ratio: 4/5.2;
  background: var(--green-800);
  overflow: hidden;
}
.product-card__media img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.product-card__media img.is-active{ opacity: 1; }

.product-card__link{
  position: absolute; inset: 0;
  z-index: 1;
}

.product-card__nav{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 0.35rem;
  opacity: 0;
  transition: opacity .2s var(--ease);
  pointer-events: none;
}
.product-card__nav button{ pointer-events: auto; }
.product-card:hover .product-card__nav,
.product-card:focus-within .product-card__nav{ opacity: 1; }
.product-card__nav button{
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(250,246,236,0.88);
  color: var(--green-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product-card__nav button svg{ width: 14px; height: 14px; }

.product-card__dots{
  position: absolute;
  left: 0; right: 0; bottom: 0.6rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  pointer-events: none;
}
.product-card__dots button{
  pointer-events: auto;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(250,246,236,0.5);
}
.product-card__dots button.is-active{ background: var(--gold-400); width: 14px; border-radius: var(--radius-pill); }

.product-card__badge{
  position: absolute;
  top: 0.7rem; left: 0.7rem;
  z-index: 2;
  display: flex;
  gap: 0.35rem;
  pointer-events: none;
}
.product-card__badge span{
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-pill);
  background: rgba(250,246,236,0.92);
  color: var(--green-800);
  font-weight: 600;
}

.product-card__body{
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.product-card__name{ font-size: var(--step-h4); font-family: var(--font-serif); position: relative; z-index: 2; }
.product-card__name a:hover{ color: var(--gold-700); }
.product-card__format{ font-size: 0.75rem; color: var(--ink-faint); }
.product-card__price{ display: flex; align-items: baseline; gap: 0.5rem; margin-top: auto; }
.product-card__price .now{ font-weight: 700; font-size: 1rem; }
.product-card__price .was{ font-size: 0.8125rem; color: var(--ink-faint); text-decoration: line-through; }

.product-card__actions{
  display: flex;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}
.product-card__actions .btn{ flex: 1; padding-inline: 0.6rem; }

.collection-row__foot{
  margin-top: 2.25rem;
  display: flex;
  justify-content: center;
}

/* ---------- Product grid (collection pages) ---------- */
.product-grid{
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px){
  .product-grid{ grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}
@media (min-width: 1100px){
  .product-grid{ grid-template-columns: repeat(4, 1fr); }
}

.empty-state{
  text-align: center;
  color: var(--ink-soft);
  padding-block: 3rem;
  max-width: 34rem;
  margin-inline: auto;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--ink-faint);
}
.breadcrumb a{ color: var(--ink-soft); }
.breadcrumb a:hover{ color: var(--gold-700); }
.breadcrumb .sep{ opacity: 0.6; }
.breadcrumb .current{ color: var(--ink); }

/* ---------- Collection page banner ---------- */
.collection-banner{
  background: linear-gradient(180deg, var(--green-800) 0%, var(--green-700) 100%);
  color: var(--cream);
}
.collection-banner .wrap{ padding-block: 2.5rem 3rem; }
.collection-banner .breadcrumb{ color: rgba(250,246,236,0.6); margin-bottom: 1.5rem; }
.collection-banner .breadcrumb a{ color: rgba(250,246,236,0.82); }
.collection-banner .breadcrumb .current{ color: var(--cream); }
.collection-banner h1{
  color: var(--cream);
  font-size: var(--step-h1);
  max-width: 20ch;
}
.collection-banner p{
  margin-top: 1rem;
  color: rgba(250,246,236,0.82);
  font-size: var(--step-lg);
  max-width: 46ch;
}
.collection-banner__meta{
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(250,246,236,0.65);
}

/* ---------- Tag filter pills ---------- */
.filter-bar{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}
.filter-pill{
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--card);
  transition: all .2s var(--ease);
}
.filter-pill:hover{ border-color: var(--gold-400); color: var(--ink); }
.filter-pill.is-active{
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--cream);
}

/* ---------- Product detail page ---------- */
.product-detail .wrap{
  padding-block: 2.5rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px){
  .product-detail .wrap{
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    padding-block: 3rem;
  }
}

.gallery{ position: sticky; top: 5.5rem; }
.gallery__main{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-800);
  box-shadow: var(--shadow-card);
}
.gallery__main img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gallery__main img.is-active{ opacity: 1; }
.gallery__main-nav{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 0.6rem;
  pointer-events: none;
}
.gallery__main-nav button{ pointer-events: auto; }
.gallery__main-nav button{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(250,246,236,0.9);
  color: var(--green-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(20,30,27,0.25);
}
.gallery__main-nav button svg{ width: 18px; height: 18px; }

.gallery__thumbs{
  margin-top: 0.9rem;
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}
.gallery__thumbs button{
  flex: 0 0 auto;
  width: 4.2rem;
  aspect-ratio: 4/5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: opacity .2s var(--ease), border-color .2s var(--ease);
}
.gallery__thumbs button.is-active{ opacity: 1; border-color: var(--gold-600); }
.gallery__thumbs img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.product-info h1{ font-size: var(--step-h2); }
.product-info .format{ margin-top: 0.5rem; color: var(--ink-soft); font-size: 0.9375rem; }
.product-info .price{
  margin-top: 1.1rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.product-info .price .now{ font-family: var(--font-serif); font-size: 1.9rem; }
.product-info .price .was{ font-size: 1.05rem; color: var(--ink-faint); text-decoration: line-through; }
.product-info .price .save{
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-800);
  background: var(--gold-200);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
}

.product-info .description{
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 46ch;
}

.tag-list{ display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.tag-list li{
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--cream-soft);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.product-info__actions{
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.trust-list{
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.trust-list li{
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.trust-list svg{ width: 20px; height: 20px; flex-shrink: 0; color: var(--gold-600); margin-top: 1px; }

.related{ border-top: 1px solid var(--line); }

.product-not-found{
  text-align: center;
  padding-block: 5rem;
  max-width: 32rem;
  margin-inline: auto;
}
.product-not-found h1{ font-size: var(--step-h2); }
.product-not-found p{ margin-top: 0.9rem; color: var(--ink-soft); }
.product-not-found .hero-actions{ justify-content: center; margin-top: 1.75rem; }

/* ---------- How it works ---------- */
.how{ background: var(--cream-soft); }
.steps{
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px){
  .steps{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px){
  .steps{ grid-template-columns: repeat(4, 1fr); }
}
.step{
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
}
.step .num{
  font-family: var(--font-serif);
  color: var(--gold-600);
  font-size: 1rem;
  margin-bottom: 0.6rem;
}
.step h3{ font-size: 1.15rem; margin-bottom: 0.45rem; }
.step p{ color: var(--ink-soft); font-size: 0.9375rem; }

/* ---------- Founders ---------- */
.founders{
  background: var(--green-800);
  color: var(--cream);
}
.founders .wrap{
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px){
  .founders .wrap{ grid-template-columns: 0.8fr 1.2fr; }
}
.founders-photo{
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 22rem;
  box-shadow: var(--shadow-card);
}
.founders-photo img{ width: 100%; height: 100%; object-fit: cover; }
.founders-copy h2{ color: var(--cream); }
.founders-copy blockquote{
  margin-top: 1.25rem;
  font-size: var(--step-lg);
  color: rgba(250,246,236,0.86);
  line-height: 1.7;
}
.founders-copy blockquote p + p{ margin-top: 1rem; }
.founders-sign{
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  color: var(--gold-400);
  font-size: 1.1rem;
}

/* ---------- Features strip ---------- */
.features{ background: var(--cream); }
.feature-grid{
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 720px){
  .feature-grid{ grid-template-columns: repeat(3, 1fr); }
}
.feature-item svg{ width: 30px; height: 30px; color: var(--gold-600); margin-inline: auto; }
.feature-item h3{ margin-top: 0.9rem; font-size: 1.15rem; }
.feature-item p{ margin-top: 0.4rem; color: var(--ink-soft); font-size: 0.9375rem; }

/* ---------- Final CTA ---------- */
.final-cta{
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  color: var(--cream);
  text-align: center;
}
.final-cta h2{ color: var(--cream); }
.final-cta p{ margin-top: 0.9rem; color: rgba(250,246,236,0.82); max-width: 40ch; margin-inline: auto; }
.final-cta .hero-actions{ justify-content: center; margin-top: 2rem; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--green-900);
  color: rgba(250,246,236,0.82);
  padding-block: 3.5rem 2rem;
}
.footer-grid{
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px){
  .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand .brand{ color: var(--cream); }
.footer-brand p{ margin-top: 1rem; max-width: 30ch; font-size: 0.9375rem; }
.footer-social{ margin-top: 1.25rem; display: flex; gap: 0.75rem; }
.footer-social a{
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-on-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.footer-social a:hover{ border-color: var(--gold-400); background: rgba(250,246,236,0.06); }
.footer-social svg{ width: 16px; height: 16px; }

.footer-col h4{
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a{ font-size: 0.9375rem; transition: color .2s var(--ease); }
.footer-col a:hover{ color: var(--cream); }

.footer-bottom{
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-on-dark);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(250,246,236,0.55);
}
@media (min-width: 720px){
  .footer-bottom{ flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom nav ul{ display: flex; gap: 1.25rem; }
.footer-bottom a:hover{ color: var(--cream); }

/* ---------- WhatsApp floating button ---------- */
.wa-float{
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 55;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(20,30,27,0.45);
}
.wa-float svg{ width: 26px; height: 26px; }

/* ---------- Utility ---------- */
.sr-only{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link{
  position: absolute;
  left: 1rem; top: -3rem;
  background: var(--gold-600);
  color: var(--green-900);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 100;
  transition: top .2s var(--ease);
}
.skip-link:focus{ top: 1rem; }
