/* ============================================================
   Zahnarztpraxis Bechtold — Nordsee-Theme
   ============================================================ */

:root {
  /* Marine palette — derived from logo navy */
  --night:  #0d1f2d;
  --navy:   #1c3a52;
  --ocean:  #2e6082;
  --tide:   #5b94b3;
  --sky:    #a9c8d6;
  --mist:   #d9e4ea;

  /* Sand & shell */
  --shell:  #fbf7ef;
  --foam:   #f4ede0;
  --sand:   #e6d6b9;
  --dune:   #c9a87a;

  /* Accent — sunset on the dunes */
  --sun:    #d97a5a;
  --coral:  #e89878;

  /* Semantic */
  --bg:        var(--shell);
  --ink:       var(--navy);
  --ink-soft:  #3d5366;
  --line:      #d9cdb4;
  --line-soft: #ece2cd;

  /* Type */
  --font-display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Subtle sand grain across whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.42  0 0 0 0 0.24  0 0 0 0.10 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: clamp(48px, 8vw, 120px); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: clamp(36px, 5vw, 64px); line-height: 1.0; }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.15; }
h4 { font-size: 20px; line-height: 1.3; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocean);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--ocean);
  display: inline-block;
}

.italic-serif { font-style: italic; color: var(--ocean); }

p { margin: 0 0 1em; color: var(--ink-soft); text-wrap: pretty; }
.lead { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.55; color: var(--ink); }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { position: relative; padding: clamp(80px, 10vw, 140px) 0; }
.section.tight { padding: clamp(60px, 6vw, 90px) 0; }
.section--sand { background: var(--foam); }
.section--navy { background: var(--navy); color: var(--shell); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--shell); }
.section--navy p { color: rgba(251, 247, 239, 0.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--navy);
  color: var(--shell);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 8px 24px -12px rgba(28,58,82,0.5);
}
.btn--primary:hover { background: var(--night); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--foam); border-color: var(--ocean); color: var(--ocean); }
.btn--sun {
  background: var(--sun);
  color: white;
  box-shadow: 0 8px 24px -10px rgba(217, 122, 90, 0.6);
}
.btn--sun:hover { background: var(--coral); transform: translateY(-1px); }

/* ---------- Wave dividers ---------- */
.wave {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 80px);
  pointer-events: none;
}

/* ---------- Cards ---------- */
.card {
  background: var(--shell);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -28px rgba(28, 58, 82, 0.25);
  border-color: var(--sand);
}

/* ---------- Pill / chip ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--ocean);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---------- Topbar (above main nav) ---------- */
.topbar {
  background: var(--navy);
  color: var(--shell);
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 50;
}
.topbar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px 20px;
  flex-wrap: wrap;
}
.topbar__right { color: rgba(251,247,239,0.6); }
@media (max-width: 980px) {
  .topbar__right, .topbar__email, .topbar__divider { display: none; }
}
.topbar a { display: inline-flex; align-items: center; gap: 8px; color: var(--sand); }
.topbar a:hover { color: var(--shell); }
.topbar__divider {
  display: inline-block;
  width: 1px; height: 14px;
  background: rgba(230, 214, 185, 0.3);
  margin: 0 14px;
  vertical-align: middle;
}

