/* ==========================================================================
   ARRE WAAH — Design System
   Editorial botanical luxury. Aubergine ink, ivory paper, antique gold.
   No build step. No dependencies beyond one font request.
   ========================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Brand — sampled from the wordmark. Swap --purple-700 if Tarash's
     vector gives a different value; everything else derives visually from it. */
  --ink:         #221538;
  --purple-900:  #2A1B4B;
  --purple-700:  #442D79;   /* exact, sampled from Tarash logo */
  --purple-500:  #64499C;
  --purple-300:  #9B87C2;
  --purple-200:  #CFC4E4;
  --purple-50:   #F3F0F9;

  /* Paper */
  --ivory:       #FBF8F3;
  --cream:       #F4EDE2;
  --cream-deep:  #EADFCC;

  /* Antique gold — the bridge to existing photography and the gold box */
  --gold:        #B8873A;
  --gold-light:  #E3C88A;
  --gold-wash:   #F7EFDE;

  /* Utility */
  --white:       #FFFFFF;
  --muted:       #6E6280;
  --line:        #E2DAD0;
  --whatsapp:    #25D366;
  --whatsapp-dk: #128C7E;

  /* Type */
  --display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --body:    "Jost", "Avenir Next", "Segoe UI", system-ui, sans-serif;

  /* Scale — fluid, no media queries needed for type */
  --t-hero:  clamp(2.75rem, 1.6rem + 5.6vw, 6rem);
  --t-h1:    clamp(2.2rem, 1.5rem + 3.4vw, 4rem);
  --t-h2:    clamp(1.75rem, 1.3rem + 2.1vw, 2.85rem);
  --t-h3:    clamp(1.3rem, 1.1rem + 0.9vw, 1.75rem);
  --t-lead:  clamp(1.06rem, 0.99rem + 0.36vw, 1.3rem);
  --t-body:  1rem;
  --t-small: 0.875rem;
  --t-tiny:  0.775rem;

  /* Space */
  --s1: 0.25rem; --s2: 0.5rem;  --s3: 0.75rem; --s4: 1rem;
  --s5: 1.5rem; --s6: 2rem;     --s7: 3rem;    --s8: 4rem;
  --s9: 6rem;   --s10: 8rem;

  --wrap: 1180px;
  --wrap-narrow: 760px;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;
  --r-pill: 999px;

  --shadow-soft: 0 2px 8px rgba(36,22,56,.05), 0 12px 32px rgba(36,22,56,.07);
  --shadow-lift: 0 4px 14px rgba(36,22,56,.08), 0 24px 56px rgba(36,22,56,.12);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--t-body);
  line-height: 1.65;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { margin: 0; font-family: var(--display); font-weight: 400; line-height: 1.08; letter-spacing: -0.015em; }
p { margin: 0 0 var(--s4); }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--purple-700); outline-offset: 3px; border-radius: 2px; }

/* ---------- 3. LAYOUT ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 7vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 4.5vw, 4rem); }
.center { text-align: center; }
.stack > * + * { margin-top: var(--s4); }

/* ---------- 4. TYPE HELPERS ---------- */
.eyebrow {
  font-size: var(--t-tiny);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 var(--s3);
}
.eyebrow--light { color: var(--gold-light); }
.display { font-family: var(--display); }
.lead { font-size: var(--t-lead); color: var(--muted); line-height: 1.6; }
.h1 { font-size: var(--t-h1); }
.h2 { font-size: var(--t-h2); }
.h3 { font-size: var(--t-h3); }
.tagline { font-style: italic; font-family: var(--display); color: var(--purple-500); }
.muted { color: var(--muted); }
.small { font-size: var(--t-small); }
.tiny  { font-size: var(--t-tiny); }
.price { font-family: var(--display); font-size: 1.6rem; font-weight: 500; letter-spacing: -0.01em; }

/* The arc — the giraffe's neck, used as an underline motif */
.arc-under { position: relative; display: inline-block; }
.arc-under::after {
  content: "";
  position: absolute; left: 2%; right: 2%; bottom: -0.42em; height: 0.5em;
  border-bottom: 1.5px solid var(--gold);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  opacity: .85;
}

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .95em 1.9em;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-size: var(--t-small);
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary   { background: var(--purple-700); color: var(--ivory); }
.btn--primary:hover { background: var(--purple-900); box-shadow: var(--shadow-lift); }

