/* ============================================
   Artsenpraktijk Het Centrum — stylesheet
   Mobile-first, accessible, modern
   ============================================ */

:root {
  /* Palette — De Haan: Japandi · coastal · editorial */
  --c-primary: #5b6e5d;        /* sage */
  --c-primary-dark: #44544a;
  --c-primary-deep: #2a2825;   /* ink */
  --c-primary-soft: #e8eee9;
  --c-primary-softer: #f3f6f3;
  --c-accent: #a07b53;          /* warm sand/wood */
  --c-bg: #f5f1e8;              /* warm cream */
  --c-surface: #fdfcf7;          /* off-white */
  --c-surface-alt: #ebe5d5;     /* sand */
  --c-text: #2a2825;
  --c-muted: #76726c;
  --c-border: rgba(42, 40, 37, 0.14);
  --c-warn-bg: #f5e8d8;
  --c-warn-text: #8a5a2b;

  /* Typography — matched aan dokterspraktijkdehaan.be */
  --ff-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-sans: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing & radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 35, 40, 0.05), 0 1px 3px rgba(15, 35, 40, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 35, 40, 0.06), 0 8px 24px rgba(15, 35, 40, 0.06);
  --shadow-lg: 0 12px 32px rgba(15, 35, 40, 0.10);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-med: 250ms ease;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
  font-variation-settings: "opsz" 144;
}

h1 { font-size: clamp(2.2rem, 5vw + 1rem, 4.2rem); font-weight: 400; }
h2 { font-size: clamp(1.6rem, 2.4vw + 0.8rem, 2.6rem); }
h3 { font-size: 1.2rem; font-weight: 500; }

/* Italic accent in display headings (De Haan signature) */
h1 em, h2 em {
  font-style: italic;
  color: var(--c-primary);
  font-weight: 400;
}

p { margin: 0 0 1em; }

a {
  color: var(--c-primary-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
a:hover { color: var(--c-primary); }

img, svg, iframe { max-width: 100%; }

/* Focus states */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--c-text);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  text-decoration: none;
  z-index: 1000;
}
.skip-link:focus { left: 8px; color: #fff; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 720px) { .container { padding-inline: 32px; } }

main > section { padding-block: 64px; }
@media (min-width: 720px) { main > section { padding-block: 96px; } }

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head .eyebrow { display: inline-block; margin-bottom: 12px; }
.section-lead {
  color: var(--c-muted);
  font-size: 1.05rem;
  margin-top: -0.2em;
}

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-primary);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast),
              box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 0.9rem; }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }

.btn-primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--c-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: var(--c-surface);
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn-ghost:hover {
  border-color: var(--c-primary);
  color: var(--c-primary-dark);
  background: var(--c-surface);
}

.btn-link {
  color: var(--c-primary-dark);
  font-weight: 600;
  text-decoration: none;
  padding: 0;
}
.btn-link:hover { color: var(--c-primary); text-decoration: underline; }

/* ---------- Top emergency strip ---------- */
.topbar {
  background: var(--c-primary-deep);
  color: #d0c8b4;
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  padding-block: 8px;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: #fff; opacity: 0.85; }
.topbar-divider { opacity: 0.5; }
@media (max-width: 480px) {
  .topbar-divider { display: none; }
  .topbar-inner { gap: 4px 0; flex-direction: column; }
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), background var(--t-med);
}
.site-header.is-scrolled {
  border-bottom-color: var(--c-border);
  background: rgba(245, 241, 232, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--c-text);
  padding: 4px 0;
  border-radius: 6px;
  transition: opacity var(--t-fast);
}
.brand:hover { opacity: 0.85; }
.brand-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: 100%;
}
@media (max-width: 540px) {
  .brand-logo { height: 36px; }
}
@media (max-width: 380px) {
  .brand-logo { height: 32px; }
}

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 26px;
}
.primary-nav a {
  color: var(--c-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.96rem;
}
.primary-nav a:hover { color: var(--c-primary); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

/* Mobile nav */
@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--c-surface);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-med), opacity var(--t-med);
  }
  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .primary-nav li { border-bottom: 1px solid var(--c-border); }
  .primary-nav li:last-child { border-bottom: 0; }
  .primary-nav a { display: block; padding: 14px 0; font-size: 1.05rem; }
  .nav-cta { margin-top: 12px; align-self: flex-start; }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* ---------- HERO ---------- */
.hero {
  padding-block: 56px 72px !important;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(91, 110, 93, 0.10), transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(160, 123, 83, 0.06), transparent 60%),
    var(--c-bg);
}
@media (min-width: 720px) {
  .hero { padding-block: 96px 120px !important; }
}

.hero-inner {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
    gap: 64px;
  }
}

