/* Anadolu Gider Açma — design system
   Palette "Deniz Minti + Şampanya". Every colour pair used for text meets WCAG AA;
   the champagne accent is deliberately restricted to dark surfaces because it only
   reaches 2.36:1 on white. */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/inter-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0100-017F, U+0180-024F, U+2000-206F, U+20A0-20CF, U+2190-21BB;
}

:root {
  --ink: #0b2e33;
  --ink-soft: #4a6a6e;
  --ink-faint: #5a7679;

  --primary: #0e7c7b;
  --primary-strong: #0c6e6d;
  --primary-deep: #0a5f5e;
  --primary-wash: #e6f3f1;
  --primary-tint: #f0f8f6;

  --accent: #c8a45c;
  --accent-deep: #a8853f;

  --emergency: #c0562b;
  --emergency-deep: #a4471f;
  --whatsapp: #14803c;
  --whatsapp-deep: #0f6a31;

  --bg: #f5faf9;
  --surface: #ffffff;
  --surface-alt: #f0f7f5;
  --border: #dce9e7;
  --border-strong: #7d9a97;

  --success: #157f5b;
  --warning: #a85b12;
  --danger: #a32020;
  --danger-wash: #fdf1f1;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-xs: 0 1px 2px rgba(11, 46, 51, .06);
  --shadow-sm: 0 2px 8px rgba(11, 46, 51, .07);
  --shadow-md: 0 8px 28px rgba(11, 46, 51, .09);
  --shadow-lg: 0 20px 60px rgba(11, 46, 51, .14);

  --container: 1200px;
  --header-h: 62px;
  --mobile-bar-h: 62px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 767px) {
  body { padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px)); }
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-strong); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--primary-deep); }

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  margin: 0 0 .6em;
  line-height: 1.18;
  letter-spacing: -.018em;
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: clamp(1.85rem, 1.2rem + 2.6vw, 3.15rem); }
h2 { font-size: clamp(1.45rem, 1.1rem + 1.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 1rem + .7vw, 1.45rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1.1em; max-width: 74ch; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .45em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 18px;
}

.section { padding-block: clamp(44px, 6vw, 88px); }
.section--tight { padding-block: clamp(32px, 4vw, 56px); }
.section--alt { background: var(--surface-alt); }
.section--wash { background: var(--primary-tint); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--primary-strong);
  margin-bottom: .7rem;
}

.lede { font-size: clamp(1.02rem, .98rem + .3vw, 1.15rem); color: var(--ink-soft); }
.muted { color: var(--ink-soft); }
.small { font-size: .88rem; }
.center { text-align: center; }
.center p { margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 600;
  font-size: .97rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .16s var(--ease), border-color .16s var(--ease), transform .16s var(--ease), box-shadow .16s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--primary-deep); color: #fff; }

