/* ==========================================================================
   Ben's Golf — Direction C · Classic Sport
   Heritage golf: pine green, navy, brass/gold, crisp white, refined greys.
   Serif headlines (Lora) + clean sans body (Inter). Country-club-but-modern.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --pine:      #14432A;   /* deep pine / racing green — primary */
  --pine-700:  #0E3520;   /* darker pine for depth */
  --pine-050:  #EAF0EC;   /* faint pine wash */
  --navy:      #1B2A44;   /* classic navy */
  --navy-050:  #EBEEF3;
  --brass:     #B8892B;   /* warm gold / brass accent */
  --brass-600: #9A7020;
  --brass-050: #F6EED9;
  --cream:     #F7F4EC;   /* warm off-white ground */
  --white:     #FFFFFF;
  --ink:       #17201B;   /* near-black text with green cast */
  --grey-700:  #4A5750;
  --grey-500:  #6E7A73;
  --grey-300:  #C7CFC9;
  --grey-200:  #DEE3DF;
  --grey-100:  #EEF1EE;

  /* Type */
  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --maxw: 1280px;
  --gutter: clamp(16px, 4vw, 48px);
  --radius: 6px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 2px rgba(20,67,42,.06), 0 1px 3px rgba(20,67,42,.08);
  --shadow-md: 0 6px 18px rgba(20,67,42,.10), 0 2px 6px rgba(20,67,42,.06);
  --shadow-lg: 0 20px 48px rgba(20,67,42,.16);

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; margin: 0; letter-spacing: -.01em; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-600);
}
.eyebrow--light { color: var(--brass); }
.section { padding-block: clamp(52px, 7vw, 96px); }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 34px; flex-wrap: wrap; }
.section__title { font-size: clamp(1.7rem, 3.2vw, 2.6rem); color: var(--pine); }
.section__link { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--pine); border-bottom: 2px solid var(--brass); padding-bottom: 3px; transition: color .2s var(--ease); white-space: nowrap; }
.section__link:hover { color: var(--brass-600); }
.muted { color: var(--grey-500); }
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 14px; letter-spacing: .04em;
  padding: 15px 30px; border-radius: var(--radius); border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  text-transform: uppercase;
}
.btn--primary { background: var(--pine); color: var(--white); }
.btn--primary:hover { background: var(--pine-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--brass { background: var(--brass); color: #241A05; }
.btn--brass:hover { background: var(--brass-600); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--pine); border-color: var(--pine); }
.btn--ghost:hover { background: var(--pine); color: var(--white); }
.btn--light { background: var(--white); color: var(--pine); }
.btn--light:hover { background: var(--cream); transform: translateY(-2px); }
.btn--full { width: 100%; }
.btn--lg { padding: 17px 40px; font-size: 15px; }

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announce {
  background: var(--pine-700);
  color: var(--cream);
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
  font-weight: 500;
}
.announce b { color: var(--brass); font-weight: 700; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

/* Logo / crest lockup */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.crest {
  width: 42px; height: 42px; flex: none;
  border-radius: 50%;
  background: var(--pine);
  border: 2px solid var(--brass);
  display: grid; place-items: center;
  color: var(--brass);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  box-shadow: inset 0 0 0 4px var(--pine), inset 0 0 0 5px rgba(184,137,43,.4);
}
.logo__word { line-height: 1; }
.logo__name { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--pine); letter-spacing: -.01em; }
.logo__tag { display: block; font-size: 9.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--brass-600); margin-top: 3px; }

/* Primary nav */
.nav { justify-self: center; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: inline-block;
  padding: 9px 13px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--grey-700);
  border-radius: var(--radius);
  position: relative;
  transition: color .18s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px;
  background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--pine); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: none; background: transparent; color: var(--pine); border-radius: var(--radius);
  transition: background .18s var(--ease);
  position: relative;
}
.icon-btn:hover { background: var(--pine-050); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: 4px; right: 3px;
  background: var(--brass); color: #241A05;
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 999px; display: grid; place-items: center;
}
.nav-toggle { display: none; }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--grey-200);
  background: var(--white);
}
.mobile-nav.open { display: block; }
.mobile-nav__list { list-style: none; margin: 0; padding: 8px var(--gutter) 20px; }
.mobile-nav__list a {
  display: block; padding: 13px 4px; font-size: 15px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--pine);
  border-bottom: 1px solid var(--grey-100);
}

