@charset "UTF-8";

:root {
  --ink: #203027;
  --ink-soft: #31443a;
  --cream: #f8f5ee;
  --paper: #fffdf9;
  --sage: #90a087;
  --sage-dark: #53644f;
  --pale: #e9eee5;
  --terra: #b24f30;
  --terra-dark: #8f3e27;
  --line: #d2dbcf;
  --muted: #5b685e;
  --white: #ffffff;
  --focus: #174ea6;
  --serif: Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 20px 55px rgba(32, 48, 39, 0.12);
  --radius: 18px;
  --wrap: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: none; }
.wrap { width: var(--wrap); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--sage-dark);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow.on-dark { color: #d4dfd0; }
h1, h2, h3 {
  font-family: var(--serif);
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 { margin: 0; font-size: clamp(3.2rem, 6.2vw, 6.4rem); }
h2 { margin: 0; font-size: clamp(2.45rem, 4.4vw, 4.7rem); }
h3 { margin: 0; font-size: clamp(1.45rem, 2.3vw, 2.05rem); }
p { text-wrap: pretty; }
.lede {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.27rem);
  max-width: 670px;
}
.lede.on-dark { color: #ced8d1; }
.small { font-size: 0.89rem; color: var(--muted); }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 2px solid var(--terra);
  border-radius: 9px;
  background: var(--terra);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}
.button:hover { background: var(--terra-dark); border-color: var(--terra-dark); transform: translateY(-1px); }
.button.secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.button.secondary:hover { background: var(--ink); color: var(--white); }
.button.light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button.light:hover { background: var(--pale); border-color: var(--pale); }
.text-link { color: var(--terra-dark); font-weight: 800; text-underline-offset: 4px; }
.text-link:hover { text-decoration-thickness: 2px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 238, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.site-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.025em;
  text-decoration: none;
}
.brand img { width: 42px; height: 42px; border-radius: 50%; }
.brand span { font-size: 1.06rem; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a:not(.button) { min-height: 44px; display: inline-flex; align-items: center; text-decoration: none; font-weight: 750; font-size: 0.92rem; }
.nav-links > a:not(.button):hover { color: var(--terra-dark); }

.home-hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.home-hero-copy {
  padding: clamp(64px, 8vw, 108px) max(28px, calc((100vw - 1180px) / 2)) 72px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-hero h1 span { display: block; }
.home-hero h1 .accent { color: var(--terra); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 30px; }
.home-hero-panel {
  padding: clamp(38px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.home-hero-panel::before,
.home-hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.17);
}
.home-hero-panel::before { width: 430px; height: 430px; right: -150px; top: -130px; }
.home-hero-panel::after { width: 260px; height: 260px; left: -100px; bottom: -85px; }
.monogram-lockup { position: relative; z-index: 1; }
.monogram-lockup img { width: min(280px, 66%); margin: 0 auto 36px; border-radius: 50%; box-shadow: 0 20px 45px rgba(0,0,0,0.2); }
.monogram-lockup blockquote {
  margin: 0;
  font: 700 clamp(2rem, 3.7vw, 4rem)/1.08 var(--serif);
  letter-spacing: -0.03em;
}
.monogram-lockup p { color: #d6ded8; max-width: 520px; }
.brand-principles {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.23);
  color: #e2e8e3;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section { padding: 92px 0; }
.section-paper { background: var(--paper); }
.section-pale { background: var(--pale); }
.section-dark { background: var(--ink); color: var(--white); }
.section-intro {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
  margin-bottom: 50px;
}
.section-intro p { margin: 0; color: var(--muted); font-size: 1.1rem; }
.section-dark .section-intro p { color: #ced8d1; }

.current-product {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.current-product-media { min-height: 590px; overflow: hidden; background: var(--pale); }
.current-product-media img { width: 100%; height: 100%; object-fit: cover; }
.current-product-copy { padding: clamp(38px, 6vw, 74px); display: flex; flex-direction: column; justify-content: center; }
.current-product-copy h2 { font-size: clamp(3rem, 4.7vw, 5rem); }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.product-meta span { border: 1px solid var(--line); background: var(--cream); border-radius: 999px; padding: 7px 11px; font-size: 0.78rem; font-weight: 750; }
.product-price { margin: 4px 0 28px; font: 700 1.5rem var(--serif); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.product-grid.single { grid-template-columns: minmax(0, 760px); }
.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.product-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pale);
}
.product-card-media img { width: 100%; height: 100%; object-fit: cover; }
.product-card-media.contain img { object-fit: contain; padding: 24px; background: var(--white); }
.product-card-copy { display: flex; flex: 1; flex-direction: column; padding: clamp(28px, 4vw, 46px); }
.product-card-copy h3 { font-size: clamp(2rem, 3.2vw, 3.1rem); }
.product-card-copy .hero-actions { margin-top: auto; padding-top: 12px; }
.channel-note { margin: 0 0 15px; color: var(--sage-dark); font-size: 0.78rem; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 28px; border: 1px solid var(--line); background: var(--white); }
.feature-card b { display: block; margin-bottom: 16px; color: var(--terra); font: 700 1.65rem var(--serif); }
.feature-card h3 { font-size: 1.45rem; }
.feature-card p { margin-bottom: 0; color: var(--muted); }
.product-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.product-gallery figure { margin: 0; }
.product-gallery img { width: 100%; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.product-gallery figcaption { margin-top: 11px; color: var(--muted); font-size: 0.88rem; }
.market-label { color: var(--terra-dark); font: 700 1.1rem var(--serif); white-space: nowrap; }

.lane-list { border-top: 1px solid rgba(255,255,255,0.22); }
.lane {
  display: grid;
  grid-template-columns: 80px minmax(230px, 0.8fr) 1.3fr 140px;
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.22);
}
.lane-number { color: #e29c83; font: 700 1.65rem var(--serif); }
.lane h3 { color: var(--white); }
.lane p { margin: 0; color: #cdd7d0; }
.status { justify-self: end; color: #edf2ee; font-size: 0.76rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }

.standards { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(50px, 9vw, 130px); }
.standards-list { border-top: 1px solid var(--line); }
.standard { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.standard b { color: var(--terra); font: 700 1.55rem var(--serif); }
.standard h3 { font-size: 1.35rem; margin-bottom: 5px; }
.standard p { margin: 0; color: var(--muted); }

.cta-band { padding: 78px 0; background: var(--terra); color: var(--white); }
.cta-band .wrap { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-band h2 { font-size: clamp(2.5rem, 4vw, 4.4rem); max-width: 760px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.95fr);
  min-height: 640px;
  background: var(--paper);
}
.standard-product-hero h1 { font-size: clamp(3rem, 4.2vw, 4.2rem); max-width: 720px; }
.standard-product-hero .product-hero-copy { padding-block: clamp(44px, 5vw, 70px) 44px; }
.product-hero-copy {
  padding: clamp(58px, 7vw, 96px) max(32px, calc((100vw - 1180px) / 2)) 62px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-hero h1 span { display: block; }
.product-hero h1 .accent { color: var(--terra); }
.product-hero-media { min-height: 580px; overflow: hidden; background: var(--pale); }
.product-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.product-hero-media.contain { background: var(--white); }
.product-hero-media.contain img { object-fit: contain; padding: clamp(24px, 4vw, 58px); }
.purchase-note { color: var(--muted); font-size: 0.86rem; max-width: 470px; margin-top: 13px; }
.problem-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(50px, 8vw, 110px); }
.question-list { border-top: 1px solid rgba(255,255,255,0.22); }
.question-list div { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.22); font-weight: 700; }
.preview-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.preview-strip figure { margin: 0; }
.preview-strip figure:nth-child(2) { margin-top: 48px; }
.preview-strip figure:nth-child(3) { margin-top: 96px; }
.preview-strip img { border: 1px solid var(--line); box-shadow: var(--shadow); }
.preview-strip figcaption { margin-top: 12px; color: var(--muted); font-size: 0.88rem; }
.inside-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(50px, 8vw, 100px); align-items: center; }
.inside-grid > img { border-radius: var(--radius); box-shadow: var(--shadow); }
.tick-list { list-style: none; padding: 0; margin: 28px 0 0; columns: 2; column-gap: 30px; }
.tick-list li { position: relative; break-inside: avoid; padding: 7px 0 7px 24px; }
.tick-list li::before { content: ""; position: absolute; left: 0; top: 14px; width: 10px; height: 10px; border-radius: 50%; background: var(--terra); }
.steps { border-top: 1px solid #c5d0c2; }
.step { display: grid; grid-template-columns: 80px 0.8fr 1.2fr; gap: 28px; padding: 26px 0; border-bottom: 1px solid #c5d0c2; }
.step b { color: var(--terra); font: 700 1.8rem var(--serif); }
.step h3 { font-size: 1.4rem; }
.step p { margin: 0; color: var(--muted); }
.buy-layout { display: grid; grid-template-columns: 1fr 430px; gap: clamp(50px, 8vw, 100px); align-items: center; }
.buy-box { background: var(--white); border: 1px solid var(--line); padding: 32px; box-shadow: var(--shadow); }
.buy-box-head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.buy-box-head strong { display: block; font-size: 1.08rem; }
.buy-box-head span { color: var(--muted); font-size: 0.85rem; }
.buy-box-price { font: 700 2.3rem var(--serif); white-space: nowrap; }
.buy-box .button { width: 100%; margin-top: 12px; }
.buy-box ul { padding-left: 20px; }
.external-note { color: var(--muted); font-size: 0.79rem; text-align: center; margin-bottom: 0; }
.faq-list { border-top: 1px solid var(--line); }
details { padding: 21px 0; border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 800; list-style: none; position: relative; padding-right: 50px; min-height: 34px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 8px; top: -7px; color: var(--terra); font: 700 1.9rem var(--serif); }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); max-width: 720px; }

.page-hero { padding: 94px 0 70px; background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 950px; }
.page-hero .lede { margin-bottom: 0; }
.prose { padding: 70px 0 96px; }
.prose h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); margin: 1.8em 0 0.45em; }
.prose h3 { font-size: 1.35rem; margin: 1.6em 0 0.4em; }
.prose p, .prose li { color: #405047; }
.prose a { color: var(--terra-dark); font-weight: 750; }
.prose a.button { color: var(--white); }
.prose .legal-id { background: var(--pale); border: 1px solid var(--line); padding: 22px; margin: 30px 0; }
.prose .notice { background: #fff7ef; border: 1px solid #e9bea9; padding: 20px; }
.contact-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 38px 0; }
.contact-option { background: var(--white); border: 1px solid var(--line); padding: 28px; }
.contact-option h2 { margin-top: 0; }

.site-footer { background: var(--ink); color: var(--white); padding: 52px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.7fr 0.9fr; gap: 50px; align-items: start; }
.site-footer .brand { color: var(--white); }
.site-footer p { color: #cbd5ce; font-size: 0.84rem; max-width: 580px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: var(--white); text-underline-offset: 3px; }
.legal-line { color: #b8c5bc; font-size: 0.76rem; margin-top: 24px; }

@media (max-width: 940px) {
  .home-hero, .product-hero, .current-product, .section-intro, .standards, .inside-grid, .buy-layout, .problem-grid, .product-grid, .contact-options { grid-template-columns: 1fr; }
  .home-hero-copy, .product-hero-copy { padding: 70px 28px; }
  .home-hero-panel { min-height: 600px; }
  .product-hero-media { min-height: 560px; }
  .current-product-media { min-height: 520px; }
  .lane { grid-template-columns: 58px 1fr 120px; }
  .lane p { grid-column: 2 / 4; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / 3; }
}

@media (max-width: 680px) {
  :root { --wrap: min(100% - 30px, 1180px); }
  .site-nav { min-height: 68px; }
  .brand img { width: 38px; height: 38px; }
  .brand span { font-size: 0.96rem; }
  .nav-links { gap: 8px; }
  .nav-links > a:not(.button) { display: none; }
  .nav-links .button { padding: 10px 12px; font-size: 0.82rem; }
  .home-hero, .product-hero { min-height: 0; }
  .home-hero-copy, .product-hero-copy { padding: 58px 20px 62px; }
  h1 { font-size: clamp(3rem, 16vw, 4.75rem); }
  .standard-product-hero h1 { font-size: clamp(2.8rem, 12vw, 4rem); }
  h2 { font-size: clamp(2.35rem, 12vw, 3.65rem); }
  .home-hero-panel { min-height: 540px; padding: 42px 22px; }
  .monogram-lockup img { width: 180px; }
  .section { padding: 68px 0; }
  .current-product-media, .product-hero-media { min-height: 430px; }
  .current-product-copy { padding: 34px 24px; }
  .lane { grid-template-columns: 42px 1fr; gap: 14px; }
  .lane p, .lane .status { grid-column: 2; }
  .lane .status { justify-self: start; }
  .standards { gap: 40px; }
  .cta-band .wrap { display: block; }
  .cta-actions { margin-top: 26px; }
  .preview-strip { grid-template-columns: 1fr; }
  .feature-grid, .product-gallery { grid-template-columns: 1fr; }
  .preview-strip figure:nth-child(2), .preview-strip figure:nth-child(3) { margin-top: 0; }
  .tick-list { columns: 1; }
  .step { grid-template-columns: 42px 1fr; gap: 15px; }
  .step p { grid-column: 2; }
  .buy-box { padding: 24px; }
  .contact-options { grid-template-columns: 1fr; }
  .footer-grid, .footer-grid > :first-child { grid-template-columns: 1fr; grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
