
:root {
  --bg: #fff9f6;
  --bg-soft: #f4eee9;
  --bg-alt: #f7f2ed;
  --card: rgba(255, 252, 249, 0.92);
  --text: #2c3130;
  --muted: #5f6864;
  --line: #e5ddd6;
  --primary: #8cad9d;
  --primary-strong: #6f9182;
  --secondary: #d7b9a7;
  --secondary-strong: #c79f87;
  --success: #25d366;
  --shadow: 0 14px 36px rgba(53, 50, 47, 0.10);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top left, #fbf7f4 0%, var(--bg) 52%, #f8f2ed 100%);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
}

.topbar {
  background: linear-gradient(90deg, rgba(215,185,167,.22), rgba(140,173,157,.22));
  border-bottom: 1px solid rgba(140, 173, 157, 0.18);
}
.topbar p {
  margin: 0;
  text-align: center;
  color: #56605c;
  font-size: 0.92rem;
  padding: 12px 18px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}
.narrow { width: min(calc(100% - 32px), 860px); }
.section {
  padding: 36px 0 42px;
}
.section-alt {
  background: linear-gradient(180deg, rgba(247,242,237,0.72), rgba(255,249,246,0));
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(140,173,157,0.12);
  color: #597164;
  border: 1px solid rgba(140,173,157,0.18);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.section-heading {
  text-align: center;
  margin-bottom: 26px;
}
.section-heading.left-align { text-align: left; }
.section-heading h2,
.hero h1 {
  margin: 12px 0 12px;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}
.section-heading p,
.lead,
.hero-trust p,
.contact-copy p { font-size: clamp(1.02rem, 2vw, 1.16rem); color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 246, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 218, 211, 0.75);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
}
.brand img { width: 220px; }
.nav {
  display: none;
  gap: 22px;
  color: #58615d;
  font-weight: 700;
}
.nav a { position: relative; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--secondary-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after,
.nav a:focus-visible::after { transform: scaleX(1); }
.btn-header { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease;
  will-change: transform;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(53,50,47,.13); }
.btn-primary {
  background: linear-gradient(180deg, #92b2a3, var(--primary-strong));
  color: #fffdfa;
}
.btn-secondary {
  background: rgba(255,255,255,0.74);
  border-color: var(--line);
  color: #49524f;
}
.btn-tertiary {
  background: rgba(215,185,167,0.16);
  border-color: rgba(215,185,167,0.3);
  color: #6f5444;
}
.btn-wide { width: 100%; }

.hero-grid,
.process-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}
.hero-copy { padding-top: 8px; }
.lead { margin: 0 0 18px; max-width: 60ch; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}
.hero-points span {
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--line);
  color: #56605b;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.card-soft,
.info-card,
.panel,
.contact-card,
.credit-card {
  background: var(--card);
  border: 1px solid rgba(226, 218, 211, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-soft { padding: 18px; }
.hero-trust {
  display: grid;
  gap: 16px;
}
.hero-trust strong,
.panel h3,
.contact-card h3,
.credit-card strong,
.info-card h3 { font-size: 1.06rem; }
.hero-trust ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: #55605b;
  font-weight: 700;
}
.hero-media { position: relative; }
.card-media {
  background: #fff;
  border-radius: 30px;
  border: 1px solid rgba(226, 218, 211, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-figure {
  aspect-ratio: 4 / 4.8;
}
.floating-note {
  position: relative;
  margin-top: -28px;
  margin-left: 16px;
  width: calc(100% - 32px);
}
.floating-note p { margin: 8px 0 0; color: var(--muted); }

.cards-grid {
  display: grid;
  gap: 16px;
}
.info-card {
  padding: 20px;
}
.icon-wrap {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(140,173,157,.20), rgba(215,185,167,.20));
  margin-bottom: 16px;
}
.icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #5d7468;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-card p { margin: 0; color: var(--muted); }

.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 14px;
}
.steps li {
  position: relative;
  padding: 18px 18px 18px 64px;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--secondary), var(--secondary-strong));
  color: #fff;
  font-weight: 700;
}
.process-copy { counter-reset: step; }
.steps strong { display: block; margin-bottom: 6px; }
.steps p { margin: 0; color: var(--muted); }
.info-panels {
  display: grid;
  gap: 14px;
}
.panel { padding: 18px; }
.panel h3 { margin-top: 0; margin-bottom: 12px; }
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.detail-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.detail-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.detail-list span { color: var(--muted); }
.detail-list strong { text-align: right; }
.highlight {
  background: linear-gradient(180deg, rgba(215,185,167,.16), rgba(140,173,157,.08));
}

.mosaic {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mosaic .tall {
  grid-column: 1 / -1;
  aspect-ratio: 1.2 / 1;
}
.mosaic .card-media:not(.tall) { aspect-ratio: 1 / 1; }

.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: rgba(255,252,249,0.86);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.faq-answer p {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--muted);
}
.faq-icon {
  width: 22px;
  height: 22px;
  position: relative;
  flex: none;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--secondary-strong);
  transform: translate(-50%, -50%);
  border-radius: 999px;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .2s ease; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.contact-cards,
.cta-stack { display: grid; gap: 14px; }
.contact-card p, .contact-card small, .credit-card p { margin: 0; color: var(--muted); }
.contact-photo { aspect-ratio: 1.06 / 1; }
.credit-card {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.menova-badge { width: 128px; height: auto; }

.site-footer {
  padding: 24px 0 112px;
  border-top: 1px solid rgba(226,218,211,.9);
}
.footer-inner {
  display: grid;
  gap: 6px;
  text-align: center;
  color: #67706c;
}
.footer-inner p { margin: 0; }
.footer-note { font-size: .96rem; }

.sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: 22px;
  background: rgba(255, 252, 249, 0.92);
  border: 1px solid rgba(226,218,211,.95);
  box-shadow: 0 14px 36px rgba(53,50,47,.16);
  backdrop-filter: blur(20px);
}
.sticky-link {
  min-height: 52px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 16px;
  font-weight: 700;
  color: #4f5955;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,242,236,.9));
}
.sticky-link:first-child { background: linear-gradient(180deg, #8cad9d, #6f9182); color: #fffdfa; }
.sticky-link:hover,
.sticky-link:focus-visible { transform: translateY(-1px); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }

:focus-visible {
  outline: 3px solid rgba(111,145,130,.35);
  outline-offset: 3px;
}

@media (min-width: 720px) {
  .section { padding: 56px 0 68px; }
  .hero-actions { flex-direction: row; }
  .hero-trust {
    grid-template-columns: 1.2fr .9fr;
    align-items: center;
  }
  .cards-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 980px) {
  .nav { display: flex; }
  .btn-header { display: inline-flex; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 36px; }
  .process-grid { grid-template-columns: 1.05fr .95fr; align-items: start; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr .86fr; align-items: start; gap: 30px; }
  .cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sticky-cta { left: auto; right: 18px; width: 390px; }
  .hero-figure { aspect-ratio: 1 / 1.1; }
}

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