.btn--ghost     { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--purple-700); color: var(--purple-700); }

.btn--light     { background: var(--ivory); color: var(--purple-900); }
.btn--light:hover { background: var(--white); box-shadow: var(--shadow-lift); }

.btn--outline-light { background: transparent; color: var(--ivory); border-color: rgba(251,248,243,.4); }
.btn--outline-light:hover { border-color: var(--ivory); background: rgba(251,248,243,.08); }

.btn--wa { background: var(--whatsapp); color: #05291A; font-weight: 500; }
.btn--wa:hover { background: #1FBE5B; box-shadow: 0 10px 28px rgba(37,211,102,.3); }

.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 1.1em 2.3em; font-size: 1rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: var(--t-small); font-weight: 500; letter-spacing: .03em;
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.link-arrow:hover { gap: .85em; color: var(--purple-700); }

/* ---------- 6. HEADER ---------- */
.announce {
  background: var(--purple-900);
  color: var(--gold-light);
  font-size: var(--t-tiny);
  letter-spacing: .07em;
  text-align: center;
  padding: .7em 1rem;
}
.announce strong { color: var(--ivory); font-weight: 500; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,248,243,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s5); padding-block: var(--s3);
}
.brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand__mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand__logo { height: 46px; width: auto; flex-shrink: 0; }
@media (max-width: 620px) { .brand__logo { height: 34px; } }
@media (max-width: 380px) { .brand__logo { height: 29px; } }
.brand__word {
  font-family: var(--display); font-size: 1.55rem; font-weight: 600;
  color: var(--purple-700); letter-spacing: -0.01em; line-height: 1;
}
.brand__word em { font-style: italic; font-weight: 500; }

.nav { display: flex; align-items: center; gap: var(--s5); }
.nav a {
  font-size: var(--t-small); letter-spacing: .03em; position: relative;
  padding-block: .3em; transition: color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold); transition: right .3s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.nav a[aria-current="page"] { color: var(--purple-700); }

.header-actions { display: flex; align-items: center; gap: var(--s3); }
.tel-link { font-size: var(--t-small); letter-spacing: .03em; white-space: nowrap; }
.tel-link:hover { color: var(--purple-700); }

.burger {
  display: none; background: none; border: 0; cursor: pointer;
  padding: .4rem; width: 42px; height: 42px;
}
.burger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  margin: 5px auto; transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Keep flex children from forcing the document wider than the viewport */
.header-inner > * { min-width: 0; }
.brand { min-width: 0; }
.brand__word { white-space: nowrap; }

@media (max-width: 900px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    background: var(--ivory); flex-direction: column; align-items: flex-start;
    gap: var(--s5); padding: 6rem var(--s6) var(--s6);
    transform: translateX(101%); transition: transform .4s var(--ease), visibility .4s;
    box-shadow: var(--shadow-lift); z-index: 70;
    visibility: hidden; /* keeps the off-screen drawer out of the layout box */
  }
  .nav[data-open="true"] { transform: translateX(0); visibility: visible; }
  .nav a { font-size: 1.15rem; font-family: var(--display); }
  .header-actions .tel-link { display: none; }
}

/* Small phones: the corporate pill STAYS (council rule — it is the fork),
   but it sheds words rather than overflowing the header. */
@media (max-width: 620px) {
  .wrap, .wrap-narrow { width: min(100% - 1.75rem, var(--wrap)); }
  .header-inner { gap: var(--s3); }
  .brand__mark { width: 30px; height: 30px; }
  .brand__word { font-size: 1.2rem; }
  .header-actions { gap: var(--s2); }
  .header-actions .btn { padding: .5em .8em; font-size: .78rem; letter-spacing: .02em; }
  .header-actions .btn .pill-long { display: none; }
  .burger { width: 36px; height: 36px; padding: .2rem; }
}
@media (max-width: 380px) {
  .brand__word { font-size: 1.05rem; }
  .header-actions .btn { padding: .45em .7em; font-size: .72rem; }
}

/* ---------- 7. HERO ---------- */
.hero { position: relative; padding-block: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: auto -20% 0 -20%; height: 120%;
  background: radial-gradient(ellipse at 50% 0%, var(--purple-50) 0%, transparent 62%);
  pointer-events: none; z-index: -1;
}
.hero__title { font-size: var(--t-hero); line-height: 1.02; margin-bottom: var(--s5); }
.hero__title em { font-style: italic; color: var(--purple-700); }
.hero__sub { max-width: 46ch; }

