/* ============================================================
   SALVANO — wearsalvano.com
   Design system + site styles
   ============================================================ */

:root {
  /* Palette */
  --ivory: #f6f3ec;
  --ivory-soft: #efeadf;
  --ink: #14161a;
  --ink-soft: #3a3f47;
  --ink-faint: #7c828c;
  --green: #1e3a2f;
  --green-deep: #142921;
  --gold: #b08d4c;
  --gold-soft: #cfb98e;
  --line: rgba(20, 22, 26, 0.12);

  /* Type */
  --font-display: "Marcellus", "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;

  --shadow-card: 0 18px 40px -18px rgba(20, 22, 26, 0.25);
  --shadow-pop: 0 24px 60px -20px rgba(20, 22, 26, 0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

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

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  max-width: 22ch;
}

.section-sub {
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: 1rem;
}

/* ============================================================
   Announcement bar
   ============================================================ */
.announce {
  background: var(--green-deep);
  color: var(--ivory);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.55rem var(--pad);
}
.announce strong { color: var(--gold-soft); font-weight: 600; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 0.25rem 0;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 1.1rem; }

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--ivory);
  font-size: 0.7rem;
  font-weight: 600;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green);
  color: var(--ivory);
  box-shadow: 0 14px 30px -14px rgba(30, 58, 47, 0.7);
}
.btn-primary:hover { background: var(--green-deep); }

.btn-outline {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); }

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: #9a7a3e; }

.btn-block { width: 100%; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(176, 141, 76, 0.16), transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-soft) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.3rem);
  max-width: 14ch;
}

.hero p.lede {
  margin-top: 1.4rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-props {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-props li { list-style: none; display: flex; align-items: center; gap: 0.5rem; }
.hero-props .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual .plinth {
  position: absolute;
  inset: 8% 4%;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  border-radius: calc(var(--radius) * 1.6);
  box-shadow: var(--shadow-pop);
}
.hero-visual .plinth::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(246, 243, 236, 0.18);
  border-radius: calc(var(--radius) * 1.2);
}

.hero-visual svg.garment {
  position: relative;
  width: min(78%, 380px);
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.35));
}

