:root {
  --primary: #1a1a1a;
  --bg: #f7f4ee;
  --ink: #111111;
  --accent: #caa14a;
  --paper: #ffffff;
  --line: #e4dfd3;
  --mute: #5c5648;
  --s: clamp(16px, 2vw, 24px);
  --r: 12px;
  --display: 'Jost', system-ui, sans-serif;
  --body: 'Jost', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.wrap { width: min(1160px, 92vw); margin-inline: auto; }
h1, h2, h3 { font-family: var(--display); line-height: 1.05; }
h1 { font-size: clamp(38px, 6vw, 76px); font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
h2 { font-size: clamp(26px, 3.4vw, 44px); font-weight: 600; color: var(--ink); }
h3 { font-size: 18px; font-weight: 600; color: var(--ink); }
p { color: var(--mute); }
.lead { font-size: clamp(15px, 1.5vw, 19px); color: var(--mute); max-width: 48ch; line-height: 1.65; font-weight: 300; }
.eyebrow { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.centered { text-align: center; max-width: 52ch; margin-inline: auto; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(247,244,238,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; align-items: center; gap: 20px; height: 60px; }
.brand { font-family: var(--display); font-size: 18px; font-weight: 700; text-decoration: none; color: var(--ink); letter-spacing: .06em; text-transform: lowercase; flex-shrink: 0; }
.nav__links { display: flex; gap: 24px; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--mute); font-size: 14px; font-weight: 400; transition: color .15s; }
.nav__links a:hover { color: var(--ink); }

/* Buttons */
.btn { display: inline-flex; align-items: center; text-decoration: none; font-weight: 600; border-radius: 4px; transition: transform .15s, background .15s, opacity .15s; cursor: pointer; font-family: var(--body); letter-spacing: .04em; }
.btn--primary { background: var(--ink); color: var(--bg); padding: 14px 28px; }
.btn--primary:hover { background: #2a2a2a; transform: translateY(-1px); }
.btn--accent { background: var(--accent); color: #fff; padding: 14px 28px; }
.btn--accent:hover { background: #b88e3a; transform: translateY(-1px); }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--lg { padding: 16px 34px; font-size: 16px; }

/* Hero editorial — magazine layout */
.hero-editorial { padding: clamp(40px, 5vw, 70px) 0 0; }
.hero-editorial__grid { width: min(1160px, 92vw); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 0; }
.he-left { grid-column: 1; grid-row: 1; padding-right: clamp(28px, 4vw, 56px); padding-bottom: 40px; display: flex; flex-direction: column; justify-content: flex-end; }
.he-left h1 { margin-bottom: 18px; }
.he-left .lead { margin-bottom: 28px; }
.he-media { grid-column: 2; grid-row: 1 / 3; position: relative; }
.he-media img { width: 100%; height: 100%; min-height: clamp(380px, 55vw, 660px); object-fit: cover; display: block; }
.he-media__tag { position: absolute; bottom: 24px; left: 24px; background: rgba(247,244,238,.95); backdrop-filter: blur(8px); padding: 10px 16px; border-radius: 6px; }
.he-media__tag span { display: block; font-size: 12px; font-weight: 600; color: var(--mute); }
.he-media__tag span:first-child { font-size: 14px; font-weight: 700; color: var(--ink); }
.he-bottom { grid-column: 1; grid-row: 2; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.he-stat { padding: 22px 0; border-right: 1px solid var(--line); padding-right: 16px; }
.he-stat:first-child { padding-left: 0; }
.he-stat:last-child { border-right: none; }
.he-stat b { display: block; font-size: 22px; font-weight: 700; color: var(--accent); font-family: var(--display); }
.he-stat span { font-size: 12px; color: var(--mute); margin-top: 3px; display: block; }

/* Section */
.section { padding: clamp(50px, 7vw, 100px) 0; }
.section__head { margin-bottom: 44px; }
.section__head p { color: var(--mute); margin-top: 10px; }

/* Capsule */
.capsule-section { background: var(--primary); color: var(--bg); }
.capsule__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.capsule__text .eyebrow { color: var(--accent); }
.capsule__text h2 { color: var(--bg); margin-bottom: 18px; }
.capsule__text .lead { color: rgba(247,244,238,.75); margin-bottom: 18px; }
.capsule__body { color: rgba(247,244,238,.6); font-size: 14.5px; margin-bottom: 24px; max-width: 52ch; font-weight: 300; }
.capsule__specs { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.capsule__specs li { color: rgba(247,244,238,.7); font-size: 14px; padding-left: 16px; position: relative; }
.capsule__specs li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.capsule__specs li b { color: rgba(247,244,238,.9); }
.float-diagram { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 32px; text-align: center; }
.fd-surface { position: relative; height: 140px; background: rgba(202,161,74,.1); border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.fd-body { background: rgba(247,244,238,.9); border-radius: 50%; width: 60px; height: 30px; position: absolute; top: 40px; z-index: 2; font-size: 12px; font-weight: 600; color: var(--ink); display: flex; align-items: center; justify-content: center; }
.fd-water { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: rgba(202,161,74,.25); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--accent); font-weight: 600; }
.fd-caption { font-size: 13px; color: rgba(247,244,238,.5); line-height: 1.5; font-weight: 300; }

/* Benefits magazine grid */
.benefits-section { background: var(--paper); border-block: 1px solid var(--line); padding: clamp(50px, 7vw, 100px) 0; }
.benefits-magazine { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.bm { padding: 32px 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.bm--large { grid-row: span 1; }
.bm:last-child { border-right: none; }
.bm__num { font-size: 48px; font-weight: 200; color: var(--accent); opacity: .5; font-family: var(--display); line-height: 1; margin-bottom: 16px; }
.bm h3 { margin-bottom: 12px; font-size: 17px; }
.bm p { font-size: 14px; color: var(--mute); line-height: 1.65; font-weight: 300; }

/* Prepare */
.prepare { background: var(--bg); }
.prepare h2 { margin-bottom: 36px; }
.prepare-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 2px solid var(--ink); }
.ps { padding: 28px 20px 28px 0; border-right: 1px solid var(--line); padding-right: 24px; }
.ps:last-child { border-right: none; padding-right: 0; }
.ps__n { display: block; font-size: 48px; font-weight: 700; color: var(--accent); font-family: var(--display); line-height: 1; margin-bottom: 12px; }
.ps b { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.ps p { font-size: 14px; color: var(--mute); }

/* Contact */
.contact { padding: clamp(50px, 7vw, 100px) 0; }
.contact__in { border: 2px solid var(--ink); border-radius: var(--r); padding: clamp(32px, 4vw, 56px); display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.contact__in h2 { color: var(--ink); }
.contact__in > div:first-child p { color: var(--mute); max-width: 40ch; margin-top: 10px; }
.contact__meta { color: var(--ink) !important; font-weight: 600; font-size: 15px; }
.contact__prices { display: flex; flex-direction: column; gap: 8px; }
.cp-row { display: flex; gap: 32px; justify-content: space-between; font-size: 15px; padding: 8px 16px; border-radius: 6px; background: var(--paper); }
.cp-row span:first-child { color: var(--mute); }
.cp-row span:last-child { font-weight: 700; color: var(--accent); font-family: var(--display); font-size: 17px; }
.cp-row--gift { background: rgba(202,161,74,.1); border: 1px solid rgba(202,161,74,.3); }

/* Footer */
.foot { background: var(--primary); padding: 28px 0; border-top: 1px solid rgba(255,255,255,.1); }
.foot__in { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; }
.foot__in span:first-child { color: rgba(247,244,238,.85); }
.foot__in span:last-child { color: rgba(247,244,238,.35); }

@media (max-width: 900px) {
  .hero-editorial__grid { grid-template-columns: 1fr; }
  .he-media { grid-column: 1; grid-row: 2; }
  .he-media img { min-height: 280px; height: 50vw; }
  .he-bottom { grid-column: 1; grid-row: 3; grid-template-columns: repeat(2, 1fr); }
  .capsule__grid { grid-template-columns: 1fr; }
  .benefits-magazine { grid-template-columns: repeat(2, 1fr); }
  .bm { border-bottom: 1px solid var(--line); }
  .prepare-steps { grid-template-columns: repeat(2, 1fr); }
  .ps { border-bottom: 1px solid var(--line); padding: 24px; border-right: none; }
  .ps:nth-child(odd) { border-right: 1px solid var(--line); }
  .nav__links { display: none; }
  .contact__in { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .benefits-magazine { grid-template-columns: 1fr; }
  .prepare-steps { grid-template-columns: 1fr; }
  .ps:nth-child(odd) { border-right: none; }
  .he-bottom { grid-template-columns: repeat(2, 1fr); }
  .he-stat { padding: 16px 12px; }
  .contact__in { border-width: 1px; }
}