.btn--emergency { background: var(--emergency); color: #fff; box-shadow: var(--shadow-sm); }
.btn--emergency:hover { background: var(--emergency-deep); color: #fff; }

.btn--whatsapp { background: var(--whatsapp); color: #fff; }
.btn--whatsapp:hover { background: var(--whatsapp-deep); color: #fff; }

.btn--ghost { background: transparent; border-color: var(--border-strong); color: var(--ink); }
.btn--ghost:hover { background: var(--surface); border-color: var(--primary); color: var(--primary-deep); }

.btn--onDark { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .34); color: #fff; }
.btn--onDark:hover { background: rgba(255, 255, 255, .18); color: #fff; }

.btn--wide { width: 100%; }
.btn--lg { min-height: 54px; padding: 15px 30px; font-size: 1.03rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* On phones a half-width secondary button reads as an afterthought; give both the
   full thumb target instead. */
@media (max-width: 559px) {
  .hero .btn-row .btn,
  .subhero .btn-row .btn { flex: 1 1 100%; }
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 1;
  min-width: 0;
}
.brand__mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; min-width: 0; }
.brand__name {
  font-weight: 700;
  font-size: clamp(.95rem, .82rem + .5vw, 1.16rem);
  letter-spacing: -.02em;
  line-height: 1.15;
  white-space: nowrap;
}
.brand__sub {
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  line-height: 1.3;
  white-space: nowrap;
}

/* Below 360px the strapline competes with the hamburger for room. The brand *name*
   always stays visible (rules/branding.md) — only this secondary line drops out. */
@media (max-width: 359px) {
  .brand__sub { display: none; }
}

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: inline-block;
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 500;
  font-size: .94rem;
  letter-spacing: .01em;
  text-decoration: none;
  transition: background-color .15s var(--ease), color .15s var(--ease);
}
.nav__link:hover { background: var(--primary-wash); color: var(--primary-deep); }
.nav__link[aria-current="page"] { color: var(--primary-deep); background: var(--primary-wash); font-weight: 600; }

.header__cta { display: none; }

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--ink);
}
.burger:hover { background: var(--primary-wash); border-color: var(--primary); }
.burger__bars { position: relative; width: 20px; height: 14px; }
.burger__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .22s var(--ease), opacity .16s var(--ease), top .22s var(--ease);
}
.burger__bars span:nth-child(1) { top: 0; }
.burger__bars span:nth-child(2) { top: 6px; }
.burger__bars span:nth-child(3) { top: 12px; }
.burger[aria-expanded="true"] .burger__bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__bars span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

@media (min-width: 1024px) {
  :root { --header-h: 78px; }
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .burger { display: none; }
}

/* ---------- Mobile menu overlay ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  /* Pinned to the viewport: without this the panel's min-content width wins on very
     narrow screens (320px) and pushes the whole document wider. */
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.mobile-menu[data-open="true"] { opacity: 1; visibility: visible; transform: none; }

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  min-height: var(--header-h);
  padding-inline: 18px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu__body { min-width: 0; }
.mobile-menu__link,
.mobile-menu__sub a { overflow-wrap: anywhere; }
.mobile-menu__close {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer; color: var(--ink);
  font-size: 1.4rem; line-height: 1;
}
.mobile-menu__body { padding: 20px 18px 40px; }
.mobile-menu__list { list-style: none; margin: 0 0 22px; padding: 0; }
.mobile-menu__list > li { border-bottom: 1px solid var(--border); }
.mobile-menu__link {
  display: block;
  padding: 15px 2px;
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.mobile-menu__link[aria-current="page"] { color: var(--primary-deep); }

.mobile-menu__group { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__toggle {
  width: 46px; height: 46px; flex-shrink: 0;
  background: transparent; border: 0; cursor: pointer; color: var(--ink-soft);
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-menu__toggle svg { transition: transform .2s var(--ease); }
.mobile-menu__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-menu__sub { list-style: none; margin: 0; padding: 0 0 12px 12px; display: none; }
.mobile-menu__sub[data-open="true"] { display: block; }
.mobile-menu__sub a {
  display: block; padding: 10px 2px; color: var(--ink-soft);
  font-size: 1rem; text-decoration: none;
}
.mobile-menu__sub a:hover { color: var(--primary-deep); }

@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ---------- Mobile fixed contact bar (phone + WhatsApp, single location) ---------- */

.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -6px 24px rgba(11, 46, 51, .16);
}
.mobile-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-height: var(--mobile-bar-h);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}
.mobile-bar__call { background: var(--emergency); }
.mobile-bar__wa { background: var(--whatsapp); }
@media (min-width: 768px) { .mobile-bar { display: none; } }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 82% 12%, rgba(200, 164, 92, .18), transparent 62%),
    linear-gradient(150deg, #0b2e33 0%, #0d4a4c 52%, #0e7c7b 130%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(40px, 6vw, 88px);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero h1 { color: #fff; margin-bottom: .5em; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__text p { color: rgba(255, 255, 255, .88); font-size: clamp(1.02rem, .97rem + .35vw, 1.16rem); }
.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .17);
  list-style: none;
  padding-left: 0;
}
.hero__badges li {
  display: flex;
  align-items: center;
  gap: .5em;
  margin: 0;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .93);
}
.hero__badges svg { color: var(--accent); flex-shrink: 0; }

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; }
}

