/* ============================================================
   SeniorNest.de — Global Stylesheet
   Aesthetic: Warm Mediterranean Elegance / Trusted & Refined
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --sand:       #F5F0E8;
  --sand-mid:   #EDE5D5;
  --stone:      #C9B89A;
  --stone-dark: #9C8870;
  --ink:        #1C1A17;
  --ink-soft:   #4A4540;
  --blue:       #1B4F72;
  --blue-mid:   #2471A3;
  --blue-light: #D6EAF8;
  --gold:       #C49A35;
  --gold-light: #F9EDD0;
  --white:      #FFFFFF;
  --error:      #C0392B;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(28,26,23,.08);
  --shadow-md:  0 6px 24px rgba(28,26,23,.12);
  --shadow-lg:  0 16px 48px rgba(28,26,23,.16);

  --max-w: 1140px;
  --nav-h: 72px;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--ink-soft); max-width: 65ch; }
.lead { font-size: 1.15rem; font-weight: 300; color: var(--ink-soft); line-height: 1.8; }

/* ─── Layout helpers ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section--alt {
  background: var(--white);
}
.section--blue {
  background: var(--blue);
  color: var(--white);
}
.section--blue h2,
.section--blue h3 { color: var(--white); }
.section--blue p  { color: rgba(255,255,255,.78); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
}

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(245,240,232,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,184,154,.3);
  z-index: 100;
  display: flex;
  align-items: center;
}
.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Nav right cluster: burger + lang switcher stay together */
.nav__right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: auto;
}
@media (min-width: 641px) {
  .nav__right { margin-left: 0; }
}

.nav__logo {
  font-family: 'Lora', Georgia, serif;
  font-size:  1.35rem;
  font-weight:  700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--ink); }
.nav__links a.active::after { transform: scaleX(1); }

.nav__cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: .88rem !important;
  font-weight: 500 !important;
  transition: background .2s, transform .15s !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: var(--blue-mid) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--sand);
  border-bottom: 1px solid var(--sand-mid);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}
.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--sand-mid);
  display: block;
  transition: color .2s;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--ink); }
