/* ================================================================
   landing.css – Self-contained stylesheet for speakfreelytome.com
   ================================================================ */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700&display=swap");

/* ── A. Base & Variables ─────────────────────────────────────────── */

:root {
  --bg-1: #f4efe4;
  --bg-2: #fdf7ec;
  --ink-1: #1d2f2f;
  --ink-2: #405354;
  --accent: #0f766e;
  --accent-soft: #d7f3ef;
  --danger: #c2410c;
  --card: #ffffff;
  --line: #d1ddd8;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(20, 26, 30, 0.12);
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink-1);
  background: linear-gradient(160deg, var(--bg-1), var(--bg-2));
}

a {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
}

/* ── B. Navigation ───────────────────────────────────────────────── */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(209, 221, 216, 0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--ink-1);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.nav-logo svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.nav-logo-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-2);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 120ms ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-hamburger {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  color: var(--ink-1);
}

.nav-hamburger svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
  }

  .nav-hamburger {
    display: flex;
  }

}

/* ── C. Hero Section ─────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 80px 24px 160px;
  overflow: hidden;
  background: #ffffff;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: left;
}

.hero h1 {
  margin: 0 0 20px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink-1);
}

.hero p {
  margin: 0 0 32px;
  font-size: 1.15rem;
  color: var(--ink-2);
  max-width: 48ch;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f766e, #0e6b63);
  color: #fff;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.35), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.hero-cta::after {
  content: "\2192";
  font-size: 1.2em;
  transition: transform 200ms ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.4), 0 2px 6px rgba(0, 0, 0, 0.12);
}

.hero-cta:hover::after {
  transform: translateX(4px);
}

.hero-video-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 12px 40px rgba(15, 118, 110, 0.2);
  flex-shrink: 0;
}

.hero-video-circle video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero {
    padding: 48px 20px 100px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .hero-content {
    text-align: center;
    order: 2;
  }

  .hero-video-circle {
    width: 240px;
    height: 240px;
    margin: 0 auto;
    order: 1;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── D. How We Can Help ──────────────────────────────────────────── */

/* ── Section wave dividers ────────────────────────────────────────── */

.help-section,
.about-section,
.expectations-section,
.calendar-section {
  position: relative;
}

.help-section::after,
.about-section::after,
.expectations-section::after,
.calendar-section::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 5px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}

.help-section::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 5' preserveAspectRatio='none'%3E%3Cpath d='M0,3 C180,5 360,1 540,3 C720,5 900,1 1080,3 C1260,5 1380,2 1440,3 L1440,5 L0,5 Z' fill='%23fdf7ec'/%3E%3C/svg%3E");
}

.about-section::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 5' preserveAspectRatio='none'%3E%3Cpath d='M0,3 C180,1 360,5 540,3 C720,1 900,5 1080,3 C1260,1 1380,4 1440,3 L1440,5 L0,5 Z' fill='%23f4efe4'/%3E%3C/svg%3E");
}

.expectations-section::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 5' preserveAspectRatio='none'%3E%3Cpath d='M0,2 C180,4 360,0 540,2 C720,4 900,0 1080,2 C1260,4 1380,1 1440,2 L1440,5 L0,5 Z' fill='%23fdf7ec'/%3E%3C/svg%3E");
}

.calendar-section::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 5' preserveAspectRatio='none'%3E%3Cpath d='M0,3 C180,5 360,1 540,3 C720,5 900,1 1080,3 C1260,5 1380,2 1440,3 L1440,5 L0,5 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

/* ── D. How We Can Help ──────────────────────────────────────────── */

.help-section {
  padding: 48px 24px 80px;
  background: var(--bg-1);
}

.help-section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin: 0 0 48px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--ink-1);
}

.section-subtitle {
  text-align: center;
  margin: -32px 0 48px;
  font-size: 1.05rem;
  color: var(--ink-2);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.help-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.help-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 118, 110, 0.12);
}

.help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--accent-soft);
  margin-bottom: 20px;
}

.help-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.help-card h3 {
  margin: 0 0 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink-1);
}

.help-card p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .help-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .help-section {
    padding: 48px 20px;
  }
}

/* ── E. Calendar Section ─────────────────────────────────────────── */

.calendar-section {
  padding: 80px 24px 100px;
  background: var(--bg-2);
}

.calendar-section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.calendar-section .section-title {
  margin-bottom: 32px;
}

/* Calendar card & frame (from styles.css) */

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #fff;
}

.card h2 {
  margin: 0 0 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
}

.stack {
  display: grid;
  gap: 12px;
}

.stack-sm {
  display: grid;
  gap: 6px;
}

.calendar-card {
  min-height: 640px;
  position: relative;
}