/* ---------- Main Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  background: rgba(251, 247, 239, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  z-index: 40;
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 0;
}
.nav__logo img { height: 36px; }
.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--navy); }
.nav__links a.active { color: var(--navy); }
.nav__links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--sun);
}
.nav__cta { display: flex; gap: 10px; align-items: center; }

@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* ---------- Hero (full-bleed photo background) ---------- */
.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--shell);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  opacity: 1;
  transition: opacity 1.6s ease-in-out;
}
.hero__bg.is-hidden { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .hero__bg { transition: none; }
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(95deg, rgba(13,31,45,0.85) 0%, rgba(13,31,45,0.72) 30%, rgba(13,31,45,0.42) 55%, rgba(13,31,45,0.05) 85%, rgba(13,31,45,0) 100%),
    linear-gradient(180deg, rgba(13,31,45,0.35) 0%, rgba(13,31,45,0.05) 25%, rgba(13,31,45,0) 60%, rgba(13,31,45,0.5) 100%);
}
.hero__inner {
  width: 100%;
  padding-top: clamp(80px, 12vh, 140px);
  padding-bottom: clamp(80px, 12vh, 120px);
}
.hero__content {
  max-width: 720px;
}
.hero h1 {
  color: var(--shell);
  font-style: italic;
  font-weight: 400;
  padding-bottom: 0.08em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5), 0 1px 2px rgba(0,0,0,0.3);
}
.hero h1 .roman { font-style: normal; }
.hero h1 .ampersand {
  color: var(--coral);
  font-style: italic;
}
.hero .eyebrow {
  color: var(--sand);
}
.hero .eyebrow::before {
  background: var(--coral);
}
.hero__lede {
  font-size: clamp(17px, 1.4vw, 21px);
  color: rgba(251,247,239,0.95);
  max-width: 52ch;
  margin: 32px 0 40px;
  line-height: 1.55;
  text-shadow: 0 1px 24px rgba(0,0,0,0.45);
}
.hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .btn--ghost {
  color: var(--shell);
  border-color: rgba(251,247,239,0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(251,247,239,0.06);
}
.hero .btn--ghost:hover {
  background: rgba(251,247,239,0.12);
  border-color: var(--shell);
  color: var(--shell);
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251,247,239,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(251,247,239,0.7), transparent);
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* Circular practice inset — anchors the dental connection */
.hero__circle {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  bottom: clamp(40px, 8vh, 90px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: hero-float 7s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__circle { animation: none; }
}
.hero__circle-photo {
  width: clamp(260px, 32vw, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid rgba(251,247,239,0.92);
  box-shadow: 0 40px 90px -28px rgba(0,0,0,0.65);
  position: relative;
}
.hero__circle-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease-in-out, transform 4s ease-out;
}
.hero__circle-photo img.is-active {
  opacity: 1;
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .hero__circle-photo img { transition: opacity .4s ease; transform: none; }
}
.hero__circle-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,247,239,0.94);
  color: var(--navy);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 28px -12px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.hero__circle-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sun); }

/* Rotating ring caption around circle */
.hero__circle-ring {
  position: absolute;
  inset: -28px;
  pointer-events: none;
}
.hero__circle-ring text {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  fill: rgba(251,247,239,0.85);
  font-weight: 600;
}
.hero__circle-ring svg { animation: ring-spin 28s linear infinite; }
@keyframes ring-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero__circle-ring svg { animation: none; } }

@media (max-width: 760px) {
  .hero__circle { right: 50%; transform: translateX(50%); bottom: 24px; }
  .hero__circle-ring { display: none; }
}
@media (max-width: 560px) {
  .hero__circle-photo { width: 200px; border-width: 6px; }
}

/* Floating info badge bottom-right (kept off when circle present) */
.hero__badge { display: none; }

/* ---------- Section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; } }

.section-head__title { max-width: 14ch; }
.section-head__sub { max-width: 50ch; }

/* ---------- Willkommen ---------- */
.willkommen-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 5vw, 90px);
  align-items: start;
}
@media (max-width: 800px) { .willkommen-grid { grid-template-columns: 1fr; } }
.willkommen-grid .signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ocean);
  margin-top: 24px;
}

.willkommen-imageframe {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--mist) 0%, var(--sand) 100%);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(13, 31, 45, 0.35);
}
.willkommen-imageframe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.willkommen-stamp {
  position: absolute;
  top: 20px; right: 20px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--shell);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  line-height: 1.0;
  transform: rotate(-8deg);
}
.willkommen-stamp .big { font-size: 28px; }
.willkommen-stamp .small { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-family: var(--font-body); margin-top: 4px; }

/* ---------- Leistungen — Editorial-Split ---------- */
.leistungen-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 920px) { .leistungen-split { grid-template-columns: 1fr; } }

.leistungen-photo {
  position: sticky;
  top: 90px;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(13,31,45,0.4);
}
.leistungen-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 920px) {
  .leistungen-photo {
    position: relative;
    top: 0;
    aspect-ratio: 4 / 3;
  }
}
.leistungen-photo__badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(13,31,45,0.82);
  color: var(--shell);
  padding: 12px 18px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-family: var(--font-display);
  font-style: italic;
}

.leistungen-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.leistungen-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: background .2s ease;
  cursor: default;
}
.leistungen-item:hover { background: var(--foam); padding-left: 10px; padding-right: 10px; margin: 0 -10px; border-radius: 4px; }
.leistungen-item__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ocean);
  opacity: 0.75;
  padding-top: 3px;
  grid-row: span 2;
  align-self: start;
}
.leistungen-item__title {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.8vw, 24px);
  color: var(--navy);
  line-height: 1.15;
  margin: 0;
}
.leistungen-item:hover .leistungen-item__title { font-style: italic; color: var(--ocean); }
.leistungen-item__text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  max-width: 58ch;
}

/* Closing CTA strip below the explorer */
.leistungen__cta {
  margin-top: clamp(48px, 6vw, 80px);
  background: var(--navy);
  color: var(--shell);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) { .leistungen__cta { grid-template-columns: 1fr; } }