/* ==========================================================================
   Hero — course photography (CSS placeholder as lush fairway)
   ========================================================================== */
.hero {
  position: relative;
  color: var(--cream);
  overflow: hidden;
  background: var(--pine-700);
}
.hero__scene {
  position: absolute; inset: 0;
  /* layered fairway gradient: sky -> tree line -> fairway -> shadow */
  background:
    radial-gradient(120% 80% at 78% 12%, rgba(255,255,255,.16), transparent 55%),
    linear-gradient(180deg,
      #2E5C7A 0%,          /* soft sky */
      #3F7A63 30%,         /* tree line */
      #2E7A4E 46%,
      #257A44 60%,         /* fairway */
      #1C5E36 82%,
      #14432A 100%);
}
/* mowing stripes on the fairway */
.hero__scene::before {
  content: ""; position: absolute; left: -10%; right: -10%; bottom: 0; height: 62%;
  background: repeating-linear-gradient(105deg,
    rgba(255,255,255,.06) 0 44px,
    rgba(0,0,0,.05) 44px 88px);
  transform: perspective(520px) rotateX(58deg);
  transform-origin: bottom;
  opacity: .8;
}
/* flag on the green */
.hero__flag {
  position: absolute; right: 14%; top: 30%; width: 3px; height: 120px;
  background: linear-gradient(var(--cream), rgba(247,244,236,.4));
  z-index: 1;
}
.hero__flag::before {
  content: ""; position: absolute; top: 0; left: 3px; width: 42px; height: 26px;
  background: var(--brass);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.hero__flag::after {
  content: ""; position: absolute; bottom: -6px; left: -7px; width: 17px; height: 8px;
  border-radius: 50%; background: rgba(0,0,0,.28); filter: blur(2px);
}
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,53,32,.72) 0%, rgba(14,53,32,.30) 55%, transparent 100%); }

.hero__inner {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  min-height: clamp(460px, 62vh, 620px);
  padding-block: 64px;
}
.hero__inner--split { justify-content: space-between; gap: clamp(28px, 5vw, 72px); }
.hero__content { max-width: 620px; }

/* Featured product card floating in the hero composition */
.hero__product {
  position: relative; z-index: 2; flex: none; width: min(340px, 38vw);
  background: rgba(247,244,236,.14);
  border: 1px solid rgba(184,137,43,.5);
  border-radius: var(--radius-lg);
  padding: 14px; backdrop-filter: blur(3px);
  box-shadow: var(--shadow-lg);
}
.hero__product-media {
  position: relative; aspect-ratio: 1/1; border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(184,137,43,.4);
}
.hero__product-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: var(--brass); color: #241A05; padding: 5px 10px; border-radius: 999px;
}
.hero__product-body { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 6px 4px; }
.hero__product-name { font-family: var(--serif); font-weight: 600; font-size: 1rem; color: var(--cream); line-height: 1.25; }
.hero__product-meta { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,244,236,.72); margin-top: 3px; display: block; }
.hero__product-price { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; color: var(--brass); flex: none; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(247,244,236,.12);
  border: 1px solid rgba(184,137,43,.55);
  color: var(--cream);
  padding: 7px 15px; border-radius: 999px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(2px);
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brass); }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
}
.hero h1 em { font-style: italic; color: var(--brass); }
.hero__sub {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: rgba(247,244,236,.92);
  margin: 22px 0 32px;
  max-width: 500px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 36px; margin-top: 42px; flex-wrap: wrap; }
.hero__stat b { font-family: var(--serif); font-size: 1.7rem; color: var(--brass); display: block; }
.hero__stat span { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,244,236,.8); }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide: 1px;
}
.trust__item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 20px;
  border-left: 1px solid var(--grey-200);
}
.trust__item:first-child { border-left: none; }
.trust__icon {
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  background: var(--pine-050); color: var(--pine);
  display: grid; place-items: center;
}
.trust__icon svg { width: 20px; height: 20px; }
.trust__t { font-weight: 700; font-size: 13.5px; letter-spacing: .02em; color: var(--pine); }
.trust__d { font-size: 12px; color: var(--grey-500); }

/* ==========================================================================
   Product cards / grid
   ========================================================================== */