.hero-badge {
  position: absolute;
  top: 4%;
  right: 0;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   Marquee strip
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.marquee-track span { display: flex; align-items: center; gap: 3.5rem; }
.marquee-track em { font-style: normal; color: var(--gold-soft); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Shop / product cards
   ============================================================ */
.section { padding-top: clamp(3.5rem, 8vw, 6.5rem); padding-bottom: clamp(3.5rem, 8vw, 6.5rem); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.product-media {
  position: relative;
  background: linear-gradient(180deg, #fdfcf9 0%, var(--ivory-soft) 100%);
  padding: 2.2rem 2.6rem 1.6rem;
}
.product-media svg { width: 100%; height: auto; }

.badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--green);
  color: var(--ivory);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
}
.badge.gold { background: var(--gold); }

.product-info { padding: 1.2rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }

.product-name { font-family: var(--font-display); font-size: 1.15rem; }
.product-color { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }

.product-price { display: flex; align-items: baseline; gap: 0.6rem; margin-top: auto; }
.price-now { font-weight: 600; font-size: 1.05rem; }
.price-was { color: var(--ink-faint); text-decoration: line-through; font-size: 0.88rem; }

.product-card .btn { margin-top: 0.9rem; padding: 0.75rem 1.4rem; font-size: 0.72rem; }

/* ============================================================
   Feature band (dark)
   ============================================================ */
.features {
  background: linear-gradient(165deg, var(--green-deep) 0%, #0e1d17 100%);
  color: var(--ivory);
}
.features .eyebrow { color: var(--gold-soft); }
.features .section-sub { color: rgba(246, 243, 236, 0.72); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}

.feature-card {
  border: 1px solid rgba(246, 243, 236, 0.16);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  background: rgba(246, 243, 236, 0.04);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover { background: rgba(246, 243, 236, 0.08); border-color: rgba(207, 185, 142, 0.5); }

.feature-num {
  font-family: var(--font-display);
  color: var(--gold-soft);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}
.feature-card h3 { font-size: 1.25rem; margin: 0.7rem 0 0.6rem; }
.feature-card p { font-size: 0.92rem; color: rgba(246, 243, 236, 0.75); }

/* ============================================================
   Comparison table
   ============================================================ */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }

table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.92rem;
}
.compare th, .compare td {
  padding: 1rem 1.3rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.compare th:first-child, .compare td:first-child {
  text-align: left;
  font-weight: 500;
}
.compare thead th {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: var(--ivory);
}
.compare thead th.us {
  color: var(--ivory);
  background: var(--green);
}
.compare td.us { background: rgba(30, 58, 47, 0.05); font-weight: 600; color: var(--green); }
.compare tbody tr:last-child td { border-bottom: none; }
.check { color: var(--green); font-weight: 700; }
.cross { color: #b0554c; font-weight: 700; }

/* ============================================================
   Story split
   ============================================================ */
.story-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.story-visual {
  position: relative;
  border-radius: calc(var(--radius) * 1.4);
  background:
    radial-gradient(400px 300px at 20% 15%, rgba(176, 141, 76, 0.35), transparent 60%),
    linear-gradient(150deg, var(--green) 0%, var(--green-deep) 85%);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}
.story-visual .monogram {
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 10rem);
  color: rgba(246, 243, 236, 0.14);
  letter-spacing: 0.1em;
}
.story-visual .plate {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
  background: rgba(20, 22, 26, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(246, 243, 236, 0.18);
  border-radius: var(--radius);
  color: var(--ivory);
  padding: 1rem 1.2rem;
  font-size: 0.85rem;
}
.story-visual .plate strong { color: var(--gold-soft); font-weight: 600; }

.story-copy p { color: var(--ink-soft); margin-top: 1.1rem; max-width: 56ch; }

.story-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-top: 2.2rem;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green);
}
.stat span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }

/* ============================================================
   Reviews
   ============================================================ */
.reviews { background: var(--ivory-soft); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.85rem; }
.review-card blockquote { font-size: 0.98rem; color: var(--ink-soft); }
.review-card figcaption { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.review-card figcaption b { color: var(--ink); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: clamp(2rem, 5vw, 3rem) auto 0; }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0.2rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 0.2rem 1.4rem; color: var(--ink-soft); max-width: 60ch; }

/* ============================================================
   Email capture
   ============================================================ */
.capture {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--ivory);
  border-radius: calc(var(--radius) * 1.6);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.capture::before {
  content: "S";
  position: absolute;
  font-family: var(--font-display);
  font-size: 24rem;
  color: rgba(246, 243, 236, 0.05);
  right: -2rem;
  top: -6rem;
  line-height: 1;
}
.capture h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.capture p { color: rgba(246, 243, 236, 0.75); margin: 1rem auto 0; max-width: 48ch; }

.capture-form {
  display: flex;
  gap: 0.7rem;
  max-width: 480px;
  margin: 2rem auto 0;
}
.capture-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(246, 243, 236, 0.35);
  background: rgba(246, 243, 236, 0.08);
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  color: var(--ivory);
  font: inherit;
  font-size: 0.92rem;
}
.capture-form input::placeholder { color: rgba(246, 243, 236, 0.55); }
.capture-form input:focus { outline: 2px solid var(--gold-soft); outline-offset: 1px; }
.capture-note { margin-top: 1rem; font-size: 0.78rem; color: rgba(246, 243, 236, 0.55); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(246, 243, 236, 0.7);
  margin-top: clamp(3.5rem, 8vw, 6.5rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: 2.5rem;
}

.footer-brand .logo { color: var(--ivory); font-size: 1.3rem; }
.footer-brand p { font-size: 0.9rem; margin-top: 1rem; max-width: 34ch; }

.footer-col h4 {
  color: var(--ivory);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 0.28rem 0;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold-soft); }