.calendar-frame {
  min-height: 580px;
  position: relative;
  isolation: isolate;
  --calendar-loading-top: 54px;
  --calendar-loading-left: 52px;
}

.calendar-head-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.calendar-head-row h2 {
  margin: 0;
}

.time-format-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink-2);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}

.time-format-toggle:hover,
.time-format-toggle:focus-visible {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.inline-note {
  color: var(--ink-2);
  margin: 6px 0 0;
  font-size: 0.95rem;
}

.geo-context-banner {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e6d478;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: #fef9e7;
  color: #5c4d12;
}

.geo-context-banner .secondary {
  padding: 6px 10px;
  border-radius: 10px;
}

/* Geo-lock overlay */

.calendar-card.geo-locked .calendar-frame {
  filter: blur(4px) saturate(0.92);
  pointer-events: none;
}

.calendar-geo-lock {
  position: absolute;
  inset: 122px 16px 16px;
  z-index: 30;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--line) 75%, #ffffff 25%);
  background: rgba(250, 253, 252, 0.84);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ink-2);
  padding: 14px;
}

.calendar-geo-lock p {
  margin: 0;
  max-width: 40ch;
  font-size: 0.95rem;
}

/* Calendar shimmer loading */

.calendar-frame::before,
.calendar-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 160ms ease;
  z-index: 20;
  clip-path: inset(var(--calendar-loading-top) 0 0 var(--calendar-loading-left));
}

.calendar-frame::before {
  background: rgba(246, 252, 250, 0.46);
  backdrop-filter: blur(1.6px);
}

.calendar-frame::after {
  background: linear-gradient(
    108deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 28%,
    rgba(255, 255, 255, 0.62) 46%,
    rgba(255, 255, 255, 0.22) 62%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-135%);
}

.calendar-frame.is-loading {
  cursor: progress;
}

.calendar-frame.is-loading::before,
.calendar-frame.is-loading::after {
  opacity: 1;
}

.calendar-frame.is-loading::after {
  animation: calendar-glass-shimmer 1100ms linear infinite;
}

.calendar-frame.is-loading .fc-view-harness {
  opacity: 0.8;
}

.calendar-frame.is-revealing .fc-timegrid-event {
  animation: calendar-event-fade-in 250ms ease both;
}

/* Cross-midnight slot collapsing */

.calendar-frame.is-cross-midnight .fc .fc-timegrid-slot.slot-gap-collapsed,
.calendar-frame.is-cross-midnight .fc .fc-timegrid-axis.slot-gap-collapsed {
  height: 2px !important;
  min-height: 2px !important;
  border-top-color: transparent !important;
  background: transparent !important;
}

.calendar-frame.is-cross-midnight .fc .fc-timegrid-axis.slot-gap-collapsed .fc-timegrid-slot-label-cushion {
  display: none;
}

.calendar-frame.is-cross-midnight .fc .fc-timegrid-slot.slot-gap-marker,
.calendar-frame.is-cross-midnight .fc .fc-timegrid-axis.slot-gap-marker {
  height: 26px !important;
  min-height: 26px !important;
  border-top: 1px dashed #c8d6df !important;
  border-bottom: 1px dashed #c8d6df !important;
  background: linear-gradient(180deg, rgba(242, 248, 247, 0.8), rgba(242, 248, 247, 0.45)) !important;
}

.calendar-frame.is-cross-midnight .fc .fc-timegrid-axis.slot-gap-marker .fc-timegrid-slot-label-cushion {
  color: #6b7f90;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slot-gap-ellipsis {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.2em;
  transform: translateY(-1px);
}

/* Cross-midnight jump banner */

.cross-midnight-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--line) 80%, #ffffff 20%);
  background: #f5fbfa;
}

.cross-midnight-jump-note {
  flex: 1 1 100%;
  color: var(--ink-2);
  font-size: 0.9rem;
}

.cross-midnight-jump .secondary {
  padding: 6px 10px;
  border-radius: 10px;
}

.cross-midnight-jump[hidden] {
  display: none !important;
}

.calendar-split-secondary {
  margin-top: 10px;
}

.calendar-split-secondary[hidden] {
  display: none !important;
}

.calendar-split-secondary-title {
  margin: 0 0 8px;
}

.calendar-frame-secondary {
  min-height: 280px;
}

@keyframes calendar-glass-shimmer {
  from { transform: translateX(-135%); }
  to   { transform: translateX(135%); }
}

