/* ===========================================================
   EVIL FOX — Countryside Luxury
   Design language: Schoffel (British countryside heritage)
   × Rolls-Royce (restrained, precision luxury)
   =========================================================== */

:root {
  /* Palette */
  --forest-black: #0c1410;
  --forest: #14231a;
  --forest-deep: #0e1a13;
  --forest-mid: #1c2f22;
  --brass: #b08d57;
  --brass-light: #d9bb85;
  --brass-dim: #8a6c3f;
  --burgundy: #46141c;
  --cream: #f4efe4;
  --stone: #ddd3bf;
  --stone-dim: #a89d89;
  --line-on-dark: rgba(244, 239, 228, 0.14);
  --line-on-light: rgba(14, 26, 19, 0.12);

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

  /* Rhythm */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--forest-black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, p, figure { margin: 0; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 500;
}

h1, h2, h3, .font-display { font-family: var(--font-display); font-weight: 500; letter-spacing: 0.005em; }

h2.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.12;
  color: var(--cream);
}
.on-light h2.section-title,
.on-light .eyebrow { color: var(--forest-deep); }
.on-light .eyebrow { color: var(--brass-dim); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--brass);
  border-radius: var(--radius);
  background: transparent;
  color: var(--cream);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--brass); color: var(--forest-black); border-color: var(--brass); }
.btn-solid { background: var(--brass); color: var(--forest-black); }
.btn-solid:hover { background: var(--brass-light); border-color: var(--brass-light); }
.btn-ghost-dark { border-color: var(--forest-deep); color: var(--forest-deep); }
.btn-ghost-dark:hover { background: var(--forest-deep); color: var(--cream); border-color: var(--forest-deep); }
.btn-full { width: 100%; justify-content: center; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; }
.btn[disabled]:hover { background: transparent; color: var(--cream); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(12, 20, 16, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom-color: var(--line-on-dark);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s var(--ease);
}
.logo:hover { opacity: 0.85; }
.logo-icon { height: 61px; width: auto; display: block; flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--cream);
}
.logo-text small {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-top: 5px;
}
.footer-brand .logo-icon { height: 38px; }
.footer-brand .logo-text { font-size: 1.4rem; }

.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--brass-light);
  transition: right 0.35s var(--ease);
}
.main-nav a:hover { color: var(--cream); }
.main-nav a:hover::after { right: 0; }

.nav-toggle {
  display: none;
  background: none; border: none; color: var(--cream);
  width: 34px; height: 24px; position: relative; z-index: 210;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px; background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span { top: 50%; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-8px) rotate(-45deg); }

.header-actions { display: flex; align-items: center; gap: 22px; }
.cart-toggle {
  position: relative; background: none; border: none; color: var(--cream);
  width: 24px; height: 24px; padding: 0; display: flex; align-items: center; justify-content: center;
  z-index: 210;
}
.cart-toggle svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: -7px; right: -9px;
  background: var(--brass); color: var(--forest-black);
  font-size: 0.6rem; font-weight: 700; line-height: 1;
  min-width: 16px; height: 16px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0 3px;
}

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(9, 15, 11, 0.6);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
}
.cart-open .cart-overlay { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw);
  background: var(--forest-black); z-index: 201; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
  border-left: 1px solid var(--line-on-dark);
}
.cart-open .cart-drawer { transform: translateX(0); }

.cart-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px; border-bottom: 1px solid var(--line-on-dark); flex-shrink: 0;
}
.cart-drawer-head h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); font-weight: 500; }
.cart-close { background: none; border: none; color: var(--stone); width: 22px; height: 22px; padding: 0; }
.cart-close svg { width: 18px; height: 18px; }
.cart-close:hover { color: var(--cream); }

.cart-body { flex: 1; overflow-y: auto; padding: 24px; }
.cart-empty { color: var(--stone-dim); font-size: 0.92rem; text-align: center; padding: 60px 0; }