.leistungen__cta h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 34px);
  color: var(--shell);
  line-height: 1.15;
  margin: 0;
}
.leistungen__cta p { color: rgba(251,247,239,0.75); margin: 8px 0 0; font-size: 15px; }

/* ---------- Service mit Herz (4 features) ---------- */
.service-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 900px) { .service-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .service-row { grid-template-columns: 1fr; } }

.service-cell {
  padding: 40px 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
}
.service-cell:last-child { border-right: none; }
@media (max-width: 900px) {
  .service-cell:nth-child(2n) { border-right: none; }
  .service-cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.12); }
}
.service-cell__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coral);
  font-size: 48px;
  line-height: 1;
}
.service-cell h4 {
  color: var(--shell);
  font-family: var(--font-display);
  font-size: 24px;
  margin-top: 4px;
}
.service-cell p { color: rgba(251, 247, 239, 0.72); font-size: 14.5px; margin: 0; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; gap: 24px; } }

.team-card { display: flex; flex-direction: column; gap: 20px; }
.team-card__portrait {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--sky) 0%, var(--mist) 60%, var(--sand) 100%);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.team-card:hover .team-card__portrait {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px -30px rgba(28,58,82,0.35);
}
.team-card__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  transition: opacity .5s ease;
}
.team-card__portrait img.is-loaded { opacity: 1; }
.team-card__portrait::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(28,58,82,0.14));
  pointer-events: none;
}
.team-card__info { display: flex; flex-direction: column; gap: 6px; }
.team-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  color: var(--navy);
}
.team-card__role {
  font-size: 13px;
  color: var(--ocean);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ---------- News ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
  display: flex; flex-direction: column;
  background: var(--shell);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -28px rgba(28,58,82,0.2); }
.news-card__img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--mist), var(--sand));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic;
  color: rgba(28,58,82,0.4);
}
.news-card__body { padding: 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-card__cat { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ocean); font-weight: 600; }
.news-card__title { font-family: var(--font-display); font-size: 24px; color: var(--navy); }
.news-card__excerpt { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.news-card__link {
  margin-top: auto; padding-top: 12px;
  font-size: 13px; font-weight: 600; color: var(--ocean);
  display: inline-flex; align-items: center; gap: 8px;
}

/* ---------- Kontakt section ---------- */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 900px) { .kontakt-grid { grid-template-columns: 1fr; } }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 20px 0 8px;
}
.hours-table tr { border-bottom: 1px solid var(--line-soft); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 14px 0; }
.hours-table td:first-child { color: var(--ink); font-weight: 600; width: 35%; }
.hours-table td:nth-child(2) { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-table td:nth-child(3) { color: var(--ink-soft); text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr.today { background: var(--foam); }
.hours-table tr.today td:first-child { color: var(--sun); }

.kontakt-block {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
}
.kontakt-block:first-of-type { border-top: none; padding-top: 0; }
.kontakt-block__label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ocean); font-weight: 600;
}
.kontakt-block__value {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  line-height: 1.2;
}
.kontakt-block__value a:hover { color: var(--sun); }
.kontakt-block__sub { font-size: 14px; color: var(--ink-soft); }

.map-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--mist);
  aspect-ratio: 1;
  min-height: 360px;
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer {
  background: var(--night);
  color: rgba(251,247,239,0.7);
  padding: 64px 0 32px;
  font-size: 14px;
  position: relative;
}
.footer h4 { color: var(--shell); font-size: 18px; margin-bottom: 14px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
.footer a:hover { color: var(--coral); }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer__bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(251,247,239,0.12);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px;
  color: rgba(251,247,239,0.5);
}
.footer .logo-light {
  filter: brightness(0) invert(1) opacity(0.85);
  height: 38px;
}

/* ---------- Utility: reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Marquee strip ---------- */
.marquee {
  background: var(--navy);
  color: var(--sand);
  padding: 16px 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 40s linear infinite;
  padding-left: 56px;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee__track .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--coral);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Mobile menu */
.menu-toggle {
  display: none;
  font-size: 14px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
@media (max-width: 880px) {
  .menu-toggle { display: inline-flex; align-items: center; gap: 8px; }
  .nav__cta .btn--ghost { display: none; }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--shell);
  z-index: 100;
  padding: 80px 32px;
  transform: translateY(-100%);
  transition: transform .35s ease;
  display: flex; flex-direction: column;
  gap: 24px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--font-display); font-size: 32px; color: var(--navy); }
.mobile-menu__close {
  position: absolute; top: 24px; right: 24px;
  font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ocean);
}