.product-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--grey-300); }
.card__media {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  display: grid; place-items: center;
}
.card:hover .ph__label { transform: translateY(-2px); }
.card__rank {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--serif); font-weight: 700; font-size: 15px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--pine); color: var(--brass);
  display: grid; place-items: center;
  border: 1.5px solid var(--brass);
}
.card__flag {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: var(--brass); color: #241A05;
}
.card__flag--new { background: var(--navy); color: var(--white); }
.card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card__cat { font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-600); }
.card__title { font-family: var(--serif); font-size: 1.06rem; font-weight: 600; color: var(--pine); line-height: 1.3; }
.card__stars { color: var(--brass); font-size: 12.5px; letter-spacing: 1px; margin-top: 2px; }
.card__stars span { color: var(--grey-500); letter-spacing: 0; margin-left: 6px; }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; }
.card__price { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.card__add {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--pine); border: 1.5px solid var(--grey-300);
  padding: 8px 14px; border-radius: var(--radius); background: var(--white);
  transition: all .18s var(--ease);
}
.card__add:hover { background: var(--pine); color: var(--white); border-color: var(--pine); }

/* ==========================================================================
   Real product photography — chrome-hiding frame
   Gallery screenshots carry faint baked-in chrome at the extreme edges
   ("상품 이미지" label, ‹ › arrows, a "1/6" counter, a small red badge).
   Each photo sits in an overflow:hidden frame; the <img> is scaled up and
   object-position tuned so those edges are cropped off. Aspect ratio is
   never distorted (object-fit: cover).
   ========================================================================== */
.pimg {
  position: absolute; inset: 0; overflow: hidden;
  background: var(--cream);
}
.pimg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.1);            /* crop the extreme edges (arrows/counter) */
  transition: transform .5s var(--ease);
}
.card:hover .pimg img { transform: scale(1.16); }
/* Per-image nudges so the busiest chrome (bottom-right counter, side arrows) leaves frame */
.pimg--field img   { object-position: 50% 46%; transform: scale(1.1); }
.pimg--check img   { object-position: 46% 44%; transform: scale(1.14); }
.pimg--putter img  { object-position: 50% 42%; transform: scale(1.12); }
.pimg--ball img    { object-position: 50% 48%; transform: scale(1.12); }
.pimg--bagtag img  { object-position: 46% 48%; transform: scale(1.12); }
.pimg--tees img    { object-position: 50% 50%; transform: scale(1.14); }
.pimg--marker img  { object-position: 50% 42%; transform: scale(1.42); }
.card:hover .pimg--marker img { transform: scale(1.48); }

