/* ============================================================
   Αθηνά Κουταλίδου — Οδοντιατρείο
   Hand-written stylesheet (no framework, no build step)
   Palette ported from the original scaffold tokens.
   ============================================================ */

/* --- Custom properties ----------------------------------- */
:root {
  --primary: #0369a1;
  --primary-dark: #075985;
  --primary-darker: #0c4a6e;
  --primary-light: #e0f2fe;
  --primary-50: #f0f9ff;
  --heading: #0c2d48;
  --body: #475569;
  --muted: #5e6a7e;
  --line: #e2e8f0;
  --line-soft: #f1f5f9;
  --slate-50: #f8fafc;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --white: #ffffff;

  --maxw: 64rem;       /* main content width  */
  --maxw-prose: 48rem; /* legal / article     */
  --maxw-cta: 42rem;   /* cta blocks          */

  --radius: 1rem;
  --radius-sm: 0.75rem;
  --radius-full: 9999px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Noto Sans", "Helvetica Neue", Arial, "Apple Color Emoji", sans-serif;
}

/* --- Reset / base ---------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

h1,
h2,
h3,
h4 {
  color: var(--heading);
  line-height: 1.2;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* --- Accessibility helpers ------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--primary-dark);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

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

/* --- Layout ---------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1rem;
}

.container--prose {
  max-width: var(--maxw-prose);
}

.container--cta {
  max-width: var(--maxw-cta);
}

.section {
  padding-block: 4rem;
}

.section--tight {
  padding-block: 3.5rem;
}

.section--sky {
  background: var(--primary-50);
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--muted);
  max-width: 36rem;
  margin-inline: auto;
}

.eyebrow {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

/* --- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.2);
}

.btn-primary:hover {
  background: var(--primary-darker);
}

.btn-outline {
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.btn-outline:hover {
  background: var(--primary-50);
}

.btn-white {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  background: var(--primary-50);
}

.btn-ghost-white {
  border-color: #fff;
  color: #fff;
}

.btn-ghost-white:hover {
  background: var(--primary);
}

.btn-viber {
  background: #5f4fd6;
  color: #fff;
}

.btn-viber:hover {
  background: #4f3fc4;
}

.btn-whatsapp {
  background: #25d366;
  color: #073b1e;
}

.btn-whatsapp:hover {
  background: #1eb858;
}

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-row--center {
  align-items: stretch;
  justify-content: center;
}

/* --- Header ---------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand img {
  height: 44px;
  width: auto;
  display: block;
}

.brand strong {
  color: var(--primary-darker);
  font-size: 1.05rem;
}

.brand span {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  font-size: 0.9rem;
  color: var(--body);
  font-weight: 500;
  transition: color 0.15s;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--primary-dark);
}

.nav-cta {
  background: var(--primary-dark);
  color: #fff !important;
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
}

.nav-cta:hover {
  background: var(--primary-darker);
}

.nav-toggle {
  display: inline-flex;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--slate-800);
  cursor: pointer;
}

.nav-toggle:hover {
  background: var(--line-soft);
}

.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem 1rem;
  background: #fff;
  border-top: 1px solid var(--line-soft);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: var(--slate-800);
  font-weight: 500;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.15s, color 0.15s;
}

.nav-mobile a:hover {
  background: var(--primary-50);
  color: var(--primary-dark);
}

.nav-mobile .nav-cta {
  margin-top: 0.5rem;
  text-align: center;
  padding: 0.75rem 1rem;
}

/* --- Dropdown nav ---------------------------------------- */
.has-dropdown {
  position: relative;
}

.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

/* transparent bridge — keeps :hover alive across the gap to the menu */
.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.7rem;
}

.has-dropdown > a .chevron {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.has-dropdown:hover > a .chevron,
.has-dropdown:focus-within > a .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
  min-width: 220px;
  padding: 0.4rem;
  list-style: none;
  z-index: 200;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--body);
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.15s, color 0.15s;
}

.dropdown-menu li a:hover {
  background: var(--primary-50);
  color: var(--primary-dark);
}

.nav-mobile-sub {
  padding-left: 1.5rem !important;
  font-size: 0.875rem !important;
  color: var(--muted) !important;
}