.cart-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line-on-dark); }
.cart-item:first-child { padding-top: 0; }
.cart-item img { width: 64px; height: 76px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; background: var(--forest-mid); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title { font-size: 0.9rem; color: var(--cream); }
.cart-item-variant { font-size: 0.7rem; color: var(--stone-dim); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.08em; }
.cart-item-row { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--stone); }
.cart-item-qty button {
  background: none; border: 1px solid var(--line-on-dark); color: var(--cream);
  width: 22px; height: 22px; border-radius: 2px; font-size: 0.8rem; line-height: 1; padding: 0;
}
.cart-item-qty button:hover { border-color: var(--brass-light); }
.cart-item-price { font-size: 0.86rem; color: var(--brass-light); font-family: var(--font-display); }
.cart-item-remove {
  font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone-dim);
  text-decoration: underline; margin-top: 10px; background: none; border: none; padding: 0;
}
.cart-item-remove:hover { color: var(--cream); }

.cart-recommend { margin-top: 8px; padding-top: 22px; border-top: 1px solid var(--line-on-dark); }
.cart-recommend-label { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-light); display: block; margin-bottom: 14px; }
.cart-recommend-card { display: flex; gap: 12px; align-items: center; }
.cart-recommend-card img { width: 52px; height: 62px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.cart-recommend-card .rec-info { flex: 1; min-width: 0; }
.cart-recommend-card .rec-title { display: block; font-size: 0.84rem; color: var(--cream); }
.cart-recommend-card .rec-title:hover { color: var(--brass-light); }
.cart-recommend-card .rec-price { font-size: 0.76rem; color: var(--stone-dim); margin-top: 3px; }
.cart-recommend-card button {
  flex-shrink: 0; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 12px;
  border: 1px solid var(--brass); color: var(--brass-light); background: none; border-radius: var(--radius);
}
.cart-recommend-card button:hover { background: var(--brass); color: var(--forest-black); }

.cart-footer { padding: 22px 24px 28px; border-top: 1px solid var(--line-on-dark); flex-shrink: 0; }
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.9rem; color: var(--stone); margin-bottom: 16px; }
.cart-subtotal span:last-child { font-family: var(--font-display); color: var(--brass-light); font-size: 1.2rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(48px, 8vw, 96px);
  background: linear-gradient(180deg, rgba(9,15,11,0.35) 0%, rgba(9,15,11,0.55) 55%, rgba(9,15,11,0.96) 100%), url("../images/products/DSC03291.jpg") center 30%/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(12,20,16,0) 0%, rgba(12,20,16,0.5) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }

@media (min-width: 981px) {
  .hero-content { max-width: 520px; margin-left: 0; margin-right: 0; padding-top: 90px; }
  .hero h1 { font-size: 2.5rem; line-height: 1.16; }
  .hero p.lede { max-width: 44ch; }
}
.hero .eyebrow { display: inline-block; margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.04;
  color: var(--cream);
  text-wrap: balance;
}
.hero p.lede {
  margin-top: 22px;
  max-width: 46ch;
  color: var(--stone);
  font-size: 1.05rem;
}
.hero-actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--stone-dim); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  z-index: 2;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--brass-light), transparent); animation: pulse-line 2.2s ease-in-out infinite; }
@keyframes pulse-line { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: clamp(64px, 10vw, 128px) 0; }
.on-light { background: var(--cream); color: var(--forest-deep); }
.on-forest { background: var(--forest); }
.on-black { background: var(--forest-black); }