/* CSS product placeholder */
.ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  text-align: center; padding: 22px;
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 45% at 50% 82%, rgba(0,0,0,.14), transparent 70%);
}
.ph__label {
  position: relative; z-index: 1;
  font-family: var(--serif); font-weight: 600; font-size: 1.02rem; line-height: 1.3;
  transition: transform .22s var(--ease);
}
.ph__sub { position: relative; z-index: 1; font-family: var(--sans); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; margin-top: 8px; opacity: .8; }
/* placeholder palettes */
.ph--pine   { background: linear-gradient(150deg, #1E6B42, #14432A); color: var(--cream); }
.ph--navy   { background: linear-gradient(150deg, #26406B, #1B2A44); color: var(--cream); }
.ph--brass  { background: linear-gradient(150deg, #D9AE52, #B8892B); color: #2A1E05; }
.ph--cream  { background: linear-gradient(150deg, #FBF7EC, #E9E1CE); color: var(--pine); }
.ph--sun    { background: radial-gradient(circle at 50% 40%, #F4C542, #E7A928 60%, #C98A16); color: #3A2A05; }
.ph--check  {
  background:
    linear-gradient(150deg, rgba(27,42,68,.0), rgba(27,42,68,.35)),
    repeating-conic-gradient(#1B2A44 0 25%, #F7F4EC 0 50%) 0 0 / 40px 40px;
  color: var(--white);
}
.ph--check .ph__label { background: rgba(27,42,68,.82); padding: 8px 14px; border-radius: 4px; }

/* ==========================================================================
   Category tiles
   ========================================================================== */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-tile {
  position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius-lg);
  overflow: hidden; display: flex; align-items: flex-end;
  padding: 22px; color: var(--cream);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-tile::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(14,53,32,.78)); }
.cat-tile__scene { position: absolute; inset: 0; }
/* real photo inside a category tile */
.cat-tile__scene.pimg img { transform: scale(1.14); }
.cat-tile:hover .cat-tile__scene.pimg img { transform: scale(1.2); }
.cat-tile__inner { position: relative; z-index: 1; }
.cat-tile__name { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; }
.cat-tile__meta { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--brass); margin-top: 4px; display: inline-flex; align-items: center; gap: 6px; }

/* ==========================================================================
   Kakao Friends feature band
   ========================================================================== */
.friends {
  background: var(--pine);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.friends__inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.friends__scene {
  aspect-ratio: 4 / 3; border-radius: var(--radius-lg); position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 30% 35%, #F4C542 0 70px, transparent 72px),
    radial-gradient(circle at 68% 60%, #E88C6A 0 58px, transparent 60px),
    radial-gradient(circle at 46% 74%, #F7D9E2 0 46px, transparent 48px),
    linear-gradient(150deg, #1E6B42, #0E3520);
  display: grid; place-items: center;
}
.friends__scene span { position: relative; z-index: 1; font-family: var(--serif); font-weight: 700; color: rgba(247,244,236,.9); text-align: center; padding: 0 20px; }
/* real photo inside the Kakao Friends band */
.friends__scene.pimg { border: 1px solid rgba(184,137,43,.4); }
.friends__scene.pimg img { transform: scale(1.06); }
.friends h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); color: var(--white); }
.friends h2 em { color: var(--brass); font-style: italic; }
.friends p { color: rgba(247,244,236,.9); margin: 18px 0 26px; max-width: 460px; }
.friends__chips { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.chip {
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  padding: 8px 15px; border-radius: 999px;
  background: rgba(247,244,236,.1); border: 1px solid rgba(247,244,236,.22); color: var(--cream);
}

/* ==========================================================================
   Story band (heritage)
   ========================================================================== */
.story { background: var(--white); border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); }
.story__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.story__scene {
  aspect-ratio: 5 / 4; border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background:
    linear-gradient(180deg, #3F7A63 0%, #2E7A4E 42%, #1C5E36 100%);
}
.story__scene::before {
  content: ""; position: absolute; left: -10%; right: -10%; bottom: 0; height: 58%;
  background: repeating-linear-gradient(100deg, rgba(255,255,255,.07) 0 40px, rgba(0,0,0,.05) 40px 80px);
  transform: perspective(400px) rotateX(56deg); transform-origin: bottom;
}
.story__seal {
  position: absolute; bottom: 20px; right: 20px; z-index: 1;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--cream); border: 3px double var(--brass);
  display: grid; place-items: center; text-align: center;
  font-family: var(--serif); color: var(--pine); box-shadow: var(--shadow-md);
}
.story__seal b { display: block; font-size: 1.5rem; line-height: 1; color: var(--brass-600); }
.story__seal span { font-size: 8.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--pine); }
.story h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); color: var(--pine); }
.story p { color: var(--grey-700); margin: 18px 0; }
.story__sig { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--pine); margin-top: 6px; }

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter { background: var(--navy); color: var(--white); }
.newsletter__inner { max-width: 640px; margin-inline: auto; text-align: center; }
.newsletter h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); color: var(--white); }
.newsletter h2 em { color: var(--brass); font-style: italic; }
.newsletter p { color: rgba(255,255,255,.82); margin: 14px 0 28px; }
.newsletter__form { display: flex; gap: 10px; max-width: 480px; margin-inline: auto; }
.newsletter__form input {
  flex: 1; padding: 15px 18px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08); color: var(--white); font-family: var(--sans); font-size: 15px;
}
.newsletter__form input::placeholder { color: rgba(255,255,255,.55); }
.newsletter__form input:focus { outline: none; border-color: var(--brass); background: rgba(255,255,255,.14); }
.newsletter__fine { font-size: 11.5px; color: rgba(255,255,255,.5); margin-top: 14px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--pine-700); color: rgba(247,244,236,.82); padding-block: 56px 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(247,244,236,.14); }
.footer-brand .logo__name { color: var(--cream); }
.footer-brand p { font-size: 13.5px; margin: 16px 0 20px; max-width: 300px; color: rgba(247,244,236,.7); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(247,244,236,.24); display: grid; place-items: center; color: var(--cream); transition: all .18s var(--ease); }
.footer-social a:hover { background: var(--brass); border-color: var(--brass); color: #241A05; }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(247,244,236,.78); transition: color .18s var(--ease); }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 22px; font-size: 12.5px; color: rgba(247,244,236,.6); flex-wrap: wrap; }
.footer-bottom .seals { display: flex; gap: 14px; align-items: center; }
.footer-bottom .seals span { border: 1px solid rgba(247,244,236,.2); border-radius: 4px; padding: 4px 9px; letter-spacing: .1em; text-transform: uppercase; font-size: 10.5px; }

/* ==========================================================================
   Corner direction badge
   ========================================================================== */
.dir-badge {
  position: fixed; right: 16px; bottom: 16px; z-index: 200;
  background: var(--pine); color: var(--brass);
  border: 1.5px solid var(--brass);
  font-family: var(--sans); font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  padding: 9px 14px; border-radius: 999px;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
}

/* ==========================================================================
   Page header (collection / about)
   ========================================================================== */
.page-hero { background: var(--pine); color: var(--cream); position: relative; overflow: hidden; }
.page-hero__scene { position: absolute; inset: 0; background: linear-gradient(120deg, #1E6B42, #0E3520); opacity: .55; }
.page-hero__scene::before { content: ""; position: absolute; left: -10%; right: -10%; bottom: 0; height: 60%; background: repeating-linear-gradient(102deg, rgba(255,255,255,.05) 0 40px, rgba(0,0,0,.04) 40px 80px); transform: perspective(420px) rotateX(56deg); transform-origin: bottom; }
.page-hero__inner { position: relative; z-index: 1; padding-block: clamp(44px, 6vw, 76px); }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); color: var(--white); }
.page-hero p { color: rgba(247,244,236,.86); margin-top: 12px; max-width: 560px; }

/* Breadcrumb */
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.crumbs a { color: var(--brass); font-weight: 600; }
.crumbs span { color: rgba(247,244,236,.6); }
.crumbs--dark a { color: var(--brass-600); }
.crumbs--dark span { color: var(--grey-500); }

/* ==========================================================================
   Collection — filter/sort bar
   ========================================================================== */
.toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--grey-200); margin-bottom: 34px; flex-wrap: wrap;
}
.toolbar__filters { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--grey-300);
  background: var(--white); color: var(--grey-700); transition: all .18s var(--ease);
}
.pill:hover { border-color: var(--pine); color: var(--pine); }
.pill--active { background: var(--pine); color: var(--white); border-color: var(--pine); }
.toolbar__right { display: flex; align-items: center; gap: 12px; }
.toolbar__count { font-size: 13px; color: var(--grey-500); }
.select {
  font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--pine);
  padding: 9px 34px 9px 14px; border-radius: var(--radius); border: 1.5px solid var(--grey-300);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2314432A' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  -webkit-appearance: none; appearance: none;
}