.footer-bottom {
  border-top: 1px solid rgba(246, 243, 236, 0.12);
  padding: 1.3rem var(--pad);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.78rem;
}

/* ============================================================
   Cart drawer
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 22, 26, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 90;
}
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--ivory);
  z-index: 100;
  transform: translateX(105%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(20, 22, 26, 0.25);
}
body.cart-open .cart-overlay { opacity: 1; pointer-events: auto; }
body.cart-open .cart-drawer { transform: translateX(0); }
body.cart-open { overflow: hidden; }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-size: 1.3rem; }
.cart-close { font-size: 1.6rem; line-height: 1; color: var(--ink-faint); }
.cart-close:hover { color: var(--ink); }

.cart-items { flex: 1; overflow-y: auto; padding: 1.2rem 1.5rem; display: flex; flex-direction: column; gap: 1.1rem; }

.cart-empty { text-align: center; color: var(--ink-faint); margin-top: 3rem; font-size: 0.95rem; }

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem;
  background: #fff;
}
.cart-item .thumb {
  width: 64px; height: 72px;
  border-radius: 8px;
  background: var(--ivory-soft);
  display: grid;
  place-items: center;
  padding: 6px;
}
.cart-item .thumb svg { width: 100%; height: auto; }
.cart-item-name { font-size: 0.9rem; font-weight: 600; }
.cart-item-meta { font-size: 0.78rem; color: var(--ink-faint); }
.cart-item-qty { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem; }
.cart-item-qty button {
  width: 22px; height: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid; place-items: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.cart-item-qty button:hover { background: var(--ivory-soft); }
.cart-item-price { font-weight: 600; font-size: 0.92rem; }
.cart-item-remove { font-size: 0.72rem; color: var(--ink-faint); text-decoration: underline; margin-top: 0.4rem; }

.cart-foot { border-top: 1px solid var(--line); padding: 1.3rem 1.5rem; }
.cart-subtotal { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: 0.4rem; }
.cart-ship-note { font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 1rem; }

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translate(-50%, 150%);
  background: var(--ink);
  color: var(--ivory);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.85rem;
  z-index: 120;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-pop);
}
.toast.show { transform: translate(-50%, 0); }

/* ============================================================
   Product page
   ============================================================ */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  align-items: start;
}

.crumbs { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); padding-top: 1.5rem; }
.crumbs a:hover { color: var(--ink); }

.pdp-gallery { position: sticky; top: 92px; }
.pdp-stage {
  background: linear-gradient(180deg, #fdfcf9 0%, var(--ivory-soft) 100%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.3);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  place-items: center;
}
.pdp-stage svg { width: min(100%, 420px); }
.pdp-thumbs { display: flex; gap: 0.8rem; margin-top: 1rem; }
.pdp-thumb {
  width: 74px; height: 84px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pdp-thumb.active { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }
.pdp-thumb svg { width: 100%; height: auto; }

.pdp-info .rating { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 0.8rem; }

.pdp-info h1 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); max-width: 16ch; }

.pdp-tag { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: 0.7rem; }

.pdp-price { display: flex; align-items: baseline; gap: 0.8rem; margin: 1.2rem 0 0.3rem; }
.pdp-price .price-now { font-size: 1.5rem; }
.pdp-price .save {
  background: rgba(176, 141, 76, 0.14);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.pdp-ship { font-size: 0.82rem; color: var(--ink-faint); }

.opt-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 1.7rem 0 0.7rem;
}
.opt-label span:last-child { color: var(--ink-faint); font-weight: 400; letter-spacing: 0.04em; text-transform: none; }

.swatches { display: flex; gap: 0.7rem; }
.swatch {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 1px solid var(--line);
  outline-offset: 3px;
  transition: outline-color 0.2s ease;
}
.swatch.active { outline: 2px solid var(--green); }

