:root {
  --bg: #f6f4ef;
  --paper: #fffdf8;
  --ink: #161616;
  --muted: #66635d;
  --line: #ddd6ca;
  --accent: #b25d2a;
  --accent-dark: #814018;
  --charcoal: #22211f;
  --shadow: 0 24px 70px rgba(20, 19, 17, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #fffaf0 0, var(--bg) 42%, #ece7dc 100%);
  color: var(--ink);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(24px, 4vw, 64px);
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(34, 33, 31, 0.08);
}
.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}
.brand-title {
  font-weight: 850;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}
.brand-subtitle {
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  font-weight: 550;
}
.nav { display: flex; gap: 22px; font-size: 0.94rem; color: var(--muted); }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--ink); }

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) 0;
}
.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.06; letter-spacing: -0.045em; margin: 0; }
h1 { font-size: clamp(3.25rem, 6vw, 5.9rem); max-width: 780px; }
h2 { font-size: clamp(2rem, 4.0vw, 3.9rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.95rem); }
.lead {
  max-width: 680px;
  font-size: clamp(1.06rem, 1.45vw, 1.36rem);
  color: #3a3834;
  margin: 24px 0 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  font-size: 0.96rem;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--charcoal); color: #fff; box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.primary:hover { background: #050505; }
.secondary { background: rgba(255,255,255,.55); border-color: var(--line); color: var(--charcoal); }
.full { width: 100%; }
.microcopy { color: var(--muted); font-size: .92rem; margin-top: 18px; }
.card {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(34, 33, 31, 0.09);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.hero-media { padding: 14px; transform: rotate(1deg); max-width: 520px; justify-self: end; }
.hero-media img { border-radius: calc(var(--radius) - 10px); width: 100%; max-height: 500px; aspect-ratio: 4 / 3; object-fit: contain; background: #fff; }

.trust-strip {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  border: 1px solid var(--line);
}
.trust-strip div { background: rgba(255,253,248,.74); padding: 24px; }
.trust-strip strong { display:block; font-size:1.08rem; }
.trust-strip span { display:block; color:var(--muted); margin-top:4px; font-size:.94rem; }

.two-column { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 6vw, 90px); align-items: start; }
.stacked-copy { font-size: clamp(1.04rem, 1.35vw, 1.22rem); color: #3f3d39; }
.stacked-copy p:first-child { margin-top: 0; }
.section-heading { max-width: 860px; margin-bottom: 32px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.12rem; }

.product-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(24px, 4vw, 52px); align-items: start; }
.gallery-main { width: 100%; border: 0; padding: 12px; cursor: zoom-in; }
.gallery-main img { width:100%; max-height: 500px; aspect-ratio: 4/3; object-fit: contain; background:#fff; border-radius: 16px; }
.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.thumb { border: 2px solid transparent; padding: 0; border-radius: 14px; overflow: hidden; cursor: pointer; background: transparent; opacity: .72; }
.thumb.active { border-color: var(--accent); opacity: 1; }
.thumb img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-card { padding: clamp(24px, 4vw, 42px); position: sticky; top: 96px; }
.check-list { list-style: none; padding: 0; margin: 24px 0; display:grid; gap: 14px; }
.check-list li { position: relative; padding-left: 30px; color: #373531; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--accent-dark); font-weight: 900; }
.note-box { background: #f2eadc; border: 1px solid #e3d4be; padding: 16px; border-radius: 16px; margin-bottom: 20px; color: #3c3328; }

.form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 24px; align-items: start; }
.interest-form, .contact-card { padding: clamp(22px, 3vw, 34px); }
.interest-form { display: grid; gap: 18px; }
label { display: grid; gap: 8px; font-weight: 800; color: #2b2926; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: rgba(255,255,255,.82);
  color: var(--ink);
}
textarea { resize: vertical; }
fieldset { border: 1px solid var(--line); border-radius: 18px; padding: 16px; display: grid; gap: 10px; }
legend { font-weight: 900; padding: 0 8px; }
.checkbox { display: flex; align-items: center; gap: 10px; font-weight: 650; }
.checkbox input { width: auto; }
.form-note { color: var(--muted); font-size: .9rem; margin: 0; }
.contact-card p { color: var(--muted); }

.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}
.site-footer p { margin: 6px 0 0; color: var(--muted); }
.footer-links { display: flex; gap: 18px; align-items: start; }
.footer-links a { color: var(--muted); text-decoration: none; font-weight: 700; }
.legal { grid-column: 1 / -1; font-size: .86rem; }

dialog { border: 0; border-radius: 24px; padding: 14px; background: #fffdf8; box-shadow: var(--shadow); max-width: min(94vw, 980px); }
dialog::backdrop { background: rgba(0,0,0,.62); }
dialog img { max-height: 82vh; border-radius: 16px; }
.dialog-close { position:absolute; right:16px; top:16px; width:40px; height:40px; border-radius:50%; border:0; background:#111; color:#fff; font-size:24px; cursor:pointer; }

@media (max-width: 920px) {
  .nav { display: none; }
  .site-header { padding-left: 18px; padding-right: 18px; }
  .hero, .two-column, .product-grid, .form-layout, .site-footer { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 48px; }
  .hero-media { justify-self: start; max-width: 100%; }
  .product-card { position: static; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .section, .trust-strip, .site-footer { width: min(100% - 32px, 1180px); }
  h1 { font-size: 3rem; }
  .hero-actions { display:grid; }
  .button { width:100%; }
  .brand-title { font-size: 1.05rem; }
  .brand-subtitle { font-size: 0.76rem; }
}