.nav-mobile-sub:hover {
  color: var(--primary-dark) !important;
}

/* --- Hero ------------------------------------------------ */
.hero {
  background: linear-gradient(135deg, var(--primary-50) 0%, #fff 55%, #fff 100%);
  padding-block: 4rem;
}

.hero-inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2.5rem;
}

.hero-text {
  flex: 1;
  text-align: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.hero-text h1 span {
  display: block;
  color: var(--primary-dark);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-top: 0.25rem;
  font-weight: 600;
}

.hero-text > p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-inline: auto;
}

.media-placeholder {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--primary-light);
  color: #7dd3fc;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(3, 105, 161, 0.15);
  overflow: hidden;
}

.media-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-placeholder svg {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 0.5rem;
  opacity: 0.35;
}

.media-placeholder p {
  font-size: 0.7rem;
  opacity: 0.6;
}

.hero .media-placeholder {
  width: 14rem;
  height: 14rem;
}

/* --- Service cards --------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: #bae6fd;
  box-shadow: 0 10px 25px rgba(3, 105, 161, 0.08);
}

.service-card .icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-sm);
  background: var(--primary-50);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  transition: background-color 0.2s;
}

.service-card:hover .icon {
  background: var(--primary-light);
}

.service-card .icon svg {
  width: 1.85rem;
  height: 1.85rem;
}

.service-card h3 {
  font-size: 1rem;
  color: var(--slate-800);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.service-card:hover h3 {
  color: var(--primary-dark);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1;
}

.service-card .more {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 500;
}

.service-card .more svg {
  width: 1rem;
  height: 1rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-dark);
  font-weight: 600;
  transition: color 0.15s;
}

.link-arrow:hover {
  color: var(--primary-darker);
}

.link-arrow svg {
  width: 1rem;
  height: 1rem;
}

.center {
  text-align: center;
}

.mt-10 {
  margin-top: 2.5rem;
}

/* --- About snippet --------------------------------------- */
.split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.split .media-placeholder {
  width: 12rem;
  height: 12rem;
  background: #fff;
}

.split-text {
  flex: 1;
}

.split-text h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.split-text > p {
  margin-bottom: 1rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--body);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  justify-content: center;
}

.check-list svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* --- Hours & location ------------------------------------ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.panel {
  border-radius: var(--radius);
  padding: 1.75rem;
}

.panel--sky {
  background: var(--primary-50);
}

.panel--slate {
  background: var(--slate-50);
}

.panel h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-800);
  margin-bottom: 1.25rem;
}

.panel h3 svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.hours-table td {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--primary-light);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table td:first-child {
  color: var(--slate-800);
  font-weight: 500;
}

