/* =============================================================
   ADW STUDIUM — Storefront
   style.css
   -------------------------------------------------------------
   Plain, unbundled CSS. Organised top-to-bottom:
     1.  Design tokens (brand colours, type, spacing)
     2.  Reset & base
     3.  Reusable helpers (container, eyebrow, buttons, rules)
     4.  Image / placeholder system  (swap your photos in here)
     5.  Header + navigation
     6.  Hero spotlight
     7.  Editorial split
     8.  Shop-by-category grid
     9.  Summer Checklist carousel + product cards
     10. Quick-view modal
     11. Promo banner
     12. Value props
     13. Newsletter band (dark)
     14. Footer (dark)
     15. Toast
     16. Responsive
   ============================================================= */

/* ---------------------------------------------------------------
   1. DESIGN TOKENS  (from ADW Studium brand guide)
   --------------------------------------------------------------- */
:root {
  /* Brand primaries */
  --purple: #775AA6;
  --teal:   #1B9EA9;
  --amber:  #FCB245;
  --black:  #000000;

  /* Supporting */
  --rose:   #D56072;
  --cream:  #FFF7B1;
  --blush:  #FDE4E6;
  --navy:   #2A6B9D;
  --umber:  #61250D;
  --white:  #FFFFFF;

  /* Warm editorial neutrals (derived to sit with the palette) */
  --paper:   #FBF8F2;   /* page background */
  --paper-2: #F3EEE4;   /* raised warm panel */
  --paper-3: #EAE3D6;   /* sunken / borders */
  --ink:     #1A1714;   /* primary text */
  --ink-soft:#6A645B;   /* secondary text */
  --ink-mute:#B7AE9F;   /* muted captions */
  --line:    #E0D8C9;   /* hairline rules */

  /* Dark surfaces */
  --surface: #0D0D0D;
  --surface-2: #141414;
  --dim: #8C857B;

  /* Type */
  --font-display: 'Playfair Display', 'Big Caslon', Georgia, serif;
  --font-body: 'Source Sans 3', 'Myriad Pro', 'Trebuchet MS', Helvetica, sans-serif;

  /* Spacing (8pt base) */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px; --sp-9: 96px;

  /* Radii (mostly sharp, editorial) */
  --r-sm: 2px; --r-md: 4px; --r-pill: 999px;

  --container: 1320px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------------------------------------------------------------
   2. RESET & BASE
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.05; }

/* ---------------------------------------------------------------
   3. REUSABLE HELPERS
   --------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 40px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: currentColor; }
.eyebrow--center::after { content: ''; width: 22px; height: 1px; background: currentColor; }
.eyebrow--plain::before { display: none; }

.section { padding: var(--sp-9) 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--sp-5); margin-bottom: var(--sp-7); flex-wrap: wrap;
}
.section-title { font-size: clamp(34px, 5vw, 56px); letter-spacing: -0.015em; }
.section-sub { color: var(--ink-soft); max-width: 46ch; margin-top: var(--sp-3); font-size: 16px; }

/* Link with arrow */
.arrow-link {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 4px; border-bottom: 1px solid var(--ink);
  transition: gap .25s var(--ease), color .2s, border-color .2s;
}
.arrow-link:hover { gap: 14px; color: var(--purple); border-color: var(--purple); }

/* Buttons */
.btn {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--white);
  background: var(--ink);
  padding: 16px 34px; border-radius: var(--r-sm);
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .25s var(--ease), transform .2s var(--ease);
}
.btn:hover { background: var(--purple); }
.btn:active { transform: translateY(1px); }
.btn--amber { background: var(--amber); color: var(--ink); border-radius: 80px; }
.btn--amber:hover { background: var(--umber); color: var(--cream); }
.btn--ghost { background: transparent; color: var(--white); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6); }
.btn--ghost:hover { background: var(--white); color: var(--ink); }

/* Triangle brand mark (reused) */
.tri-mark { display: inline-flex; align-items: flex-end; gap: 2px; }
.tri { width: 0; height: 0; }
.tri-up   { border-left: 6px solid transparent; border-right: 6px solid transparent; }
.tri-down { border-left: 6px solid transparent; border-right: 6px solid transparent; }
.tri-up.p   { border-bottom: 11px solid var(--purple); }
.tri-down.t { border-top: 11px solid var(--teal); }
.tri-up.a   { border-bottom: 11px solid var(--amber); }

