/* =========================================================
   orthos prien — shared stylesheet
   ========================================================= */

:root {
  --navy:        #1a2d5a;
  --navy-2:      #243a6e;
  --navy-deep:   #0f1d3d;
  --gold:        #c4973a;
  --gold-2:      #b48530;
  --gold-soft:   #e6c98a;
  --bg:          #faf8f4;
  --bg-warm:     #f7f3ed;
  --bg-warmer:   #f2ede6;
  --ink:         #1c1c20;
  --ink-2:       #44464d;
  --ink-3:       #71747c;
  --paper:       #ffffff;
  --rule:        rgba(26, 45, 90, 0.10);
  --rule-strong: rgba(26, 45, 90, 0.18);

  --f-display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --f-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --pad-x: clamp(20px, 4vw, 56px);
  --pad-section-y: clamp(72px, 9vw, 128px);
  --container: 1240px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }

.skip {
  position: absolute; left: 16px; top: -100px;
  background: var(--navy); color: #fff; padding: 12px 16px;
  border-radius: 4px; z-index: 1000;
  transition: top .2s var(--ease);
}
.skip:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.no-rule::before { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  border-radius: 2px;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn-ghost {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-ghost-dark {
  background: transparent; color: var(--navy);
  border-color: var(--rule-strong);
}
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .25s var(--ease);
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(15, 29, 61, 0.06); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-top: 16px; padding-bottom: 16px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  line-height: 1.1; flex-shrink: 0;
  text-decoration: none;
}
.brand-logo {
  width: 45px; height: auto;
  display: block;
  /* Recolor PNG navy parts to current --navy via filter is unreliable;
     keep original colors which already match the navy palette */
  transition: transform .4s var(--ease);
}
.brand:hover .brand-logo { transform: rotate(-3deg) scale(1.04); }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  white-space: nowrap;
  font-family: var(--f-display, 'Cormorant Garamond', serif);
}
.brand-sub {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-top: 2px;
  white-space: nowrap;
  text-transform: uppercase;
}
.footer-logo {
  width: 52px; height: auto; display: block;
  margin-bottom: 14px;
  opacity: 0.92;
}

.nav { display: none; gap: 32px; align-items: center; flex-grow: 1; justify-content: center; }
.nav a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--navy); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.header-actions { display: none; align-items: center; gap: 10px; flex-shrink: 0; }
.header-cta-termin,
.header-cta-phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 2px;
  font-size: 13px; font-weight: 600;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.header-cta-termin {
  background: var(--gold); color: #fff;
}
.header-cta-termin:hover { background: var(--gold-2); }
.header-cta-phone {
  background: var(--navy); color: #fff;
}
.header-cta-phone:hover { background: var(--navy-2); }
.header-cta-termin svg, .header-cta-phone svg { width: 14px; height: 14px; }

.burger {
  display: inline-flex; flex-direction: column;
  justify-content: center; align-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--rule); background: #fff;
  border-radius: 2px; gap: 5px;
}
.burger span {
  width: 18px; height: 1.5px; background: var(--navy);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.menu-overlay {
  position: fixed; inset: 0;
  background: var(--navy); color: #fff; z-index: 99;
  padding: 100px var(--pad-x) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateY(-100%);
  visibility: hidden; pointer-events: none;
  transition: transform .45s var(--ease), visibility 0s linear .45s;
}
.menu-overlay.open {
  transform: translateY(0);
  visibility: visible; pointer-events: auto;
  transition: transform .45s var(--ease), visibility 0s linear 0s;
}
@media (min-width: 900px) { .menu-overlay { display: none; } }
.menu-overlay nav { display: flex; flex-direction: column; gap: 20px; }
.menu-overlay nav a {
  font-size: clamp(32px, 7vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 14px;
  transition: color .2s var(--ease), padding-left .25s var(--ease);
}
.menu-overlay nav a:hover { color: var(--gold-soft); padding-left: 12px; }
.menu-foot { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 0.03em; }
.menu-foot a { color: var(--gold-soft); }
.menu-foot .menu-actions {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px;
}
.menu-foot .menu-actions .btn { justify-content: center; }

@media (min-width: 900px) {
  .nav { display: flex; }
  .header-actions { display: inline-flex; }
  .burger { display: none; }
}

/* HERO (home) */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-2) 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196, 151, 58, 0.18) 0%, transparent 60%);
  z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 48px;
  padding-top: clamp(60px, 10vw, 120px);
  padding-bottom: clamp(80px, 12vw, 160px);
  align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 28px; max-width: 600px; }