.section-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  margin-bottom: clamp(32px, 5vw, 56px); flex-wrap: wrap;
}
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head p.desc { max-width: 42ch; color: var(--stone-dim); margin-top: 14px; }
.on-light .section-head p.desc { color: #6b6252; }

/* ---------- Story split ---------- */
.story {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center;
}
.story figure { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); }
.story figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.story:hover figure img { transform: scale(1.04); }
.story .frame {
  position: absolute; inset: 14px; border: 1px solid rgba(244,239,228,0.5); pointer-events: none;
}
.story-copy p { margin-top: 20px; color: #4a4032; max-width: 48ch; }
.story-copy .stat-row { display: flex; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.story-copy .stat b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--brass-dim); margin-bottom: 6px; }
.story-copy .stat span { display: block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: #6b6252; line-height: 1.7; }
.on-black .story-copy p { color: var(--stone-dim); }
.on-black .story-copy .stat span { color: var(--stone-dim); }

/* ---------- New arrival video spotlight ---------- */
.spotlight-section { padding: 0; }
.spotlight-hero {
  position: relative; display: flex; align-items: flex-end;
  min-height: clamp(480px, 58vw, 700px); overflow: hidden;
}
.spotlight-bg-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.spotlight-hero:hover .spotlight-bg-video { transform: scale(1.04); }
.spotlight-tint {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(12,20,16,0.2) 0%, rgba(12,20,16,0.4) 45%, rgba(12,20,16,0.88) 100%);
}
.spotlight-content { position: relative; z-index: 2; max-width: 560px; padding-top: 64px; padding-bottom: 64px; }
.spotlight-content .eyebrow { display: block; margin-top: 16px; }
.spotlight-content h2 { margin-top: 8px; color: var(--cream); }
.spotlight-content p { margin-top: 18px; max-width: 46ch; color: var(--stone); }
.spotlight-badge {
  display: inline-block; background: var(--brass); color: var(--forest-black);
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  padding: 8px 14px; border-radius: var(--radius);
}
.spotlight-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--brass-light); margin-top: 24px; }
.spotlight-cta {
  margin-top: 30px; display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--cream);
}
.spotlight-cta .arrow {
  width: 40px; height: 40px; border: 1px solid var(--brass-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.3s var(--ease);
}
.spotlight-cta .arrow svg { width: 16px; height: 16px; }
.spotlight-hero:hover .spotlight-cta .arrow { background: var(--brass-light); }
@media (max-width: 760px) {
  .spotlight-hero { min-height: 560px; align-items: flex-end; }
  .spotlight-content { padding-top: 40px; padding-bottom: 40px; }
}

/* ---------- Category tiles ---------- */
.tile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 28px); }
.tile {
  position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius);
  display: flex; align-items: flex-end; padding: 30px;
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,20,16,0) 40%, rgba(12,20,16,0.9) 100%);
}
.tile:hover img { transform: scale(1.06); }
.tile-inner { position: relative; z-index: 2; width: 100%; display: flex; justify-content: space-between; align-items: flex-end; }
.tile-inner h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--cream); }
.tile-inner .arrow {
  width: 40px; height: 40px; border: 1px solid var(--brass-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.3s var(--ease);
}
.tile:hover .tile-inner .arrow { background: var(--brass-light); }
.tile-inner .arrow svg { width: 16px; height: 16px; }

/* ---------- Product grid / cards ---------- */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.6vw, 34px);
}
.product-card { display: flex; flex-direction: column; }
.product-card figure {
  position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius);
  background: var(--forest-mid);
}
.on-light .product-card figure { background: #e9e2d2; }
.product-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease), opacity .5s ease; }
.product-card:hover figure img { transform: scale(1.05); }
.product-card figure img.alt { position: absolute; inset: 0; opacity: 0; }
.product-card:hover figure img.alt { opacity: 1; }
.product-card .badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--brass); color: var(--forest-black); padding: 6px 10px; border-radius: 1px;
}
.product-card .pc-body { padding-top: 16px; display: flex; flex-direction: column; gap: 4px; }
.product-card .pc-cat { font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass-light); }
.on-light .product-card .pc-cat { color: var(--brass-dim); }
.product-card h3 { font-size: 1.02rem; font-weight: 500; font-family: var(--font-body); color: var(--cream); }
.on-light .product-card h3 { color: var(--forest-deep); }
.product-card .pc-price { color: var(--stone-dim); font-size: 0.92rem; }
.on-light .product-card .pc-price { color: #7c7261; }
.product-card a.pc-link { display: block; }

/* ---------- Testimonial / heritage note ---------- */
.pull-quote { max-width: 820px; margin: 0 auto; text-align: center; }
.pull-quote p { font-family: var(--font-display); font-size: clamp(1.5rem, 3.4vw, 2.3rem); line-height: 1.3; color: var(--cream); }
.pull-quote cite { display: block; margin-top: 24px; font-style: normal; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-light); }

