:root {
  --ink: #191816;
  --muted: #706a61;
  --paper: #f6f1e8;
  --panel: #fffaf1;
  --line: rgba(25, 24, 22, 0.14);
  --gold: #c79a42;
  --gold-soft: #ead7b0;
  --charcoal: #24211d;
  --blue: #526b75;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(199,154,66,.18), transparent 34rem),
    radial-gradient(circle at 92% 18%, rgba(82,107,117,.13), transparent 28rem),
    linear-gradient(180deg, #fbf8f0 0%, var(--paper) 48%, #eee5d6 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
section { padding: 76px 0; border-bottom: 1px solid var(--line); }

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: none;
  position: relative;
}
.brand-header {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.brand-header img {
  width: clamp(82px, 9vw, 124px);
  height: auto;
  display: block;
}
.eyebrow, .label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(58px, 9vw, 122px);
  line-height: .92;
  letter-spacing: -0.06em;
  margin-bottom: 28px;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}
h3 { font-size: 21px; line-height: 1.15; margin-bottom: 10px; }
p, li { color: var(--muted); font-size: 18px; line-height: 1.62; }
.hero-copy { max-width: 720px; font-size: 24px; color: #4d4942; }
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 52px;
  max-width: 360px;
}
.hero-grid div, .card, .product, .compare-grid div {
  background: rgba(255,250,241,.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(34, 30, 22, 0.07);
}
.hero-grid div { padding: 24px; }
.hero-grid span { display: block; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.hero-grid strong { display: block; font-size: 22px; line-height: 1.12; }

.statement {
  background: var(--charcoal);
  color: white;
  border-radius: 36px;
  padding: clamp(36px, 6vw, 72px);
  margin-bottom: 76px;
  border-bottom: none;
}
.statement blockquote {
  margin: 0 0 24px;
  max-width: 940px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.statement p:not(.label) { color: rgba(255,255,255,.72); max-width: 780px; }

.section-head { max-width: 840px; margin-bottom: 30px; }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.approach-grid div {
  background: rgba(255,250,241,.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(34, 30, 22, 0.07);
}
.approach-grid strong { display: block; font-size: 20px; line-height: 1.15; margin-bottom: 10px; }
.approach-grid span { display: block; color: var(--muted); font-size: 16px; line-height: 1.55; }
.principle {
  margin-top: 22px;
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  background: rgba(255,250,241,.76);
  border-radius: 0 18px 18px 0;
  color: #4f4534;
}
.product-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.product { overflow: hidden; display: grid; grid-template-rows: auto 1fr; }
.product-media {
  background: var(--paper);
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 52px);
}
.product.front-back .product-media { min-height: 92vh; }
.product-media img {
  width: min(100%, 920px);
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 22px 34px rgba(27,24,20,.10));
}
.product.front-back .product-media img { width: min(100%, 1040px); }
.concept-heading {
  padding: 26px 26px 0;
  margin-bottom: 0;
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.product-copy { padding: 26px; }
.product-copy p:last-child { margin-bottom: 0; font-size: 16px; }
.product-name {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}
.product h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: start; }
.card { padding: 28px; }
.card.dark { background: var(--charcoal); color: white; }
.card.dark p, .card.dark li { color: rgba(255,255,255,.72); }
.card.dark ol { margin: 0; padding-left: 22px; }
.card.dark li { margin-bottom: 10px; }

.compare-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.compare-grid div { padding: 24px; }
.compare-grid strong { display: block; color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; margin-bottom: 12px; }
.compare-grid span { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 28px; line-height: 1.05; letter-spacing: -.035em; }

.final {
  background: #fff8e8;
  padding: clamp(34px, 6vw, 66px);
  border: 1px solid rgba(199,154,66,.36);
  border-radius: 36px;
  margin: 76px 0;
}
.final p { max-width: 760px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--charcoal);
  text-decoration: none;
  font-weight: 800;
}
footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 0 70px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 920px) {
  main, footer { width: min(100% - 24px, 1180px); }
  section { padding: 50px 0; }
  .hero-grid, .approach-grid, .product-grid, .product.feature, .two-col, .compare-grid { grid-template-columns: 1fr; }
  .product.feature { grid-column: auto; }
  .product-media, .product:not(.feature) .product-media { min-height: 360px; }
  .brand-header { position: static; margin-bottom: 54px; }
  footer { flex-direction: column; }
}
