/* ==========================================================================
   952 Aberdeen Avenue — Serif Editorial Design System
   ========================================================================== */

:root {
  --background: #FAFAF8;
  --foreground: #1A1A1A;
  --muted: #F5F3F0;
  --muted-foreground: #6B6B6B;
  --accent: #B8860B;
  --accent-secondary: #D4A84B;
  --accent-foreground: #FFFFFF;
  --accent-muted: rgba(184, 134, 11, 0.06);
  --border: #E8E4DF;
  --border-hover: #D8D2C9;
  --card: #FFFFFF;
  --ring: #B8860B;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --shadow-sm: 0 1px 2px rgba(26,26,26,0.04);
  --shadow-md: 0 4px 12px rgba(26,26,26,0.06);
  --shadow-lg: 0 8px 24px rgba(26,26,26,0.08);
  --shadow-accent: 0 6px 18px rgba(184,134,11,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  color: var(--foreground);
}

/* ============ Texture / atmosphere ============ */
.paper-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.ambient-glow {
  position: fixed;
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.03;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.container { max-width: 72rem; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.container-narrow { max-width: 48rem; }
.container-wide { max-width: 90rem; }

.section { padding: 88px 0; position: relative; z-index: 2; }
.section-muted { background: var(--muted); }

@media (min-width: 768px) {
  .section { padding: 128px 0; }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.section-label .rule { height: 1px; flex: 1; background: var(--border); }

.small-caps {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.section-title {
  font-size: 2.75rem;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.section-title.center { text-align: center; }
@media (min-width: 480px) {
  .section-title { font-size: 4rem; }
}
@media (min-width: 768px) {
  .section-title { font-size: 5rem; }
}

.section-intro {
  text-align: center;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 56px;
  font-size: 1.25rem;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 28px;
  min-height: 48px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  transition: all 200ms ease-out;
  touch-action: manipulation;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-secondary); box-shadow: var(--shadow-accent); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn:disabled { opacity: 0.6; cursor: default; pointer-events: none; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--foreground);
  color: var(--foreground);
}
.btn-outline:hover { background: var(--muted); border-color: var(--accent); color: var(--accent); }

.btn-on-dark { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-on-dark:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

.btn-small { min-height: 40px; padding: 0 20px; font-size: 0.875rem; }
.btn-full { width: 100%; min-height: 58px; font-size: 1.0625rem; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 78rem;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo-link { flex-shrink: 0; }
.logo-img { height: 48px; width: auto; }

.main-nav { display: none; gap: 28px; margin: 0 auto; }
.main-nav a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--foreground);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease-out;
}
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a:hover { color: var(--accent); }

.nav-cta { display: none; }

.nav-toggle {
  margin-left: auto;
  width: 44px; height: 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--foreground); transition: 200ms ease-out; }

.mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease-out;
  border-top: 1px solid transparent;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { max-height: 400px; border-top-color: var(--border); }
.mobile-nav a {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 1.0625rem;
  font-weight: 500;
  min-height: 44px;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .nav-cta { display: inline-flex; margin-left: auto; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 96px;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center center;
  animation: heroCinematicZoom 26s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 0;
}
@keyframes heroCinematicZoom {
  from { transform: scale(1.22); }
  to { transform: scale(1.02); }
}
.hero-inner {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-secondary); }

.hero-title {
  font-size: 2.75rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 34rem;
  margin: 0 auto 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 12px;
  margin-bottom: 44px;
  padding: 28px 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.hero-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: #fff; }
.hero-stat-label { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

.hero-actions { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.hero-actions .btn { padding: 0 44px; min-height: 62px; font-size: 1.125rem; }

@media (min-width: 640px) {
  .hero-title { font-size: 4rem; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .hero-actions { flex-direction: row; justify-content: center; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 4.5rem; }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: #fff;
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; }
}

/* ============ Ticket banner ============ */
.ticket-banner {
  position: relative;
  z-index: 3;
  margin-top: -48px;
  padding: 0 24px;
}
.ticket {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}
.ticket-segment {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ticket-label { margin-bottom: 2px; }
.ticket-value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
}
.ticket-sub { color: var(--muted-foreground); font-size: 1.5rem; font-weight: 600; }

.ticket-perforation {
  position: relative;
  height: 1px;
  background: var(--border);
}
.ticket-perforation::before, .ticket-perforation::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px; height: 20px;
  background: var(--background);
  border-radius: 50%;
  transform: translateY(-50%);
}
.ticket-perforation::before { left: -10px; }
.ticket-perforation::after { right: -10px; }

@media (min-width: 640px) {
  .ticket { grid-template-columns: 1fr auto 1fr; align-items: center; }
  .ticket-perforation { width: 1px; height: 100%; }
  .ticket-perforation::before { top: -10px; left: 50%; transform: translateX(-50%); }
  .ticket-perforation::after { bottom: -10px; top: auto; left: 50%; transform: translateX(-50%); }
}

/* ============ About ============ */
.about-copy p { margin: 0 0 22px; font-size: 1.25rem; color: var(--foreground); }
.about-copy p:last-child { margin-bottom: 0; }
.about-emphasis {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.375rem !important;
  color: var(--accent);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ============ Features ============ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  background: var(--card);
  padding: 36px 28px;
  transition: background 200ms ease-out;
}
.feature-card:hover { background: var(--muted); }
.feature-icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: 20px; }
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 { font-size: 1.0625rem; margin-bottom: 8px; font-weight: 600; }
.feature-card p { margin: 0; color: var(--muted-foreground); font-size: 1.0625rem; line-height: 1.6; }

/* ============ Gallery ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 0;
}
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease-out; }
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(26,26,26,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 78vh; border-radius: 4px; box-shadow: var(--shadow-lg); }
.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 44px; height: 44px;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5rem;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }
@media (min-width: 768px) {
  .lightbox-prev { left: 24px; }
  .lightbox-next { right: 24px; }
}

/* ============ Virtual tour ============ */
.tour-frame {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--card);
}
.tour-embed { position: relative; width: 100%; height: 88vh; min-height: 640px; max-height: 980px; background: var(--muted); }
.tour-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============ Events ============ */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .events-grid { grid-template-columns: 1fr 1fr; } }

.event-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms ease-out, border-color 200ms ease-out;
}
.event-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-hover); }
.event-card-accent { border-top: 2px solid var(--accent); background: var(--accent-muted); }

