:root {
  --ink: #171513;
  --ink-soft: #655f59;
  --canvas: #f8f5f0;
  --surface: #ffffff;
  --rose: #f2deda;
  --rose-strong: #e7b8b0;
  --signal: #c8463d;
  --signal-dark: #8f2e2a;
  --gold: #9b793d;
  --line: #ded7cf;
  --verified: #366b57;
  --max: 1200px;
  --header-height: 78px;
  --shadow: 0 22px 60px rgba(52, 35, 25, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #f2a59c; outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 2000;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 780px); margin-inline: auto; }
.section { padding: 100px 0; }
.section-sm { padding: 68px 0; }
.section-line { border-top: 1px solid var(--line); }
.surface-section { background: var(--surface); }
.rose-section { background: linear-gradient(135deg, #f4e8e4, var(--rose)); }
.dark-section { background: var(--ink); color: #fff; }
.dark-section .eyebrow, .dark-section .muted { color: #d8cec4; }
.dark-section a:not(.button) { color: white; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--signal-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.035em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 7vw, 5.8rem); font-weight: 740; }
.page-hero h1, .product-copy h1 { font-size: clamp(2.35rem, 5.2vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 720; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 720; }
p { margin: 0 0 1em; }
.lead { color: var(--ink-soft); font-size: clamp(1.08rem, 1.8vw, 1.3rem); line-height: 1.55; max-width: 62ch; }
.muted { color: var(--ink-soft); }
.fine-print { color: var(--ink-soft); font-size: 0.84rem; line-height: 1.5; }
.content-copy { max-width: 68ch; }
.content-copy h2 { margin: 2em 0 0.5em; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.content-copy h3 { margin: 1.65em 0 0.5em; }

.announcement {
  background: var(--ink);
  color: white;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(248, 245, 240, 0.96);
  border-bottom: 1px solid rgba(222, 215, 207, 0.9);
}
.header-inner { height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-decoration: none;
}
.mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f5a297, var(--signal) 54%, var(--signal-dark));
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0;
  box-shadow: 0 0 0 5px rgba(200, 70, 61, 0.1);
}
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav > a, .desktop-nav summary {
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  list-style: none;
  text-decoration: none;
}
.desktop-nav summary::-webkit-details-marker { display: none; }
.desktop-nav a:hover, .desktop-nav summary:hover, .desktop-nav [aria-current="page"] { color: var(--ink); }
.nav-products { position: relative; }
.nav-products summary::after { content: "＋"; margin-left: 7px; color: var(--signal); }
.nav-products[open] summary::after { content: "−"; }
.nav-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 18px);
  width: 360px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.nav-panel a { display: block; padding: 12px; border-radius: 12px; text-decoration: none; }
.nav-panel a:hover { background: var(--canvas); }
.nav-panel strong { display: block; color: var(--ink); }
.nav-panel span { display: block; color: var(--ink-soft); font-size: 0.8rem; font-weight: 500; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  inset: calc(var(--header-height) + 32px) 0 0;
  z-index: 999;
  display: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--canvas);
  padding: 24px 20px 48px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav-inner { width: min(100%, 680px); margin: auto; }
.mobile-nav a, .mobile-nav button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 750;
  text-align: left;
  text-decoration: none;
}
.mobile-subnav { display: none; padding-left: 14px; }
.mobile-subnav.is-open { display: block; }
.mobile-subnav a { font-size: 1rem; font-weight: 650; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--signal);
  border-radius: 999px;
  background: var(--signal);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.button:hover { background: var(--signal-dark); border-color: var(--signal-dark); transform: translateY(-1px); }
.button-secondary { background: transparent; border-color: var(--ink); color: var(--ink); }
.button-secondary:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.dark-section .button-secondary { border-color: #fff; color: #fff; }
.dark-section .button-secondary:hover { background: #fff; color: var(--ink); }
.button-small { min-height: 42px; padding: 9px 16px; font-size: 0.82rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.text-link { color: var(--signal-dark); font-weight: 780; text-decoration: none; }
.text-link::after { content: " →"; }

.home-hero { padding: 70px 0 90px; overflow: hidden; }
.home-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr); gap: 70px; align-items: center; }
.home-hero-copy .lead { margin: 28px 0 30px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 28px 0 0; padding: 0; list-style: none; }
.trust-line li { color: var(--ink-soft); font-size: 0.82rem; font-weight: 700; }
.trust-line li::before { content: "●"; margin-right: 8px; color: var(--signal); }
.hero-visual { position: relative; min-height: 590px; }
.hero-orbit {
  position: absolute;
  inset: 7% 2% 8% 4%;
  border: 1px solid rgba(200, 70, 61, 0.18);
  border-radius: 48% 52% 45% 55%;
  background: radial-gradient(circle at 50% 43%, rgba(200, 70, 61, 0.2), rgba(242, 222, 218, 0.45) 42%, transparent 72%);
}
.hero-image-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-image-card img { width: 100%; height: 100%; object-fit: contain; background: white; }
.hero-face { top: 2%; right: 0; width: 74%; aspect-ratio: 1 / 1.12; border-radius: 44% 22% 36% 18%; }
.hero-body { bottom: 0; left: 0; width: 47%; aspect-ratio: 0.78 / 1; border-radius: 24px 42% 24px 42%; }
.hero-note {
  position: absolute;
  right: 2%;
  bottom: 5%;
  max-width: 220px;
  padding: 18px;
  border-radius: 18px;
  background: var(--ink);
  color: white;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}
.hero-note strong { display: block; margin-bottom: 4px; color: #f4bfaf; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 46px; }
.section-head .lead { margin: 16px 0 0; }
.category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.category-tile {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
}
.category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-tile:hover img { transform: scale(1.025); }
.category-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 90px 32px 30px;
  background: linear-gradient(transparent, rgba(19, 16, 14, 0.88));
  color: white;
}
.category-overlay p { max-width: 42ch; margin: 10px 0 0; color: #eee6df; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.product-card { display: flex; flex-direction: column; min-width: 0; }
.product-card-media {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}
.product-card-media img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.35s ease; }
.product-card:hover .product-card-media img { transform: scale(1.025); }
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(23, 21, 19, 0.88);
  color: white;
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.05em;
}
.product-card-copy { padding: 20px 4px 0; }
.product-card-copy h3 { font-size: 1.35rem; overflow-wrap: anywhere; }
.product-card-copy p { margin: 10px 0 14px; color: var(--ink-soft); font-size: 0.94rem; }

.steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px; counter-reset: steps; }
.step { counter-increment: steps; padding-top: 24px; border-top: 1px solid var(--line); }
.step::before { content: "0" counter(steps); display: block; margin-bottom: 28px; color: var(--signal); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; }
.step p { margin-top: 12px; color: var(--ink-soft); }

.page-hero { padding: 92px 0 74px; }
.page-hero .lead { margin-top: 22px; }
.page-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.meta-pill { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: 0.78rem; font-weight: 700; }
.breadcrumbs { padding: 20px 0 0; color: var(--ink-soft); font-size: 0.78rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #aaa19a; }

.product-hero { padding: 40px 0 94px; }
.product-hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.82fr); gap: 70px; align-items: start; }
.gallery { min-width: 0; }
.gallery-main { display: grid; place-items: center; width: 100%; aspect-ratio: 1 / 1; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; margin-top: 10px; }
.gallery-thumb { height: 72px; overflow: hidden; padding: 4px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; }
.gallery-thumb[aria-current="true"] { border-color: var(--signal); box-shadow: 0 0 0 2px rgba(200, 70, 61, 0.16); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-copy { position: sticky; top: calc(var(--header-height) + 28px); }
.product-copy .lead { margin: 22px 0; }
.product-copy .button { width: 100%; }
.buy-panel { margin-top: 28px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255, 255, 255, 0.6); }
.variant-group { display: grid; gap: 8px; margin: 14px 0 18px; }
.variant-option { position: relative; }
.variant-option input { position: absolute; opacity: 0; pointer-events: none; }
.variant-option label { display: flex; justify-content: space-between; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; font-size: 0.86rem; font-weight: 720; }
.variant-option input:checked + label { border-color: var(--signal); box-shadow: inset 0 0 0 1px var(--signal); }
.variant-option input:focus-visible + label { outline: 3px solid #f2a59c; outline-offset: 3px; }
.price-area { display: grid; gap: 3px; margin: 2px 0 16px; }
.price-value { color: var(--ink); font-size: clamp(1.35rem, 2.2vw, 1.75rem); font-weight: 820; letter-spacing: -0.025em; }
.price-meta { color: var(--ink-soft); font-size: 0.75rem; }
.legal-date { margin-top: 22px; color: var(--ink-soft); font-size: 0.82rem; font-weight: 720; }
.asin-line { margin-top: 12px; color: var(--ink-soft); font-size: 0.76rem; }
.product-assurance { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.product-assurance li { color: var(--ink-soft); font-size: 0.82rem; }
.product-assurance li::before { content: "✓"; margin-right: 9px; color: var(--verified); font-weight: 900; }

.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--line); }
.feature-item { min-height: 230px; padding: 34px; background: var(--surface); }
.feature-index { display: block; margin-bottom: 58px; color: var(--signal); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; }
.feature-item p { margin: 12px 0 0; color: var(--ink-soft); }
.spec-list { margin: 0; border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: minmax(180px, 0.35fr) 1fr; gap: 30px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.spec-row dt { color: var(--ink-soft); font-size: 0.84rem; font-weight: 750; }
.spec-row dd { margin: 0; font-weight: 680; }
.faq-list { border-top: 1px solid var(--line); }
.faq-row { border-bottom: 1px solid var(--line); }
.faq-row summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; font-weight: 760; list-style: none; }
.faq-row summary::-webkit-details-marker { display: none; }
.faq-row summary::after { content: "+"; color: var(--signal); font-size: 1.35rem; font-weight: 400; }
.faq-row[open] summary::after { content: "−"; }
.faq-answer { max-width: 70ch; padding: 0 0 22px; color: var(--ink-soft); }

.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 72px; align-items: center; }
.split-media { overflow: hidden; border-radius: 28px; background: var(--surface); box-shadow: var(--shadow); }
.split-media img { width: 100%; aspect-ratio: 0.9 / 1; object-fit: cover; }
.proof-list { display: grid; gap: 20px; margin: 30px 0 0; padding: 0; list-style: none; }
.proof-list li { padding-left: 26px; position: relative; }
.proof-list li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 10px; height: 10px; border-radius: 50%; background: var(--signal); }
.proof-list strong { display: block; }
.proof-list span { color: var(--ink-soft); }
.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.info-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255, 255, 255, 0.55); }
.info-card p { margin: 12px 0 0; color: var(--ink-soft); }