.sizes { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.size-btn {
  min-width: 52px;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  background: #fff;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.size-btn:hover { border-color: var(--ink); }
.size-btn.active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.pdp-cta { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.8rem; }

.pdp-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.2rem;
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.pdp-perks li { list-style: none; display: flex; gap: 0.5rem; align-items: center; }
.pdp-perks .check { font-size: 0.8rem; }

.pdp-accordions { margin-top: 2rem; border-top: 1px solid var(--line); }

.size-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin-top: 0.5rem; }
.size-table th, .size-table td { border: 1px solid var(--line); padding: 0.55rem 0.8rem; text-align: center; }
.size-table th { background: var(--ivory-soft); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .story-inner { grid-template-columns: 1fr; }
  .pdp { grid-template-columns: 1fr; }
  .pdp-gallery { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .capture-form { flex-direction: column; }
  .pdp-perks { grid-template-columns: 1fr; }
}

/* ============================================================
   Interior pages (story, policies, contact, size guide)
   ============================================================ */
.page-hero {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-soft) 100%);
  border-bottom: 1px solid var(--line);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); max-width: 22ch; }
.page-hero .sub { color: var(--ink-soft); max-width: 58ch; margin-top: 1rem; }

.prose {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad);
}
.policy-meta {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 2rem;
}
.prose h2 { font-size: 1.6rem; margin: 2.6rem 0 0.9rem; }
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin: 1.8rem 0 0.6rem; }
.prose p { color: var(--ink-soft); margin-bottom: 1rem; }
.prose ul, .prose ol { color: var(--ink-soft); margin: 0 0 1rem 1.25rem; }
.prose li { margin-bottom: 0.45rem; }
.prose a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--green-deep); }
.prose .btn { text-decoration: none; }

.callout {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  margin: 1.6rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.callout strong { color: var(--ink); }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  max-width: 1020px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad);
  align-items: start;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
}
.contact-card h3 { font-size: 1.3rem; margin-bottom: 0.9rem; }
.contact-card p { font-size: 0.94rem; color: var(--ink-soft); margin-bottom: 0.9rem; }
.contact-card .meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-faint);
  margin: 1.4rem 0 0.3rem;
}
.contact-card a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}

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

/* ============================================================
   Message widget (floating, injected on every page)
   ============================================================ */
.chat-widget {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ivory);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -10px rgba(20, 22, 26, 0.45);
  transition: background 0.2s ease, transform 0.2s ease;
}
.chat-toggle:hover { background: var(--green-deep); transform: translateY(-2px); }
.chat-toggle svg { width: 24px; height: 24px; }
.chat-toggle .icon-close { display: none; font-size: 1.5rem; line-height: 1; }
.chat-widget.open .chat-toggle .icon-chat { display: none; }
.chat-widget.open .chat-toggle .icon-close { display: block; }

.chat-panel {
  width: min(340px, calc(100vw - 2.8rem));
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.chat-widget.open .chat-panel { opacity: 1; transform: none; pointer-events: auto; }

.chat-head {
  background: var(--green-deep);
  color: var(--ivory);
  padding: 1rem 1.2rem;
}
.chat-head strong { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.04em; }
.chat-head p { font-size: 0.76rem; color: rgba(246, 243, 236, 0.72); margin-top: 0.2rem; }

.chat-body { padding: 1.1rem 1.2rem 1.2rem; max-height: 60vh; overflow-y: auto; }
.chat-body .chat-note { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1rem; }
.chat-body .form-field { margin-bottom: 0.8rem; }
.chat-body .form-field input, .chat-body .form-field textarea { padding: 0.65rem 0.85rem; font-size: 0.9rem; }
.chat-body .btn { padding: 0.75rem 1.4rem; font-size: 0.76rem; }

@media (max-width: 640px) {
  .chat-widget { right: 1rem; bottom: 1rem; }
}