/* Triangle rule divider (signature) */
.tri-rule {
  height: 16px; width: 100%;
  background-image:
    linear-gradient(45deg, transparent 49.5%, var(--purple) 50%, var(--purple) 50.5%, transparent 51%),
    linear-gradient(-45deg, transparent 49.5%, var(--purple) 50%, var(--purple) 50.5%, transparent 51%);
  background-size: 18px 16px; background-repeat: repeat-x;
  opacity: .4;
}
.nav-logo{
  height: 28px;   /* adjust until it matches your nav's scale */
  width: auto;    /* keeps the image's original aspect ratio */
  display: block; /* avoids inline-image baseline gap issues */
}

/* ---------------------------------------------------------------
   4. IMAGE / PLACEHOLDER SYSTEM
   -------------------------------------------------------------
   Each visual is a <figure class="media" style="--p1:..;--p2:..">
   with a real <img> on top and a placeholder layer underneath.
   Drop your photo at the img's src path and it covers the
   placeholder automatically. No other change needed.
   --------------------------------------------------------------- */
.media {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, var(--p1, #ded6c8), var(--p2, #c9bfae));
}
.media > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 2;
  transition: transform .9s var(--ease), opacity .6s;
}
.media__ph {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  color: rgba(255,255,255,0.85); text-align: center; padding: 24px;
}
.media__ph .tri-mark { transform: scale(1.6); opacity: .9; }
.media__ph small {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: rgba(255,255,255,0.72); white-space: nowrap;
  background: rgba(0,0,0,0.22); padding: 4px 11px; border-radius: var(--r-pill);
}
.media.is-missing > img { display: none; }
/* subtle scrim so overlaid text always reads */
.media--scrim::after {
  content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(to top, rgba(20,16,12,0.55) 0%, rgba(20,16,12,0.05) 45%, rgba(20,16,12,0) 70%);
}
.media--hoverzoom:hover > img { transform: scale(1.05); }

/* ---------------------------------------------------------------
   5. HEADER + NAVIGATION
   --------------------------------------------------------------- */
.announce {
  background: var(--ink); color: var(--cream);
  text-align: center; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  padding: 9px 16px;
}
.announce a { color: var(--amber); border-bottom: 1px solid currentColor; padding-bottom: 1px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.is-stuck { box-shadow: 0 4px 24px rgba(26,23,20,0.06); }

.header-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: var(--sp-4); padding: 18px 40px;
}
.header-left { display: flex; align-items: center; gap: var(--sp-6); }
.header-left a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-soft);
  transition: color .2s;
}
.header-left a:hover { color: var(--purple); }

.brand { display: inline-flex; align-items: center; gap: 12px; justify-self: center; }
.brand__name {
  font-family: var(--font-display);
  font-size: 26px; letter-spacing: 0.16em; color: var(--ink);
  white-space: nowrap;
}
.brand .tri-mark { transform: translateY(-1px); }

.header-right { display: flex; align-items: center; justify-content: flex-end; gap: var(--sp-5); }
.icon-btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); transition: color .2s;
}
.icon-btn:hover { color: var(--purple); }
.icon-btn svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.icon-btn .label { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.count-badge {
  position: absolute; top: -8px; right: -10px;
  min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--rose); color: var(--white);
  font-size: 10px; font-weight: 700; line-height: 17px;
  text-align: center; border-radius: var(--r-pill);
  transform: scale(0); transition: transform .25s var(--ease);
}
.count-badge.show { transform: scale(1); }
.icon-btn.heart-active svg { fill: var(--rose); stroke: var(--rose); }