/* ---------- 8. LANE CARDS (the fork) ---------- */
.lanes { display: grid; gap: var(--s5); grid-template-columns: 1fr; }
@media (min-width: 860px) { .lanes { grid-template-columns: 1.15fr .85fr; align-items: stretch; } }

.lane {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 400px; padding: var(--s6);
  border-radius: var(--r-lg); overflow: hidden; isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.lane:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.lane__media { position: absolute; inset: 0; z-index: -2; }
.lane__media img { width: 100%; height: 100%; object-fit: cover; }
.lane::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(36,22,56,.15) 0%, rgba(36,22,56,.55) 55%, rgba(36,22,56,.85) 100%);
}
.lane--work { background: var(--purple-900); }
.lane--work::after { display: none; }
.lane--work .lane__pattern {
  position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(var(--purple-500) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse at 78% 18%, #000 0%, transparent 68%);
  mask-image: radial-gradient(ellipse at 78% 18%, #000 0%, transparent 68%);
}
.lane__title { font-size: var(--t-h2); color: var(--ivory); margin-bottom: var(--s3); }
.lane__copy { color: rgba(251,248,243,.86); font-size: var(--t-small); max-width: 40ch; margin-bottom: var(--s5); }
.lane__actions { display: flex; flex-wrap: wrap; gap: var(--s3); align-items: center; }

/* ---------- 9. TRUST RAIL ---------- */
.trust {
  display: grid; gap: var(--s4); grid-template-columns: 1fr;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding-block: var(--s5);
}
@media (min-width: 720px) { .trust { grid-template-columns: repeat(3, 1fr); gap: var(--s6); } }
.trust__item { display: flex; gap: var(--s3); align-items: flex-start; }
.trust__icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.trust__item p { margin: 0; font-size: var(--t-small); line-height: 1.5; }
.trust__item strong { display: block; font-weight: 500; color: var(--ink); }

/* ---------- 10. PRODUCT CARDS ---------- */
.grid-products { display: grid; gap: var(--s5); grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); }

.pcard { display: flex; flex-direction: column; height: 100%; }
.pcard__media {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border-radius: var(--r-md); background: var(--cream); margin-bottom: var(--s4);
}
.pcard__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.pcard:hover .pcard__media img { transform: scale(1.045); }
.pcard__tag {
  position: absolute; top: var(--s3); left: var(--s3); z-index: 2;
  background: rgba(251,248,243,.94); color: var(--purple-900);
  font-size: var(--t-tiny); letter-spacing: .1em; text-transform: uppercase;
  padding: .4em .85em; border-radius: var(--r-pill);
}
.pcard__title { font-size: var(--t-h3); margin-bottom: var(--s2); }
.pcard__desc { font-size: var(--t-small); color: var(--muted); margin-bottom: var(--s3); flex-grow: 1; }
.pcard__foot { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s3); margin-bottom: var(--s4); }
.pcard__ship { font-size: var(--t-tiny); color: var(--gold); letter-spacing: .04em; }

/* Placeholder for un-photographed products */
.ph {
  position: absolute; inset: 0; display: grid; place-content: center; gap: var(--s3);
  text-align: center; padding: var(--s5);
  background:
    linear-gradient(135deg, var(--gold-wash) 0%, var(--cream) 55%, var(--purple-50) 100%);
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(var(--cream-deep) 1.2px, transparent 1.2px);
  background-size: 14px 14px; opacity: .55;
}
.ph__inner { position: relative; }
.ph__label {
  font-family: var(--display); font-size: 1.2rem; font-style: italic;
  color: var(--purple-500); margin-bottom: var(--s2);
}
.ph__note { font-size: var(--t-tiny); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ---------- 10b. MEDIA PLACEHOLDERS & GALLERY ---------- */
/* A slot that has no file yet. Deliberately reads as "not shot yet",
   never as a stock photo. */
.slot {
  position: absolute; inset: 0;
  display: grid; place-content: center; text-align: center; gap: var(--s2);
  padding: var(--s4);
  background: linear-gradient(150deg, var(--gold-wash) 0%, var(--cream) 55%, var(--purple-50) 100%);
}
.slot::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(var(--cream-deep) 1.1px, transparent 1.1px);
  background-size: 13px 13px; opacity: .5;
}
.slot__in { position: relative; }
.slot__icon { margin: 0 auto var(--s3); color: var(--purple-300); }
.slot__label {
  font-family: var(--display); font-size: 1.15rem; font-style: italic;
  color: var(--purple-500); margin: 0 0 2px;
}
.slot__note { font-size: var(--t-tiny); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0; }
.slot--video .slot__icon { color: var(--gold); }

