
:root {
  --paper: #f6f2e9;
  --paper-2: #ece8dc;
  --ink: #1f2a2b;
  --muted: #68716b;
  --sage: #53695a;
  --sage-light: #d9e0d2;
  --mint: #b9cbbd;
  --line: rgba(31, 42, 43, .15);
  --white: #fff;
  --max: 1440px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 999;
  transform: translateY(-150%); background: var(--ink); color: white;
  padding: 10px 14px; border-radius: 4px;
}
.skip-link:focus { transform: none; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 242, 233, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max); margin: auto; min-height: 78px;
  padding: 0 clamp(22px, 4vw, 64px);
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.brand img { width: 210px; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; }
.site-nav a { text-decoration: none; }
.site-nav a:hover { opacity: .65; }
.nav-shop { border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.menu-button {
  display: none; border: 0; background: transparent; color: var(--ink);
  font: inherit; padding: 10px 0;
}
.hero {
  max-width: var(--max); margin: auto; min-height: calc(100vh - 78px);
  display: grid; grid-template-columns: minmax(360px, .82fr) 1.4fr;
  align-items: stretch;
}
.hero-copy {
  padding: clamp(70px, 9vw, 150px) clamp(30px, 5vw, 84px);
  display: flex; flex-direction: column; justify-content: center;
}
.eyebrow, .kicker {
  margin: 0 0 18px; font-size: 12px; font-weight: 700;
  letter-spacing: .18em; color: var(--sage);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif); font-weight: 400;
  letter-spacing: -.035em; line-height: 1.03;
}
h1 { font-size: clamp(58px, 7vw, 105px); margin-bottom: 30px; }
h2 { font-size: clamp(44px, 5vw, 76px); margin-bottom: 28px; }
h3 { line-height: 1.2; }
.lead { max-width: 590px; font-size: clamp(18px, 1.7vw, 24px); color: var(--muted); }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 20px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 26px; border-radius: 999px;
  text-decoration: none; font-size: 14px; font-weight: 650;
  transition: transform .2s, opacity .2s;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--ink); color: white; }