.hero-content .eyebrow { margin-bottom: 16px; display: inline-block; }
.hero-content h1 { margin-bottom: 0.45em; }
.lead {
  font-size: 1.13rem;
  color: var(--c-muted);
  max-width: 56ch;
  margin-bottom: 1.8em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.card-title {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-muted);
  margin: 0 0 16px;
}
.quick-list { list-style: none; margin: 0; padding: 0; }
.quick-list li + li { border-top: 1px solid var(--c-border); }
.quick-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  text-decoration: none;
  color: var(--c-text);
}
.quick-list a:hover .quick-icon { background: var(--c-primary); color: #fff; }
.quick-list strong { display: block; font-weight: 600; }
.quick-list small { color: var(--c-muted); font-size: 0.88rem; }
.quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-primary-soft);
  color: var(--c-primary-dark);
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast);
}

/* ---------- News / mededelingen ---------- */
.news { background: var(--c-surface-alt); }
.news-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}
.news-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.news-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  background: var(--c-primary-soft);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.news-card h3 { margin-bottom: 8px; }
.news-card p { color: var(--c-muted); margin: 0; }

/* ---------- About ---------- */
.two-col {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 880px) {
  .two-col { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}
.about .eyebrow { margin-bottom: 12px; display: inline-block; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--c-text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-primary-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6e5d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.about-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.visual-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--c-primary-dark);
  font-weight: 600;
  font-family: var(--ff-serif);
  box-shadow: var(--shadow-sm);
}
.visual-card svg { color: var(--c-primary); }
.visual-card-1 { transform: translateY(-12px); }
.visual-card-2 { background: var(--c-primary); color: #fff; grid-column: 2; }
.visual-card-2 svg { color: #fff; }
.visual-card-3 { grid-column: 1 / -1; }

@media (max-width: 600px) {
  .visual-card-1 { transform: none; }
}

/* ---------- Doctors ---------- */
.doctors { background: var(--c-bg); }
.doctor-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .doctor-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .doctor-grid { grid-template-columns: repeat(4, 1fr); }
}
.doctor-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.doctor-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary-soft);
}
.doctor-avatar {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}
.doctor-card h3 { margin-bottom: 4px; }
.doctor-role {
  color: var(--c-primary);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.doctor-bio {
  color: var(--c-muted);
  font-size: 0.95rem;
  margin: 0;
}
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 6px;
}
.badge-warn { background: var(--c-warn-bg); color: var(--c-warn-text); }

/* ---------- Services ---------- */
.services { background: var(--c-surface-alt); }
.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--c-primary-soft);
  color: var(--c-primary-dark);
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--c-muted); margin: 0; font-size: 0.97rem; }

/* ---------- Playful syringe (nav Botox link) ---------- */
.nav-botox {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
}
.nav-syringe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  transform-origin: 75% 75%;
  will-change: transform;
}
.nav-botox:hover .nav-syringe,
.nav-botox:focus-visible .nav-syringe {
  animation: syringe-wiggle 700ms ease;
}
@keyframes syringe-wiggle {
  0%   { transform: rotate(0deg)   translateY(0); }
  15%  { transform: rotate(-22deg) translateY(-1px); }
  30%  { transform: rotate(14deg)  translateY(0); }
  45%  { transform: rotate(-10deg) translateY(-1px); }
  60%  { transform: rotate(8deg)   translateY(0); }
  80%  { transform: rotate(-4deg)  translateY(0); }
  100% { transform: rotate(0deg)   translateY(0); }
}
/* Tiny drop that "drips" after the wiggle */
.nav-botox {
  position: relative;
}
.nav-botox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-primary);
  opacity: 0;
  transform: translateY(-2px) scale(0.6);
  pointer-events: none;
}
.nav-botox:hover::after,
.nav-botox:focus-visible::after {
  animation: syringe-drop 900ms ease forwards;
  animation-delay: 350ms;
}
@keyframes syringe-drop {
  0%   { opacity: 0; transform: translateY(-2px) scale(0.6); }
  20%  { opacity: 1; transform: translateY(2px)  scale(1); }
  100% { opacity: 0; transform: translateY(14px) scale(0.8); }
}

@media (prefers-reduced-motion: reduce) {
  .nav-botox:hover .nav-syringe,
  .nav-botox:focus-visible .nav-syringe { animation: none; }
  .nav-botox::after { display: none; }
}

/* Subtle idle pulse on the service-card syringe icon */
.service-icon-syringe svg {
  transition: transform var(--t-med);
}
.service-card-link:hover .service-icon-syringe svg {
  transform: rotate(-12deg) scale(1.08);
}

/* ---------- Service card (link variant) ---------- */
.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}
.service-card-link h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text);
}
.service-arrow {
  color: var(--c-primary);
  transition: transform var(--t-fast);
}
.service-card-link:hover .service-arrow {
  transform: translateX(4px);
}

/* ---------- Botox module ---------- */
.botox {
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(26, 163, 218, 0.10), transparent 60%),
    linear-gradient(180deg, var(--c-surface-alt) 0%, var(--c-bg) 100%);
}

.botox-main {
  display: grid;
  gap: 28px;
  margin-bottom: 64px;
  align-items: start;
}
@media (min-width: 880px) {
  .botox-main {
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
  }
}

