/* ============================================
   Sara Tijani – Praxis für Podologie
   Brand: cyan-blue from logo (#19A7E3)
   Design priority: accessibility for elderly users
   - Large readable text (min 18px body, scalable)
   - High contrast (WCAG AA+)
   - Big tap targets (min 56px)
   - Calm, uncluttered, clinical-friendly
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Brand */
  --brand: #19A7E3;
  --brand-dark: #0E7FB0;
  --brand-darker: #095A7E;
  --brand-tint: #E8F6FC;
  --brand-tint-2: #F4FAFD;

  /* Neutrals */
  --ink: #0F2C3F;
  --ink-soft: #2E4A5E;
  --ink-mute: #5A7385;
  --line: #DCE9F0;
  --bg: #FBFDFE;
  --white: #FFFFFF;

  /* Accent */
  --accent: #A8D8C9;
  --warning: #C24B4B;

  /* Type scale (large for elderly readers) */
  --font-display: 'Quicksand', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --fs-base: 1.125rem;     /* 18px */
  --fs-lg: 1.25rem;        /* 20px */
  --fs-xl: 1.5rem;         /* 24px */
  --fs-2xl: 2rem;          /* 32px */
  --fs-3xl: 2.75rem;       /* 44px */
  --fs-4xl: 3.5rem;        /* 56px */

  /* Spacing */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(15, 44, 63, 0.06);
  --shadow: 0 8px 24px rgba(15, 44, 63, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 44, 63, 0.12);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --header-h: 132px;       /* desktop: utility bar + main row */
  --header-h-mobile: 76px;
}

/* --- Reset & Base --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, var(--fs-4xl)); }
h2 { font-size: clamp(1.75rem, 4vw, var(--fs-3xl)); }
h3 { font-size: var(--fs-xl); }

p { font-size: var(--fs-lg); line-height: 1.75; color: var(--ink-soft); }

a { color: var(--brand-dark); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--brand-darker); }

ul { list-style: none; }

/* Better keyboard focus */
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Skip link for screen readers / keyboard */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--brand);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  z-index: 1000;
}
.skip-link:focus { top: 1rem; }

/* --- Layout helpers --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section--tint { background: var(--brand-tint-2); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--brand-dark);
  font-weight: 600;
  font-size: var(--fs-base);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-head h2 { margin-bottom: 1rem; }
.section-head p { font-size: var(--fs-lg); }

/* --- Header (2-row desktop layout) --- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

/* Top utility bar: phone + language toggle */
.site-header__utility {
  background: var(--brand-tint-2);
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.site-header__utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 44px;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.utility-meta {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--ink-mute);
  font-size: 0.92rem;
}
.utility-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.utility-meta__item svg { width: 16px; height: 16px; color: var(--brand); }
.utility-actions { display: inline-flex; align-items: center; gap: 1rem; }

.utility-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-darker);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  font-family: var(--font-display);
}
.utility-phone:hover { color: var(--ink); }
.utility-phone svg { width: 16px; height: 16px; }

/* Main header row: logo + nav */
.site-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 88px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-link img { height: 60px; width: auto; display: block; }
/* Full-logo variant: a single image (no separate text) */
.brand-link--full img {
  height: 64px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.brand-text__sub {
  font-size: 0.85rem;
  color: var(--ink-mute);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: nowrap;
}
.site-nav a {
  display: inline-block;
  padding: 0.7rem 1rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
  position: relative;
}
.site-nav a:hover {
  background: var(--brand-tint);
  color: var(--brand-darker);
}
.site-nav a.is-active {
  color: var(--brand-darker);
}
.site-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 1rem; right: 1rem;
  bottom: 4px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

/* Header CTA on the main row (right side) */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand);
  color: white;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(25, 167, 227, 0.3);
  transition: all 0.2s;
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--brand-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(25, 167, 227, 0.4);
}
.header-cta svg { width: 18px; height: 18px; }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang-toggle a {
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-mute);
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}
.lang-toggle a.is-active {
  background: var(--brand);
  color: white;
}
.lang-toggle a:not(.is-active):hover { color: var(--ink); }