/* ---------- Newsletter / CTA band ---------- */
.cta-band {
  display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap;
  padding-top: 56px; padding-bottom: 56px;
}
.cta-band h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); max-width: 20ch; }
.field-row { display: flex; gap: 0; max-width: 420px; width: 100%; }
.field-row input {
  flex: 1; background: transparent; border: 1px solid var(--line-on-dark); border-right: none;
  padding: 14px 16px; color: var(--cream); font-family: var(--font-body); font-size: 0.9rem;
  border-radius: var(--radius) 0 0 var(--radius);
}
.field-row input::placeholder { color: var(--stone-dim); }
.field-row .btn { border-radius: 0 var(--radius) var(--radius) 0; }

/* ---------- Thank-you page ---------- */
.thank-you-section { padding-top: clamp(160px, 22vw, 220px); padding-bottom: clamp(80px, 12vw, 140px); text-align: center; }
.thank-you-content { max-width: 620px; margin: 0 auto; }
.thank-you-content h1 { margin-top: 14px; }
.thank-you-content p { margin: 18px auto 0; max-width: 48ch; color: #4a4032; }
.thank-you-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-black); border-top: 1px solid var(--line-on-dark); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-grid h4 { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 18px; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a, .footer-grid p { color: var(--stone-dim); font-size: 0.88rem; }
.footer-grid a:hover { color: var(--cream); }
.footer-brand p { margin-top: 16px; max-width: 32ch; color: var(--stone-dim); font-size: 0.88rem; }
.footer-bottom {
  border-top: 1px solid var(--line-on-dark); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px 24px;
  font-size: 0.72rem; color: var(--stone-dim); letter-spacing: 0.04em;
}
.footer-bottom a:hover { color: var(--cream); }
.footer-legal { flex: 1 1 auto; text-align: center; }

/* ---------- Discreet drawer (Banned For Life) ---------- */
.discreet {
  border: 1px solid var(--line-on-dark); border-radius: var(--radius); padding: 0;
  max-width: 780px; margin: 0 auto;
}
.discreet summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 26px; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone);
}
.discreet summary::-webkit-details-marker { display: none; }
.discreet summary .plus { transition: transform 0.3s var(--ease); color: var(--brass-light); font-size: 1rem; }
.discreet[open] summary .plus { transform: rotate(45deg); }
.discreet .discreet-body { padding: 0 26px 26px; color: var(--stone-dim); font-size: 0.9rem; }
.discreet .discreet-body ul { margin-top: 12px; }
.discreet .discreet-body li { padding: 8px 0; border-top: 1px solid var(--line-on-dark); }
.discreet .discreet-body li:first-child { border-top: none; }
.discreet .discreet-body b { color: var(--stone); font-weight: 500; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: clamp(150px, 20vw, 220px) 0 clamp(50px, 8vw, 80px);
  background: var(--forest);
  border-bottom: 1px solid var(--line-on-dark);
}
.page-hero .eyebrow { display: block; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.page-hero p { margin-top: 18px; max-width: 56ch; color: var(--stone-dim); }
.page-hero.has-photo,
.page-hero.has-photo-women,
.page-hero.has-photo-story,
.page-hero.has-photo-contact {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9);
  border-bottom-color: transparent;
  margin-bottom: -2px;
  min-height: clamp(440px, 60vw, 640px);
  display: flex;
  align-items: flex-end;
}
@media (min-width: 981px) {
  .page-hero.has-photo .wrap,
  .page-hero.has-photo-women .wrap,
  .page-hero.has-photo-story .wrap,
  .page-hero.has-photo-contact .wrap {
    max-width: 560px;
    margin-left: 0;
    margin-right: 0;
  }
}
.page-hero.has-photo {
  background: linear-gradient(180deg, rgba(12,20,16,0.15) 0%, rgba(12,20,16,0.25) 50%, rgba(12,20,16,0.55) 85%, #0c1410 100%), url("../images/products/DSC04814.jpg") center 10%/cover no-repeat;
}
.page-hero.has-photo-women {
  background: linear-gradient(180deg, rgba(12,20,16,0.15) 0%, rgba(12,20,16,0.25) 50%, rgba(12,20,16,0.55) 85%, #0c1410 100%), url("../images/products/DSC04750.jpg") center 46%/cover no-repeat;
}
.page-hero.has-photo-story {
  background: linear-gradient(180deg, rgba(12,20,16,0.15) 0%, rgba(12,20,16,0.25) 50%, rgba(12,20,16,0.55) 85%, #0c1410 100%), url("../images/products/DSC01842_caab1b91-25ce-4fcf-b51d-27d8718b2cf3.jpg") center 20%/cover no-repeat;
}
.page-hero.has-photo-contact {
  background: linear-gradient(180deg, rgba(12,20,16,0.15) 0%, rgba(12,20,16,0.25) 50%, rgba(12,20,16,0.55) 85%, #0c1410 100%), url("../images/products/DSC05603.jpg") center 18%/cover no-repeat;
}

/* ---------- Filter bar (collection pages) ---------- */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
}
.filter-chip {
  padding: 9px 18px; border: 1px solid var(--line-on-dark); border-radius: 20px;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone-dim);
  transition: all 0.25s var(--ease); background: none;
}
.filter-chip:hover { color: var(--cream); border-color: var(--brass-light); }
.filter-chip.is-active { background: var(--brass); color: var(--forest-black); border-color: var(--brass); }

/* ---------- Product detail ---------- */
.pdp {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 80px);
  padding-top: clamp(120px, 16vw, 160px);
}
.pdp-gallery, .pdp-info { min-width: 0; }
.pdp-gallery-main { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); background: var(--forest-mid); }
.pdp-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-on-dark);
  background: rgba(12, 20, 16, 0.55); backdrop-filter: blur(2px);
  color: var(--cream); display: flex; align-items: center; justify-content: center;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pdp-gallery-nav svg { width: 18px; height: 18px; }