/* Gallery */
.gallery__stage {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border-radius: var(--r-lg); background: var(--cream);
}
.gallery__stage img, .gallery__stage video { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s3); margin-top: var(--s3);
}
.thumb {
  position: relative; aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden;
  border: 1px solid var(--line); background: var(--cream);
  cursor: pointer; padding: 0;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.thumb:hover { transform: translateY(-2px); }
.thumb[aria-current="true"] { border-color: var(--purple-700); box-shadow: 0 0 0 2px var(--purple-200); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb .slot { padding: 4px; }
.thumb .slot__label, .thumb .slot__note { display: none; }
.thumb .slot__icon { margin: 0; }
.thumb__badge {
  position: absolute; bottom: 2px; right: 3px; z-index: 2;
  font-size: 9px; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(34,21,56,.72); color: var(--ivory); padding: 1px 4px; border-radius: 3px;
}

/* ---------- 11. PRODUCT DETAIL ---------- */
.pdp { display: grid; gap: var(--s7); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .pdp { grid-template-columns: 1fr 1fr; gap: var(--s8); } }
@media (min-width: 900px) { .pdp__buy { position: sticky; top: 110px; } }

.pdp__media { position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; background: var(--cream); }
.pdp__media img { width: 100%; height: 100%; object-fit: cover; }

.manifest { border-top: 1px solid var(--line); margin-top: var(--s5); }
.manifest li {
  display: flex; justify-content: space-between; gap: var(--s4);
  padding: .8em 0; border-bottom: 1px solid var(--line); font-size: var(--t-small);
}
.manifest li span:last-child { color: var(--muted); white-space: nowrap; }

.addon {
  display: flex; gap: var(--s3); align-items: flex-start;
  padding: var(--s4); border: 1px solid var(--line); border-radius: var(--r-md);
  margin-bottom: var(--s3); cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.addon:hover { border-color: var(--purple-300); background: var(--purple-50); }
.addon input { margin-top: .35em; accent-color: var(--purple-700); width: 17px; height: 17px; flex-shrink: 0; }
.addon__body { flex-grow: 1; }
.addon__title { font-size: var(--t-small); font-weight: 500; display: flex; justify-content: space-between; gap: var(--s3); }
.addon__desc { font-size: var(--t-tiny); color: var(--muted); margin: 2px 0 0; }

.total-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: var(--s4) 0; border-top: 1px solid var(--line); margin-top: var(--s4);
}

/* ---------- 12. SLABS (corporate) ---------- */
.slab-table { width: 100%; border-collapse: collapse; font-size: var(--t-small); }
.slab-table th, .slab-table td { padding: .85em 1em; text-align: left; border-bottom: 1px solid var(--line); }
.slab-table th { font-weight: 500; font-size: var(--t-tiny); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.slab-table td:last-child, .slab-table th:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.slab-table tr:hover td { background: var(--purple-50); }
.slab-note { font-size: var(--t-tiny); color: var(--muted); margin-top: var(--s3); }

.cat-grid { display: grid; gap: var(--s4); grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.cat {
  display: flex; flex-direction: column; gap: var(--s2);
  padding: var(--s5); border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--white);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cat:hover { border-color: var(--purple-300); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.cat__num { font-family: var(--display); font-size: 1.1rem; color: var(--gold); }
.cat h3 { font-size: 1.22rem; }
.cat p { font-size: var(--t-small); color: var(--muted); margin: 0; }

/* ---------- 13. BANDS ---------- */
.band { background: var(--purple-900); color: var(--ivory); position: relative; overflow: hidden; }
.band h2, .band h3 { color: var(--ivory); }
.band p { color: rgba(251,248,243,.8); }
.band--cream { background: var(--cream); color: var(--ink); }
.band--cream p { color: var(--muted); }
.band__glow {
  position: absolute; width: 60vw; height: 60vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,75,163,.4) 0%, transparent 65%);
  top: -25%; right: -18%; pointer-events: none;
}

/* ---------- 14. STEPS ---------- */
.steps { display: grid; gap: var(--s5); grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); counter-reset: step; }
.step { position: relative; padding-top: var(--s5); border-top: 1px solid var(--line); }
.band .step { border-top-color: rgba(251,248,243,.22); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--display); font-size: 1.05rem; color: var(--gold);
  position: absolute; top: var(--s3); left: 0;
}
.step h3 { font-size: 1.15rem; margin: var(--s4) 0 var(--s2); }
.step p { font-size: var(--t-small); margin: 0; }

/* ---------- 15. FORMS ---------- */
.field { margin-bottom: var(--s4); }
.field label { display: block; font-size: var(--t-small); font-weight: 500; margin-bottom: .45em; }
.field .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85em 1em;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-sm);
  font-size: 16px; /* prevents iOS zoom */
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--purple-700);
  box-shadow: 0 0 0 3px var(--purple-50);
}
.field textarea { min-height: 110px; resize: vertical; }
.field__hint { font-size: var(--t-tiny); color: var(--muted); margin: .4em 0 0; }
.field__err { font-size: var(--t-tiny); color: #A3312B; margin: .4em 0 0; display: none; }
.field[data-invalid="true"] input,
.field[data-invalid="true"] select { border-color: #A3312B; }
.field[data-invalid="true"] .field__err { display: block; }
.field-row { display: grid; gap: var(--s4); grid-template-columns: 1fr; }
@media (min-width: 620px) { .field-row { grid-template-columns: 1fr 1fr; } }

/* ---------- 16. FOOTER ---------- */
.site-footer { background: var(--purple-900); color: rgba(251,248,243,.75); padding-block: var(--s8) var(--s6); }
.footer-grid { display: grid; gap: var(--s6); grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s7); } }
.site-footer h4 {
  font-family: var(--body); font-size: var(--t-tiny); letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: var(--s4); font-weight: 500;
}
.site-footer a { font-size: var(--t-small); display: inline-block; padding-block: .28em; transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--ivory); }
.site-footer .brand__word { color: var(--ivory); }
.footer-bottom {
  margin-top: var(--s7); padding-top: var(--s5);
  border-top: 1px solid rgba(251,248,243,.15);
  display: flex; flex-wrap: wrap; gap: var(--s4); justify-content: space-between;
  font-size: var(--t-tiny);
}