/* ==========================================================================
   PDP
   ========================================================================== */
.pdp { padding-block: 40px clamp(52px, 7vw, 90px); }
.pdp__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 4vw, 60px); align-items: start; }
.gallery__main {
  aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden;
  position: relative; border: 1px solid var(--grey-200);
}
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.gallery__thumb {
  aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; position: relative;
  border: 2px solid transparent; cursor: pointer; transition: border-color .18s var(--ease);
}
.gallery__thumb.active { border-color: var(--pine); }
.gallery__thumb:hover { border-color: var(--brass); }

.pdp__info { position: sticky; top: 96px; }
.pdp__cat { font-size: 11.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-600); }
.pdp h1 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--pine); margin: 8px 0 12px; }
.pdp__rating { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.pdp__rating .stars { color: var(--brass); letter-spacing: 2px; }
.pdp__rating span { font-size: 13px; color: var(--grey-500); }
.pdp__price { font-family: var(--serif); font-weight: 700; font-size: 2rem; color: var(--ink); }
.pdp__price small { font-size: 1rem; color: var(--grey-500); font-weight: 400; text-decoration: line-through; margin-left: 10px; font-family: var(--sans); }
.pdp__desc { color: var(--grey-700); margin: 18px 0 26px; }
.pdp__field { margin-bottom: 22px; }
.pdp__label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pine); margin-bottom: 10px; display: block; }
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  padding: 10px 16px; border-radius: var(--radius); border: 1.5px solid var(--grey-300);
  background: var(--white); font-size: 13px; font-weight: 600; color: var(--grey-700);
  transition: all .18s var(--ease);
}
.swatch:hover { border-color: var(--pine); }
.swatch--active { border-color: var(--pine); background: var(--pine-050); color: var(--pine); }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--grey-300); border-radius: var(--radius); overflow: hidden; }
.qty button { width: 44px; height: 46px; border: none; background: var(--white); font-size: 18px; color: var(--pine); }
.qty button:hover { background: var(--pine-050); }
.qty input { width: 46px; height: 46px; border: none; text-align: center; font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--ink); -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp__buy { display: flex; gap: 12px; margin: 8px 0 22px; }
.pdp__buy .btn--primary { flex: 1; }
.pdp__assure { display: flex; flex-direction: column; gap: 12px; padding: 20px; background: var(--pine-050); border-radius: var(--radius-lg); border: 1px solid var(--grey-200); }
.pdp__assure div { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--grey-700); }
.pdp__assure svg { width: 18px; height: 18px; color: var(--pine); flex: none; }