/* --- Buttons (BIG, easy to tap for elderly) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  min-height: 56px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-lg);
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline-offset: 4px; }

.btn--primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 6px 18px rgba(25, 167, 227, 0.35);
}
.btn--primary:hover {
  background: var(--brand-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(25, 167, 227, 0.4);
}

.btn--call {
  background: white;
  color: var(--brand-darker);
  border-color: var(--brand);
}
.btn--call:hover {
  background: var(--brand-tint);
  color: var(--brand-darker);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: white;
  border-color: var(--brand);
  color: var(--brand-darker);
}

.btn .icon { width: 22px; height: 22px; }

/* --- Hero --- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 7vw, 6rem);
  background: linear-gradient(135deg, var(--brand-tint-2) 0%, var(--brand-tint) 100%);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(25,167,227,0.08), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-darker);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2BB673;
  box-shadow: 0 0 0 4px rgba(43,182,115,0.2);
}
.hero h1 {
  margin-bottom: 1rem;
  color: var(--ink);
}
.hero h1 .accent { color: var(--brand); }
.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}
.hero__lead { font-size: var(--fs-lg); margin-bottom: 2rem; max-width: 56ch; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: white;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 80%;
}
.hero__badge .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-tint);
  display: grid; place-items: center;
  color: var(--brand);
}
.hero__badge strong { color: var(--ink); display: block; font-size: 1rem; }
.hero__badge span { color: var(--ink-mute); font-size: 0.9rem; }

/* --- Pillars (3 boxes) --- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pillar {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
  transition: all 0.3s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: var(--shadow);
}
.pillar__icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 20px;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid; place-items: center;
}
.pillar__icon svg { width: 38px; height: 38px; }
.pillar h3 { margin-bottom: 0.75rem; color: var(--ink); }
.pillar p { font-size: var(--fs-base); }

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.service-card__icon svg { width: 32px; height: 32px; }
.service-card h3 { font-size: 1.35rem; }
.service-card p { font-size: var(--fs-base); margin: 0; }

.note-box {
  margin-top: 2.5rem;
  background: var(--brand-tint);
  border-left: 4px solid var(--brand);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.note-box .icon-wrap {
  flex-shrink: 0;
  width: 32px; height: 32px;
  color: var(--brand-dark);
}
.note-box p { font-size: var(--fs-base); color: var(--ink-soft); margin: 0; }
.note-box strong { color: var(--ink); display: block; margin-bottom: 0.25rem; }

/* --- "Why us" / Values list --- */
.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1rem;
  margin-top: 2rem;
  align-items: stretch; /* stretch cards to equal height per row */
}
.value-item {
  display: flex;
  align-items: center;        /* vertically center icon + text so unequal heights look balanced */
  gap: 0.85rem;
  background: white;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-size: var(--fs-base);  /* smaller, since these cards are dense info chips, not body text */
  line-height: 1.45;
  min-width: 0;               /* allow flex children to shrink properly */
}
.value-item > *:not(.check) { min-width: 0; word-break: break-word; }
.value-item .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  display: grid; place-items: center;
  margin-top: 2px;
}
.value-item .check svg { width: 16px; height: 16px; }

/* --- About section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-grid__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;          /* matches the landscape clinic photos exactly — no cropping */
  box-shadow: var(--shadow-lg);
}
.about-grid__media img { width: 100%; height: 100%; object-fit: cover; }
.about-grid h2 { margin-bottom: 1.5rem; }
.about-grid p { margin-bottom: 1.25rem; }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3rem);
}
.contact-info {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.contact-info__item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid; place-items: center;
}
.contact-info__icon svg { width: 24px; height: 24px; }
.contact-info__label {
  font-size: 0.95rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-info__value {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  line-height: 1.3;
  display: block;
}
a.contact-info__value:hover { color: var(--brand-darker); }

.contact-info__value small {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--ink-mute);
  margin-top: 0.25rem;
}

/* ---------- Click-to-reveal protected contact (anti-scraper) ---------- */
.reveal-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--brand-darker);
  background: var(--brand-tint);
  border: 2px dashed var(--brand);
  border-radius: var(--radius-md, 12px);
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  line-height: 1.3;
}
.reveal-contact:hover,
.reveal-contact:focus-visible {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand-darker);
}
.reveal-contact:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }
.reveal-contact .reveal-contact__icon {
  width: 20px; height: 20px; flex-shrink: 0;
}
.reveal-contact .reveal-contact__hint {
  font-family: var(--font-body);
  font-size: var(--fs-sm, 0.95rem);
  font-weight: 500;
  opacity: 0.85;
}
.reveal-contact.is-revealed {
  background: var(--brand);
  color: #fff;
  border-style: solid;
  border-color: var(--brand-darker);
  cursor: pointer;
}
.reveal-contact.is-revealed .reveal-contact__hint { display: none; }

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--brand-tint);
  display: flex;
  flex-direction: column;
  align-self: start;          /* don't stretch to match the contact-info column height */
  height: auto;               /* hug the map content, no empty tinted area below */
}
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Static map (DSGVO-friendly: no third-party tracking) */
.map-static {
  position: relative;
  display: block;
  overflow: hidden;
  background: #EAF7FC;
  line-height: 0; /* eliminate inline-image baseline gap */
}
.map-static img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.map-static:hover img,
.map-static:focus-visible img { transform: scale(1.03); }
.map-static__overlay {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  color: var(--brand-dark);
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(15, 44, 63, 0.18);
  pointer-events: none; /* the whole .map-static is the link */
  white-space: nowrap;
}
.map-static__overlay svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.map-static:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .map-static img { transition: none; }
  .map-static:hover img,
  .map-static:focus-visible img { transform: none; }
}