/* ---------- 17. FLOATING WHATSAPP ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  display: inline-flex; align-items: center; gap: .6em;
  background: var(--whatsapp); color: #05291A;
  padding: .85em 1.3em; border-radius: var(--r-pill);
  font-size: var(--t-small); font-weight: 500;
  box-shadow: 0 6px 24px rgba(37,211,102,.42);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
.wa-float svg { flex-shrink: 0; }
@media (max-width: 620px) { .wa-float span { display: none; } .wa-float { padding: .95em; } }

/* Sticky mobile buy bar on product pages */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 75;
  background: rgba(251,248,243,.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: var(--s3) var(--s4) calc(var(--s3) + env(safe-area-inset-bottom));
  display: none; align-items: center; gap: var(--s4);
  box-shadow: 0 -4px 20px rgba(36,22,56,.08);
}
.buybar__price { flex-shrink: 0; }
.buybar__price .price { font-size: 1.3rem; }
.buybar .btn { flex-grow: 1; }
@media (max-width: 899px) { .buybar { display: flex; } body.has-buybar { padding-bottom: 84px; } .wa-float { bottom: 88px; } }

/* ---------- 18. MOTION ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; }
.reveal.in { animation: rise .85s var(--ease) forwards; }
.reveal[data-d="1"] { animation-delay: .09s; }
.reveal[data-d="2"] { animation-delay: .18s; }
.reveal[data-d="3"] { animation-delay: .27s; }
.reveal[data-d="4"] { animation-delay: .36s; }
.reveal[data-d="5"] { animation-delay: .45s; }

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

/* ---------- 19. UTILITIES ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--s6); }
.pill {
  display: inline-flex; align-items: center; gap: .4em;
  background: var(--gold-wash); color: var(--gold);
  border: 1px solid var(--gold-light);
  font-size: var(--t-tiny); letter-spacing: .08em; text-transform: uppercase;
  padding: .4em .9em; border-radius: var(--r-pill);
}
.scrim { position: fixed; inset: 0; background: rgba(36,22,56,.4); z-index: 65; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
.scrim[data-open="true"] { opacity: 1; pointer-events: auto; }
@media print { .site-header, .wa-float, .buybar, .site-footer { display: none !important; } }


/* ---------- 20. A+ CONTENT — "what's inside, one by one" ---------- */
.aplus { display: grid; gap: var(--s5); grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); }
.acard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.acard:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--purple-200); }
.acard__img { aspect-ratio: 1; background: var(--cream); overflow: hidden; }
.acard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.acard:hover .acard__img img { transform: scale(1.05); }
.acard__body { padding: var(--s4); }
.acard__name { font-family: var(--display); font-size: 1.15rem; margin-bottom: 3px; }
.acard__desc { font-size: var(--t-tiny); color: var(--muted); margin: 0; line-height: 1.5; }