.hamburger { display: none; width: 26px; height: 18px; position: relative; }
.hamburger span { position: absolute; left: 0; width: 100%; height: 1.6px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }
body.menu-open .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Category nav row */
.catnav { border-top: 1px solid var(--line); }
.catnav ul {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-7); padding: 14px 40px; flex-wrap: wrap;
}
.catnav a {
  font-size: 13px; letter-spacing: 0.05em; color: var(--ink);
  padding: 4px 0; position: relative; transition: color .2s;
}
.catnav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--teal); transition: width .25s var(--ease);
}
.catnav a:hover { color: var(--teal); }
.catnav a:hover::after { width: 100%; }
.catnav a.sale { color: var(--rose); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--paper);
  transform: translateX(-100%); transition: transform .35s var(--ease);
  display: flex; flex-direction: column; padding: 90px 32px 40px; overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display); font-size: 28px; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu a.sale { color: var(--rose); }
.mobile-menu .mm-close { position: absolute; top: 28px; right: 28px; font-size: 26px; }

/* ---------------------------------------------------------------
   6. HERO SPOTLIGHT
   --------------------------------------------------------------- */
.hero { position: relative; }
.hero .media { height: min(86vh, 820px); min-height: 520px; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--white); padding: 24px;
}
.hero__eyebrow {
  font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 22px; color: var(--cream);
}
.hero__title {
  font-size: clamp(54px, 11vw, 138px); line-height: 0.92;
  letter-spacing: 0.02em; text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero__title em { font-style: italic; }
.hero__sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(18px, 3vw, 30px); letter-spacing: 0.34em;
  text-transform: uppercase; margin-top: 10px; color: var(--cream);
}
.hero__cta { margin-top: 40px; }

/* ---------------------------------------------------------------
   7. EDITORIAL SPLIT  (New Arrivals + Collection card)
   --------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split__pane { position: relative; min-height: 640px; display: flex; }
.split__pane .media { flex: 1; }
.split__caption {
  position: absolute; left: 40px; bottom: 40px; z-index: 6; color: var(--white);
}
.split__caption h3 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 14px; }
.split__caption .arrow-link { color: var(--white); border-color: rgba(255,255,255,0.7);}
.split__caption .arrow-link:hover { color: var(--cream); border-color: var(--cream); }

/* Collection notes card */
.collection-card {
  background: var(--blush); color: var(--umber); 
  display: flex; align-items: center; justify-content: center; padding: 56px;
}
.collection-card__frame {
  border: 1.5px solid var(--rose); position: relative;
  padding: 64px 48px; text-align: center; max-width: 460px;
  border-radius: 5px;
}
.collection-card__frame::before,
.collection-card__frame::after {
  content: ''; position: absolute; left: 8px; right: 8px; height: 1px; background: var(--rose); opacity: .5;
}
.collection-card__frame::before { top: 8px; }
.collection-card__frame::after  { bottom: 8px; }
.collection-card__icon { margin-bottom: 26px; display: flex; justify-content: center; }
.collection-card__icon .tri-mark { transform: scale(1.7); }
.collection-card h3 {
  font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.25; letter-spacing: 0.04em; text-transform: uppercase; color: var(--umber);
}
.collection-card .arrow-link {
  margin-top: 30px; color: var(--umber); border-color: var(--umber);
  font-size: 11px;
}
.collection-card .arrow-link:hover { color: var(--rose); border-color: var(--rose); }

/* ---------------------------------------------------------------
   8. SHOP-BY-CATEGORY GRID
   --------------------------------------------------------------- */
.cat-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px; gap: 14px;
}
.cat-tile { position: relative; overflow: hidden; display: block; }
.cat-tile .media { position: absolute; inset: 0; }
.cat-tile__label {
  position: absolute; left: 28px; bottom: 24px; z-index: 6; color: var(--white);
}
.cat-tile__label h3 { font-size: clamp(24px, 2.6vw, 38px); margin-bottom: 6px; }
.cat-tile__label span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 7px; opacity: .92;
}
.cat-tile__label span::after {
  content: '→'; transition: transform .25s var(--ease); display: inline-block;
}
.cat-tile:hover .cat-tile__label span::after { transform: translateX(5px); }

/* spans */
.span-8 { grid-column: span 8; } .span-6 { grid-column: span 6; }
.span-5 { grid-column: span 5; } .span-4 { grid-column: span 4; }
.span-7 { grid-column: span 7; }
.row-2 { grid-row: span 2; }