.botox-info h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}
.botox-info p {
  color: var(--c-text);
  font-size: 1.02rem;
}
.botox-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.botox-meta {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
@media (min-width: 880px) {
  .botox-meta {
    position: sticky;
    top: 96px;
  }
}
.botox-meta .card-title { margin-bottom: 8px; }

.meta-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.meta-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--c-border);
  font-size: 0.97rem;
}
.meta-list li:last-child { border-bottom: 0; }
.meta-label { color: var(--c-muted); }
.meta-list strong { color: var(--c-text); font-weight: 600; }

.botox-subhead {
  text-align: center;
  font-size: 1.5rem;
  margin: 56px 0 28px;
}

.zones-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-bottom: 16px;
}
@media (min-width: 600px) {
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .zones-grid { grid-template-columns: repeat(3, 1fr); }
}
.zone-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 22px;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.zone-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary-soft);
}
.zone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--c-primary-soft);
  color: var(--c-primary-dark);
  margin-bottom: 14px;
}
.zone-card h4 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 6px;
  line-height: 1.25;
}
.zone-card p {
  color: var(--c-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq details {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq details[open] {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--c-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background var(--t-fast);
}
.faq summary:hover { background: var(--c-primary-softer); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--c-primary);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.faq details[open] summary::after {
  content: "−";
}
.faq details > p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--c-muted);
  line-height: 1.65;
}

/* ---------- Practical info ---------- */
.practical-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .practical-grid { grid-template-columns: repeat(2, 1fr); }
}
.practical-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 32px 28px;
}
.practical-card h3 { margin-bottom: 16px; }

.hours { margin: 0 0 12px; }
.hours div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--c-border);
  font-size: 0.97rem;
}
.hours div:last-child { border-bottom: 0; }
.hours dt { font-weight: 600; }
.hours dd { margin: 0; color: var(--c-muted); }
.hours .closed dd { color: var(--c-accent); font-weight: 600; }

.muted-note {
  color: var(--c-muted);
  font-size: 0.88rem;
  margin: 12px 0 0;
}

.big-number {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 600;
  margin: 8px 0;
}
.big-number a {
  color: var(--c-primary);
  text-decoration: none;
}
.big-number a:hover { color: var(--c-primary-dark); }

/* ---------- CTA section ---------- */
.cta {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
}
.cta h2 { color: #fff; margin-bottom: 0.3em; }
.cta p { color: rgba(255, 255, 255, 0.88); max-width: 50ch; margin: 0; }
.cta-inner {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 880px) {
  .cta-inner { grid-template-columns: 1.4fr 1fr; gap: 48px; }
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}
@media (min-width: 880px) {
  .cta-actions { justify-content: flex-end; }
}
.cta .btn-primary {
  background: #fff;
  color: var(--c-primary-dark);
}
.cta .btn-primary:hover {
  background: #fff;
  color: var(--c-primary);
  transform: translateY(-1px);
}
.cta .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

/* ---------- Contact ---------- */
.contact-inner { align-items: stretch; }
.contact .eyebrow { margin-bottom: 12px; display: inline-block; }
.contact-info {
  font-style: normal;
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 16px 0 24px;
}
.map-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  min-height: 320px;
  background: var(--c-surface-alt);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-primary-deep);
  color: #d0c8b4;
  padding-block: 48px;
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: #fff; opacity: 0.85; }
.footer-inner {
  display: grid;
  gap: 24px;
}
@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: flex-start;
    gap: 48px;
  }
}
.footer-brand strong { color: #fff; font-family: var(--ff-serif); font-size: 1.1rem; }
.footer-brand p { margin: 6px 0 0; font-size: 0.93rem; }
.site-footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.site-footer nav a { text-decoration: none; font-size: 0.95rem; }
.copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: #b5ab93;
}

/* ---------- Announcement modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 35, 40, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 200ms ease;
}
.modal-overlay[hidden] { display: none; }
.modal-overlay.is-open { opacity: 1; }

.modal-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--c-surface);
  border-radius: var(--r-lg);
  padding: 40px 32px 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transform: translateY(14px) scale(0.98);
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
}
.modal-overlay.is-open .modal-card { transform: none; }
.modal-card:focus { outline: none; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--c-muted);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.modal-close:hover { background: var(--c-surface-alt); color: var(--c-text); }

.modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary-soft);
  border-radius: 50%;
  color: var(--c-primary-dark);
}

.modal-eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 10px;
}

.modal-card h2 {
  font-size: clamp(1.35rem, 2.2vw + 0.6rem, 1.7rem);
  margin: 0 0 12px;
}

.modal-card p {
  color: var(--c-muted);
  font-size: 1rem;
  margin: 0 0 24px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-actions .btn { justify-content: center; width: 100%; }
@media (min-width: 480px) {
  .modal-actions {
    flex-direction: row-reverse;
    justify-content: center;
  }
  .modal-actions .btn { width: auto; }
}

/* Prevent body scroll while modal is open */
body.modal-open {
  overflow: hidden;
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