/* Editorial split — big image beside a claim */
.split-feature { display: grid; gap: var(--s6); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 880px) { .split-feature { grid-template-columns: 1fr 1fr; gap: var(--s8); } }
.split-feature--flip > div:first-child { order: 2; }
@media (max-width: 879px) { .split-feature--flip > div:first-child { order: 0; } }
.split-feature__img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1; background: var(--cream); }
.split-feature__img img { width: 100%; height: 100%; object-fit: cover; }

/* Homepage hero image */
.hero-media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 1; background: var(--cream); box-shadow: var(--shadow-lift);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-grid { display: grid; gap: var(--s7); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: var(--s8); } }
.hero-media__tag {
  position: absolute; left: var(--s4); bottom: var(--s4); z-index: 2;
  background: rgba(251,248,243,.94); color: var(--purple-900);
  font-size: var(--t-tiny); letter-spacing: .08em; text-transform: uppercase;
  padding: .45em 1em; border-radius: var(--r-pill);
}


/* ---------- 21. COMING-SOON / LEAD CAPTURE MODAL ---------- */
.lead-modal {
  border: 0; padding: 0; max-width: 480px; width: calc(100% - 2rem);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lift); background: transparent;
}
.lead-modal::backdrop { background: rgba(34,21,56,.6); backdrop-filter: blur(3px); }
.lead-modal__in { background: var(--ivory); border-radius: var(--r-lg); overflow: hidden; }
.lead-modal__head {
  background: var(--purple-900); color: var(--ivory);
  padding: var(--s6) var(--s6) var(--s5); position: relative;
}
.lead-modal__head h2 { color: var(--ivory); font-size: 1.75rem; margin-bottom: var(--s2); }
.lead-modal__head p { color: rgba(251,248,243,.8); font-size: var(--t-small); margin: 0; }
.lead-modal__body { padding: var(--s6); }
.lead-modal__close {
  position: absolute; top: var(--s4); right: var(--s4);
  background: rgba(251,248,243,.14); border: 0; color: var(--ivory);
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 18px; line-height: 1;
  transition: background .2s var(--ease);
}
.lead-modal__close:hover { background: rgba(251,248,243,.28); }
.lead-modal__ok { text-align: center; padding: var(--s7) var(--s6); }
.lead-modal__ok svg { margin: 0 auto var(--s4); color: var(--gold); }
.pill-soon {
  display: inline-block; background: var(--gold-wash); color: var(--gold);
  border: 1px solid var(--gold-light); font-size: var(--t-tiny);
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3em .8em; border-radius: var(--r-pill); margin-bottom: var(--s4);
}


/* ==========================================================================
   22. IMAGE-FORWARD LAYOUT SYSTEM
   Large, bleeding, editorial. Photography leads; type supports.
   ========================================================================== */

/* ---- full-bleed escape hatch (works inside .wrap) ---- */
.bleed { width: 100vw; margin-left: 50%; transform: translateX(-50%); }