.event-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 5px 10px;
  margin-bottom: 18px;
}
.event-badge-dark { color: var(--foreground); border-color: var(--foreground); }

.event-card h3 { font-size: 1.125rem; margin-bottom: 4px; }
.event-date { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin: 0 0 4px; }
.event-time { color: var(--accent); font-weight: 600; margin: 0 0 16px; font-size: 1.875rem; }
.event-desc { color: var(--muted-foreground); font-size: 1.0625rem; margin: 0 0 24px; }

/* ============ Map ============ */
.map-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .map-layout { grid-template-columns: 1.6fr 1fr; } }

#map {
  height: 420px;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  background: var(--muted);
}
@media (min-width: 900px) { #map { height: 520px; } }

.map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
}
.map-fallback-sub { max-width: 22rem; font-size: 1rem; color: var(--muted-foreground); margin: 0; }

.map-legend {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.map-legend-group { padding: 16px 0; border-bottom: 1px solid var(--border); }
.map-legend-group:first-child { padding-top: 0; }
.map-legend-group:last-child { border-bottom: none; padding-bottom: 0; }
.map-legend-title { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 1.0625rem; margin-bottom: 10px; }
.map-legend-group ul { display: flex; flex-direction: column; gap: 10px; }
.map-legend-group li { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; font-size: 1rem; color: var(--muted-foreground); padding-left: 20px; }
.map-legend-group li .poi-name { flex: 1 1 auto; min-width: 0; }
.map-legend-group li .poi-detail {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 6px;
}
.map-legend-group li [data-poi-time] { color: var(--foreground); font-family: var(--font-mono); font-size: 0.75rem; flex-shrink: 0; margin-left: auto; }

.legend-icon { width: 22px; height: 22px; flex-shrink: 0; object-fit: contain; }
.legend-icon-home { width: 20px; height: auto; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25)); }

/* ============ Book a showing ============ */
.showing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 82rem;
  margin: 0 auto;
}
@media (min-width: 900px) { .showing-layout { grid-template-columns: 1fr 1fr; } }