@keyframes calendar-event-fade-in {
  from { opacity: 0; transform: translateY(4px) scale(0.99); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .calendar-frame.is-loading::after {
    animation: none;
  }
  .calendar-frame.is-revealing .fc-timegrid-event {
    animation-duration: 1ms;
  }
}

/* ── F. FullCalendar Overrides ───────────────────────────────────── */

.fc {
  --fc-border-color: #e4ebe8;
  --fc-page-bg-color: #ffffff;
  --fc-neutral-bg-color: #f8fbfa;
  --fc-list-event-hover-bg-color: #eef7f5;
  --fc-today-bg-color: #f0faf8;
  --fc-event-bg-color: #0f766e;
  --fc-event-border-color: #0f766e;
  --fc-event-text-color: #ffffff;
}

.fc .fc-toolbar {
  gap: 8px;
  row-gap: 6px;
}

@media (max-width: 560px) {
  .fc-day-active .fc-header-toolbar.fc-toolbar {
    flex-wrap: wrap !important;
    row-gap: 4px;
  }

  .fc-day-active .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) {
    width: 100%;
    text-align: center;
  }

  .fc-day-active .fc-header-toolbar .fc-toolbar-chunk:nth-child(2) {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .fc-day-active .fc-header-toolbar .fc-toolbar-chunk:nth-child(3) {
    display: none;
  }
}

.fc .fc-toolbar-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  margin: 0;
  white-space: nowrap;
}

.fc .fc-button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-2);
  border-radius: 10px !important;
  padding: 6px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: none !important;
  transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease;
}

