:root {
  --ink: #183135;
  --muted: #5d6f72;
  --teal-950: #0c3f43;
  --teal-800: #155f64;
  --teal-700: #1c7479;
  --teal-100: #e1f2f0;
  --teal-50: #f2faf8;
  --cream: #fbfaf6;
  --white: #ffffff;
  --line: #d9e6e4;
  --warm: #b86850;
  --shadow: 0 20px 50px rgba(19, 76, 80, .10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--teal-800); text-underline-offset: .18em; }
a:hover { color: var(--teal-950); }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 999;
  transform: translateY(-160%); background: var(--white); color: var(--ink);
  padding: .7rem 1rem; border-radius: 10px; box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 36px), 820px); margin-inline: auto; }
.section { padding: 84px 0; }
.section--soft { background: var(--teal-50); }
.section--white { background: var(--white); }
.section-kicker {
  margin: 0 0 8px; color: var(--teal-700); font-size: .82rem; font-weight: 800;
  letter-spacing: .11em; text-transform: uppercase;
}
h1, h2, h3 { color: var(--teal-950); line-height: 1.13; letter-spacing: -.025em; text-wrap: balance; }
h1 { font-size: clamp(2.35rem, 6vw, 4.5rem); margin: 0 0 20px; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 0 0 18px; }
h3 { font-size: 1.3rem; margin: 0 0 10px; }
p { margin: 0 0 1.15rem; }
.lead { font-size: clamp(1.08rem, 2vw, 1.3rem); color: #3c575b; max-width: 700px; }
.subtle { color: var(--muted); }
.eyebrow { font-size: .94rem; font-weight: 700; color: var(--teal-800); }

.site-header {
  position: sticky; top: 0; z-index: 80; backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  border-bottom: 1px solid rgba(21, 95, 100, .10);
}
.nav { min-height: 74px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; gap: 11px; align-items: center; color: var(--teal-950); text-decoration: none; font-weight: 800; line-height: 1.1; }
.brand-mark { width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center; background: var(--teal-800); color: var(--white); font-size: .82rem; letter-spacing: .03em; }
.brand small { display: block; color: var(--muted); font-weight: 600; font-size: .72rem; margin-top: 3px; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.nav-links > a:not(.button) { text-decoration: none; color: var(--ink); font-size: .94rem; font-weight: 650; }
.nav-toggle { display: none; margin-left: auto; background: transparent; border: 0; padding: 10px; border-radius: 10px; color: var(--ink); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 12px 19px; border-radius: 999px; text-decoration: none;
  font-weight: 800; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--teal-800); color: var(--white); box-shadow: 0 9px 22px rgba(21,95,100,.18); }
.button--primary:hover { background: var(--teal-950); color: var(--white); }
.button--secondary { background: var(--white); color: var(--teal-950); border-color: var(--line); }
.button--secondary:hover { background: var(--teal-50); }
.button svg { width: 18px; height: 18px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero { padding: 70px 0 82px; overflow: hidden; position: relative; }
.hero::before {
  content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58,167,165,.18), rgba(58,167,165,0) 68%);
  right: -140px; top: -150px; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .82fr; align-items: center; gap: clamp(36px, 6vw, 86px); }
.hero-copy { position: relative; z-index: 1; }
.hero .lead { margin-bottom: 28px; }
.hero-meta { margin-top: 30px; display: flex; gap: 12px 22px; flex-wrap: wrap; color: var(--muted); font-size: .95rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 18px; height: 18px; color: var(--teal-700); }
.photo-card { position: relative; isolation: isolate; }
.photo-card::before { content: ""; position: absolute; inset: 11% -9% -8% 15%; border-radius: var(--radius-lg); background: var(--teal-100); z-index: -1; transform: rotate(3deg); }
.photo-shell { background: var(--white); padding: 12px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.photo-shell img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 21px; }
.photo-note { position: absolute; left: -20px; bottom: 24px; max-width: 245px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 16px; padding: 13px 15px; }
.photo-note strong { display: block; color: var(--teal-950); font-size: .93rem; }
.photo-note span { display: block; color: var(--muted); font-size: .82rem; }

.trust-strip { background: var(--teal-950); color: #e8f5f4; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 23px 18px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--white); font-size: .96rem; }
.trust-item span { display: block; font-size: .83rem; color: #c9dfde; margin-top: 3px; }

.intro-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; align-items: start; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px; box-shadow: 0 12px 30px rgba(20,67,70,.05); }
.card-icon { width: 43px; height: 43px; border-radius: 13px; display: grid; place-items: center; background: var(--teal-100); color: var(--teal-800); margin-bottom: 18px; }
.card-icon svg { width: 22px; height: 22px; }
.card p { color: var(--muted); font-size: .96rem; }
.card-link { font-weight: 800; text-decoration-thickness: 1px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 36px; }
.step { position: relative; padding-left: 50px; }
.step-num { position: absolute; left: 0; top: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--teal-800); color: var(--white); display: grid; place-items: center; font-weight: 800; font-size: .9rem; }
.step p { color: var(--muted); font-size: .95rem; }