.calendar-card, .booking-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.calendar-header {
  background: var(--foreground);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 34px;
  border-radius: 8px 8px 0 0;
}
.calendar-header .small-caps { color: #fff; font-size: 1rem; }
.cal-nav {
  color: #fff;
  width: 48px; height: 48px;
  font-size: 1.75rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  transition: background 150ms ease-out;
}
.cal-nav:hover { background: rgba(255,255,255,0.12); }
.cal-nav:disabled { opacity: 0.3; cursor: default; }
.cal-nav:disabled:hover { background: none; }

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 30px 30px 0;
}
.calendar-weekdays span {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 18px 30px 34px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 1.3125rem;
  position: relative;
  color: var(--foreground);
  transition: background 150ms ease-out, color 150ms ease-out;
}
.cal-day.empty { visibility: hidden; }
.cal-day.past { color: var(--border-hover); cursor: default; }
.cal-day.available:hover { background: var(--muted); }
.cal-day.open-house { color: var(--accent); font-weight: 600; }
.cal-day.open-house::after {
  content: "\2605";
  position: absolute;
  bottom: 4px;
  font-size: 0.625rem;
}
.cal-day.selected { background: var(--accent); color: #fff; }
.cal-day.selected::after { color: #fff; }
.cal-day.today { box-shadow: inset 0 0 0 1px var(--accent); }

.calendar-legend {
  display: flex;
  gap: 28px;
  padding: 0 30px 30px;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}
.calendar-legend span { display: inline-flex; align-items: center; gap: 8px; }
.cal-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; background: var(--muted); text-align: center; font-size: 9px; line-height: 12px; }
.cal-dot-open { color: var(--accent); background: transparent; }
.cal-dot-selected { background: var(--accent); }

.time-slots { padding: 4px 30px 34px; border-top: 1px solid var(--border); margin-top: 4px; }
.time-slots-label { margin: 30px 0 18px; font-size: 0.9375rem; }
.time-slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (min-width: 480px) { .time-slots-grid { grid-template-columns: repeat(4, 1fr); } }
.time-slot {
  padding: 16px 4px;
  min-height: 58px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--foreground);
  position: relative;
  transition: all 150ms ease-out;
}
.time-slot:hover { border-color: var(--accent); color: var(--accent); }
.time-slot.selected { background: var(--accent); border-color: var(--accent); color: #fff; }
.time-slot:disabled { opacity: 0.35; cursor: default; text-decoration: line-through; }
.time-slot:disabled:hover { border-color: var(--border); color: var(--foreground); }

.time-slot-openhouse { background: var(--accent-muted); border-color: var(--accent); color: var(--accent); }
.time-slot-openhouse::after { content: "\2605"; position: absolute; top: 3px; right: 5px; font-size: 0.5rem; }
.time-slot-openhouse:hover { background: var(--accent-muted); border-color: var(--accent); color: var(--accent); }
.time-slot-openhouse.selected { background: var(--accent); border-color: var(--accent); color: #fff; }
.time-slot-openhouse.selected::after { color: #fff; }

.time-slots-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px;
  padding: 10px 14px;
  background: var(--accent-muted);
  border: 1px solid var(--accent);
  border-radius: 6px;
  font-size: 0.9375rem;
  color: var(--foreground);
}
.time-slots-note .cal-dot-open { background: transparent; }

.booking-form { padding: 48px; }
.booking-form h3 { font-size: 1.625rem; margin-bottom: 32px; }
.form-row { margin-bottom: 28px; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 12px;
}
.form-row input, .form-row textarea {
  width: 100%;
  height: 58px;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--foreground);
  transition: border-color 150ms ease-out, box-shadow 150ms ease-out;
}
.form-row textarea { height: auto; padding: 12px 16px; resize: vertical; }
.form-row input:hover, .form-row textarea:hover { border-color: var(--border-hover); }
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--ring), 0 0 0 4px rgba(184,134,11,0.15);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(107,107,107,0.6); }

.selected-datetime {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--muted);
  font-size: 1.0625rem;
  color: var(--muted-foreground);
}
.selected-datetime.has-value { color: var(--accent); font-weight: 600; background: var(--accent-muted); border-color: var(--accent); }

.form-fineprint { font-size: 1.0625rem; line-height: 1.5; color: var(--muted-foreground); text-align: center; margin: 18px 0 0; }

.form-success {
  text-align: center;
  padding: 24px 8px;
}
.form-success svg { color: var(--accent); margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted-foreground); margin: 0; }

/* ============ People / agents ============ */
.people-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 46rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .people-grid { grid-template-columns: repeat(2, 1fr); } }

.person-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms ease-out, border-color 200ms ease-out;
  display: flex;
  flex-direction: column;
}
.person-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-hover); }

.person-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; background: var(--muted); }
.person-photo-logo { object-fit: contain; padding: 40px; background: var(--muted); }

.person-info { padding: 24px; }
.person-role { display: block; margin-bottom: 8px; }
.person-info h3 { font-size: 1.25rem; margin-bottom: 16px; }
.person-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 10px 0;
  color: var(--foreground);
  border-bottom: 1px solid transparent;
}
.person-contact svg { color: var(--accent); flex-shrink: 0; width: 20px; height: 20px; }
.person-contact:hover { color: var(--accent); }
.person-contact-static { color: var(--muted-foreground); }
.person-contact-static:hover { color: var(--muted-foreground); }

/* ============ Footer ============ */
.site-footer {
  background: var(--foreground);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
  position: relative;
  z-index: 2;
}
.footer-inner { text-align: center; }
.footer-logo { height: 100px; margin: 0 auto 32px; background: var(--background); padding: 18px 28px; border-radius: 6px; }
.footer-address { color: rgba(255,255,255,0.85); font-size: 1.0625rem; margin: 0 0 20px; }
.footer-disclaimer { font-size: 0.9375rem; color: rgba(255,255,255,0.45); max-width: 42rem; margin: 0 auto 24px; line-height: 1.6; }
.footer-copy { font-size: 0.9375rem; color: rgba(255,255,255,0.4); margin: 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); }
.footer-powered-by { font-size: 1.25rem; font-weight: 600; color: rgba(255,255,255,0.75); margin: 16px 0 0; letter-spacing: 0.02em; }

/* ============ Focus states ============ */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}
