:root {
  --bg: #f4f0eb;
  --paper: rgba(255,255,255,.72);
  --paper-strong: rgba(255,255,255,.84);
  --text: #2d2430;
  --muted: #6b606e;
  --purple: #672d6c;
  --purple-deep: #3b1e42;
  --sand: #cdb89f;
  --dark: #211826;
  --line: rgba(103,45,108,.14);
  --radius: 26px;
  --shadow: 0 24px 60px rgba(44, 26, 47, .08);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(205,184,159,.22), transparent 34%),
    radial-gradient(circle at top left, rgba(103,45,108,.10), transparent 32%),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(244,240,235,.78);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand img { width: 156px; height: auto; }
.menu {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: .96rem;
}
.menu a:hover { color: var(--purple); }
.cta-top {
  color: var(--purple);
  font-weight: 700;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.6);
}

.hero {
  padding: 88px 0 74px;
}
.hero-shell {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: stretch;
}
.hero-copy,
.hero-panel {
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: 54px;
  background: linear-gradient(145deg, var(--paper-strong), rgba(255,255,255,.66));
  border: 1px solid var(--line);
}
.hero-panel {
  padding: 34px;
  background: linear-gradient(160deg, rgba(42,27,47,.98), rgba(62,34,72,.94));
  color: white;
  border: 1px solid rgba(255,255,255,.05);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 800;
}
.section-kicker.light { color: var(--sand); }

h1, h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: -.03em;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 4.2rem); max-width: 12ch; }
h2 { font-size: clamp(1.95rem, 4vw, 3.1rem); max-width: 15ch; }

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--purple);
  color: white;
}
.btn-ghost {
  color: var(--purple);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.58);
}

.stat {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.stat:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.label {
  display: block;
  color: rgba(255,255,255,.62);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .74rem;
  margin-bottom: 8px;
}
.stat strong { font-size: 1.08rem; line-height: 1.45; }

.section { padding: 80px 0; }
.section-dark {
  background: linear-gradient(180deg, rgba(40,27,45,.98), rgba(27,19,31,.98));
  color: white;
}
.light { color: white; }

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 46px;
  align-items: start;
}
.section-copy p { color: var(--muted); margin: 0 0 16px; }

.steps {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.steps article,
.info-card,
.contact-panel {
  border-radius: var(--radius);
}
.steps article {
  padding: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(205,184,159,.16);
  color: var(--sand);
  font-weight: 800;
  margin-bottom: 16px;
}
.steps h3 { margin: 0 0 10px; color: white; }
.steps p { margin: 0; color: rgba(255,255,255,.76); }

.grid-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.info-card {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.info-card h3 { margin: 0 0 10px; color: var(--purple-deep); }
.info-card p { margin: 0; color: var(--muted); }

.contact-panel {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(145deg, var(--paper-strong), rgba(255,255,255,.66));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-panel p { color: var(--muted); margin: 0; max-width: 62ch; }

.site-footer {
  padding: 28px 0 42px;
  color: var(--muted);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.footer-inner img { width: 138px; }

@media (max-width: 980px) {
  .menu { display: none; }
  .hero-shell,
  .split,
  .steps,
  .grid-cards,
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-copy,
  .hero-panel,
  .contact-panel,
  .info-card,
  .steps article { padding: 22px; }
  .btn, .cta-top { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
}


.hero-panel {
  display: flex;
  flex-direction: column;
}

.hero-panel-logo {
  margin-top: auto;
  padding-top: 20px;
  min-height: 180px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-panel-logo img {
  width: 220px;
  height: auto;
  opacity: 0.98;
}

@media (max-width: 640px) {
  .hero-panel-logo {
    min-height: 140px;
    padding-top: 16px;
    align-items: flex-start;
  }
  .hero-panel-logo img {
    width: 170px;
  }
}