.profile-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 60px; align-items: center; }
.profile-mini { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); border: 8px solid var(--white); }
.fact-list { list-style: none; margin: 25px 0 30px; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.fact-list li { padding: 14px 16px; background: var(--teal-50); border: 1px solid var(--line); border-radius: 13px; font-size: .92rem; }
.fact-list strong { display: block; color: var(--teal-950); }

.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: stretch; }
.location-card { background: var(--teal-950); color: #e8f5f4; border-radius: var(--radius-lg); padding: 34px; }
.location-card h2, .location-card h3 { color: var(--white); }
.location-card a:not(.button) { color: #dbf4f2; }
.location-list { list-style: none; margin: 24px 0 28px; padding: 0; }
.location-list li { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.location-list span { display: block; color: #bcd5d4; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.map-shell { min-height: 440px; border-radius: var(--radius-lg); overflow: hidden; background: #dfe8e7; border: 1px solid var(--line); }
.map-shell iframe { width: 100%; height: 100%; min-height: 440px; border: 0; }

.faq { display: grid; gap: 12px; margin-top: 28px; }
details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 0 20px; }
summary { cursor: pointer; list-style: none; padding: 18px 34px 18px 0; font-weight: 800; color: var(--teal-950); position: relative; }
summary::-webkit-details-marker { display:none; }
summary::after { content: "+"; position:absolute; right: 0; top: 16px; font-size: 1.35rem; color: var(--teal-700); }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); padding-bottom: 18px; }

.cta-band { background: linear-gradient(135deg, var(--teal-800), var(--teal-950)); color: #eaf7f5; border-radius: 30px; padding: clamp(30px, 5vw, 58px); display: grid; grid-template-columns: 1.3fr auto; gap: 30px; align-items: center; }
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { margin-bottom: 0; max-width: 680px; }
.cta-band .button--secondary { border: 0; }

.breadcrumbs { padding: 22px 0 0; color: var(--muted); font-size: .86rem; }
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: #98a7a9; }
.page-hero { padding: 48px 0 70px; }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.callout { background: var(--teal-50); border-left: 4px solid var(--teal-700); padding: 19px 20px; border-radius: 0 14px 14px 0; color: #36575b; }
.content h2 { margin-top: 2.3rem; font-size: clamp(1.6rem, 3vw, 2.25rem); }
.content h3 { margin-top: 1.7rem; }
.content ul { padding-left: 1.2rem; }
.content li { margin-bottom: .55rem; }
.content .button { margin-top: 8px; }
.inline-card { margin: 30px 0; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px; }

.site-footer { background: #102e32; color: #c7d9d8; padding: 48px 0 92px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 36px; }
.site-footer strong { color: var(--white); }
.site-footer a { color: #e5f2f1; }
.site-footer nav { display: grid; gap: 7px; }
.footer-bottom { margin-top: 35px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; color: #9eb6b5; }

.mobile-booking { display: none; }
.cookie-banner { position: fixed; z-index: 120; left: 16px; right: 16px; bottom: 16px; max-width: 860px; margin: auto; background: #102e32; color: #eaf4f3; padding: 18px; border-radius: 18px; box-shadow: 0 20px 55px rgba(0,0,0,.26); }
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; }
.cookie-banner p { font-size: .9rem; margin: 0; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { min-height: 42px; padding: 9px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.24); font-weight: 800; cursor:pointer; }
.cookie-accept { background: var(--white); color: var(--teal-950); }
.cookie-reject { background: transparent; color: var(--white); }

:focus-visible { outline: 3px solid #de8a68; outline-offset: 3px; }

@media (max-width: 930px) {
  .hero-grid, .intro-grid, .profile-grid, .location-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .photo-card { max-width: 560px; margin: 4px auto 0; }
  .intro-grid, .profile-grid { gap: 36px; }
  .card-grid, .steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .cta-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; padding-bottom: 76px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 64px 0; }
  .nav { min-height: 66px; }
  .brand small { display:none; }
  .nav-toggle { display: inline-flex; }
  .nav-links { position: absolute; left: 14px; right: 14px; top: 69px; display: none; flex-direction: column; align-items: stretch; gap: 3px; padding: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .nav-links > a:not(.button) { padding: 12px; border-radius: 10px; }
  .nav-links .button { margin-top: 4px; }
  .hero-grid { gap: 36px; }
  h1 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .photo-note { left: 10px; right: 10px; bottom: 10px; max-width: none; }
  .hero-meta { display: grid; gap: 10px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 18px 14px; }
  .fact-list { grid-template-columns: 1fr; }
  .location-card { padding: 28px 23px; }
  .map-shell, .map-shell iframe { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .mobile-booking { display: flex; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; }
  .mobile-booking .button { width: 100%; box-shadow: 0 12px 34px rgba(12,63,67,.32); }
  .cookie-banner { bottom: 82px; }
  .cookie-banner-inner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions button { flex: 1; }
}

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


/* Final refinement: warmer editorial hierarchy + verifiable trust */
h1, h2 { font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif; font-weight: 650; }
.hero h1 { max-width: 820px; }
.hero-proof { display:flex; flex-wrap:wrap; align-items:center; gap:10px 18px; margin-top:18px; font-size:.9rem; color:var(--muted); }
.proof-link { display:inline-flex; align-items:center; gap:8px; color:var(--teal-950); font-weight:800; text-decoration:none; }
.proof-link:hover { text-decoration:underline; }
.proof-dot { width:8px; height:8px; border-radius:50%; background:#4b9f84; box-shadow:0 0 0 4px rgba(75,159,132,.12); flex:0 0 auto; }
.trust-item a { color:inherit; text-decoration:none; }
.trust-item a:hover strong { text-decoration:underline; text-underline-offset:.18em; }
.profile-actions-note { margin-top:14px; color:var(--muted); font-size:.88rem; }
.profile-actions-note a { font-weight:800; }
.byline { margin-top:42px; padding-top:20px; border-top:1px solid var(--line); color:var(--muted); font-size:.88rem; }
.byline strong { color:var(--teal-950); }
.credential-link { font-weight:800; }
.scope-note { border:1px solid var(--line); background:var(--cream); border-radius:16px; padding:18px 20px; margin:26px 0; }
.scope-note strong { color:var(--teal-950); }
@media (max-width:760px){
  .hero-proof{align-items:flex-start; display:grid; gap:8px;}
}
