:root {
  --ink: #2e241e;
  --muted: #69584b;
  --brown: #8d5a39;
  --brown-deep: #5a3929;
  --caramel: #c5824d;
  --cream: #f7f2eb;
  --sand: #ede3d8;
  --line: #e5d8cb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(59, 42, 29, 0.14);
  --radius: 26px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--caramel);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(2.7rem, 7vw, 5.4rem); margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
p { margin-top: 0; }
.lede { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 700px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
}
.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 14px;
  background: #f5f0ea;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { text-decoration: none; font-size: 0.95rem; color: var(--muted); font-weight: 650; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.button-primary,
.nav-links a.button-primary:visited,
.nav-links a.button-primary:hover { color: var(--white); }
.mobile-toggle { display: none; border: 0; background: none; padding: 8px; font: inherit; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 23px; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; font-weight: 750; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--brown-deep); color: var(--white); box-shadow: 0 10px 28px rgba(90,57,41,.22); }
.button-primary:hover { background: #462b20; }
.button-secondary { background: var(--white); border-color: var(--line); }
.button-small { min-height: 42px; padding: 0 18px; font-size: .9rem; }

.hero { padding: 58px 0 76px; background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 50px; align-items: center; }
.hero-copy { padding: 26px 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 24px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: .92rem; }
.hero-notes span { display: inline-flex; align-items: center; gap: 8px; }
.check {
  width: 18px; height: 18px; border-radius: 50%; background: #e8efe5; color: #3d6a3d;
  display: grid; place-items: center; font-size: .72rem; font-weight: 900;
}
.hero-visual { display: grid; gap: 18px; align-content: start; }
.hero-frame { border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); background: var(--sand); aspect-ratio: 1 / 1; }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: static; width: min(100%, 620px);
  padding: 22px 24px; border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.hero-card strong { display: block; margin-bottom: 4px; }
.hero-card span { color: var(--muted); font-size: .9rem; }
.review-link-wrap { text-align: center; margin-top: -2px; }
.review-link {
  display: inline-block;
  color: var(--brown-deep);
  font-size: .94rem;
  font-weight: 750;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.review-link:hover { color: var(--brown); }

.trust-strip { border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 22px; text-align: center; border-right: 1px solid var(--line); font-weight: 720; font-size: .92rem; }
.trust-item:last-child { border-right: 0; }

.section { padding: 96px 0; }
.section-soft { background: var(--cream); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 35px rgba(55,39,30,.06); }
.card-image { aspect-ratio: 4 / 3; overflow: hidden; background: #eee6da; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover img { transform: scale(1.025); }
.card-body { padding: 24px; }
.card-body p { color: var(--muted); margin-bottom: 0; }

.variant-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 30px; }
.variant-card { background: #fff; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; box-shadow: 0 10px 35px rgba(55,39,30,.06); }
.variant-media { aspect-ratio: 4 / 3; background: var(--sand); }
.variant-media img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.variant-body { padding: 24px; }
.variant-body p { color: var(--muted); }
.variant-chip {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; padding: 7px 12px;
  border-radius: 999px; font-size: .82rem; font-weight: 700; background: #f3ece3; color: var(--brown-deep);
}
.variant-chip-grey { background: #eceff1; color: #43505b; }

.table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 22px;
  overflow: hidden; box-shadow: 0 10px 35px rgba(55,39,30,.05);
}
.comparison-table th, .comparison-table td { padding: 18px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.comparison-table thead th { background: #f7f2eb; font-size: .92rem; }
.comparison-table tbody th { width: 18%; font-size: .96rem; }
.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td { border-bottom: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.split-media img { width: 100%; height: auto; }
.feature-list { display: grid; gap: 18px; margin: 30px 0; }
.feature-line { display: grid; grid-template-columns: 38px 1fr; gap: 14px; }
.feature-icon { width: 38px; height: 38px; border-radius: 12px; background: var(--sand); display: grid; place-items: center; font-weight: 900; color: var(--brown-deep); }
.feature-line p { margin-bottom: 0; color: var(--muted); }

.fit-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 48px; align-items: center; }
.fit-callout { background: var(--brown-deep); color: var(--white); border-radius: 28px; padding: 42px; }
.fit-callout p { color: rgba(255,255,255,.78); }
.fit-stat { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 850; line-height: 1; margin: 24px 0 8px; }
.fit-media { border-radius: 26px; overflow: hidden; border: 1px solid var(--line); background: white; }

.gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: repeat(2, 250px); gap: 18px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: 22px; background: var(--sand); }
.gallery figure:first-child { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery-expanded {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  align-items: stretch;
}
.gallery-expanded figure { aspect-ratio: 4 / 3; background: #fff; }
.gallery-expanded figure:first-child { grid-row: auto; }
.gallery-expanded img { object-fit: contain; background: #fff; }

.about-box { background: linear-gradient(135deg, #efe4d7, #fbf7f1); border-radius: 32px; padding: 54px; display: grid; grid-template-columns: 1fr .8fr; gap: 42px; }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.value { background: rgba(255,255,255,.72); padding: 20px; border-radius: 18px; border: 1px solid rgba(90,57,41,.1); }
.value strong { display: block; margin-bottom: 5px; }
.value span { color: var(--muted); font-size: .92rem; }

.faq { max-width: 840px; }
details { border-top: 1px solid var(--line); padding: 22px 0; }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 750; list-style: none; display: flex; justify-content: space-between; gap: 20px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.4rem; color: var(--caramel); }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); padding-top: 12px; margin-bottom: 0; }

.cta { padding: 78px 0; background: var(--brown-deep); color: var(--white); }
.cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta h2 { margin-bottom: 10px; }
.cta p { color: rgba(255,255,255,.74); margin-bottom: 0; }
.cta .button-primary { background: var(--white); color: var(--brown-deep); box-shadow: none; }

.footer { background: #211a16; color: rgba(255,255,255,.78); padding: 46px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.footer-brand { color: white; margin-bottom: 10px; }
.footer p { max-width: 620px; font-size: .9rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer a { color: rgba(255,255,255,.78); text-decoration: none; font-size: .9rem; }
.footer a:hover { color: white; }
.legal-note { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; color: rgba(255,255,255,.55); }

.legal-page { min-height: 70vh; padding: 84px 0; }
.legal-copy { max-width: 820px; }
.legal-copy h1 { font-size: clamp(2.4rem,5vw,4rem); }
.legal-copy h2 { font-size: 1.45rem; margin-top: 34px; }
.legal-copy p, .legal-copy li { color: var(--muted); }

@media (max-width: 920px) {
  .hero-grid, .split, .fit-grid, .about-box { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-visual { order: 0; max-width: 680px; }
  .cards, .variant-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 310px 220px 220px; }
  .gallery figure:first-child { grid-column: 1 / 3; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav-links {
    display: none; position: absolute; left: 14px; right: 14px; top: 72px; padding: 18px; background: white;
    border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links .button { width: 100%; }
  .mobile-toggle { display: block; }
  .hero { padding-top: 26px; }
  .hero-grid { gap: 30px; }
  .hero-frame { border-radius: 22px; }
  .hero-card { margin: 0; width: auto; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards, .variant-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .gallery { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(5, 260px); }
  .gallery figure:first-child { grid-column: auto; }
  .values { grid-template-columns: 1fr; }
  .about-box { padding: 30px; }
  .cta-grid { align-items: flex-start; flex-direction: column; }
  .comparison-table th, .comparison-table td { padding: 14px 12px; font-size: .92rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