/* Compact sub-page hero */
.subhero {
  background: linear-gradient(160deg, #0b2e33 0%, #0d4a4c 100%);
  color: #fff;
  padding-block: clamp(26px, 3.4vw, 48px);
}
.subhero h1 { color: #fff; margin-bottom: .45em; }
.subhero p { color: rgba(255, 255, 255, .87); max-width: 68ch; margin-bottom: 0; }
.subhero__meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  margin-top: 18px; list-style: none; padding: 0;
  font-size: .86rem; color: rgba(255, 255, 255, .85);
}
.subhero__meta li { display: flex; align-items: center; gap: .4em; margin: 0; }
.subhero__meta svg { color: var(--accent); flex-shrink: 0; }
.subhero .btn-row { margin-top: 22px; }

.breadcrumb { font-size: .84rem; margin-bottom: 14px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: 6px; color: rgba(255, 255, 255, .7); }
.breadcrumb a { color: rgba(255, 255, 255, .85); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb li[aria-current] { color: var(--accent); }

/* ---------- Trust strip ---------- */

.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.trust__item {
  background: var(--surface);
  padding: 18px 14px;
  text-align: center;
}
.trust__value { font-size: 1.06rem; font-weight: 700; color: var(--primary-deep); letter-spacing: -.02em; }
.trust__label { font-size: .8rem; color: var(--ink-soft); margin-top: 2px; }
@media (min-width: 768px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Cards ---------- */

/* minmax(0, 1fr) rather than 1fr: a bare 1fr track has an implicit min-content
   minimum, so one long unbreakable word (e.g. "Küçükbakkalköy,") widens the track and
   pushes the whole page past the viewport on narrow screens. */
.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: minmax(0, 1fr); }
.grid--3 { grid-template-columns: minmax(0, 1fr); }
.grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.grid > * { min-width: 0; }
.card p, .card h3 { overflow-wrap: anywhere; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-xs);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.card--link { display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100%; }
.card--link:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); color: inherit; }
.card h3 { margin-bottom: .35em; font-size: 1.1rem; }
.card p { font-size: .93rem; color: var(--ink-soft); margin-bottom: 0; }
.card__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: var(--primary-wash);
  color: var(--primary-deep);
  margin-bottom: 14px;
}
.card__more {
  margin-top: auto;
  padding-top: 14px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary-strong);
  display: inline-flex;
  align-items: center;
  gap: .35em;
}
.card--link:hover .card__more { color: var(--primary-deep); }
.card--link:hover .card__more svg { transform: translateX(3px); }
.card__more svg { transition: transform .18s var(--ease); }

.card--media { padding: 0; overflow: hidden; }
.card--media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card--media .card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }

/* ---------- Content blocks ---------- */

.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.5em; }
.prose ul li::marker { color: var(--primary); }

.checklist { list-style: none; padding-left: 0; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: .6em; }
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: .48em;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary-wash);
  border: 2px solid var(--primary);
}
.checklist li::after {
  content: '';
  position: absolute;
  left: 5px; top: .74em;
  width: 5px; height: 8px;
  border: solid var(--primary-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}

.warnlist { list-style: none; padding-left: 0; }
.warnlist li { position: relative; padding-left: 26px; margin-bottom: .55em; }
.warnlist li::before {
  content: '';
  position: absolute;
  left: 4px; top: .62em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--emergency);
}

.steps { list-style: none; counter-reset: step; padding-left: 0; }
.steps > li {
  counter-increment: step;
  position: relative;
  padding-left: 52px;
  margin-bottom: 22px;
}
.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
}
.steps h3 { font-size: 1.02rem; margin-bottom: .25em; }
.steps p { margin-bottom: 0; color: var(--ink-soft); font-size: .95rem; }

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.panel h3 { font-size: 1.02rem; margin-bottom: .4em; }
.panel p:last-child, .panel ul:last-child { margin-bottom: 0; }

.split { display: grid; gap: 26px; }
@media (min-width: 900px) { .split { grid-template-columns: 1.35fr .65fr; gap: 44px; align-items: start; } }

.sticky-aside { position: sticky; top: calc(var(--header-h) + 18px); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.tag-cloud li { margin: 0; }
.tag-cloud a, .tag-cloud span {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: .86rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: border-color .15s var(--ease), color .15s var(--ease), background-color .15s var(--ease);
}
.tag-cloud a:hover { border-color: var(--primary); color: var(--primary-deep); background: var(--primary-wash); }

/* ---------- FAQ accordion ---------- */

.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 2px;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq__q:hover { color: var(--primary-deep); }
.faq__q svg { flex-shrink: 0; margin-top: 4px; color: var(--primary); transition: transform .2s var(--ease); }
.faq__q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq__a { display: none; padding: 0 2px 20px; }
.faq__a[data-open="true"] { display: block; }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(140deg, #0b2e33, #0d5153);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  gap: 22px;
  align-items: center;
}
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { color: rgba(255, 255, 255, .86); margin-bottom: 0; }
.cta-band__phone {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.8rem);
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -.02em;
}
.cta-band__phone:hover { color: #e0c288; }
@media (min-width: 860px) { .cta-band { grid-template-columns: 1.4fr auto; } }

/* ---------- Forms ---------- */

.form { display: grid; gap: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: 6px;
}
.field .req { color: var(--danger); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 124, 123, .18);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--danger); }
.field__error {
  display: flex;
  align-items: flex-start;
  gap: .4em;
  margin: 6px 0 0;
  font-size: .86rem;
  color: var(--danger);
}
.field__hint { margin: 6px 0 0; font-size: .84rem; color: var(--ink-soft); }

