
:root {
  --ink: #243128;
  --paper: #fbf5e8;
  --accent: #926d48;
  --muted: #456f5a;
  --line: color-mix(in srgb, var(--ink) 16%, transparent);
  --radius: 12px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(135deg, var(--paper), #ffffff 48%, color-mix(in srgb, var(--muted) 12%, var(--paper)));
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.65;
}
a { color: inherit; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 20px clamp(20px, 5vw, 72px);
  background: color-mix(in srgb, var(--paper) 88%, white);
  border-bottom: 1px solid var(--line);
}
.brand { font-weight: 800; text-decoration: none; font-size: 1.15rem; letter-spacing: .02em; }
nav { display: flex; gap: clamp(12px, 2vw, 28px); flex-wrap: wrap; font-weight: 700; }
nav a, .footer-links a { text-decoration: none; }
main { overflow: hidden; }
section { padding: clamp(54px, 7vw, 104px) clamp(20px, 5vw, 72px); }
h1, h2, h3 { line-height: 1.08; margin: 0 0 18px; letter-spacing: 0; }
h1 { font-size: clamp(2.7rem, 6vw, 6.2rem); max-width: 960px; }
h2 { font-size: clamp(2rem, 3.5vw, 3.7rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 18px; max-width: 78ch; }
img { width: 100%; display: block; object-fit: cover; border-radius: var(--radius); }
.hero { min-height: 88vh; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(28px, 5vw, 78px); align-items: center; }
.hero-image { aspect-ratio: 4 / 3; box-shadow: 0 32px 90px rgba(0,0,0,.14); }
.eyebrow { color: var(--accent); text-transform: uppercase; font-weight: 800; letter-spacing: .16em; font-size: .82rem; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 13px 22px; border-radius: var(--radius); font-weight: 800; text-decoration: none; border: 1px solid var(--line); cursor: pointer; font: inherit; }
.primary { background: var(--ink); color: var(--paper); box-shadow: 0 16px 40px rgba(0,0,0,.16); }
.secondary { background: rgba(255,255,255,.68); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 80px); align-items: center; }
.split img { aspect-ratio: 5 / 4; }
.band { background: color-mix(in srgb, var(--ink) 91%, black); color: var(--paper); }
.benefit-grid, .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.benefit-grid article, .blog-grid article, .product-card, details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.62);
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}
.band .benefit-grid article { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 30px; }
.product-card { display: grid; grid-template-columns: 190px 1fr; gap: 20px; }
.product-card img { aspect-ratio: 1; }
.price { font-size: 1.35rem; font-weight: 900; color: var(--accent); }
.text-link { font-weight: 900; color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 0; list-style: none; }
.steps li { padding: 22px; border-left: 4px solid var(--accent); background: rgba(255,255,255,.52); }
.faq details { margin-bottom: 14px; }
summary { font-weight: 900; cursor: pointer; }
.payment { display: flex; justify-content: space-between; align-items: center; gap: 28px; background: color-mix(in srgb, var(--accent) 13%, var(--paper)); }
.order { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: stretch; }
.order img { height: 100%; min-height: 620px; }
form { display: grid; gap: 16px; padding: clamp(24px, 4vw, 46px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.72); }
label { display: grid; gap: 8px; font-weight: 800; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; font: inherit; background: white; color: var(--ink); }
.document, .thankyou { max-width: 1120px; margin: 0 auto; }
.document h1, .thankyou h1 { font-size: clamp(2.4rem, 4vw, 4.4rem); }
.document h2 { margin-top: 40px; font-size: clamp(1.55rem, 2.4vw, 2.3rem); }
.site-footer { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 22px; padding: 46px clamp(20px, 5vw, 72px); background: var(--ink); color: var(--paper); }
.footer-links { display: grid; gap: 8px; }
.copyright { grid-column: 1 / -1; opacity: .75; }
@media (max-width: 900px) {
  .site-header, .payment { align-items: flex-start; flex-direction: column; }
  .hero, .split, .order, .product-grid, .site-footer { grid-template-columns: 1fr; }
  .benefit-grid, .blog-grid, .steps { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 1fr; }
  .order img { min-height: 360px; }
}

.language-switcher { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.language-switcher a { text-decoration: none; border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 9px; font-size: .78rem; font-weight: 800; background: rgba(255,255,255,.56); }
.language-switcher a.active { background: var(--ink); color: var(--paper); }
@media (max-width: 900px) { .language-switcher { width: 100%; } }
