:root {
  --bg: #F5F4EF;
  --surface: #E5E2D8;
  --sage-soft: #C6C6B4;
  --sage: #8F9381;
  --sage-dark: #4A4D43;
  --ink: #141414;
  --muted: #66695f;
  --line: rgba(20,20,20,.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  height: 92px;
  display: grid;
  grid-template-columns: 220px 1fr 110px;
  align-items: center;
  gap: 28px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(245,244,239,.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(245,244,239,.94); }
.brand { width: 155px; }
.brand img, .footer-brand img { width: 100%; height: auto; }
.main-nav { justify-self: center; display: flex; gap: 42px; align-items: center; }
.main-nav a { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; position: relative; }
.main-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--ink); transition: right .25s ease; }
.main-nav a:hover::after { right: 0; }
.language-switch { justify-self: end; display: flex; align-items: center; gap: 8px; }
.language-switch span { width: 1px; height: 13px; background: var(--line); }
.lang { border: 0; background: transparent; padding: 7px 4px; font-size: 11px; cursor: pointer; opacity: .42; font-weight: 700; }
.lang.active { opacity: 1; border-bottom: 1px solid var(--ink); }
.menu-button { display: none; }

.section-shell { width: min(calc(100% - 80px), var(--max)); margin: 0 auto; }
.hero {
  min-height: 880px;
  padding-top: 170px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: 110px;
}
.hero-copy { max-width: 660px; padding-bottom: 40px; }
.hero-socials { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-socials-label { font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.hero-socials-links { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.hero-socials-links a { position: relative; font-size: 10px; font-weight: 700; letter-spacing: .055em; text-transform: uppercase; color: var(--sage-dark); padding-bottom: 4px; }
.hero-socials-links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: currentColor; transition: right .22s ease; }
.hero-socials-links a:hover::after { right: 0; }
.eyebrow { font-size: 11px; letter-spacing: .22em; font-weight: 700; color: var(--sage-dark); margin-bottom: 34px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-family: var(--serif); font-size: clamp(74px, 7vw, 122px); line-height: .86; letter-spacing: -.035em; font-weight: 500; white-space: pre-line; margin-bottom: 38px; }
.hero-text { max-width: 590px; font-size: 16px; line-height: 1.75; color: #33352f; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 24px; border: 1px solid var(--ink); font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button svg { width: 17px; height: 17px; fill: currentColor; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--bg); }
.button-dark:hover { background: var(--sage-dark); border-color: var(--sage-dark); }
.button-light { background: transparent; }
.button-light:hover { background: var(--surface); }
.hero-mark { display: flex; align-items: center; justify-content: center; min-height: 480px; }
.hero-mark img { width: min(510px, 80%); height: auto; }

.section { padding: 142px 0; }
.bordered { border-top: 1px solid var(--line); }
.section-sage { background: rgba(198,198,180,.22); }
.section-kicker { display: flex; gap: 22px; align-items: baseline; }
.section-kicker > span { font-size: 11px; color: var(--sage-dark); font-weight: 700; letter-spacing: .1em; }
.section-kicker h2 { font-family: var(--serif); font-size: 52px; line-height: .98; font-weight: 500; margin: 0; }
.about-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 140px; align-items: start; }
.about-copy { max-width: 700px; }
.about-copy .lead { font-family: var(--serif); font-size: 38px; line-height: 1.1; margin-bottom: 24px; }
.about-copy p { font-size: 15px; line-height: 1.85; }
.about-copy .muted { color: var(--muted); margin-top: 24px; }
.features-grid { margin-top: 110px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.feature { padding: 34px 34px 0 0; min-height: 190px; border-right: 1px solid var(--line); }
.feature + .feature { padding-left: 34px; }
.feature:last-child { border-right: 0; }
.icon { width: 29px; height: 29px; margin-bottom: 25px; color: var(--sage-dark); }
.icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feature h3, .info-card h3, .guarantee-item h3 { font-size: 14px; margin-bottom: 10px; }
.feature p, .info-card p, .guarantee-item p { font-size: 12.5px; line-height: 1.7; color: var(--muted); margin: 0; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 72px; row-gap: 84px; margin-top: 92px; }
.step { border-top: 1px solid var(--line); padding-top: 24px; }
.step-number { font-family: var(--serif); font-size: 60px; line-height: 1; color: var(--sage-dark); margin-bottom: 28px; }
.step h3 { font-size: 15px; margin-bottom: 11px; }
.step p { font-size: 13px; line-height: 1.75; color: var(--muted); max-width: 330px; }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 85px; }
.info-card { border: 1px solid rgba(74,77,67,.18); min-height: 210px; padding: 34px 36px; background: rgba(245,244,239,.46); }
.info-card h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; }
.info-card p { max-width: 540px; font-size: 13.5px; }
.section-note { margin: 36px 0 0; font-size: 12px; color: var(--sage-dark); }

.guarantees-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 135px; }
.guarantees-intro > p { max-width: 420px; margin-top: 38px; font-size: 14px; line-height: 1.8; color: var(--muted); }
.guarantee-list { border-top: 1px solid var(--line); }
.guarantee-item { display: grid; grid-template-columns: 230px 1fr; gap: 45px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.guarantee-item h3 { margin: 0; }
.guarantee-item p { max-width: 650px; }

.reviews-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; align-items: end; }
.reviews-copy { max-width: 670px; }
.reviews-copy p { font-family: var(--serif); font-size: 34px; line-height: 1.15; margin-bottom: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 16px; padding-bottom: 7px; border-bottom: 1px solid var(--ink); font-size: 12px; text-transform: uppercase; font-weight: 700; letter-spacing: .05em; }