.nav__mobile.open { display: flex; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--blue);
  color: var(--white);
}
.btn--primary:hover { background: var(--blue-mid); color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn--outline:hover { background: var(--blue); color: var(--white); }

.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover { background: #b08a2a; color: var(--white); }

.btn--white {
  background: var(--white);
  color: var(--blue);
}
.btn--white:hover { background: var(--sand); color: var(--blue); }

/* ─── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid rgba(201,184,154,.2);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.card p  { font-size: .93rem; line-height: 1.7; max-width: none; }

/* ─── Grid helpers ───────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── Divider ─────────────────────────────────────────────── */
.divider {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 20px 0;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand {
  font-family: 'Lora', Georgia, serif;
  font-size:  1.35rem;
  font-weight:  700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__brand-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.footer p { color: rgba(255,255,255,.55); font-size: .9rem; max-width: 300px; }
.footer__col h4 { color: var(--white); margin-bottom: 16px; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; }
.footer__col a {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer__legal a:hover { color: rgba(255,255,255,.65); }

/* ─── Page hero (inner pages) ────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: linear-gradient(135deg, var(--blue) 0%, #0F2F45 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(196,154,53,.08);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,.75); }

/* ─── Forms ──────────────────────────────────────────────── */
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--sand-mid);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,79,114,.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ─── Stat strip ─────────────────────────────────────────── */
.stats-strip {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(201,184,154,.3);
  border-bottom: 1px solid rgba(201,184,154,.3);
}
.stat-item {
  flex: 1;
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(201,184,154,.3);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .82rem;
  color: var(--stone-dark);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ─── Process steps ──────────────────────────────────────── */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.step:last-child { margin-bottom: 0; }
.step__num {
  counter-increment: step;
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.step__num::before { content: counter(step); }
.step__body h4 { margin-bottom: 6px; }
.step__body p { font-size: .93rem; max-width: none; }

/* ─── Testimonial ────────────────────────────────────────── */
.testimonial {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 32px 36px;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 16px;
}
.testimonial cite {
  font-style: normal;
  font-size: .85rem;
  color: var(--stone-dark);
  font-weight: 500;
}

/* ─── Tag pill ───────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ─── Checkmark list ─────────────────────────────────────── */
.check-list { list-style: none; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: .95rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ─── Notice banner ──────────────────────────────────────── */
.notice {
  background: var(--blue-light);
  border: 1px solid rgba(36,113,163,.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--blue);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form-2col { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-strip { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201,184,154,.3); }
  .stat-item:last-child { border-bottom: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .page-hero { padding: calc(var(--nav-h) + 48px) 0 56px; }
}

/* ─── Language switcher ──────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(201,184,154,.35);
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--stone-dark);
  transition: border-color .2s, background .2s, opacity .2s, color .2s;
  text-decoration: none;
  opacity: .55;
}
.lang-btn:hover {
  opacity: .85;
  border-color: rgba(201,184,154,.5);
  color: var(--ink);
}
.lang-btn.active {
  opacity: 1;
  border-color: var(--stone);
  background: rgba(201,184,154,.15);
  color: var(--ink);
}
.lang-btn svg { flex-shrink: 0; border-radius: 2px; }
.lang-code { font-size: .72rem; }

@media (max-width: 640px) {
  .lang-switcher { margin-left: 8px; padding-left: 8px; }
  .lang-code { display: none; }
}

/* ─── Consent Banner ─────────────────────────────────────── */
.consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: rgba(255,255,255,.85);
  z-index: 999;
  padding: 20px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.consent-banner.visible { transform: translateY(0); }
.consent-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.consent-banner__text { flex: 1; min-width: 260px; }
.consent-banner__text p {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  max-width: none;
  margin: 0;
}
.consent-banner__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.consent-banner__text a:hover { color: #e0b84a; }
.consent-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.consent-btn {
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.consent-btn:hover { transform: translateY(-1px); }
.consent-btn--accept {
  background: var(--gold);
  color: var(--white);
}
.consent-btn--accept:hover { background: #b08a2a; }
.consent-btn--decline {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.2);
}
.consent-btn--decline:hover { background: rgba(255,255,255,.18); }

@media (max-width: 640px) {
  .consent-banner__inner { gap: 16px; }
  .consent-banner__actions { width: 100%; }
  .consent-btn { flex: 1; text-align: center; }
}

/* ─── Legal pages ─────────────────────────────────────────── */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 48px 0 12px;
  padding-top: 48px;
  border-top: 1px solid var(--sand-mid);
}
.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.legal-content h3 {
  font-size: 1.05rem;
  margin: 28px 0 8px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
}
.legal-content p {
  margin-bottom: 14px;
  font-size: .95rem;
  max-width: none;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-content ul li {
  font-size: .95rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.legal-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.legal-content .placeholder {
  background: var(--gold-light);
  border: 1.5px dashed var(--stone);
  border-radius: var(--radius-sm);
  padding: 3px 8px;
  font-size: .88rem;
  color: var(--stone-dark);
  font-style: italic;
  white-space: nowrap;
}
.legal-last-updated {
  display: inline-block;
  font-size: .8rem;
  color: var(--stone-dark);
  background: var(--sand-mid);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 40px;
}

/* ─── SeniorNest.de logo mark ────────────────────────────── */







/* ─── Regions dropdown ───────────────────────────────────── */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}
.nav__dropdown-toggle:hover { color: var(--ink); }
.nav__dropdown-toggle svg {
  transition: transform .25s;
  flex-shrink: 0;
}
.nav__dropdown.open .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(201,184,154,.25);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .2s, transform .2s;
  z-index: 200;
}
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--ink-soft);
  font-weight: 500;
  transition: background .15s, color .15s;
}
.nav__dropdown-menu a:hover {
  background: var(--sand);
  color: var(--ink);
}
.nav__dropdown-menu a::after { display: none; }
.nav__dropdown-menu .city-icon {
  width: 24px; height: 24px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

/* Mobile dropdown expand */
.nav__mobile-section {
  border-bottom: 1px solid var(--sand-mid);
}
.nav__mobile-section-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  font-family: inherit;
}
.nav__mobile-section-toggle svg { transition: transform .25s; }
.nav__mobile-section.open .nav__mobile-section-toggle svg { transform: rotate(180deg); }
.nav__mobile-cities {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.nav__mobile-section.open .nav__mobile-cities { max-height: 300px; }
.nav__mobile-cities a {
  display: block;
  padding: 8px 0 8px 16px;
  font-size: .9rem;
  color: var(--ink-soft);
  border-bottom: none !important;
}

/* ─── Location page styles ───────────────────────────────── */
.location-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
}
.cost-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cost-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border: 1px solid rgba(201,184,154,.2);
}
.cost-item__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--stone-dark);
  margin-bottom: 6px;
}
.cost-item__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.cost-item__note {
  font-size: .75rem;
  color: var(--stone-dark);
  margin-top: 4px;
}
.highlight-box {
  background: linear-gradient(135deg, var(--blue), #0F2F45);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.highlight-box h3 { color: var(--white); margin-bottom: 16px; }
.highlight-box p  { color: rgba(255,255,255,.78); max-width: none; }
.highlight-box .check-list li { color: rgba(255,255,255,.85); }
.highlight-box .check-list li::before { background: var(--gold); }

@media (max-width: 640px) {
  .cost-grid { grid-template-columns: 1fr; }
  
}





/* ─── Nav dropdown (Regions) ─────────────────────────────── */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  transition: color .2s;
  position: relative;
}
.nav__dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav__dropdown-trigger:hover { color: var(--ink); }
.nav__dropdown-trigger:hover::after,
.nav__dropdown.open .nav__dropdown-trigger::after { transform: scaleX(1); }
.nav__dropdown-trigger:hover .nav__chevron,
.nav__dropdown.open .nav__chevron { transform: rotate(180deg); }

.nav__chevron {
  width: 12px; height: 12px;
  transition: transform .25s;
  flex-shrink: 0;
  margin-top: 1px;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(201,184,154,.25);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .2s, transform .2s;
  z-index: 200;
}
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--ink-soft);
  font-weight: 400;
  transition: background .15s, color .15s;
}
.nav__dropdown-menu a:hover {
  background: var(--sand);
  color: var(--ink);
}
.nav__dropdown-menu a:hover::after { display: none; }
.nav__dropdown-menu .region-icon {
  font-size: .9rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* Arrow on dropdown */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 6px;
  background: var(--white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-top: 1px solid rgba(201,184,154,.25);
}

/* Mobile regions expand */
.nav__mobile-section {
  border-bottom: 1px solid var(--sand-mid);
}
.nav__mobile-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav__mobile-section-header svg {
  transition: transform .25s;
}
.nav__mobile-section.open .nav__mobile-section-header svg {
  transform: rotate(180deg);
}
.nav__mobile-section-links {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.nav__mobile-section.open .nav__mobile-section-links {
  max-height: 300px;
}
.nav__mobile-section-links a {
  display: block;
  padding: 8px 16px;
  font-size: .92rem;
  color: var(--ink-soft);
  border-bottom: none !important;
  transition: color .2s;
}
.nav__mobile-section-links a:hover { color: var(--ink); }

/* ─── Location pages ─────────────────────────────────────── */
.location-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: .04em;
}
.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.cost-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(201,184,154,.2);
  text-align: center;
}
.cost-item__amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.cost-item__label {
  font-size: .75rem;
  color: var(--stone-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.highlight-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p {
  font-size: .93rem;
  color: var(--blue);
  margin: 0;
  max-width: none;
}
.tip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.tip-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border: 1px solid rgba(201,184,154,.2);
  font-size: .9rem;
}
.tip-card strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--stone-dark);
}

@media (max-width: 640px) {
  .cost-grid { grid-template-columns: repeat(2, 1fr); }
  .tip-grid  { grid-template-columns: 1fr; }
  
}

/* ═══════════════════════════════════════════════════════════
   MOBILE-FIRST RESPONSIVE — comprehensive audit pass
   Breakpoints: 900px (tablet), 640px (mobile), 400px (small)
   ═══════════════════════════════════════════════════════════ */

/* ── Nav: prevent logo/burger/switcher collision ──────────── */
.nav__inner {
  /* Already flex + space-between; clamp padding for narrow screens */
  padding: 0 clamp(12px, 4vw, 24px);
  gap: 8px;
}
.nav__logo {
  /* Ensure logo never overflows into burger zone */
  min-width: 0;
  flex-shrink: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Right-side cluster: burger + lang switcher */
.nav__right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* ── Language switcher — tighter on small screens ─────────── */
@media (max-width: 400px) {
  .lang-switcher {
    margin-left: 4px;
    padding-left: 6px;
    gap: 2px;
  }
  .lang-btn {
    padding: 4px 6px;
  }
  .lang-code { display: none; }
}

/* ── Hero section ─────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero { min-height: 100svh; padding-left: 0; padding-right: 0; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero__scroll { display: none; }
}

/* ── Page hero (inner pages) ──────────────────────────────── */
@media (max-width: 640px) {
  .page-hero { padding: calc(var(--nav-h) + 40px) 0 48px; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
}

/* ── Section padding ──────────────────────────────────────── */
@media (max-width: 400px) {
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
}

/* ── Why-grid (index) ─────────────────────────────────────── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { display: none; }
}

/* ── Process layout (index) ───────────────────────────────── */
@media (max-width: 900px) {
  .process-wrap { grid-template-columns: 1fr; gap: 48px; }
}

/* ── Cards ────────────────────────────────────────────────── */
@media (max-width: 400px) {
  .card { padding: 24px 20px; }
}

/* ── Stats strip ──────────────────────────────────────────── */
@media (max-width: 640px) {
  .stats-strip { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(201,184,154,.3); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(201,184,154,.3); }
  .stat-item:last-child, .stat-item:nth-last-child(-n+2):nth-child(odd) { border-bottom: none; }
  .stat-number { font-size: 2rem; }
}

/* ── Trust bar (index) ────────────────────────────────────── */
@media (max-width: 640px) {
  .trust-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0 16px;
  }
}
@media (max-width: 400px) {
  .trust-item { font-size: .8rem; }
}

/* ── Grids ────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ── Cost grid (location pages) ───────────────────────────── */
@media (max-width: 640px) {
  .cost-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .cost-grid { grid-template-columns: 1fr; }
}

/* ── Tip grid (location pages) ────────────────────────────── */
@media (max-width: 640px) {
  .tip-grid { grid-template-columns: 1fr; }
}

/* ── Testimonials ─────────────────────────────────────────── */
@media (max-width: 640px) {
  .testimonial { padding: 24px 20px; }
  .testimonial blockquote { font-size: 1rem; }
}

/* ── Services page: detail blocks ────────────────────────── */
@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .service-block__meta { position: static; }
}

/* ── Pricing grid ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 48px auto 0; }
}

/* ── About: mission grid ──────────────────────────────────── */
@media (max-width: 900px) {
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .mission-visual { grid-template-columns: 1fr; }
  .mission-box--wide { grid-column: span 1; }
}

/* ── About: team grid ─────────────────────────────────────── */
@media (max-width: 640px) {
  .team-card__photo { height: 160px; font-size: 3rem; }
}

/* ── About: diff table ────────────────────────────────────── */
@media (max-width: 640px) {
  .diff-table { font-size: .8rem; }
  .diff-table th, .diff-table td { padding: 10px 10px; }
  /* Hide "typical alternative" column on very small screens */
}
@media (max-width: 400px) {
  .diff-table .col-them { display: none; }
  .diff-table th:last-child { display: none; }
}

/* ── Contact page ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-sidebar { position: static; }
  .contact-form-card { padding: 32px 24px; }
}
@media (max-width: 400px) {
  .contact-form-card { padding: 24px 16px; }
  .form-2col { grid-template-columns: 1fr; }
}

/* ── Locations ────────────────────────────────────────────── */
@media (max-width: 640px) {
  .locations-grid { grid-template-columns: 1fr; }
}

/* ── Footer ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .footer { padding: 48px 0 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer__legal { justify-content: center; }
}

/* ── CTA band ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .cta-band { padding: 56px 0; }
  .cta-band .btn { width: 100%; justify-content: center; }
}

/* ── Consent banner ───────────────────────────────────────── */
@media (max-width: 400px) {
  .consent-banner { padding: 16px 0; }
  .consent-banner__inner { gap: 12px; }
  .consent-btn { padding: 10px 14px; font-size: .82rem; }
}

/* ── Nav dropdown: hide on mobile (replaced by accordion) ─── */
@media (max-width: 640px) {
  .nav__dropdown { display: none; }
}

/* ── Buttons: full-width on small screens where appropriate ── */
@media (max-width: 400px) {
  .section-header + .btn,
  .process-intro .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Typography clamps ────────────────────────────────────── */
@media (max-width: 640px) {
  h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .lead { font-size: 1rem; }
  .stat-label { font-size: .72rem; }
}

/* ── Prevent horizontal scroll ────────────────────────────── */
html, body { overflow-x: hidden; max-width: 100%; }


/* ─── Photography ────────────────────────────────────────── */
.photo-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.photo-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,30,50,.72) 0%,
    rgba(8,30,50,.55) 40%,
    rgba(8,30,50,.45) 60%,
    rgba(8,30,50,.75) 100%
  );
}

/* Photo grid — 3-up */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.photo-grid__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.photo-grid__item:hover img { transform: scale(1.04); }
.photo-grid__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Split image + text block */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.photo-split--reverse { direction: rtl; }
.photo-split--reverse > * { direction: ltr; }
.photo-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/2;
}
.photo-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.photo-split__img:hover img { transform: scale(1.03); }

/* Location hero image */
.location-photo {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
}
.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.location-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--blue));
  pointer-events: none;
}

/* About page lifestyle photo */
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 48px;
}
.about-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-split { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .photo-split--reverse { direction: ltr; }
  .location-photo { height: 280px; }
}
@media (max-width: 640px) {
  .photo-grid { grid-template-columns: 1fr; }
  .location-photo { height: 220px; }
  .about-photo img { height: 240px; }
}