/* ---- HERO: type left, huge image panel bleeding off the right ---- */
.heroX { position: relative; padding-block: clamp(2rem, 4vw, 4rem) 0; overflow: hidden; }
.heroX__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s6); align-items: center;
}
@media (min-width: 960px) {
  .heroX__grid { grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); gap: var(--s8); }
  .heroX__media { margin-right: calc(50% - 50vw); }   /* bleed to the right edge */
}
.heroX__media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; max-height: 620px; background: var(--cream); box-shadow: var(--shadow-lift);
}
@media (min-width: 960px) {
  .heroX__media { aspect-ratio: 4/3.4; border-radius: var(--r-lg) 0 0 var(--r-lg);
    height: clamp(460px, 68vh, 720px); }
}
.heroX__media img { width: 100%; height: 100%; object-fit: cover; }
.heroX__badge {
  position: absolute; left: var(--s5); bottom: var(--s5); z-index: 3;
  display: inline-flex; align-items: baseline; gap: .6em;
  background: rgba(251,248,243,.95); backdrop-filter: blur(8px);
  padding: .7em 1.2em; border-radius: var(--r-pill); box-shadow: var(--shadow-soft);
}
.heroX__badge b { font-family: var(--display); font-size: 1.25rem; font-weight: 500; }
.heroX__badge span { font-size: var(--t-tiny); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ---- MARQUEE ---- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  background: var(--cream); padding-block: var(--s4);
}
.marquee__track {
  display: flex; gap: var(--s8); width: max-content;
  animation: slide 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--display); font-size: clamp(1.1rem, .9rem + .7vw, 1.7rem);
  color: var(--purple-500); white-space: nowrap; display: flex; align-items: center; gap: var(--s8);
}
.marquee__item::after { content: "✦"; color: var(--gold); font-size: .6em; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---- BIG PRODUCT CARDS: 2-up, image-led ---- */
.grid-big { display: grid; gap: var(--s6); grid-template-columns: 1fr; }
@media (min-width: 760px)  { .grid-big { grid-template-columns: repeat(2, 1fr); gap: var(--s7); } }
.bcard { display: block; position: relative; }
.bcard__media {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border-radius: var(--r-lg); background: var(--cream); margin-bottom: var(--s5);
}
.bcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.bcard:hover .bcard__media img { transform: scale(1.04); }
.bcard__tag {
  position: absolute; top: var(--s4); left: var(--s4); z-index: 2;
  background: rgba(251,248,243,.95); color: var(--purple-900);
  font-size: var(--t-tiny); letter-spacing: .12em; text-transform: uppercase;
  padding: .45em 1em; border-radius: var(--r-pill);
}
.bcard__price {
  position: absolute; bottom: var(--s4); right: var(--s4); z-index: 2;
  background: var(--purple-900); color: var(--ivory);
  font-family: var(--display); font-size: 1.35rem; font-weight: 500;
  padding: .35em .85em; border-radius: var(--r-pill);
}
.bcard__title { font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); margin-bottom: var(--s2); }
.bcard__desc { font-size: var(--t-small); color: var(--muted); margin-bottom: var(--s4); max-width: 46ch; }

/* ---- FULL-BLEED IMAGE BAND with overlay copy ---- */
.imgband { position: relative; min-height: clamp(420px, 68vh, 760px); display: grid; }
.imgband__img { position: absolute; inset: 0; }
.imgband__img img { width: 100%; height: 100%; object-fit: cover; }
.imgband::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(34,21,56,.82) 0%, rgba(34,21,56,.55) 45%, rgba(34,21,56,.12) 100%);
}
.imgband__in { position: relative; z-index: 2; align-self: center; padding-block: var(--s8); }
.imgband h2, .imgband p { color: var(--ivory); }
.imgband p { color: rgba(251,248,243,.86); }
.imgband__copy { max-width: 34ch; }

/* ---- HORIZONTAL SCROLL RAIL ---- */
.hrail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 27vw);
  gap: var(--s5); overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: var(--s4); scrollbar-width: thin;
}
@media (min-width: 900px) { .hrail { grid-auto-columns: minmax(280px, 22vw); } }
.hrail > * { scroll-snap-align: start; }
.hrail::-webkit-scrollbar { height: 6px; }
.hrail::-webkit-scrollbar-thumb { background: var(--purple-200); border-radius: 99px; }
.hitem__media {
  aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden;
  background: var(--cream); margin-bottom: var(--s3); position: relative;
}
.hitem__media img { width: 100%; height: 100%; object-fit: cover; }
.hitem h3 { font-size: 1.2rem; margin-bottom: 2px; }
.hitem p { font-size: var(--t-tiny); color: var(--muted); margin: 0; }