.secondary { border: 1px solid var(--ink); }
.light { background: var(--paper); color: var(--ink); }
.text-link { font-size: 14px; font-weight: 650; text-underline-offset: 5px; }
.micro { margin: 26px 0 0; font-size: 12px; color: var(--muted); }
.hero-image { min-height: 660px; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 38px clamp(24px, 7vw, 110px);
}
.strip > div { max-width: 1080px; margin: auto; display: grid; grid-template-columns: 230px 1fr; gap: 50px; }
.strip p { margin: 0; }
.strip p:last-child { font-size: clamp(18px, 2vw, 26px); }
.section {
  max-width: var(--max); margin: auto;
  padding: clamp(90px, 11vw, 170px) clamp(24px, 7vw, 110px);
}
.section-narrow { max-width: 1240px; margin: auto; padding-left: 24px; padding-right: 24px; }
.product-intro { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 80px; }
.section-heading p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 18px; }
.product-visual {
  background: #eeeadd; border-radius: 50% 50% 5% 5% / 14% 14% 5% 5%;
  padding: clamp(28px, 4vw, 60px);
}
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); margin-bottom: clamp(100px, 12vw, 180px);
}
.feature-card { background: var(--paper); padding: 40px 28px; min-height: 250px; }
.feature-number { display: block; margin-bottom: 50px; color: var(--sage); font-size: 12px; }
.feature-card h3 { font-size: 20px; margin-bottom: 12px; }
.feature-card p { color: var(--muted); font-size: 14px; }
.detail-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: clamp(100px, 12vw, 180px); }
.detail-card { margin: 0; background: var(--paper-2); }
.detail-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.detail-card figcaption { padding: 35px 35px 42px; }
.detail-card h3 { font-family: var(--serif); font-size: 34px; font-weight: 400; margin-bottom: 12px; }
.detail-card p:last-child { color: var(--muted); }
.lifestyle-block {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 760px;
  background: var(--sage);
  color: white;
}
.lifestyle-image img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-copy { padding: clamp(60px, 8vw, 125px); display: flex; flex-direction: column; justify-content: center; }
.lifestyle-copy .eyebrow { color: var(--sage-light); }
.steps { padding: 0; margin: 35px 0 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: center; border-top: 1px solid rgba(255,255,255,.25); padding: 22px 0; }
.steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.25); }
.steps span { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; display: grid; place-items: center; font-size: 12px; }
.steps p { margin: 0; }
.compact { max-width: 800px; }
.size-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 50px; }
.size-card { border: 1px solid var(--line); padding: clamp(32px, 5vw, 68px); }
.size-letter { font-family: var(--serif); font-size: 80px; line-height: 1; margin-bottom: 40px; }
.size-card h3 { font-size: 24px; margin-bottom: 4px; }
.size-weight { color: var(--muted); margin-bottom: 30px; }
.material-section {
  display: grid; grid-template-columns: 1fr 1fr; background: #e4e7dc;
}
.material-copy { padding: clamp(70px, 9vw, 140px); display: flex; flex-direction: column; justify-content: center; }
.material-copy > p:last-child { color: var(--muted); max-width: 600px; }
.material-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 25px 0 44px; }
.material-list div { border-left: 1px solid var(--line); padding-left: 20px; }
.material-list dt { font-family: var(--serif); font-size: 42px; }
.material-list dd { margin: 3px 0 0; color: var(--muted); }
.material-image img { width: 100%; height: 100%; object-fit: cover; }
.safety-section { padding: clamp(80px, 10vw, 150px) 24px; }
.safety-panel {
  max-width: 1050px; margin: auto; background: var(--ink); color: white;
  padding: clamp(45px, 7vw, 90px);
}
.safety-panel .eyebrow { color: var(--mint); }
.safety-panel ul { max-width: 800px; padding-left: 20px; margin-bottom: 30px; }
.safety-panel li { margin: 13px 0; color: rgba(255,255,255,.82); }
.story-section {
  max-width: var(--max); margin: auto;
  display: grid; grid-template-columns: 1fr .85fr; align-items: center;
  gap: 70px; padding: clamp(80px, 10vw, 160px) clamp(24px, 7vw, 110px);
}
.story-copy > p:not(.eyebrow,.story-signoff) { max-width: 680px; color: var(--muted); font-size: 18px; }
.story-signoff { margin-top: 32px; font-family: var(--serif); font-size: 24px; }
.story-image { text-align: center; }
.story-image img { background: white; }
.image-note { color: var(--muted); font-size: 11px; margin-top: 12px; }
.shop-section { background: var(--sage); color: white; text-align: center; padding: clamp(85px, 11vw, 160px) 24px; }
.shop-inner { max-width: 800px; margin: auto; }
.shop-inner .eyebrow { color: var(--sage-light); }
.shop-inner p:not(.eyebrow) { font-size: 20px; }
.shop-buttons { display: flex; justify-content: center; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.site-footer {
  max-width: var(--max); margin: auto; padding: 60px clamp(24px, 7vw, 110px) 30px;
  display: grid; grid-template-columns: 1fr auto; gap: 40px;
  border-top: 1px solid var(--line);
}
.footer-brand img { width: 190px; margin-bottom: 20px; }
.footer-brand p { color: var(--muted); font-size: 13px; }
.footer-links { display: grid; gap: 9px; justify-items: end; font-size: 13px; }
.copyright { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 25px; margin: 20px 0 0; color: var(--muted); font-size: 11px; }
.legal-page { max-width: 900px; margin: auto; padding: 90px 24px 120px; }
.legal-page h1 { font-size: clamp(48px, 7vw, 76px); }
.legal-page h2 { font-family: var(--sans); font-size: 22px; font-weight: 700; letter-spacing: 0; margin-top: 45px; }
.legal-page p, .legal-page li { color: #525b56; }
.back-link { display: inline-block; margin-bottom: 50px; font-size: 13px; }
@media (max-width: 920px) {
  .menu-button { display: block; }
  .site-nav {
    display: none; position: absolute; inset: 78px 0 auto;
    background: var(--paper); padding: 24px; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; gap: 18px;
  }
  .site-nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding-top: 75px; padding-bottom: 60px; }
  .hero-image { min-height: 420px; }
  .strip > div { grid-template-columns: 1fr; gap: 8px; }
  .product-intro, .story-section { grid-template-columns: 1fr; }
  .product-intro { gap: 45px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .detail-pair { grid-template-columns: 1fr; }
  .lifestyle-block, .material-section { grid-template-columns: 1fr; }
  .lifestyle-image, .material-image { max-height: 650px; }
}
@media (max-width: 620px) {
  .header-inner { min-height: 68px; }
  .brand img { width: 170px; }
  .site-nav { top: 68px; }
  h1 { font-size: 56px; }
  h2 { font-size: 44px; }
  .hero-copy { padding: 58px 22px 48px; }
  .hero-image { min-height: 360px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .feature-number { margin-bottom: 25px; }
  .size-grid { grid-template-columns: 1fr; }
  .material-list dt { font-size: 34px; }
  .lifestyle-copy, .material-copy { padding: 65px 24px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-items: start; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