/* --- CTA Strip --- */
.cta-strip {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.cta-strip h2 { color: white; margin-bottom: 1rem; }
.cta-strip p { color: rgba(255,255,255,0.92); font-size: var(--fs-lg); margin-bottom: 2rem; }
.cta-strip .btn--primary {
  background: white;
  color: var(--brand-darker);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.cta-strip .btn--primary:hover {
  background: var(--ink);
  color: white;
}
.cta-strip .btn--ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.cta-strip .btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  color: white;
}
.cta-strip__buttons { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* --- Page header (for inner pages) --- */
.page-header {
  background: linear-gradient(135deg, var(--brand-tint-2) 0%, var(--brand-tint) 100%);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 5vw, 4rem);
  text-align: center;
}
.page-header h1 { margin-bottom: 1rem; }
.page-header p { font-size: var(--fs-xl); max-width: 720px; margin: 0 auto; }
.page-header .crumbs {
  font-size: 1rem;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}
.page-header .crumbs a { color: var(--brand-dark); }

/* --- Footer --- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 2rem;
}
.site-footer h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.site-footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.site-footer a:hover { color: white; text-decoration: underline; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
.footer-brand__logo img {
  height: 72px;
  width: auto;
  max-width: 280px;
  display: block;
}
.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}
.footer-brand p { color: rgba(255,255,255,0.72); font-size: var(--fs-base); }
.footer-list { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-list li { font-size: var(--fs-base); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom .links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* --- Mobile sticky bottom CTA bar (for elderly mobile users) --- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  background: white;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 0.75rem;
  gap: 0.6rem;
  z-index: 90;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
}
.mobile-cta-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  min-height: 56px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}
.mobile-cta-bar .call {
  background: white;
  color: var(--brand-darker);
  border: 2px solid var(--brand);
}
.mobile-cta-bar .book {
  background: var(--brand);
  color: white;
}
.mobile-cta-bar svg { width: 22px; height: 22px; }

/* --- Mobile menu toggle --- */
.menu-toggle {
  display: none;
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--line);
  background: white;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle:hover { border-color: var(--brand); }
.menu-toggle svg { width: 26px; height: 26px; }

/* --- Cookie banner --- */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 540px;
  margin: 0 auto;
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { font-size: 1rem; margin-bottom: 1rem; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cookie-banner .btn { padding: 0.75rem 1.25rem; font-size: 1rem; min-height: 48px; }

/* --- Responsive --- */

/* Tablet: tighten nav spacing so all 5 items still fit */
@media (max-width: 1100px) {
  .site-nav a { padding: 0.6rem 0.7rem; font-size: 1rem; }
  .brand-text__sub { display: none; }
  .header-cta { padding: 0.65rem 1.1rem; font-size: 0.95rem; }
}

@media (max-width: 960px) {
  .hero__grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero__media { aspect-ratio: 4/3; max-height: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Below 880px: collapse nav into hamburger; hide utility bar */
@media (max-width: 880px) {
  :root { --header-h: var(--header-h-mobile); }
  .site-header__utility { display: none; }
  .site-header__main { min-height: 76px; gap: 0.75rem; }
  .site-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-cta { display: none; } /* CTA moves to mobile sticky bar */
  .brand-link img { height: 46px; }
  .brand-link--full img { height: 48px; max-width: 220px; }
  .brand-text__name { font-size: 1.15rem; }
  .brand-text__sub { display: none; }

  body { padding-bottom: 88px; } /* room for mobile sticky bar */
  .mobile-cta-bar { display: flex; }

  /* Mobile nav drawer */
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: white;
    padding: 0.75rem;
    gap: 0.15rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open a {
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    font-size: var(--fs-lg);
    border-radius: var(--radius-sm);
  }
  .site-nav.is-open a.is-active::after { display: none; }
  .site-nav.is-open a.is-active { background: var(--brand-tint); }

  /* Move language toggle into the mobile drawer area */
  .lang-toggle a { padding: 0.4rem 0.75rem; font-size: 0.85rem; }
}

@media (max-width: 560px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .cta-strip__buttons { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; margin: 0 auto; }
  .cta-strip__buttons .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Reveal animations (gentle) */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