/* ---- EDITORIAL SPLIT, large ---- */
.edit-split { display: grid; gap: var(--s6); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .edit-split { grid-template-columns: 1.05fr .95fr; gap: var(--s9); } }
.edit-split--flip .edit-split__media { order: -1; }
@media (max-width: 899px) { .edit-split--flip .edit-split__media { order: 0; } }
.edit-split__media {
  border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--cream);
  box-shadow: var(--shadow-soft);
}
.edit-split__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---- XL PLACEHOLDER — for shots not taken yet ---- */
.slot--xl { display: grid; place-content: center; text-align: center; gap: var(--s4); }
.slot--xl .slot__label { font-size: clamp(1.3rem, 1rem + 1.1vw, 2rem); }
.slot--xl .slot__note { font-size: var(--t-small); letter-spacing: .16em; }
.slot--xl .slot__icon { width: 48px; height: 48px; }
.slot--dark { background: linear-gradient(150deg, var(--purple-900) 0%, var(--purple-700) 70%, var(--purple-500) 100%); }
.slot--dark .slot__label { color: var(--gold-light); }
.slot--dark .slot__note { color: rgba(251,248,243,.6); }
.slot--dark .slot__icon { color: var(--gold); }
.slot--dark::before { background-image: radial-gradient(rgba(251,248,243,.14) 1.1px, transparent 1.1px); }


/* ==========================================================================
   23. THE GATE — split-screen entry
   ========================================================================== */
.gate { min-height: 100svh; display: grid; grid-template-rows: auto 1fr auto; }
.gate__head { padding: var(--s5) 0; }
.gate__logo { height: 52px; width: auto; margin-inline: auto; }
@media (max-width: 620px) { .gate__logo { height: 40px; } }

.gate__split { display: grid; grid-template-columns: 1fr; }
@media (min-width: 860px) { .gate__split { grid-template-columns: 1fr 1fr; } }

.gate__side {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 44svh; display: flex; align-items: flex-end;
  padding: clamp(1.75rem, 3.5vw, 3.5rem);
  transition: flex-grow .5s var(--ease);
}
@media (min-width: 860px) { .gate__side { min-height: 62svh; } }
.gate__bg { position: absolute; inset: 0; z-index: -2; }
.gate__bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gate__side:hover .gate__bg img { transform: scale(1.05); }
.gate__side::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(34,21,56,.94) 0%, rgba(34,21,56,.72) 30%, rgba(34,21,56,.22) 62%, rgba(34,21,56,.04) 100%);
  transition: opacity .45s var(--ease);
}
.gate__side:hover::after { opacity: .88; }
.gate__side + .gate__side { border-top: 1px solid rgba(251,248,243,.16); }
@media (min-width: 860px) {
  .gate__side + .gate__side { border-top: 0; border-left: 1px solid rgba(251,248,243,.16); }
}

.gate__body { position: relative; z-index: 1; max-width: 40ch; }
.gate__eyebrow {
  font-size: var(--t-tiny); letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light); margin: 0 0 var(--s3);
}
.gate__title {
  font-family: var(--display); color: var(--ivory);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.4rem); line-height: 1.05; margin: 0 0 var(--s3);
}
.gate__copy { color: rgba(251,248,243,.84); font-size: var(--t-small); margin-bottom: var(--s5); }
.gate__cta {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: var(--t-small); font-weight: 500; letter-spacing: .04em;
  color: var(--ivory); border-bottom: 1px solid var(--gold);
  padding-bottom: 4px; transition: gap .3s var(--ease);
}
.gate__side:hover .gate__cta { gap: 1.1em; }
.gate__soon {
  display: inline-block; margin-left: .6em; font-size: var(--t-tiny);
  letter-spacing: .12em; text-transform: uppercase;
  background: rgba(227,200,138,.16); color: var(--gold-light);
  border: 1px solid rgba(227,200,138,.4); padding: .2em .7em; border-radius: var(--r-pill);
}
.gate__foot { padding: var(--s5) 0; }

/* Brand logo strip (greyscale, from official sources) */
.logos { display: flex; align-items: center; gap: clamp(1.75rem, 4vw, 4rem); flex-wrap: wrap; justify-content: center; }
.logos img {
  height: clamp(20px, 2.2vw, 30px); width: auto;
  opacity: .5; transition: opacity .3s var(--ease);
}
.logos img:hover { opacity: .85; }
.logo-rail { overflow: hidden; }
.logo-rail__track { display: flex; align-items: center; gap: clamp(2.5rem,5vw,5rem); width: max-content; animation: slide 42s linear infinite; }
.logo-rail:hover .logo-rail__track { animation-play-state: paused; }
.logo-rail__track img { height: clamp(22px, 2.4vw, 32px); width: auto; opacity: .45; }