.hero-title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold-soft);
  position: relative;
}
.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 50ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

.hero-portrait-wrap {
  position: relative; aspect-ratio: 4 / 5;
  max-height: 600px; margin-left: auto; width: 100%;
}
.hero-portrait {
  width: 100%; height: 100%;
  background:
    linear-gradient(180deg, transparent 50%, rgba(15, 29, 61, 0.45) 100%),
    linear-gradient(135deg, #2d4280 0%, #3a5198 50%, #4a64b3 100%);
  position: relative; overflow: hidden; border-radius: 2px;
}
.hero-portrait::after {
  content: "Portrait Dr. Baer";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500;
}
.hero-portrait .gold-frame {
  position: absolute; top: -16px; right: -16px;
  width: 72px; height: 72px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.hero-portrait .gold-frame.bl {
  top: auto; right: auto; bottom: -16px; left: -16px;
  border-top: 0; border-right: 0;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.float-card {
  position: absolute; z-index: 2;
  bottom: -60px; right: 24px;
  background: #fff; color: var(--ink);
  padding: 24px 28px; border-radius: 2px;
  box-shadow: 0 24px 48px rgba(15, 29, 61, 0.2);
  max-width: 320px;
  display: flex; flex-direction: column; gap: 6px;
}
.float-card .label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
}
.float-card .addr {
  font-size: 18px; font-weight: 700;
  color: var(--navy); line-height: 1.3;
  letter-spacing: -0.01em;
}
.float-card .addr-sub { font-size: 14px; color: var(--ink-2); }

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 72px; }
  .hero-portrait-wrap { max-height: 640px; }
  .float-card { bottom: -50px; right: -20px; padding: 28px 32px; }
}

/* PAGE HERO (subpages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
  position: relative; isolation: isolate; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute;
  top: -150px; right: -150px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(196, 151, 58, 0.14) 0%, transparent 60%);
  z-index: -1;
}
.page-hero-inner { display: flex; flex-direction: column; gap: 20px; max-width: 760px; }
.page-hero h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.page-hero h1 em { font-style: normal; color: var(--gold-soft); }
.page-hero p { font-size: clamp(16px, 1.4vw, 19px); color: rgba(255,255,255,0.78); max-width: 56ch; line-height: 1.6; }
.crumbs {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); display: flex; gap: 10px; align-items: center;
  margin-bottom: 4px;
}
.crumbs a { color: var(--gold-soft); }
.crumbs a:hover { color: #fff; }
.crumbs span { color: rgba(255,255,255,0.4); }

/* SECTION HEAD */
.section-head { display: flex; flex-direction: column; gap: 20px; margin-bottom: 56px; max-width: 720px; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.section-head p { font-size: 16px; color: var(--ink-2); line-height: 1.65; max-width: 56ch; }

/* SERVICES */
.services {
  background: var(--bg-warm);
  padding-top: var(--pad-section-y);
  padding-bottom: var(--pad-section-y);
}
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 80vw);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: var(--pad-x);
  margin: 0 calc(var(--pad-x) * -1);
  padding: 4px var(--pad-x) 24px;
  -webkit-overflow-scrolling: touch;
}
.services-grid::-webkit-scrollbar { height: 6px; }
.services-grid::-webkit-scrollbar-track { background: transparent; }
.services-grid::-webkit-scrollbar-thumb { background: var(--rule-strong); border-radius: 3px; }