.fc .fc-button:hover,
.fc .fc-button:focus {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.fc .fc-button:disabled {
  opacity: 0.4;
}

.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.fc .fc-button-group {
  border-radius: 10px;
  overflow: hidden;
}

.fc .fc-button-group > .fc-button {
  border-radius: 0 !important;
}

.fc .fc-button-group > .fc-button:first-child {
  border-radius: 10px 0 0 10px !important;
}

.fc .fc-button-group > .fc-button:last-child {
  border-radius: 0 10px 10px 0 !important;
}

.fc .fc-toolbar-chunk {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.fc .fc-prev-button,
.fc .fc-next-button {
  padding: 6px 14px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fc .fc-toolbar-chunk:last-child .fc-button-group .fc-button {
  font-size: 0.78rem;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  padding: 5px 10px;
}

/* Column headers */

.fc .fc-col-header-cell {
  padding: 8px 0;
  background: var(--fc-neutral-bg-color);
  border-bottom: 2px solid var(--fc-border-color);
  text-align: center;
}

.fc .fc-col-header-cell-cushion {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  padding: 2px 6px;
  display: block;
  text-align: center;
}

.fc .fc-day-today .fc-col-header-cell-cushion {
  color: var(--accent);
}

/* Time labels */

.fc .fc-timegrid-slot-label-cushion,
.fc .fc-timegrid-axis-cushion {
  color: #7a9490;
  font-size: 0.78rem;
  font-weight: 500;
}

/* Grid lines */

.fc .fc-timegrid-slot {
  height: 1.6em;
  border-top-color: #d6e2db;
}

.fc .fc-timegrid-slot-minor {
  border-top-style: solid;
  border-top-color: #e1ebe6;
}

.fc-timeGridWeek-view .fc-timegrid-slot {
  height: 1.75em;
}

/* Events (base) */

.fc .fc-timegrid-event {
  border-radius: 8px !important;
  border-width: 0 !important;
  border-bottom: 2px solid rgba(0, 0, 0, 0.12) !important;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.10),
    0 3px 6px rgba(15, 118, 110, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  margin: 1px 2px;
  overflow: hidden;
}

.fc .fc-timegrid-event .fc-event-main {
  padding: 5px 8px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  overflow: hidden;
}

.fc .fc-timegrid-event .fc-event-time {
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.9;
  letter-spacing: 0.01em;
  white-space: normal;
  overflow-wrap: break-word;
}

.fc .fc-timegrid-event .fc-event-title {
  font-weight: 500;
  opacity: 0.92;
}

/* Day view: table-row event slots */

.fc-timeGridDay-view .fc-timegrid-event {
  border-radius: 12px !important;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08) !important;
  margin: 1px 0;
  background: #fff !important;
  container-type: inline-size;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px var(--line) !important;
}

.fc-timeGridDay-view .fc-timegrid-col-frame .fc-timegrid-col-events {
  margin: 0 !important;
}

.fc-timeGridDay-view .fc-timegrid-col-events .fc-timegrid-event-harness,
.fc-timeGridDay-view .fc-timegrid-col-events .fc-timegrid-event-harness-inset {
  left: 0 !important;
  right: 0 !important;
  inset-inline-start: 0 !important;
  inset-inline-end: 0 !important;
  width: auto !important;
}

.fc-timeGridDay-view .fc-timegrid-col-events .fc-timegrid-event-harness .fc-timegrid-event,
.fc-timeGridDay-view .fc-timegrid-col-events .fc-timegrid-event-harness-inset .fc-timegrid-event {
  width: 100% !important;
}

.fc-timeGridDay-view .fc-timegrid-event .fc-event-main {
  padding: 0;
  font-size: 1rem;
  color: var(--ink-1);
}

.fc-timeGridDay-view .fc-timegrid-event .fc-event-main-frame {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  column-gap: 12px;
  padding: 0 12px;
  height: 100%;
  overflow: hidden;
}

.fc-timeGridDay-view .fc-timegrid-event .fc-event-time {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-1);
  opacity: 1;
  letter-spacing: -0.01em;
  grid-column: 1;
  white-space: nowrap !important;
  overflow-wrap: normal;
  padding: 10px 0;
  min-width: 0;
}

.fc-timeGridDay-view .fc-timegrid-event .fc-event-title-container {
  margin: 0;
  grid-column: 3;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
}

.fc-timeGridDay-view .fc-timegrid-event .fc-event-title {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  opacity: 1;
  white-space: nowrap;
}

.fc-timeGridDay-view .fc-timegrid-event .fc-event-mid {
  grid-column: 2;
  justify-self: center;
  min-width: 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9a3412;
  white-space: nowrap;
}

.fc-timeGridDay-view .fc-timegrid-event .fc-event-compact {
  display: none;
  white-space: nowrap;
  border-radius: 999px;
  padding: 4px 12px;
  line-height: 1.1;
  background: #ea580c;
  color: #fff8ee;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

/* Day view: Available */

.fc-timeGridDay-view .fc-timegrid-event.slot-available {
  background: #e8f7ed !important;
  box-shadow:
    0 2px 6px rgba(22, 163, 74, 0.14),
    inset 0 0 0 1px #b8e2c6 !important;
}

.fc-timeGridDay-view .fc-timegrid-event.slot-available .fc-event-time {
  color: #166534;
}

.fc-timeGridDay-view .fc-timegrid-event.slot-available .fc-event-title {
  background: var(--accent);
  color: #fff;
}

.fc-timeGridDay-view .fc-timegrid-event.slot-available:hover {
  background: #ddf3e5 !important;
  box-shadow:
    0 2px 6px rgba(22, 163, 74, 0.2),
    inset 0 0 0 1.5px #65a67d !important;
  transform: translateY(-1px);
}

/* Day view: Waitlist */

.fc-timeGridDay-view .fc-timegrid-event.slot-waitlist {
  background: #fff1e7 !important;
  box-shadow:
    0 2px 6px rgba(217, 119, 6, 0.14),
    inset 0 0 0 1px #f7c9a5 !important;
}

.fc-timeGridDay-view .fc-timegrid-event.slot-waitlist .fc-event-time {
  color: #9a3412;
}

.fc-timeGridDay-view .fc-timegrid-event.slot-waitlist .fc-event-title {
  background: #ea580c;
  color: #fff;
}

.fc-timeGridDay-view .fc-timegrid-event.slot-waitlist:hover {
  background: #ffe8d6 !important;
  box-shadow:
    0 2px 6px rgba(217, 119, 6, 0.2),
    inset 0 0 0 1.5px #d97706 !important;
  transform: translateY(-1px);
}

@container (max-width: 420px) {
  .fc-timeGridDay-view .fc-timegrid-event.slot-waitlist .fc-event-main-frame,
  .fc-timeGridDay-view .fc-timegrid-event.slot-available .fc-event-main-frame {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 4px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .fc-timeGridDay-view .fc-timegrid-event.slot-waitlist .fc-event-time,
  .fc-timeGridDay-view .fc-timegrid-event.slot-available .fc-event-time {
    grid-column: 1;
    grid-row: 1;
    padding: 0;
  }

  .fc-timeGridDay-view .fc-timegrid-event.slot-available .fc-event-title-container {
    grid-column: 1;
    grid-row: 2;
    justify-content: center;
    align-self: center;
  }

  .fc-timeGridDay-view .fc-timegrid-event.slot-waitlist .fc-event-mid,
  .fc-timeGridDay-view .fc-timegrid-event.slot-waitlist .fc-event-title-container {
    display: none;
  }

  .fc-timeGridDay-view .fc-timegrid-event.slot-waitlist .fc-event-compact {
    display: inline-flex;
    align-items: center;
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    align-self: center;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
  }
}

@supports not (container-type: inline-size) {
  @media (max-width: 560px) {
    .fc-timeGridDay-view .fc-timegrid-event.slot-waitlist .fc-event-main-frame,
    .fc-timeGridDay-view .fc-timegrid-event.slot-available .fc-event-main-frame {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      row-gap: 4px;
      padding-top: 8px;
      padding-bottom: 8px;
    }

    .fc-timeGridDay-view .fc-timegrid-event.slot-waitlist .fc-event-time,
    .fc-timeGridDay-view .fc-timegrid-event.slot-available .fc-event-time {
      grid-column: 1;
      grid-row: 1;
      padding: 0;
    }

    .fc-timeGridDay-view .fc-timegrid-event.slot-available .fc-event-title-container {
      grid-column: 1;
      grid-row: 2;
      justify-content: center;
      align-self: center;
    }

    .fc-timeGridDay-view .fc-timegrid-event.slot-waitlist .fc-event-mid,
    .fc-timeGridDay-view .fc-timegrid-event.slot-waitlist .fc-event-title-container {
      display: none;
    }

    .fc-timeGridDay-view .fc-timegrid-event.slot-waitlist .fc-event-compact {
      display: inline-flex;
      align-items: center;
      grid-column: 1;
      grid-row: 2;
      justify-self: center;
      align-self: center;
      text-align: center;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.045em;
      text-transform: uppercase;
    }
  }
}

.fc-timeGridDay-view .fc-timegrid-event.slot-unavailable:not(.slot-past):not(.slot-break) {
  opacity: 1;
}

.fc-timeGridDay-view .fc-timegrid-event.slot-unavailable:not(.slot-past):not(.slot-break):hover {
  filter: none;
}

/* Day view: Past */

.fc-timeGridDay-view .fc-timegrid-event.slot-past {
  background: #f9fafb !important;
  box-shadow: none !important;
  border-bottom-color: transparent !important;
}

.fc-timeGridDay-view .fc-timegrid-event.slot-past .fc-event-time {
  color: #c0c8ce;
}

.fc-timeGridDay-view .fc-timegrid-event.slot-past .fc-event-title {
  background: #eef1f3;
  color: #a0aab2;
}

/* Day view: Break */

.fc-timeGridDay-view .fc-timegrid-event.slot-break {
  background: #f9fafb !important;
  box-shadow: none !important;
  border-bottom-color: transparent !important;
}

.fc-timeGridDay-view .fc-timegrid-event.slot-break .fc-event-time {
  color: #a0aab2;
}

.fc-timeGridDay-view .fc-timegrid-event.slot-break .fc-event-title {
  background: transparent;
  color: #a0aab2;
  font-weight: 500;
}

/* Event hover effects */

.fc .fc-timegrid-event.slot-available:hover {
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.12),
    0 6px 14px rgba(15, 118, 110, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
  transition: box-shadow 120ms ease, transform 120ms ease;
}

.fc .slot-available {
  cursor: pointer;
}

.fc .slot-unavailable {
  opacity: 0.86;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 2px 5px rgba(100, 116, 125, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.10) !important;
  transition: opacity 120ms ease, filter 120ms ease;
}

.fc .slot-unavailable:not(.slot-past):not(.slot-break):hover {
  opacity: 1;
  filter: brightness(0.94);
}

.fc .slot-waitlist {
  cursor: pointer;
  transition: background-color 160ms ease, opacity 160ms ease, filter 160ms ease;
}

/* Week view events */

.fc-timeGridWeek-view .fc-timegrid-event .fc-event-main {
  padding: 6px 8px;
}

.fc-timeGridWeek-view .fc-timegrid-event .fc-event-main-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100%;
  text-align: center;
}

.fc-timeGridWeek-view .fc-timegrid-event .fc-event-time {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.35em;
  margin: 0;
  line-height: 1.18;
  text-align: left;
  white-space: normal;
  font-variant-numeric: tabular-nums;
}

.fc-timeGridWeek-view .fc-timegrid-event .fc-event-time .week-event-time-lines {
  --week-time-prefix-width: 0.72em;
  display: inline-grid;
  grid-auto-rows: auto;
  row-gap: 1px;
  transform: translateX(calc(var(--week-time-prefix-width) * -0.5));
}

.fc-timeGridWeek-view .fc-timegrid-event .fc-event-time .week-event-time-line {
  display: grid;
  grid-template-columns: var(--week-time-prefix-width) auto;
  column-gap: 0.2em;
  align-items: baseline;
}

.fc-timeGridWeek-view .fc-timegrid-event .fc-event-time .week-event-time-prefix {
  text-align: center;
  opacity: 0.78;
}

.fc-timeGridWeek-view .fc-timegrid-event .fc-event-time .week-event-time-value {
  white-space: nowrap;
}

.fc-timeGridWeek-view .fc-timegrid-event .fc-event-title-container {
  order: 2;
  margin: 0;
  width: 100%;
  flex: 0 0 auto;
}

.fc-timeGridWeek-view .fc-timegrid-event .fc-event-title {
  display: block;
  line-height: 1.1;
  text-align: center;
}

.fc-timeGridWeek-view .fc-timegrid-event {
  border-radius: 9px !important;
}

.fc-timeGridWeek-view .fc-timegrid-event.slot-available {
  box-shadow:
    0 1px 3px rgba(22, 163, 74, 0.16),
    inset 0 0 0 1.2px #78b992 !important;
}

.fc-timeGridWeek-view .fc-timegrid-event.slot-available .fc-event-time,
.fc-timeGridWeek-view .fc-timegrid-event.slot-available .fc-event-title {
  color: #14532d;
}

.fc-timeGridWeek-view .fc-timegrid-event.slot-waitlist {
  box-shadow:
    0 1px 3px rgba(217, 119, 6, 0.16),
    inset 0 0 0 1.2px #e39a63 !important;
}

.fc-timeGridWeek-view .fc-timegrid-event.slot-waitlist .fc-event-time,
.fc-timeGridWeek-view .fc-timegrid-event.slot-waitlist .fc-event-title {
  color: #8a2f0e;
}

.fc-timeGridWeek-view .fc-timegrid-event.slot-unavailable:not(.slot-waitlist):not(.slot-past):not(.slot-break) {
  opacity: 0.97;
  box-shadow:
    0 1px 2px rgba(180, 83, 9, 0.14),
    inset 0 0 0 1.1px #e8aa77 !important;
}

.fc-timeGridWeek-view .fc-timegrid-event.slot-unavailable:not(.slot-waitlist):not(.slot-past):not(.slot-break) .fc-event-time,
.fc-timeGridWeek-view .fc-timegrid-event.slot-unavailable:not(.slot-waitlist):not(.slot-past):not(.slot-break) .fc-event-title {
  color: #b45309;
}

.fc-timeGridWeek-view .fc-timegrid-event.slot-available:hover {
  background-color: #d3ebdc !important;
  opacity: 1;
  filter: none;
  box-shadow:
    0 2px 6px rgba(22, 163, 74, 0.22),
    inset 0 0 0 1.5px #5f9f78 !important;
}

.fc-timeGridWeek-view .fc-timegrid-event.slot-waitlist:hover {
  background-color: #ffd9bb !important;
  opacity: 1;
  filter: none;
  box-shadow:
    0 2px 6px rgba(217, 119, 6, 0.22),
    inset 0 0 0 1.5px #cf7533 !important;
}

.fc-timeGridWeek-view .fc-timegrid-event.slot-waitlist:hover .fc-event-main::after {
  background: rgba(194, 96, 24, 0.75);
}

.fc .slot-past,
.fc .slot-break {
  cursor: not-allowed;
}

.fc .slot-past {
  opacity: 0.76;
}

.fc .slot-break {
  opacity: 1;
}

.fc-timeGridWeek-view .fc-timegrid-event.slot-past,
.fc-timeGridWeek-view .fc-timegrid-event.slot-break {
  opacity: 0.9;
  box-shadow:
    0 1px 2px rgba(120, 136, 150, 0.12),
    inset 0 0 0 1px #c9d3dc !important;
}

.fc-timeGridWeek-view .fc-timegrid-event.slot-past .fc-event-time,
.fc-timeGridWeek-view .fc-timegrid-event.slot-past .fc-event-title,
.fc-timeGridWeek-view .fc-timegrid-event.slot-break .fc-event-time,
.fc-timeGridWeek-view .fc-timegrid-event.slot-break .fc-event-title {
  color: #6b7f90;
}

.fc-timeGridWeek-view .fc-timegrid-event.slot-waitlist .fc-event-main {
  position: relative;
  padding-bottom: 24px;
}

.fc-timeGridWeek-view .fc-timegrid-event.slot-waitlist .fc-event-main::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(0.7rem, 1.15vw);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  color: #f8fafc;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

.fc-timeGridWeek-view .fc-timegrid-event.slot-waitlist .fc-event-main::after {
  content: "Join waitlist";
  background: rgba(194, 96, 24, 0.62);
  color: #fff8ee;
  border-radius: 0 0 8px 8px;
}

/* 12-hour slot labels */

.slot-label-12hr {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.slot-label-ampm {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.65;
}

/* ── G. Calendar Strip (mobile date picker) ──────────────────────── */

.cal-strip {
  display: none;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  background: #fff;
  user-select: none;
  overflow: hidden;
}

.cal-strip.cal-strip-visible {
  display: flex;
}

.cal-strip-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 8px 8px 4px;
  touch-action: pan-x;
}

.cal-strip-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 0 6px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--ink-2);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease;
}

