:root {
  color-scheme: light dark;
  --header-height: 74px;
  --bg: #f7f3e8;
  --surface: #fffdf7;
  --surface-strong: #eef5ec;
  --text: #17312d;
  --muted: #5d6b67;
  --line: rgba(23, 49, 45, 0.14);
  --brand: #1c5b4e;
  --brand-strong: #12372f;
  --gold: #d49a35;
  --gold-soft: #f5d58f;
  --sky: #d9ecf4;
  --shadow: 0 20px 60px rgba(18, 55, 47, 0.17);
  --radius: 8px;
  --max-width: 1160px;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1e1b;
    --surface: #142824;
    --surface-strong: #1b342f;
    --text: #f4f0e7;
    --muted: #b8c7c2;
    --line: rgba(244, 240, 231, 0.16);
    --brand: #8fd5bd;
    --brand-strong: #e9c778;
    --gold: #e6b65e;
    --gold-soft: #3a3321;
    --sky: #193b45;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(18, 55, 47, 0.12);
}

.site-nav {
  width: min(var(--max-width), calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  flex: 0 0 40px;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(18, 55, 47, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  color: var(--text);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  place-items: center;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.section {
  position: relative;
  padding: 94px 0;
}

.container {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.hero {
  min-height: calc(100svh - 42px);
  padding: calc(var(--header-height) + 64px) 0 62px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fffdf7;
}

.hero-media,
.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  margin: 0;
  z-index: -2;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 34, 30, 0.76) 0%, rgba(12, 34, 30, 0.56) 34%, rgba(12, 34, 30, 0.2) 70%),
    linear-gradient(0deg, rgba(12, 34, 30, 0.34), rgba(12, 34, 30, 0.05));
}

.hero-content {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding-right: min(8vw, 80px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe3a3;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(2.75rem, 5.4vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 28px;
  font-size: clamp(1.16rem, 2.2vw, 1.55rem);
  line-height: 1.5;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

.hero-actions,
.footer-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gold);
  color: #14211f;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.button.ghost {
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.hero .button.ghost {
  border-color: rgba(255, 253, 247, 0.5);
  background: rgba(255, 253, 247, 0.12);
  color: #fffdf7;
}

.button.full {
  width: 100%;
}

.trust-note {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 253, 247, 0.86);
  font-size: 0.95rem;
}

.intro-band {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--sky) 44%, transparent), transparent 70%),
    var(--bg);
}

.two-column,
.price-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(36px, 7vw, 86px);
}

.align-center {
  align-items: center;
}

.section-copy p,
.price-layout p,
.contact-layout p {
  max-width: 64ch;
  margin: 0 0 16px;
  color: var(--muted);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.support-card,
.process-step,
.price-panel,
.contact-box,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: 0 14px 34px rgba(18, 55, 47, 0.08);
}

.support-card {
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.support-card p,
.process-step p,
.price-panel p,
.contact-box span {
  color: var(--muted);
}

.card-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--gold) 18%, transparent);
  color: var(--brand-strong);
  font-weight: 850;
}

.calm-section {
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  position: relative;
  min-height: 220px;
  padding: 26px;
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 10%, transparent);
}

.price-section {
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--brand) 12%, transparent), transparent 48%),
    var(--bg);
}

.price-layout {
  align-items: center;
}

.price-panel {
  padding: clamp(28px, 5vw, 48px);
}

.price-value {
  margin: 0 0 2px;
  color: var(--brand-strong);
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 1;
  font-weight: 900;
}

.about-section {
  background: var(--surface);
}

.about-symbol {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 48% 34%, color-mix(in srgb, var(--gold) 60%, transparent) 0 12%, transparent 13%),
    radial-gradient(circle at 50% 52%, color-mix(in srgb, var(--brand) 24%, transparent), transparent 58%),
    linear-gradient(145deg, color-mix(in srgb, var(--sky) 58%, transparent), color-mix(in srgb, var(--gold) 16%, transparent));
  border: 1px solid var(--line);
  overflow: hidden;
}

.about-symbol span {
  width: min(220px, 54vw);
  height: min(220px, 54vw);
  border: 12px solid color-mix(in srgb, var(--surface) 74%, transparent);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line), 0 24px 60px rgba(18, 55, 47, 0.14);
}

.faq-section {
  background: var(--bg);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

details {
  padding: 0 20px;
}

summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
}

.contact-section {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--brand) 10%, transparent), transparent 72%),
    var(--surface-strong);
}

.contact-box {
  padding: 28px;
  font-style: normal;
  display: grid;
  gap: 12px;
}

.contact-box strong {
  font-size: 1.35rem;
}

.contact-box a {
  color: var(--brand-strong);
  font-size: 2rem;
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  padding: 30px 0;
  background: var(--brand-strong);
  color: #fffdf7;
}

.footer-layout {
  justify-content: space-between;
}

.footer-layout p {
  margin: 0;
}

.footer-layout a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 14px 18px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .menu-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    justify-content: center;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .hero-content {
    padding-right: 0;
  }

  .two-column,
  .price-layout,
  .contact-layout,
  .support-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .support-card,
  .process-step {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 16px;
  }

  .site-nav,
  .container,
  .hero-content {
    width: min(100% - 24px, var(--max-width));
  }

  .brand span {
    max-width: 190px;
    white-space: normal;
    line-height: 1.05;
  }

  .hero {
    min-height: calc(100svh - 64px);
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-height: 52px;
    text-align: center;
  }

  .section {
    padding: 70px 0;
  }

  .contact-box a {
    font-size: 1.56rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