.service-card {
  background: #fff; padding: 32px 28px;
  border-radius: 2px;
  display: flex; flex-direction: column; gap: 16px;
  scroll-snap-align: start; position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid transparent;
}
.service-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 24px 40px rgba(15, 29, 61, 0.08); }
.service-card:hover::before { transform: scaleX(1); }

.icon-badge {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(196, 151, 58, 0.12);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-badge svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.service-card h3 {
  font-size: 19px; font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em; line-height: 1.25;
}
.service-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; flex-grow: 1; }
.more-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em; margin-top: 4px;
  transition: gap .25s var(--ease);
}
.more-link:hover { gap: 12px; }

@media (min-width: 600px) {
  .services-grid {
    grid-auto-flow: row; grid-auto-columns: auto;
    grid-template-columns: repeat(2, 1fr);
    overflow: visible; margin: 0; padding: 0; gap: 20px;
  }
}
@media (min-width: 1200px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* DOCTOR SPLIT */
.doctor { background: var(--bg-warmer); overflow: hidden; }
.doctor-inner { display: grid; grid-template-columns: 1fr; }
.doctor-photo {
  position: relative; aspect-ratio: 16 / 10;
  background:
    linear-gradient(180deg, transparent 60%, rgba(15, 29, 61, 0.5) 100%),
    linear-gradient(135deg, #b9aa8a 0%, #8a7858 50%, #5a4d36 100%);
  overflow: hidden;
}
.doctor-photo::after {
  content: "Dr. med. Samuel Baer";
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 24px;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); font-weight: 500;
}
.doctor-content {
  padding: clamp(48px, 7vw, 96px) var(--pad-x);
  display: flex; flex-direction: column; gap: 22px;
  max-width: 600px; margin: 0 auto;
}
.doctor-name {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.025em; color: var(--navy);
}
.doctor-role { font-size: 14px; font-weight: 600; color: var(--gold); letter-spacing: 0.05em; }
.gold-divider { width: 48px; height: 2px; background: var(--gold); margin: 8px 0 4px; }
.doctor-bio { font-size: 16px; line-height: 1.75; color: var(--ink-2); }

@media (min-width: 900px) {
  .doctor-inner { grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 640px; }
  .doctor-photo { aspect-ratio: auto; height: 100%; }
  .doctor-content {
    padding: clamp(64px, 6vw, 112px) clamp(32px, 5vw, 80px);
    margin: 0; max-width: 560px; justify-content: center;
  }
}

/* STATS */
.stats {
  background: var(--navy); color: #fff;
  padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px);
  position: relative; isolation: isolate;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,151,58,0.08), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(196,151,58,0.06), transparent 50%);
  z-index: -1;
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
.stat { display: flex; flex-direction: column; gap: 8px; padding-left: 16px; border-left: 1px solid rgba(196,151,58,0.4); }
.stat-num {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1; color: #fff;
}
.stat-num em { font-style: normal; color: var(--gold-soft); }
.stat-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