.cal-strip-day:hover {
  background: var(--accent-soft);
}

.cal-strip-day-dow {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: inherit;
  opacity: 0.7;
}

.cal-strip-day-num {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
}

.cal-strip-day.cal-strip-today {
  background: var(--accent-soft);
  color: var(--accent);
}

.cal-strip-day.cal-strip-selected {
  background: var(--accent);
  color: #fff;
}

.cal-strip-day.cal-strip-selected .cal-strip-day-dow {
  opacity: 1;
}

.cal-strip-day.cal-strip-past,
.cal-strip-mday.cal-strip-past {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.cal-strip-knob {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0 8px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.cal-strip-knob::after {
  content: "";
  display: block;
  width: 36px;
  height: 5px;
  border-radius: 3px;
  background: var(--line);
  transition: background-color 120ms ease;
}

.cal-strip-knob:hover::after {
  background: var(--accent);
}

.cal-strip-month {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 280ms ease, opacity 220ms ease;
}

.cal-strip.cal-strip-expanded .cal-strip-month {
  max-height: 320px;
  opacity: 1;
}

.cal-strip-month-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 12px 2px;
}

.cal-strip-month-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-1);
}

.cal-strip-month-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--ink-2);
  font-size: 1rem;
  cursor: pointer;
}

.cal-strip-month-btn:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.cal-strip-month-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 2px 8px;
}

