:root {
  --ink: #102A36;
  --ink-soft: #3d5a66;
  --paper: #E7F4F3;
  --paper-2: #E7F4F3;
  --white: #F6FAFB;
  --navy: #0E7C7B;
  --navy-2: #0b5f5e;
  --teal: #0E7C7B;
  --teal-2: #1D9A8A;
  --gold: #1D9A8A;
  --line: rgba(18, 32, 43, 0.12);
  --shadow: 0 18px 50px rgba(15, 36, 48, 0.12);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
.photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.photo-card { padding: 10px; }
a { color: var(--teal-2); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--navy-2);
  color: #E7F4F3;
  font-size: 0.86rem;
  padding: 10px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: inherit; text-decoration: none; }

header.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(246,250,251,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
header.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 20px;
}
.brand { text-decoration: none; color: var(--ink); }
.brand strong { display: block; font-family: "Fraunces", Georgia, serif; font-size: 1.12rem; letter-spacing: -0.02em; }
.brand span { display: block; font-size: 0.72rem; color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase; }
nav.links { display: flex; gap: 22px; align-items: center; }
nav.links a { text-decoration: none; color: var(--ink); font-size: 0.95rem; }
nav.links a.btn { color: #fff; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; text-decoration: none; cursor: pointer;
  border-radius: 999px; padding: 13px 22px; font-weight: 700;
  font-family: inherit; font-size: 0.95rem;
}
.btn-dark { background: var(--navy); color: #fff !important; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--line); }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.4rem; }

.hero {
  background:
    linear-gradient(120deg, rgba(11,95,94,.88), rgba(14,124,123,.55)),
    url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
  padding: 86px 0 78px;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 0 0 16px;
  max-width: 16ch;
}
.hero p.lead { max-width: 58ch; font-size: 1.12rem; color: #f3eee4; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 18px; }
.trust { display: flex; gap: 22px; flex-wrap: wrap; font-size: 0.9rem; color: #E7F4F3; }
.kicker {
  display: inline-block; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 0.74rem; font-weight: 700; color: var(--gold); margin-bottom: 10px;
}

.section { padding: 78px 0; }
.section.alt { background: var(--paper); }
.section h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15; margin: 0 0 12px;
}
.grid-3, .grid-2, .grid-4 { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; font-family: "Fraunces", Georgia, serif; }
.muted { color: var(--ink-soft); }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.steps { counter-reset: step; }
.steps li { list-style: none; margin: 0 0 18px; padding-left: 54px; position: relative; }
.steps { padding: 0; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700;
}

.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 700; }
form.stack { display: grid; gap: 12px; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--line); font: inherit; background: #fff;
}
.fine { font-size: 0.8rem; color: var(--ink-soft); }

footer {
  background: var(--navy-2); color: #d9d0c2; padding: 48px 0 24px; font-size: 0.92rem;
}
footer a { color: #fff; }
footer .grid-3 { margin-bottom: 28px; }
.disclaimer { border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; font-size: 0.78rem; color: #b7b0a4; }

@media (max-width: 860px) {
  nav.links { display: none; }
  nav.links.open {
    display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0;
    background: #fff; padding: 18px; border-bottom: 1px solid var(--line);
  }
  .menu-toggle { display: block; }
  .grid-3, .grid-2, .grid-4, .split { grid-template-columns: 1fr; }
  .hero { padding: 56px 0; }
}

.map-wrap {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 360px;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