.consent { display: flex; align-items: flex-start; gap: 11px; font-size: .9rem; line-height: 1.55; }
.consent input { width: 20px; height: 20px; min-height: 0; margin-top: 2px; flex-shrink: 0; accent-color: var(--primary); }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid;
  font-size: .93rem;
}
.alert--error { background: var(--danger-wash); border-color: #f0c9c9; color: #7d1b1b; }
.alert--success { background: #eef8f3; border-color: #bfe3d3; color: #0e5c41; }
.alert p:last-child { margin-bottom: 0; }

@media (min-width: 640px) { .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; } }

/* ---------- Map ---------- */

.map-embed {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-alt);
}
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-embed__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--surface-alt);
  cursor: pointer;
  border: 0;
  font: inherit;
  color: var(--ink);
  width: 100%;
}

/* ---------- Footer ---------- */

.footer {
  background: #08252a;
  color: #cfe0df;
  padding-top: clamp(40px, 5vw, 68px);
  margin-top: clamp(40px, 5vw, 72px);
}
.footer a { color: #cfe0df; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__top { display: grid; gap: 30px; padding-bottom: 34px; }
@media (min-width: 700px) { .footer__top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; } }

.footer__brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__brand .brand__name { color: #fff; font-size: 1.15rem; }
.footer__brand .brand__sub { color: #8fb0ae; }
.footer__about { font-size: .92rem; color: #a8c4c2; max-width: 42ch; }

.footer__col h3 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 9px; font-size: .92rem; }

.footer__nap { font-style: normal; font-size: .92rem; }
.footer__nap li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 11px; }
.footer__nap svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer__nap strong { color: #fff; font-size: 1.02rem; }

.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
}
.footer__social a:hover { background: rgba(255, 255, 255, .1); border-color: var(--accent); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  font-size: .84rem;
  color: #9dbab8;
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
@media (max-width: 767px) { .footer { padding-bottom: 6px; } }

/* Footer accordion on mobile */
@media (max-width: 699px) {
  .footer__col--collapsible h3 {
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; margin-bottom: 0; padding-block: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  .footer__col--collapsible h3 button {
    all: unset; display: flex; align-items: center; justify-content: space-between;
    width: 100%; cursor: pointer; color: inherit; font: inherit;
    letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; font-weight: 600;
  }
  .footer__col--collapsible ul { display: none; padding-top: 12px; }
  .footer__col--collapsible[data-open="true"] ul { display: block; }
  .footer__col--collapsible svg { transition: transform .2s var(--ease); }
  .footer__col--collapsible[data-open="true"] svg { transform: rotate(180deg); }
}

/* ---------- Error / empty states ---------- */

.state {
  text-align: center;
  padding-block: clamp(48px, 8vw, 96px);
  max-width: 620px;
  margin-inline: auto;
}
.state__code {
  font-size: clamp(3.4rem, 2rem + 7vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--primary-wash);
  margin-bottom: 8px;
}
.state h1 { margin-bottom: .4em; }
.state .btn-row { justify-content: center; }

/* ---------- Toast ---------- */

.toast-region {
  position: fixed;
  z-index: 120;
  right: 16px;
  bottom: calc(var(--mobile-bar-h) + 16px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: min(360px, calc(100vw - 32px));
}
@media (min-width: 768px) { .toast-region { bottom: 16px; } }
.toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  animation: toast-in .2s var(--ease);
}
.toast--success { background: var(--success); }
.toast--error { background: var(--danger); }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Utilities ---------- */

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

.body-lock { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .btn:hover, .card--link:hover { transform: none; }
}

@media print {
  .header, .mobile-bar, .mobile-menu, .footer__social, .cta-band { display: none; }
  body { background: #fff; padding-bottom: 0; }
}