.cal-strip-month-dow span {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  opacity: 0.7;
}

.cal-strip-month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 2px 8px 8px;
  touch-action: pan-x;
}

.cal-strip-mday {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--ink-1);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease;
}

.cal-strip-mday:hover {
  background: var(--accent-soft);
}

.cal-strip-mday.cal-strip-outside {
  color: var(--ink-2);
  opacity: 0.4;
}

.cal-strip-mday.cal-strip-today {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

.cal-strip-mday.cal-strip-selected {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

/* ── H. Form Elements ────────────────────────────────────────────── */

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
button,
select {
  font: inherit;
}

input[type="date"],
input[type="time"],
input[type="number"],
input[type="password"],
input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #fbfdfd;
  color: var(--ink-1);
}

textarea {
  resize: vertical;
}

textarea.booking-description-input {
  min-height: 8.5rem;
  max-height: 8.5rem;
  resize: none;
}

.description-counter {
  margin-top: 6px;
  font-size: 0.85rem;
}

.description-counter[data-state="invalid"] {
  color: #9c3d3d;
}

.primary {
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.primary[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.secondary {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--ink-1);
  background: #fff;
}

.value {
  font-size: 1.25rem;
  font-weight: 700;
}

.status {
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.95rem;
}

.status[data-type="ok"] {
  background: #e5f7f3;
  color: #0f513f;
}

.status[data-type="error"] {
  background: #fff0e8;
  color: var(--danger);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

/* Country dropdown */

.country-dropdown {
  position: relative;
}

.country-dropdown-trigger {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #fbfdfd;
  color: var(--ink-1);
  text-align: left;
  cursor: pointer;
  position: relative;
}

.country-dropdown-trigger::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink-2);
  border-bottom: 2px solid var(--ink-2);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 120ms ease;
}

.country-dropdown.is-open .country-dropdown-trigger::after {
  transform: translateY(-30%) rotate(-135deg);
}

.country-dropdown-trigger[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.country-dropdown-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 140;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(14, 30, 30, 0.14);
  padding: 8px;
}

.country-dropdown.opens-up .country-dropdown-panel {
  top: auto;
  bottom: calc(100% + 6px);
}

.country-dropdown-panel input[type="search"] {
  display: block;
  width: 100%;
  margin: 0 0 8px;
  padding: 9px 10px;
}

.country-dropdown-list {
  border: 1px solid color-mix(in srgb, var(--line) 82%, #ffffff 18%);
  border-radius: 10px;
  max-height: 132px;
  overflow: auto;
  background: #ffffff;
}

.country-dropdown-option {
  width: 100%;
  border: 0;
  padding: 9px 10px;
  text-align: left;
  background: transparent;
  color: var(--ink-1);
  cursor: pointer;
}

.country-dropdown-option:hover,
.country-dropdown-option:focus-visible {
  background: #edf7f4;
  outline: none;
}

.country-dropdown-option.is-selected {
  background: #dff1e9;
  font-weight: 700;
}

.country-dropdown-empty {
  padding: 10px;
  color: var(--ink-2);
  font-size: 0.92rem;
}

/* Loading indicator */

.loading-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.loading-indicator::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #c8d7d3;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: loading-spin 700ms linear infinite;
}

@keyframes loading-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Verification code input */

#verify-code,
#booking-verify-code {
  font-size: 1.6rem;
  letter-spacing: 0.35em;
  text-align: center;
  font-weight: 700;
  max-width: 240px;
}