/* ---------------------------------------------------------------
   9. SUMMER CHECKLIST CAROUSEL + PRODUCT CARDS
   --------------------------------------------------------------- */
.carousel-wrap { position: relative; }
.carousel {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 8px; scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }

.product-card {
  flex: 0 0 clamp(240px, 23vw, 300px); scroll-snap-align: start;
  display: flex; flex-direction: column;
}
.product-card__media { position: relative; aspect-ratio: 1 / 1; background: var(--paper-2); overflow: hidden; }
.product-card__media .media { position: absolute; inset: 0; }
.product-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 7;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); background: var(--teal); padding: 4px 10px; border-radius: var(--r-sm);
}
#wishBtnHeader {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* override the generic .count-badge styling just for this button,
   since here it's inline text next to the heart, not a corner badge */
#wishBtnHeader .count-badge {
  position: static;
  background: none;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  min-width: auto;
  padding: 0;
}

.heart-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-block;
}

.heart-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .25s ease, transform .25s ease;
}

.heart-icon .heart-full {
  opacity: 0;
  transform: scale(.75);
}

#wishBtnHeader.active .heart-empty {
  opacity: 0;
}

#wishBtnHeader.active .heart-full {
  opacity: 1;
  transform: scale(1);
  animation: heartPop .35s var(--ease, ease);
}

#wishBtnHeader.active {
  cursor: default;
}

@keyframes heartPop {
  0%   { transform: scale(.75); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}
#wishBtnHeader {
  position: relative;
}

/* pulsing ring to catch the eye */
#wishBtnHeader::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--r-pill, 999px);
  border: 2px solid var(--rose);
  opacity: 0;
  pointer-events: none;
  animation: attentionPulse 2.4s ease-out infinite;
}

/* stop the signal once liked */
#wishBtnHeader.active::after {
  animation: none;
  opacity: 0;
}

@keyframes attentionPulse {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* gentle heart wiggle every few seconds, only while unliked */
.heart-icon .heart-empty {
  animation: heartWiggle 3.5s ease-in-out infinite;
  transform-origin: center;
}

#wishBtnHeader.active .heart-empty {
  animation: none;
}

@keyframes heartWiggle {
  0%, 92%, 100% { transform: scale(1) rotate(0deg); }
  94% { transform: scale(1.12) rotate(-6deg); }
  96% { transform: scale(1.12) rotate(6deg); }
  98% { transform: scale(1) rotate(0deg); }
}

/* respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  #wishBtnHeader::after,
  .heart-icon .heart-empty {
    animation: none;
  }
}
#wishBtnHeader .count-badge {
  position: static;
  background: none;
  color: #000000;      /* your color goes here now */
  font-size: 13px;
  font-weight: 500;
  min-width: auto;
  padding: 0;
  width: auto;
  height: auto;
  overflow: visible;
}
#wishBtnHeader #wishCount {
  all: unset;
  display: inline-block;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
.quick-view {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 7;
  background: var(--ink); color: var(--white);
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 13px; text-align: center; border-radius: var(--r-sm);
  opacity: 0; transform: translateY(12px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), background .2s;
}
.product-card__media:hover .quick-view { opacity: 1; transform: translateY(0); }
.quick-view:hover { background: var(--purple); }

.product-card__info { padding: 18px 2px 0; text-align: center; }
.product-card__coll {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 6px;
}
.product-card__name { font-family: var(--font-display); font-size: 21px; margin-bottom: 6px; }
.product-card__price { font-size: 15px; color: var(--ink); }
.product-card__opts { font-size: 12px; color: var(--ink-soft); margin-top: 5px; letter-spacing: 0.02em; }

.carousel-nav {
  position: absolute; top: calc((min(300px, 23vw)) ); /* roughly over media */
}
.car-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 12;
  width: 48px; height: 48px; border-radius: var(--r-pill);
  background: var(--paper); box-shadow: 0 4px 18px rgba(26,23,20,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, opacity .2s;
}
.car-arrow svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 1.6; }
.car-arrow:hover { background: var(--ink); }
.car-arrow:hover svg { stroke: var(--white); }
.car-arrow.prev { left: -22px; }
.car-arrow.next { right: -22px; }
.car-arrow[disabled] { opacity: 0; pointer-events: none; }

