:root {
  --ink: #27264f;
  --ink-soft: #4a4a6b;
  --paper: #fbfaf6;
  --paper-2: #f4f2ea;
  --apricot: #f4a883;
  --apricot-soft: #fce6da;
  --line: #e4e1d6;
  --shadow: 0 18px 50px -28px rgba(39, 38, 79, 0.4);
  --r-lg: 22px;
  --r-md: 14px;
  --maxw: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Mona Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--apricot);
  margin: 0 0 0.9rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: 74px;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-name {
  font-family: "EB Garamond", serif;
  font-size: 1.5rem; font-weight: 600; color: var(--ink);
}
.main-nav { display: flex; align-items: center; gap: 1.9rem; }
.main-nav a {
  text-decoration: none; font-size: 0.96rem; font-weight: 500;
  color: var(--ink-soft); transition: color 0.18s;
}
.main-nav a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: var(--paper) !important;
  padding: 0.55rem 1.1rem; border-radius: 999px;
}
.nav-cta:hover { background: #1c1b3c; }
.lang-switch select {
  font-family: inherit; font-size: 0.9rem; font-weight: 600;
  color: var(--ink); background: transparent;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.4rem 0.7rem; cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none;
  font-weight: 600; font-size: 1rem;
  padding: 0.82rem 1.6rem; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.16s, background 0.18s, box-shadow 0.18s;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: #1c1b3c; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* ---------- Hero ---------- */
.hero { padding: 4.5rem 0 3.5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem; align-items: center;
}
.hero-title {
  font-size: clamp(2.7rem, 5vw, 4.05rem);
  margin: 0 0 1.3rem;
}
.hero-lede {
  font-size: 1.18rem; color: var(--ink-soft);
  max-width: 32ch; margin-bottom: 1.9rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.4rem; }
.hero-note { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }
.hero-figure {
  margin: 0; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); position: relative;
}
.hero-figure::after {
  content: ""; position: absolute; left: -18px; bottom: -18px;
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--apricot-soft); z-index: -1;
}
.hero-figure img { width: 100%; height: 480px; object-fit: cover; }
.hero-badge {
  position: absolute; right: -14px; bottom: -22px; margin: 0;
  width: 96px; height: 96px; border-radius: 50%; overflow: hidden;
  border: 5px solid var(--paper); box-shadow: var(--shadow);
}
.hero-badge img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--ink); color: var(--paper); padding: 2.6rem 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.stat { display: flex; flex-direction: column; gap: 0.35rem; }
.stat-num {
  font-family: "EB Garamond", serif; font-size: 2.5rem;
  font-weight: 600; color: var(--apricot); line-height: 1;
}
.stat-label { font-size: 0.92rem; color: rgba(251, 250, 246, 0.82); }

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section-head { max-width: 620px; margin-bottom: 2.8rem; }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin: 0; }

/* Services */
.service-list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 2.6rem;
}
.service-item { border-top: 2px solid var(--ink); padding-top: 1.1rem; }
.service-item h3 { font-size: 1.4rem; margin: 0 0 0.5rem; }
.service-item p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* Alternating */
.alt-a { background: var(--paper-2); }
.alt-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
}
.alt-figure { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.alt-figure img { width: 100%; height: 440px; object-fit: cover; }
.alt-text .section-title { margin-bottom: 1.1rem; }
.alt-text p { color: var(--ink-soft); }
.check-list { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.check-list li {
  position: relative; padding-left: 1.9rem; margin-bottom: 0.7rem;
  color: var(--ink); font-weight: 500;
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.45em;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--apricot);
}

/* How */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem;
}
.step {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 2rem 1.7rem;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--apricot-soft); color: var(--ink);
  font-family: "EB Garamond", serif; font-size: 1.4rem; font-weight: 600;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.3rem; margin: 0 0 0.5rem; }
.step p { color: var(--ink-soft); margin: 0; font-size: 0.97rem; }

/* FAQ */
.faq { background: var(--paper-2); }
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: start; }
.faq-intro .section-title { margin-bottom: 0.9rem; }
.faq-intro p { color: var(--ink-soft); }
.faq-item {
  border-bottom: 1px solid var(--line); padding: 1.1rem 0;
}
.faq-item summary {
  font-family: "EB Garamond", serif; font-size: 1.28rem; font-weight: 600;
  cursor: pointer; list-style: none; position: relative; padding-right: 2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: -2px;
  font-size: 1.5rem; color: var(--apricot); transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0.7rem 0 0; color: var(--ink-soft); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: start; }
.contact-text .section-title { margin-bottom: 1rem; }
.contact-text p { color: var(--ink-soft); }
.contact-form {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2.2rem; box-shadow: var(--shadow);
}
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 0.75rem 0.9rem; border: 1px solid var(--line);
  border-radius: var(--r-md); background: var(--paper); resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--apricot-soft);
}
.form-status {
  margin: 1rem 0 0; padding: 0.8rem 1rem; border-radius: var(--r-md);
  background: var(--apricot-soft); color: var(--ink); font-weight: 500;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(251, 250, 246, 0.85); padding: 3.2rem 0; }
.footer-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 2.5rem; align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.footer-brand .brand-name { color: var(--paper); }
.footer-legal p { margin: 0 0 0.25rem; font-size: 0.92rem; }
.footer-legal .copyright { margin-top: 0.7rem; color: rgba(251, 250, 246, 0.6); }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  text-decoration: none; color: rgba(251, 250, 246, 0.85);
  font-size: 0.92rem; transition: color 0.18s;
}
.footer-links a:hover { color: var(--apricot); }

/* ---------- Policy pages ---------- */
.doc { padding: 3.5rem 0 4.5rem; }
.doc-inner { max-width: 760px; }
.doc h1 { font-size: clamp(2.2rem, 4vw, 3rem); margin: 0 0 0.5rem; }
.doc .doc-meta { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 2.2rem; }
.doc h2 { font-size: 1.5rem; margin: 2.2rem 0 0.7rem; }
.doc p, .doc li { color: var(--ink-soft); }
.doc ul { padding-left: 1.3rem; }
.doc li { margin-bottom: 0.5rem; }
.back-link { display: inline-block; margin-top: 2.5rem; font-weight: 600; color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .alt-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .alt-grid-rev .alt-text { order: 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .main-nav { display: none; }
  .hero-figure img, .alt-figure img { height: 340px; }
}
@media (max-width: 560px) {
  .service-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .wrap { padding: 0 20px; }
}