.pdp-gallery-nav:hover { background: var(--brass); border-color: var(--brass); color: var(--forest-black); }
.pdp-gallery-nav.prev { left: 16px; }
.pdp-gallery-nav.next { right: 16px; }
.pdp-thumbs { display: flex; gap: 12px; margin-top: 14px; overflow-x: auto; padding-bottom: 4px; }
.pdp-thumbs img {
  width: 76px; height: 92px; object-fit: cover; border-radius: var(--radius); cursor: pointer;
  opacity: 0.55; transition: opacity 0.25s var(--ease); flex-shrink: 0; border: 1px solid transparent;
}
.pdp-thumbs img.is-active { opacity: 1; border-color: var(--brass-light); }
.pdp-info .breadcrumb { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone-dim); margin-bottom: 22px; }
.pdp-info .breadcrumb a:hover { color: var(--brass-light); }
.pdp-info h1 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.pdp-info .price { margin-top: 14px; font-size: 1.3rem; color: var(--brass-light); font-family: var(--font-display); }
.pdp-info .summary { margin-top: 18px; color: var(--stone); max-width: 52ch; }
.pdp-info .desc { margin-top: 18px; color: var(--stone-dim); max-width: 54ch; font-size: 0.94rem; line-height: 1.7; }
.pdp-info .desc p + p { margin-top: 14px; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 900px; }
.review-card { background: #fff; border: 1px solid var(--line-on-light); border-radius: var(--radius); padding: 28px; }
.review-stars { color: var(--brass); font-size: 1rem; letter-spacing: 2px; }
.review-text { margin-top: 14px; color: var(--forest-deep); font-size: 0.98rem; line-height: 1.6; }
.review-meta { margin-top: 18px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: #7c7261; }
.review-meta .review-name { color: var(--forest-deep); font-weight: 600; }
.review-meta .review-verified { color: var(--brass-dim); }
.review-meta .review-verified::before { content: "✓ "; }
.size-row { margin-top: 32px; }
.size-row .label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone-dim); margin-bottom: 12px; display:block; }
.size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.stock-note { margin-top: 12px; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.02em; color: #d88a73; }
.size-pill {
  min-width: 46px; padding: 10px 12px; text-align: center; border: 1px solid var(--line-on-dark);
  border-radius: var(--radius); font-size: 0.8rem; color: var(--stone); background: none;
  transition: all 0.2s var(--ease);
}
.size-pill:hover { border-color: var(--brass-light); }
.size-pill.is-selected { background: var(--brass); border-color: var(--brass); color: var(--forest-black); }
.size-pill.is-soldout {
  color: var(--stone-dim); border-color: var(--line-on-dark); background: none;
  opacity: 0.45; cursor: not-allowed; text-decoration: line-through;
}
.size-pill.is-soldout:hover { border-color: var(--line-on-dark); }
.buy-box { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line-on-dark); }
.buy-note { margin-top: 12px; font-size: 0.76rem; color: var(--stone-dim); text-align: center; }
.payment-badges { margin-top: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; justify-content: center; }
.payment-badges-label { width: 100%; text-align: center; font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone-dim); margin-bottom: 4px; }
.payment-badge {
  display: inline-flex; align-items: center; padding: 6px 12px;
  border: 1px solid var(--line-on-dark); border-radius: 20px;
  font-size: 0.68rem; letter-spacing: 0.02em; color: var(--stone);
}
.buy-box .btn[disabled] { opacity: 0.6; cursor: wait; }
.buy-box .btn.is-error { border-color: var(--burgundy); color: var(--burgundy); background: transparent; }
.pdp-info .meta-row { margin-top: 28px; display: flex; gap: 24px; flex-wrap: wrap; }
.pdp-info .meta-row div { font-size: 0.78rem; color: var(--stone-dim); display: flex; align-items: center; gap: 8px; }
.pdp-info .meta-row svg { width: 16px; height: 16px; color: var(--brass-light); }

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .story { grid-template-columns: 1fr; }
  .story figure { aspect-ratio: 16/10; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pdp { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav { position: fixed; inset: 0; background: var(--forest-black); flex-direction: column;
    justify-content: center; align-items: center; gap: 46px; transform: translateY(-100%);
    visibility: hidden; will-change: transform;
    transition: transform 0.5s var(--ease), visibility 0s linear 0.5s; z-index: 150; }
  .nav-open .main-nav { transform: translateY(0); visibility: visible; transition: transform 0.5s var(--ease); }
  .main-nav ul { flex-direction: column; align-items: center; gap: 26px; }
  .main-nav a { font-size: 0.95rem; }
  .nav-toggle { display: block; }
  .hero { align-items: flex-end; padding-bottom: 56px; min-height: 92svh; }
  .scroll-cue { display: none; }
  .tile-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .field-row { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .pdp-info h1 { margin-top: 6px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero h1 { font-size: 2.3rem; }
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form .btn { align-self: flex-start; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone-dim);
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(244, 239, 228, 0.05); border: 1px solid rgba(244, 239, 228, 0.32);
  padding: 14px 16px; color: var(--cream); font-family: var(--font-body); font-size: 0.92rem;
  border-radius: var(--radius); resize: vertical;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.form-group input:hover, .form-group select:hover, .form-group textarea:hover {
  border-color: rgba(244, 239, 228, 0.5);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; background: rgba(244, 239, 228, 0.08); border-color: var(--brass-light);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--stone-dim); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a89d89' stroke-width='1.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; }
.form-group select option { background: var(--forest); color: var(--cream); }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info .eyebrow { display: block; margin-bottom: 8px; }
.contact-info p { color: var(--stone-dim); }
.contact-info a:hover { color: var(--brass-light); }
.bot-field-wrap { position: absolute; left: -9999px; }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Product review form ---------- */
.review-form { display: flex; flex-direction: column; gap: 20px; max-width: 700px; }
.review-form .btn { align-self: flex-start; }
.review-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label span { text-transform: none; letter-spacing: normal; color: var(--stone-dim); font-size: 0.72rem; }
.review-form-note { margin-top: -4px; font-size: 0.78rem; color: var(--stone-dim); }
@media (max-width: 600px) {
  .review-form-row { grid-template-columns: 1fr; }
}

/* ---------- Size guide (product pages) ---------- */
.size-guide { margin: 22px 0 0; max-width: none; }
.size-table-wrap { overflow-x: auto; }
.size-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.size-table th, .size-table td { padding: 10px 14px; border: 1px solid var(--line-on-dark); white-space: nowrap; }
.size-table th { color: var(--brass-light); font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; }
.size-table th:first-child { text-align: left; }
.size-table td { color: var(--stone-dim); text-align: center; }
.size-table td:first-child { text-align: left; color: var(--stone); white-space: normal; }
.size-guide-note { margin-top: 14px; font-size: 0.78rem; color: var(--stone-dim); font-style: italic; }

/* ---------- Policy pages (shipping / returns) ---------- */
.policy-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) 280px;
  gap: 64px;
  align-items: start;
}
.policy-body h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  color: var(--forest-deep);
  margin: 44px 0 14px;
}
.policy-body h2:first-child { margin-top: 0; }
.policy-body h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--forest-deep);
  margin: 26px 0 8px;
}
.policy-body p { color: #4a4032; margin: 0 0 14px; max-width: 62ch; }
.policy-body ul { margin: 0 0 14px; max-width: 62ch; }
.policy-body li {
  position: relative;
  padding: 0 0 8px 20px;
  color: #4a4032;
}
.policy-body li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  background: var(--brass);
  border-radius: 50%;
}
.policy-note {
  background: rgba(176, 141, 87, 0.1);
  border: 1px solid rgba(176, 141, 87, 0.3);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 0 0 32px;
  color: #4a4032;
  font-size: 0.92rem;
}
.policy-note b { color: var(--forest-deep); }
.policy-aside {
  background: var(--forest-black);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: sticky;
  top: 110px;
}
.policy-aside .eyebrow { display: block; margin-bottom: 10px; }
.policy-aside h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); margin: 0 0 12px; font-weight: 500; }
.policy-aside p { color: var(--stone-dim); font-size: 0.88rem; margin: 0 0 20px; }
.policy-aside .btn { width: 100%; justify-content: center; }
.policy-aside-links { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-on-dark); }
.policy-aside-links a { display: block; font-size: 0.84rem; color: var(--stone); padding: 6px 0; }
.policy-aside-links a:hover { color: var(--brass-light); }
@media (max-width: 900px) {
  .policy-grid { grid-template-columns: 1fr; gap: 40px; }
  .policy-aside { position: static; }
}

/* ---------- Cookie notice ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 300;
  max-width: 640px; margin: 0 auto;
  background: var(--forest-black); border: 1px solid var(--line-on-dark); border-radius: var(--radius);
  padding: 20px 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(140%); opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner p { flex: 1 1 260px; color: var(--stone); font-size: 0.84rem; line-height: 1.6; margin: 0; }
.cookie-banner a { text-decoration: underline; color: var(--stone); }
.cookie-banner a:hover { color: var(--brass-light); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 480px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
}