/* ── I. Booking Panel & Overlays ─────────────────────────────────── */

.booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 23, 25, 0.46);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.booking-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-panel {
  position: fixed;
  z-index: 90;
  background: #ffffff;
  border-radius: 18px 18px 0 0;
  border: 1px solid #cbd8d4;
  box-shadow: 0 -20px 45px rgba(17, 24, 39, 0.22);
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 85vh;
  overflow: auto;
  padding: 16px;
  transform: translateY(100%);
  transition: transform 220ms ease;
}

.booking-panel.open {
  transform: translateY(0);
}

.booking-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.booking-panel-head h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
}

@media (min-width: 760px) {
  .booking-panel {
    left: 50%;
    right: auto;
    bottom: auto;
    top: 50%;
    width: min(540px, calc(100% - 2rem));
    max-height: min(88vh, 760px);
    border-radius: 18px;
    transform: translate(-50%, -50%) scale(0.96);
    box-shadow: 0 30px 60px rgba(17, 24, 39, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 200ms ease;
  }

  .booking-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Booking wizard */

.wizard-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 4px;
}

.wizard-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1ddd9;
  transition: background 200ms ease, transform 200ms ease;
}

.wizard-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.wizard-dot.done {
  background: var(--accent);
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

.wizard-step-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  margin: 12px 0 8px;
}