.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 130px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; border: 0; background: transparent; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 25px 0; cursor: pointer; text-align: left; font-size: 14px; font-weight: 600; }
.faq-plus { width: 22px; height: 22px; position: relative; flex: 0 0 22px; }
.faq-plus::before, .faq-plus::after { content: ''; position: absolute; top: 10px; left: 3px; right: 3px; height: 1px; background: var(--ink); transition: transform .25s ease; }
.faq-plus::after { transform: rotate(90deg); }
.faq-item.open .faq-plus::after { transform: rotate(0deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-answer-inner { overflow: hidden; min-height: 0; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p { padding: 0 60px 28px 0; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; max-width: 760px; }

.footer { padding: 95px 0 28px; background: #EAE8DF; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: .8fr .8fr 1.4fr; gap: 100px; }
.footer-brand { width: 190px; align-self: start; }
.footer h3 { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13px; color: #3b3d37; width: fit-content; }
.footer-links a:hover { text-decoration: underline; }
.footer-contact { max-width: 470px; }
.footer-contact p { font-size: 13px; line-height: 1.75; color: var(--muted); margin-bottom: 24px; }
.footer-bottom { margin-top: 80px; border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; font-size: 10px; color: #77796f; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-late { transition-delay: .12s; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 170px 1fr 90px; }
  .main-nav { gap: 22px; }
  .hero { gap: 45px; grid-template-columns: 1fr .9fr; }
  .about-grid, .guarantees-layout, .reviews-layout, .faq-layout { gap: 60px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(2) { border-right: 0; }
  .feature:nth-child(n+3) { border-top: 1px solid var(--line); padding-top: 34px; }
  .steps-grid { column-gap: 40px; }
}

@media (max-width: 760px) {
  .site-header { height: 76px; grid-template-columns: 1fr auto auto; padding: 0 20px; }
  .brand { width: 130px; }
  .menu-button { display: grid; width: 34px; height: 34px; border: 0; background: transparent; place-content: center; gap: 6px; cursor: pointer; order: -1; }
  .menu-button span { display: block; width: 19px; height: 1px; background: var(--ink); transition: transform .25s ease; }
  .menu-button.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button.open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 76px 0 auto 0; padding: 28px 22px 34px; background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; gap: 0; transform: translateY(-140%); opacity: 0; pointer-events: none; transition: .3s ease; }
  .main-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav a { font-family: var(--serif); font-size: 26px; text-transform: none; font-weight: 500; letter-spacing: 0; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .language-switch { gap: 6px; }
  .section-shell { width: min(calc(100% - 38px), var(--max)); }
  .hero { min-height: 730px; padding-top: 124px; padding-bottom: 78px; display: block; }
  .hero-copy { max-width: none; padding: 0; }
  .hero-socials { gap: 10px 16px; margin-bottom: 22px; padding-right: 86px; }
  .hero-socials-label { width: 100%; font-size: 8px; letter-spacing: .16em; }
  .hero-socials-links { gap: 10px 14px; }
  .hero-socials-links a { font-size: 9px; }
  .eyebrow { font-size: 9px; margin-bottom: 22px; letter-spacing: .18em; }
  h1 { font-size: clamp(58px, 17vw, 80px); margin-bottom: 26px; max-width: 440px; }
  .hero-text { font-size: 13px; line-height: 1.72; margin-bottom: 28px; max-width: 390px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .button { width: 100%; min-height: 50px; font-size: 11px; }
  .hero-mark { position: absolute; top: 110px; right: 16px; min-height: 0; width: 105px; opacity: .92; }
  .hero-mark img { width: 100%; }
  .section { padding: 82px 0; }
  .section-kicker { gap: 12px; }
  .section-kicker > span { font-size: 9px; }
  .section-kicker h2 { font-size: 36px; }
  .about-grid, .guarantees-layout, .reviews-layout, .faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .about-copy .lead { font-size: 29px; margin-bottom: 20px; }
  .about-copy p { font-size: 13px; line-height: 1.75; }
  .features-grid { margin-top: 56px; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
  .feature, .feature + .feature, .feature:nth-child(n+3) { min-height: 0; padding: 22px 0; border-right: 0; border-top: 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 38px 1fr; column-gap: 16px; }
  .feature .icon { grid-row: 1 / 3; margin: 1px 0 0; width: 25px; height: 25px; }
  .feature h3 { margin: 0 0 6px; font-size: 13px; }
  .feature p { font-size: 11.5px; }
  .steps-grid { grid-template-columns: 1fr; gap: 0; margin-top: 52px; }
  .step { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
  .step-number { font-size: 40px; margin: 0; grid-row: 1 / 3; }
  .step h3 { margin: 2px 0 6px; }
  .step p { margin: 0; font-size: 11.5px; }
  .info-grid { grid-template-columns: 1fr; margin-top: 48px; gap: 10px; }
  .info-card { min-height: 0; padding: 24px; }
  .info-card h3 { font-size: 24px; }
  .info-card p { font-size: 12px; }
  .section-note { font-size: 10.5px; line-height: 1.6; }
  .guarantees-intro > p { margin-top: 22px; font-size: 12.5px; }
  .guarantee-item { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .guarantee-item p { font-size: 11.5px; }
  .reviews-copy p { font-size: 28px; }
  .faq-question { font-size: 12.5px; padding: 20px 0; }
  .faq-answer p { font-size: 11.5px; padding-right: 20px; }
  .footer { padding-top: 70px; }
  .footer-grid { grid-template-columns: 1fr; gap: 46px; }
  .footer-brand { width: 150px; }
  .footer-contact .button { width: fit-content; }
  .footer-bottom { margin-top: 58px; font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