/* PDP details / spec */
.details { margin-top: clamp(52px, 6vw, 84px); }
.details__tabs { display: flex; gap: 6px; border-bottom: 2px solid var(--grey-200); margin-bottom: 30px; flex-wrap: wrap; }
.details__tab { padding: 12px 20px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-500); border-bottom: 2px solid transparent; margin-bottom: -2px; }
.details__tab--active { color: var(--pine); border-bottom-color: var(--brass); }
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 40px; max-width: 720px; }
.specs__row { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--grey-200); }
.specs__row dt { font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--grey-500); }
.specs__row dd { margin: 0; font-size: 14px; font-weight: 600; color: var(--ink); text-align: right; }
.details__img-wrap { margin-top: 34px; max-width: 760px; margin-inline: auto; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--grey-200); box-shadow: var(--shadow-sm); }
.details__img-cap { text-align: center; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-500); margin: 14px 0 0; }

/* ==========================================================================
   About
   ========================================================================== */
.prose { max-width: 720px; }
.prose p { color: var(--grey-700); font-size: 1.05rem; margin: 0 0 20px; }
.prose h2 { color: var(--pine); font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 40px 0 16px; }
.lead { font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.6rem); color: var(--pine); line-height: 1.4; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value {
  background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius-lg);
  padding: 28px 26px; transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value__num { font-family: var(--serif); font-size: 1.1rem; color: var(--brass); font-weight: 700; }
.value h3 { font-size: 1.25rem; color: var(--pine); margin: 10px 0 8px; }
.value p { font-size: 14px; color: var(--grey-700); margin: 0; }

.about-cta { background: var(--pine); color: var(--cream); border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden; }
.about-cta::before { content: ""; position: absolute; left: -10%; right: -10%; bottom: 0; height: 55%; background: repeating-linear-gradient(102deg, rgba(255,255,255,.05) 0 40px, rgba(0,0,0,.05) 40px 80px); transform: perspective(420px) rotateX(56deg); transform-origin: bottom; }
.about-cta > * { position: relative; z-index: 1; }
.about-cta h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); color: var(--white); }
.about-cta h2 em { color: var(--brass); font-style: italic; }
.about-cta p { color: rgba(247,244,236,.88); margin: 16px auto 28px; max-width: 480px; }

.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-band__item { text-align: center; padding: 24px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--grey-200); }
.stat-band__item b { font-family: var(--serif); font-size: 2.4rem; color: var(--pine); display: block; }
.stat-band__item span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--brass-600); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .nav { display: none; }
  .nav-toggle { display: grid; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .friends__inner, .story__inner, .pdp__grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .product-row, .product-grid { grid-template-columns: repeat(3, 1fr); }
  .pdp__info { position: static; }
  .hero__product { display: none; }
}
@media (max-width: 820px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(3) { border-left: none; }
  .trust__item:nth-child(odd) { border-left: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .values, .stat-band { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .product-row, .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .newsletter__form { flex-direction: column; }
  .hero__stats { gap: 24px; }
  .details__img-wrap { border-radius: var(--radius); }
  .section__head { align-items: flex-start; }
}
@media (max-width: 400px) {
  .product-row, .product-grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr; }
  .logo__name { font-size: 17px; }
}