.wizard-time-display {
  font-size: 1.05rem;
  line-height: 1.5;
}

.wizard-time-block {
  display: block;
}

.wizard-time-title {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.wizard-time-body {
  display: block;
  font-weight: 400;
}

.wizard-time-date {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink-1);
  margin-bottom: 2px;
}

.wizard-time-time {
  display: block;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ink-2);
}

.time-confirm-card {
  background: var(--bg-2, #f5f0ea);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin: 8px 0;
  text-align: center;
}

.time-confirm-card .wizard-time-display {
  margin: 0;
}

.time-confirm-card .wizard-time-date {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.time-confirm-card .wizard-time-time {
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 600;
}

.time-confirm-card .inline-note {
  margin-top: 12px;
  margin-bottom: 0;
}

.time-confirm-note {
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-2);
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.wizard-nav .wizard-back {
  min-width: 80px;
}

.wizard-nav .wizard-next,
.wizard-nav .primary {
  min-width: 120px;
}

.geo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 23, 25, 0.56);
  z-index: 95;
}

.geo-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(540px, calc(100% - 2rem));
  max-height: 88vh;
  overflow: auto;
  z-index: 100;
  background: #ffffff;
  border: 1px solid #cbd8d4;
  border-radius: 18px;
  box-shadow: 0 32px 60px rgba(17, 24, 39, 0.32);
  padding: 16px;
}

.geo-modal h2 {
  margin: 0 0 8px;
  font-family: "Fraunces", Georgia, serif;
}

/* ── J. About Me Section ─────────────────────────────────────────── */

.about-section {
  padding: 80px 24px 100px;
  background: var(--bg-2);
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

.about-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), #e8f0ee);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  font-size: 0.9rem;
  border: 4px solid #fff;
  box-shadow: 0 8px 30px rgba(15, 118, 110, 0.15);
  overflow: hidden;
  flex-shrink: 0;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  margin: 0 0 16px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink-1);
}

.about-text p {
  margin: 0 0 16px;
  color: var(--ink-2);
  line-height: 1.7;
}

.about-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 540px;
  }

  .about-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .about-section {
    padding: 48px 20px;
  }
}

/* ── K. Setting Expectations ─────────────────────────────────────── */

.expectations-section {
  padding: 80px 24px 100px;
  background: var(--bg-1);
}

.expectations-inner {
  max-width: 800px;
  margin: 0 auto;
}

.expectations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.expectations-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.expectations-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 118, 110, 0.12);
}

.expectations-card:first-child {
  border-top-color: var(--accent);
}

.expectations-card:last-child {
  border-top-color: #c0392b;
}

.expectations-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink-1);
  margin: 0 0 16px;
  text-align: center;
}

.expectations-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.expectations-card ul li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.5;
}

.expectations-card ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.expectations-card:first-child ul li::before {
  content: "\2713";
  color: var(--accent);
}

.expectations-card:last-child ul li::before {
  content: "\2717";
  color: #c0392b;
}

.expectations-notice {
  margin-top: 32px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-3, var(--ink-2));
  line-height: 1.5;
}

@media (max-width: 768px) {
  .expectations-section {
    padding: 48px 20px;
  }

  .expectations-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
    gap: 24px;
  }
}

/* ── L. Footer ───────────────────────────────────────────────────── */

.site-footer {
  background: #fff;
  color: var(--ink-2);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--ink-1);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 120ms ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links a.footer-link-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--ink-2);
  text-decoration: none;
  transition: background-color 120ms ease, color 120ms ease;
}

.footer-social a:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--accent);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ── L. Animations ───────────────────────────────────────────────── */

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: rise 480ms ease-out;
}