/* ---------------------------------------------------------------
   10. QUICK-VIEW MODAL
   --------------------------------------------------------------- */
.modal-scrim {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(20,16,12,0.5);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.modal-scrim.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--paper); max-width: 880px; width: 100%; max-height: 90vh;
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
  transform: translateY(20px) scale(.98); transition: transform .35s var(--ease);
}
.modal-scrim.open .modal { transform: translateY(0) scale(1); }
.modal__media { position: relative; min-height: 420px; }
.modal__media .media { position: absolute; inset: 0; }
.modal__body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.modal__coll { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.modal__name { font-size: 38px; margin-bottom: 14px; }
.modal__price { font-size: 20px; margin-bottom: 18px; }
.modal__desc { color: var(--ink-soft); font-size: 15px; margin-bottom: 26px; }
.modal__opts { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.swatch { width: 30px; height: 30px; border-radius: var(--r-pill); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12); cursor: pointer; transition: transform .15s; }
.swatch:hover { transform: scale(1.12); }
.swatch.sel { box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--ink); }
.modal__close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--ink-soft); }
.modal__close:hover { color: var(--ink); }

/* ---------------------------------------------------------------
   11. PROMO BANNER
   --------------------------------------------------------------- */
.promo { display: grid; grid-template-columns: 1fr 1fr; }
.promo__img { position: relative; min-height: 560px; display: flex; }
.promo__img .media { flex: 1; }
.promo__img .split__caption { color: var(--white); }
.promo__panel {
  background: var(--navy); color: var(--cream);
  display: flex; align-items: center; justify-content: center; padding: 56px;
	
}
.promo__panel-inner { border: 1px solid rgba(255,247,177,0.5); padding: 64px 48px; text-align: center; max-width: 480px; position: relative; border-radius: 5px}
.promo__panel-inner .tri-mark { transform: scale(1.4); margin-bottom: 26px; }
.promo__panel h2 {
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.2; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--cream); margin-bottom: 30px;
}
.promo__panel .arrow-link { color: var(--cream); border-color: var(--cream); }
.promo__panel .arrow-link:hover { color: var(--amber); border-color: var(--amber); }

/* ---------------------------------------------------------------
   12. VALUE PROPS
   --------------------------------------------------------------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.value { display: flex; gap: 22px; align-items: flex-start; }
.value__icon { flex-shrink: 0; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; }
.value__icon svg { width: 40px; height: 40px; }
.value h4 { font-size: 24px; margin-bottom: 8px; }
.value p { font-size: 14px; color: var(--ink-soft); margin-bottom: 12px; }
.value .arrow-link { font-size: 11px; }

/* ---------------------------------------------------------------
   13. NEWSLETTER BAND (dark ADW section)
   --------------------------------------------------------------- */
.newsletter { background: var(--surface); color: var(--white); position: relative; overflow: hidden; }
.newsletter .tri-bg {
  position: absolute; inset: 0; opacity: .06; pointer-events: none;
  background-image:
    linear-gradient(45deg, transparent 49.5%, #fff 50%, transparent 50.5%),
    linear-gradient(-45deg, transparent 49.5%, #fff 50%, transparent 50.5%);
  background-size: 46px 40px;
}
.newsletter__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
  padding: 80px 0;
}
.newsletter h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.2; }
.newsletter h2 .amber { color: var(--amber); }
.newsletter form { display: flex; gap: 0; min-width: min(440px, 80vw); }
.newsletter input {
  flex: 1; background: transparent; border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); padding: 17px 18px; font-size: 14px; letter-spacing: 0.04em;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; font-size: 12px; }
.newsletter input:focus { outline: none; border-color: var(--amber); }
.newsletter button[type=submit] {
  background: var(--amber); color: var(--ink); padding: 0 30px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background .2s;
}
.newsletter button[type=submit]:hover { background: var(--cream); }
.newsletter .form-msg { font-size: 12px; margin-top: 10px; color: var(--amber); letter-spacing: 0.06em; min-height: 16px; }

