:root {
  color-scheme: light;
  --ink: #17120f;
  --muted: #6d6258;
  --paper: #f5f0e8;
  --paper-deep: #ebe1d4;
  --surface: #fffaf3;
  --line: rgba(23, 18, 15, 0.14);
  --wood: #a86f3d;
  --moss: #56624a;
  --night: #201915;
  --cream: #fff8ef;
  --shadow: 0 24px 80px rgba(23, 18, 15, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(245, 240, 232, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}
.nav { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.nav a { text-decoration: none; color: rgba(23, 18, 15, 0.78); }
.nav-cta {
  padding: 10px 14px;
  color: var(--cream) !important;
  background: var(--ink);
  border-radius: 999px;
}

.hero-atelier {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.75fr);
  min-height: calc(100vh - 74px);
  background: var(--paper-deep);
}
.hero-media { min-height: 620px; background: #d8c7b7; }
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center center; }
.hero-panel {
  align-self: center;
  margin: clamp(24px, 4vw, 64px);
  padding: clamp(26px, 4vw, 48px);
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid rgba(23, 18, 15, 0.12);
  box-shadow: var(--shadow);
}
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--wood);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}
h1 { margin-bottom: 22px; font-size: clamp(48px, 6.2vw, 94px); line-height: 0.92; }
h2 { margin-bottom: 18px; font-size: clamp(34px, 4.4vw, 68px); line-height: 0.98; }
.lead { color: var(--muted); font-size: clamp(18px, 1.7vw, 22px); }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 30px 0;
  background: var(--line);
  border: 1px solid var(--line);
}
.hero-meta span { display: grid; gap: 5px; padding: 16px; background: var(--surface); }
.hero-meta strong { font-size: 20px; }
.hero-meta small { color: var(--muted); font-size: 12px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}
.button.primary { color: var(--cream); background: var(--ink); }
.button.secondary { color: var(--ink); background: transparent; }
.microcopy { margin: 18px 0 0; color: var(--muted); font-size: 14px; }

.problem-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.problem-strip article { padding: clamp(22px, 4vw, 42px); border-right: 1px solid var(--line); }
.problem-strip article:last-child { border-right: 0; }
.problem-strip span { color: var(--wood); font-size: 12px; font-weight: 900; }
.problem-strip strong { display: block; margin: 12px 0 8px; font-size: 22px; }
.problem-strip p { margin: 0; color: var(--muted); }

.section { padding: clamp(64px, 9vw, 132px) clamp(18px, 5vw, 84px); border-bottom: 1px solid var(--line); }
.story-grid, .product-intro, .proof-section, .order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: start;
}
.story-copy { color: var(--muted); font-size: clamp(18px, 1.8vw, 23px); }
.story-copy p { margin-bottom: 20px; }
.product-section { background: var(--night); color: var(--cream); }
.product-section .eyebrow, .product-section p { color: rgba(255, 248, 239, 0.72); }
.product-intro > p { max-width: 640px; font-size: 20px; }
.spec-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(34px, 5vw, 68px);
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.18);
}
.spec-wall article { min-height: 250px; padding: 26px; background: #2a211c; }
.spec-wall small { color: #c79a6d; font-weight: 800; text-transform: uppercase; }
.spec-wall strong { display: block; margin: 16px 0 18px; font-size: clamp(28px, 3vw, 44px); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.spec-wall p { margin: 0; }
.section-heading.wide { max-width: 980px; }
.section-heading p { color: var(--muted); font-size: 19px; }
.editorial-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 26px);
  align-items: start;
}
.editorial-shot { margin: 0; }
.editorial-shot picture { display: block; overflow: hidden; background: #dfd0c0; }
.editorial-shot img { width: 100%; height: auto; object-fit: contain; }
.editorial-shot figcaption { margin-top: 10px; color: var(--muted); font-size: 14px; }
.shot-1 { grid-column: span 7; }
.shot-2 { grid-column: span 5; padding-top: 8vw; }
.shot-3 { grid-column: span 4; }
.shot-4 { grid-column: span 4; }
.shot-5 { grid-column: span 4; }
.shot-6 { grid-column: span 5; }
.shot-7 { grid-column: span 7; padding-top: 4vw; }
.proof-section { background: #e8ddd0; align-items: center; }
.proof-media picture { display: block; overflow: hidden; box-shadow: var(--shadow); }
.proof-media img { width: 100%; object-fit: contain; background: #d5c7b8; }
.proof-copy p, .proof-copy li { color: var(--muted); font-size: 19px; }
.proof-copy ul { margin: 26px 0 0; padding-left: 20px; }
.proof-copy li { margin-bottom: 10px; }
.comparison-section { background: var(--surface); }
.comparison-table { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.comparison-table div { padding: 28px; background: var(--surface); }
.comparison-table .highlight { color: var(--cream); background: var(--moss); }
.comparison-table span { display: block; margin-bottom: 14px; font-size: 24px; font-family: Georgia, "Times New Roman", serif; }
.comparison-table p { margin: 0; color: inherit; opacity: 0.82; }
.faq-section { background: var(--paper); }
.faq { display: grid; gap: 10px; max-width: 960px; }
details { padding: 22px 24px; background: var(--surface); border: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 850; }
details p { margin: 14px 0 0; color: var(--muted); }
.order-section { color: var(--cream); background: var(--ink); align-items: center; }
.order-section .eyebrow, .order-section p { color: rgba(255, 248, 239, 0.72); }
.order-card { display: grid; gap: 14px; padding: clamp(24px, 4vw, 42px); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); }
.order-card strong { font-size: clamp(42px, 5vw, 72px); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.order-card span { color: rgba(255, 248, 239, 0.72); }
.order-card .button { border-color: rgba(255,255,255,0.42); }
.order-card .button.primary { color: var(--ink); background: var(--cream); }
.order-card .button.secondary { color: var(--cream); }
.text-link { color: var(--cream); text-decoration: none; font-weight: 800; }
.site-footer { display: flex; justify-content: space-between; gap: 16px; padding: 28px clamp(18px, 5vw, 84px); color: var(--muted); }
.mobile-bar { display: none; }

@media (max-width: 980px) {
  .hero-atelier, .story-grid, .product-intro, .proof-section, .order-section { grid-template-columns: 1fr; }
  .hero-media { min-height: auto; }
  .hero-media img { object-fit: contain; background: #d8c7b7; }
  .hero-panel { margin: 0; box-shadow: none; }
  .hero-meta, .problem-strip, .spec-wall, .comparison-table { grid-template-columns: 1fr; }
  .problem-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .editorial-gallery { display: block; }
  .editorial-shot { margin-bottom: 28px; padding-top: 0 !important; }
  .nav { overflow-x: auto; max-width: 100%; padding-bottom: 4px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 70px; }
  .site-header { align-items: flex-start; flex-direction: column; padding: 14px 16px; }
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  .hero-panel { padding: 24px 18px 30px; }
  .section { padding: 54px 18px; }
  .button { width: 100%; }
  .mobile-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    color: var(--cream);
    background: rgba(23, 18, 15, 0.94);
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  }
  .mobile-bar span { font-size: 13px; font-weight: 800; }
  .mobile-bar a { padding: 9px 12px; color: var(--ink); background: var(--cream); border-radius: 999px; font-size: 13px; font-weight: 900; text-decoration: none; }
  .site-footer { flex-direction: column; padding-bottom: 100px; }
}