.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 44px; border-radius: 28px; background: var(--ink); color: white; }
.cta-band p { max-width: 55ch; margin: 12px 0 0; color: #d8cec4; }

.site-footer { padding: 64px 0 30px; background: #12100f; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, minmax(130px, 0.55fr)); gap: 40px; }
.footer-brand p { max-width: 38ch; margin-top: 18px; color: #bdb4ac; }
.footer-col h2 { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-col a { display: block; margin-top: 12px; color: #d8cec4; font-size: 0.88rem; text-decoration: none; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 24px; border-top: 1px solid #393431; color: #9d958e; font-size: 0.75rem; }

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

@media (max-width: 1000px) {
  .home-hero-grid, .product-hero-grid { grid-template-columns: 1fr 0.88fr; gap: 42px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-visual { min-height: 520px; }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  .announcement { font-size: 0.69rem; }
  .desktop-nav { display: none; }
  .nav-toggle { display: block; }
  .home-hero { padding-top: 50px; }
  .home-hero-grid, .product-hero-grid, .split { grid-template-columns: 1fr; }
  .home-hero-copy { max-width: 720px; }
  .hero-visual { width: min(100%, 620px); margin: 0 auto; }
  .product-copy { position: static; }
  .product-hero-grid { gap: 38px; }
  .category-tile { min-height: 430px; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 74px 0; }
  .section-sm { padding: 54px 0; }
  .home-hero { padding: 44px 0 70px; }
  h1 { font-size: clamp(2.5rem, 15vw, 4.3rem); }
  .page-hero h1, .product-copy h1 { font-size: clamp(2.25rem, 11vw, 3.7rem); }
  .section-head { display: block; margin-bottom: 34px; }
  .section-head .button { margin-top: 22px; }
  .category-grid, .product-grid, .steps-grid, .feature-grid { grid-template-columns: 1fr; }
  .category-tile { min-height: 380px; }
  .category-overlay { padding: 80px 22px 22px; }
  .hero-visual { min-height: 430px; }
  .hero-face { width: 76%; }
  .hero-body { width: 46%; }
  .hero-note { max-width: 180px; padding: 14px; font-size: 0.72rem; }
  .gallery-thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .gallery-thumb { height: 64px; }
  .feature-item { min-height: 0; padding: 26px; }
  .feature-index { margin-bottom: 34px; }
  .spec-row { grid-template-columns: 1fr; gap: 5px; }
  .cta-band { display: block; padding: 30px; }
  .cta-band .button { width: 100%; margin-top: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
}

@media (max-width: 430px) {
  .wordmark { letter-spacing: 0.12em; }
  .wordmark .mark { width: 30px; height: 30px; }
  .button-row { display: grid; }
  .button-row .button { width: 100%; }
  .hero-visual { min-height: 365px; }
  .hero-note { display: none; }
  .product-card-media { aspect-ratio: 1 / 1; }
  .footer-grid { grid-template-columns: 1fr; }
}