/* CONTACT TILES */
.contact { background: var(--bg); padding-top: var(--pad-section-y); padding-bottom: var(--pad-section-y); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.contact-card {
  background: #fff; padding: 32px 28px;
  border: 1px solid var(--rule); border-radius: 2px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.contact-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.contact-card .icon-badge { background: var(--bg-warm); }
.contact-card .label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3);
}
.contact-card .value {
  font-size: 19px; font-weight: 700;
  color: var(--navy); line-height: 1.3;
  letter-spacing: -0.015em;
}
.contact-card .meta { font-size: 14px; color: var(--ink-2); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* GENERIC CONTENT */
.section { padding-top: var(--pad-section-y); padding-bottom: var(--pad-section-y); }
.section.alt { background: var(--bg-warm); }
.section.alt-2 { background: var(--bg-warmer); }
.prose { max-width: 720px; }
.prose p { font-size: 16px; line-height: 1.75; color: var(--ink-2); }
.prose p + p { margin-top: 18px; }
.prose h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700; color: var(--navy);
  letter-spacing: -0.02em; margin-top: 36px; margin-bottom: 14px;
  line-height: 1.2;
}
.prose ul { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 18px 0; }
.prose ul li {
  position: relative; padding-left: 24px;
  font-size: 16px; color: var(--ink-2); line-height: 1.6;
}
.prose ul li::before {
  content: ""; position: absolute;
  left: 0; top: 11px; width: 14px; height: 1px; background: var(--gold);
}

/* SPLIT TWO COLS */
.split-2 { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .split-2 { grid-template-columns: 1fr 1.4fr; gap: 64px; } }

/* SIDE-LIST (for service detail items) */
.side-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--rule); }
.side-list-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 40px 1fr; gap: 20px;
  align-items: start;
}
.side-list-item .num {
  font-size: 12px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.1em;
  padding-top: 4px;
}
.side-list-item h4 {
  font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.side-list-item p { font-size: 15px; color: var(--ink-2); line-height: 1.6; }

/* MAP / DIRECTIONS */
.map-block {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, #d8d2c5 0%, #b8b09e 50%, #8e8674 100%);
  border-radius: 2px;
  overflow: hidden;
}
.map-block::after {
  content: "Karte · Seestraße 14, 83209 Prien a. Chiemsee";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(15, 29, 61, 0.5); font-weight: 600;
}
.map-pin {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -100%);
  width: 32px; height: 32px;
  border-radius: 50% 50% 50% 0;
  background: var(--navy);
  rotate: -45deg;
  box-shadow: 0 8px 24px rgba(15, 29, 61, 0.4);
  z-index: 2;
}
.map-pin::after {
  content: ""; position: absolute;
  inset: 8px; border-radius: 50%; background: var(--gold);
}

/* HOURS TABLE */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table th, .hours-table td { padding: 12px 0; text-align: left; border-bottom: 1px solid var(--rule); font-size: 15px; }
.hours-table th { font-weight: 600; color: var(--navy); }
.hours-table td { color: var(--ink-2); text-align: right; }
.hours-table tr.today th, .hours-table tr.today td { color: var(--gold); }

/* FORM */
.form { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .form { grid-template-columns: 1fr 1fr; } }
.form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3);
}
.field input, .field textarea, .field select {
  font: inherit; font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: 2px; background: #fff; color: var(--ink);
  transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold);
}
.field textarea { min-height: 140px; resize: vertical; }

/* CTA BAND */
.cta-band {
  background: var(--navy); color: #fff;
  padding: clamp(48px, 6vw, 88px) 0;
  position: relative; isolation: isolate; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(196,151,58,0.18), transparent 60%);
  z-index: -1;
}
.cta-band-inner { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.cta-band h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
  max-width: 18ch;
}
.cta-band h2 em { font-style: normal; color: var(--gold-soft); }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 56ch; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 900px) {
  .cta-band-inner {
    flex-direction: row; justify-content: space-between; align-items: center; gap: 48px;
  }
  .cta-band-actions { flex-shrink: 0; }
}

/* FOOTER */
.site-footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.7);
  padding: 56px 0 24px; font-size: 14px;
}
.footer-inner {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 12px; max-width: 36ch; line-height: 1.65; }
.footer-col h4 {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-meta {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 16px; padding-top: 24px; font-size: 12px; color: rgba(255,255,255,0.5);
}
.footer-meta a:hover { color: var(--gold-soft); }
@media (min-width: 700px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }

/* REVEAL */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0; transform: translateY(24px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
  }
  [data-reveal].in { opacity: 1; transform: none; }
}