/* ---------------------------------------------------------------
   14. FOOTER (dark)
   --------------------------------------------------------------- */
.footer { background: var(--black); color: var(--dim); padding: 72px 0 40px; }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; padding-bottom: 56px; border-bottom: 1px solid #1e1e1e; }
.footer__brand .brand__name { color: var(--white); font-size: 24px; }
.footer__brand p { font-size: 13px; margin-top: 18px; max-width: 30ch; line-height: 1.7; }
.footer__social { display: flex; gap: 12px; margin-top: 24px; }
.footer__social a { width: 38px; height: 38px; border-radius: var(--r-pill); box-shadow: inset 0 0 0 1px #2a2a2a; display: flex; align-items: center; justify-content: center; transition: background .2s, box-shadow .2s; }
.footer__social a:hover { background: var(--surface-2); box-shadow: inset 0 0 0 1px var(--teal); }
.footer__social svg { width: 17px; height: 17px; stroke: var(--dim); fill: none; stroke-width: 1.5; }
.footer__social a:hover svg { stroke: var(--teal); }
.footer__col h5 { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer__col a { display: block; font-size: 13px; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--amber); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 11px; letter-spacing: 0.08em; color: #555; flex-wrap: wrap; gap: 12px; }
.footer__bottom .tri-mark { transform: scale(.85); }
.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  color: inherit;
  text-decoration: none;

  border: 1px solid currentColor;
  border-radius: 50%;

  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.footer__social i {
  font-size: 18px;
  line-height: 1;
}

.footer__social a:hover {
  transform: translateY(-2px);
}

/* ---------------------------------------------------------------
   15. TOAST
   --------------------------------------------------------------- */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--ink); color: var(--white); padding: 15px 26px; border-radius: var(--r-sm);
  font-size: 13px; letter-spacing: 0.06em; z-index: 400; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25); transition: transform .4s var(--ease);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast .tri-mark { transform: scale(.8); }

/* ---------------------------------------------------------------
   16. RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .values { gap: 32px; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .header-inner { grid-template-columns: auto minmax(0, 1fr) auto; padding: 14px 24px; }
  .header-left { display: none; }
  .hamburger { display: block; }
  .brand { justify-self: start; min-width: 0; overflow: hidden; }
  .brand__name { font-size: 21px; letter-spacing: 0.12em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .header-right .label { display: none; }
  .header-right { gap: var(--sp-4); flex-shrink: 0; }
  .catnav { display: none; }

  .section { padding: 64px 0; }
  .split { grid-template-columns: 1fr; }
  .split__pane { min-height: 70vw; }
  .collection-card { padding: 40px 24px; min-height: 70vw; }
  .promo { grid-template-columns: 1fr; }
  .promo__img { min-height: 75vw; }
  .promo__panel { padding: 48px 24px; }

  .cat-grid { grid-auto-rows: 200px; gap: 10px; }
  .span-8, .span-7, .span-6, .span-5, .span-4 { grid-column: span 6; }
  .row-2 { grid-row: span 1; }

  .newsletter__inner { grid-template-columns: 1fr; gap: 28px; padding: 60px 0; }
  .values { grid-template-columns: 1fr; gap: 36px; }
  .value { max-width: 460px; }

  .modal { grid-template-columns: 1fr; max-height: 88vh; overflow-y: auto; }
  .modal__media { min-height: 280px; }
  .modal__body { padding: 32px 28px; }

  .car-arrow { display: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero .media { height: 78vh; }
  .hero__title { font-size: 19vw; }
  .brand__name { font-size: 17px; letter-spacing: 0.08em; }
  .nav-logo { height: 22px; }
  .header-right { gap: 10px; }
  .cat-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 44vw; }
  .span-8, .span-7, .span-6, .span-5, .span-4 { grid-column: span 2; }
  .cat-tile.solo { grid-column: span 2; }
  .product-card { flex-basis: 74vw; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .newsletter form { flex-direction: column; gap: 10px; }
  .newsletter button[type=submit] { padding: 15px; }
}