.hours-table td:last-child {
  color: var(--muted);
  text-align: right;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-line {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.contact-line a {
  color: var(--primary-dark);
}

.contact-line a:hover {
  text-decoration: underline;
}

.maplink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.maplink:hover {
  text-decoration: underline;
}

.maplink svg {
  width: 1rem;
  height: 1rem;
}

/* --- CTA banner ------------------------------------------ */
.cta-band {
  background: var(--primary-dark);
  color: #fff;
  text-align: center;
  padding-block: 3.5rem;
}

.cta-band h2 {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: var(--primary-light);
  margin-bottom: 1.75rem;
}

/* --- Footer ---------------------------------------------- */
.site-footer {
  background: var(--slate-900);
  color: #cbd5e1;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: 3rem;
}

.footer-grid strong.fname {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
}

.footer-title {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-grid address {
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.footer-grid address a:hover {
  color: #fff;
}

.footer-sub {
  color: #93c5fd;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.legal-ids {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--slate-800);
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  padding-block: 1rem;
  font-size: 0.72rem;
  color: #94a3b8;
}

.footer-bottom a {
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: #cbd5e1;
}

/* --- Cookie banner --------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--slate-900);
  color: #fff;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-block: 1rem;
}

.cookie-banner p {
  font-size: 0.875rem;
  color: #cbd5e1;
  flex: 1;
}

.cookie-banner a {
  color: #38bdf8;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.cookie-actions button {
  flex: 1;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-family: inherit;
}

.cookie-reject {
  background: transparent;
  border: 1px solid #64748b;
  color: #e2e8f0;
}

.cookie-reject:hover {
  background: var(--slate-800);
}

.cookie-accept {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-weight: 600;
}

.cookie-accept:hover {
  background: var(--primary-dark);
}

/* --- Prose (legal / article pages) ----------------------- */
.prose {
  padding-block: 4rem;
}

.prose h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.prose h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.prose h3 {
  font-size: 1.05rem;
  margin-top: 1.25rem;
  margin-bottom: 0.35rem;
}

.prose p,
.prose ul {
  margin-bottom: 1rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.35rem;
}

.prose a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.prose .updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.prose code {
  background: var(--line-soft);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.85em;
}

/* --- Service detail -------------------------------------- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.back-link:hover {
  color: var(--primary-dark);
}

.back-link svg {
  width: 1rem;
  height: 1rem;
}

.article-section {
  margin-bottom: 2.5rem;
}

.article-section h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.points-box {
  background: var(--primary-50);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.points-box h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.points-box ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.points-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--slate-800);
}

.points-box .tick {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: var(--radius-full);
  background: #bae6fd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.points-box .tick svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--primary-dark);
}

/* --- Contact page cards ---------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin-inline: auto;
}

.contact-card {
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-card .bubble {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-card .bubble svg {
  width: 1.75rem;
  height: 1.75rem;
}

.contact-card h2 {
  font-size: 1.1rem;
  color: var(--slate-800);
  margin-bottom: 0.25rem;
}

.contact-card .sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.contact-card .big {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.contact-card .big:hover {
  color: var(--primary-darker);
}

/* --- Breakpoints ----------------------------------------- */
@media (min-width: 640px) {
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-band h2,
  .section-head h2,
  .split-text h2 {
    font-size: 2rem;
  }
  .btn-row {
    flex-direction: row;
  }
  .btn-row--center {
    align-items: center;
  }
  .cookie-banner .container {
    flex-direction: row;
    align-items: center;
  }
  .cookie-actions {
    width: auto;
  }
  .cookie-actions button {
    flex: none;
  }
  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .nav-mobile {
    display: none !important;
  }
  .hero-inner,
  .split {
    flex-direction: row;
    text-align: left;
  }
  .hero-text,
  .split-text {
    text-align: left;
  }
  .hero-text > p {
    margin-inline: 0;
  }
  .check-list li {
    justify-content: flex-start;
  }
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .hero .media-placeholder {
    width: 18rem;
    height: 18rem;
  }
}

@media (min-width: 1024px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Location map (consent-gated) ------------------------ */
.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--primary-50);
  min-height: 340px;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
}

.map-placeholder svg {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  opacity: 0.55;
}

.map-placeholder p {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 28rem;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* --- 404 ------------------------------------------------- */
.notfound {
  text-align: center;
  padding-block: 5rem;
}

.notfound .code {
  font-size: clamp(3.5rem, 12vw, 6rem);
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.notfound h1 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.notfound p {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

/* --- FAQ accordion ----------------------------------------- */
.faq{max-width:var(--maxw-prose);margin:0 auto;display:flex;flex-direction:column;gap:.75rem}
.faq details{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-sm);padding:0 1.25rem}
.faq summary{cursor:pointer;list-style:none;padding:1rem 0;font-weight:600;color:var(--heading);display:flex;justify-content:space-between;align-items:center;gap:1rem}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";font-size:1.4rem;color:var(--primary);line-height:1;flex:none}
.faq details[open] summary::after{content:"\2013"}
.faq .faq-a{padding:0 0 1rem;color:var(--body)}
.faq .faq-a p{margin:0;line-height:1.6}

/* --- visible breadcrumb trail ------------------------------ */
.breadcrumb-nav{font-size:.82rem;color:var(--muted);margin-bottom:1rem}
.breadcrumb-nav a{color:var(--primary-dark);text-decoration:none}
.breadcrumb-nav a:hover{text-decoration:underline}
.breadcrumb-nav span[aria-hidden]{margin:0 .15rem;color:var(--line)}
.breadcrumb-nav span[aria-current]{color:var(--body)}
