/* Sandringham Vet Hospital — Homepage CSS
   Palette: Bay Blue / Paper / Sand / Coral / Charcoal
   Typography: Fraunces (display) / Inter (body)
   Built: 2026-05-11 */

:root {
  --bay-blue: #1F3A5F;
  --bay-deep: #162B46;
  --paper: #FAF5EE;
  --sand: #E8D9C5;
  --sand-border: #C5B098;
  --coral: #D17A5C;
  --coral-dark: #B5623F;
  --charcoal: #2B2B2B;
  --muted: #6B7A8D;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* ============ RESET + BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============ UTILITY ============ */
.display { font-family: var(--font-display); font-optical-sizing: auto; letter-spacing: -0.02em; }
.ital { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sand-border), transparent);
  margin: 0;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.5s; }

/* ============ DEMO BANNER ============ */
.demo-banner {
  background: linear-gradient(90deg, rgba(31,58,95,0.97), rgba(22,43,70,0.97));
  color: var(--paper);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  max-height: 32px;
  overflow: hidden;
  position: relative;
  z-index: 50;
  transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s;
}
.demo-banner.dismissed { max-height: 0; opacity: 0; }
.demo-banner__text { padding: 0.5rem 0; }
.demo-banner__close {
  background: none;
  border: none;
  color: var(--paper);
  cursor: pointer;
  opacity: 0.7;
  padding: 0.5rem;
  margin-right: -0.5rem;
  transition: opacity 0.2s;
  line-height: 1;
}
.demo-banner__close:hover { opacity: 1; }

/* ============ NAV ============ */
.site-nav {
  position: relative;
  z-index: 40;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo__img { width: 40px; height: 40px; }
.nav-logo__text { line-height: 1; }
.nav-logo__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--bay-blue);
  letter-spacing: -0.01em;
}
.nav-logo__sub {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  color: var(--bay-blue);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--bay-blue);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--bay-blue);
  color: var(--paper);
  padding: 0.625rem 1.5rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--bay-deep); }

/* ============ STICKY BOOKING CTA (mobile) ============ */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--coral);
  color: var(--paper);
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s;
}
.sticky-book:hover { background: var(--coral-dark); }

/* ============ LIVE PULSE DOT ============ */
.pulse-dot {
  position: relative;
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  z-index: 10;
  padding: 3rem 3rem 6rem;
  overflow: hidden;
}
.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 4rem;
  align-items: center;
}
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero__kicker-line { width: 3rem; height: 1px; background: var(--bay-blue); }
.hero__kicker-text {
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--bay-blue);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--coral);
}
.hero__body {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bay-blue);
  color: var(--paper);
  padding: 1rem 1.75rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--bay-deep); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bay-blue);
  color: var(--bay-blue);
  padding: 1rem 1.75rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--bay-blue); color: var(--paper); }

/* Status card */
.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--paper);
  border: 1px solid var(--sand-border);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: var(--bay-blue);
}

/* Hero right column */
.hero__visual {
  position: relative;
}

/* Hero photo (replaces text card) */
.hero__photo {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 560px;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(22,43,70,0.72) 100%);
  pointer-events: none;
}
.hero__photo-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  background: rgba(250,245,238,0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 0.875rem 1.125rem;
}
.hero__photo-badge__line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bay-blue);
  line-height: 1.3;
}
.hero__photo-badge__sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.4;
}
.hero__card-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.hero__card-headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bay-blue);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.hero__card-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero__card-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.hero__card-items li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.hero__card-note {
  font-size: 0.75rem;
  color: var(--muted);
  border-top: 1px solid var(--sand-border);
  padding-top: 1rem;
  line-height: 1.5;
}

/* ============ BOOKING PROBLEM / ezyVet SECTION ============ */
.ezyvet-section {
  position: relative;
  z-index: 10;
  background: var(--bay-blue);
  color: var(--paper);
  padding: 5rem 3rem;
}
.ezyvet-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ezyvet-section .eyebrow { color: rgba(255,255,255,0.5); }
.ezyvet-section__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 1.5rem;
}
.ezyvet-section__headline em { font-style: italic; color: var(--coral); }
.ezyvet-section__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}
.ezyvet-section__note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  line-height: 1.6;
}

/* Before / after booking UI mock */
.booking-compare {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.booking-panel {
  border-radius: 1rem;
  overflow: hidden;
}
.booking-panel__label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
}
.booking-panel--before .booking-panel__label {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
}
.booking-panel--after .booking-panel__label {
  background: var(--coral);
  color: var(--paper);
}
.booking-panel__body {
  padding: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
}
.booking-panel--before .booking-panel__body {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: none;
  border-radius: 0 0 1rem 1rem;
}
.booking-panel--after .booking-panel__body {
  background: rgba(255,255,255,0.07);
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.15);
  border-top: none;
  border-radius: 0 0 1rem 1rem;
}
.booking-arrow {
  text-align: center;
  font-size: 1.25rem;
  color: var(--coral);
  line-height: 1;
  margin: -0.25rem 0;
}

/* ============ TRIAGE / CHAT SECTION ============ */
.triage-section {
  position: relative;
  z-index: 10;
  padding: 5rem 3rem;
  background: var(--paper);
}
.triage-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}
.triage-section__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--bay-blue);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.triage-section__headline em { font-style: italic; color: var(--coral); }
.triage-section__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 2rem;
}
.triage-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.triage-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
}
.triage-badge--safe { background: #DDE9D5; color: #3A5A30; }
.triage-badge--watch { background: #F5E6C8; color: #6B4A12; }
.triage-badge--urgent { background: #F5D5CC; color: #6B2015; }
.triage-badge__icon { font-size: 1rem; }
.triage-badge__text { font-weight: 500; }
.triage-badge__sub { font-size: 0.75rem; opacity: 0.75; }

/* Chat widget */
.chat-widget {
  background: var(--paper);
  border: 1px solid var(--sand-border);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(31,58,95,0.08);
}
.chat-widget__header {
  background: var(--bay-blue);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chat-widget__avatar {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.chat-widget__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--paper);
  line-height: 1;
}
.chat-widget__sub {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.2rem;
}
.chat-widget__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 280px;
}
.bubble {
  max-width: 85%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  border-radius: 1rem;
}
.bubble--user {
  background: var(--bay-blue);
  color: var(--paper);
  border-radius: 1rem 1rem 0.25rem 1rem;
  align-self: flex-end;
}
.bubble--agent {
  background: var(--sand);
  color: var(--charcoal);
  border: 1px solid var(--sand-border);
  border-radius: 1rem 1rem 1rem 0.25rem;
  align-self: flex-start;
}
.chat-widget__prompts {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chat-prompt {
  border: 1px solid var(--sand-border);
  background: none;
  color: var(--bay-blue);
  font-size: 0.8125rem;
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--font-body);
}
.chat-prompt:hover { border-color: var(--bay-blue); background: var(--sand); }

/* ============ BOOKING SECTION ============ */
.booking-section {
  position: relative;
  z-index: 10;
  padding: 5rem 3rem;
  background: var(--sand);
  border-top: 1px solid var(--sand-border);
}
.booking-section__inner { max-width: 64rem; margin: 0 auto; }
.booking-section__header { text-align: center; margin-bottom: 3.5rem; }
.booking-section__kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.booking-section__kicker-line { width: 3rem; height: 1px; background: var(--bay-blue); }
.booking-section__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--bay-blue);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.booking-section__headline em { font-style: italic; }
.booking-section__sub {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.step-node {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s;
}
.step-node.dimmed { opacity: 0.35; }
.step-node__circle {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}
.step-node.active .step-node__circle { background: var(--bay-blue); color: var(--paper); }
.step-node.dimmed .step-node__circle { border: 1px solid var(--bay-blue); color: var(--bay-blue); background: transparent; }
.step-node__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bay-blue);
}
.step-connector { width: 3rem; height: 1px; background: rgba(31,58,95,0.2); }

/* Booking form card */
.booking-card {
  background: var(--paper);
  border: 1px solid rgba(31,58,95,0.1);
  border-radius: 2rem;
  padding: 2.5rem 3rem;
}
.booking-step { display: block; }
.booking-step.hidden { display: none; }
.booking-step__heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--bay-blue);
  margin-bottom: 2rem;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.booking-field label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(31,58,95,0.25);
  padding-bottom: 0.75rem;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--bay-blue);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus { border-bottom-color: var(--bay-blue); }
.booking-field textarea {
  border: 1px solid rgba(31,58,95,0.2);
  border-radius: 0.75rem;
  padding: 0.75rem;
  resize: vertical;
  min-height: 80px;
}
.booking-row-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.booking-row-actions--end { justify-content: flex-end; }
.btn-back {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
}
.btn-back:hover { color: var(--bay-blue); }
.btn-continue {
  background: var(--bay-blue);
  color: var(--paper);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  transition: background 0.2s;
}
.btn-continue:hover { background: var(--bay-deep); }

/* Reason buttons */
.reason-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2rem; }
.reason-btn {
  text-align: left;
  padding: 1rem;
  border: 1px solid rgba(31,58,95,0.18);
  border-radius: 0.875rem;
  cursor: pointer;
  background: none;
  font-family: var(--font-body);
  transition: border-color 0.2s, background 0.2s;
}
.reason-btn:hover { border-color: var(--bay-blue); background: var(--sand); }
.reason-btn.selected { border-color: var(--bay-blue); background: var(--sand); }
.reason-btn__title { font-size: 0.9375rem; font-weight: 500; color: var(--bay-blue); margin-bottom: 0.25rem; }
.reason-btn__title--urgent { color: var(--coral); }
.reason-btn__sub { font-size: 0.75rem; color: var(--muted); }

/* Time slots */
.slot-group { margin-bottom: 1.75rem; }
.slot-group__label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.625rem;
}
.slot-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
.slot-btn {
  border: 1px solid rgba(31,58,95,0.18);
  border-radius: 0.625rem;
  padding: 0.75rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--bay-blue);
  background: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.slot-btn:hover { border-color: var(--bay-blue); background: var(--sand); }
.slot-btn.selected { background: var(--bay-blue); color: var(--paper); border-color: var(--bay-blue); }
.slot-btn--highlight { border-color: var(--coral); background: rgba(209,122,92,0.08); color: var(--coral); font-weight: 500; }
.slot-note { font-size: 0.75rem; color: var(--coral); margin-top: 0.375rem; }

/* Confirmation step */
.confirm-step { text-align: center; padding: 3rem 0; }
.confirm-icon {
  width: 4rem; height: 4rem;
  background: rgba(31,58,95,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.confirm-step__heading {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--bay-blue);
  margin-bottom: 0.75rem;
}
.confirm-step__sub { color: var(--muted); margin-bottom: 2rem; }
.confirm-card {
  background: var(--sand);
  border: 1px solid var(--sand-border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  max-width: 28rem;
  margin: 0 auto 2rem;
  text-align: left;
}
.confirm-card__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
  padding: 0.4rem 0;
}
.confirm-card__row span:first-child { color: var(--muted); }
.confirm-card__row span:last-child { color: var(--bay-blue); font-weight: 500; }
.confirm-note { font-size: 0.75rem; color: var(--muted); }

/* ezyVet phase note */
.phase-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(31,58,95,0.05);
  border-left: 3px solid var(--bay-blue);
  border-radius: 0 0.5rem 0.5rem 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
}
.phase-note strong { color: var(--bay-blue); }

/* ============ RENOVATION SECTION ============ */
.reno-section {
  position: relative;
  z-index: 10;
  padding: 5rem 3rem;
  background: var(--paper);
}
.reno-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.reno-section__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--bay-blue);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.reno-section__headline em { font-style: italic; color: var(--coral); }
.reno-section__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 2rem;
}
.reno-card {
  background: var(--bay-blue);
  color: var(--paper);
  border-radius: 1.5rem;
  padding: 2rem 2.25rem;
  position: relative;
  overflow: hidden;
}
.reno-card::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.1;
}
.reno-card__eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.reno-card__headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.reno-card__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.reno-card__items li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.reno-card__items li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 0.5rem;
  flex-shrink: 0;
}
.reno-timeline {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* ============ FOOTER ============ */
.site-footer {
  position: relative;
  z-index: 10;
  background: var(--bay-blue);
  color: var(--paper);
  padding: 4rem 3rem;
}
.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand__logo-img { width: 36px; height: 36px; opacity: 0.9; filter: brightness(0) invert(1); }
.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
}
.footer-brand__tagline { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 1rem; }
.footer-brand__contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  display: block;
  transition: color 0.2s;
  margin-bottom: 0.25rem;
}
.footer-brand__contact a:hover { color: var(--paper); }
.footer-col__heading {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col__links { list-style: none; }
.footer-col__links li { margin-bottom: 0.5rem; }
.footer-col__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col__links a:hover { color: var(--paper); }
.footer-bottom {
  max-width: 1280px;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ============ PHOTO SECTION ============ */
.photo-section {
  position: relative;
  z-index: 10;
  padding: 5rem 3rem;
  background: var(--paper);
}
.photo-section__inner { max-width: 1280px; margin: 0 auto; }
.photo-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.photo-section__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  color: var(--bay-blue);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.photo-section__heading em { font-style: italic; color: var(--coral); }
.photo-section__note {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 22rem;
  text-align: right;
  line-height: 1.5;
}

/* Magazine-style grid */
.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.875rem;
}
.photo-item {
  border-radius: 1.125rem;
  overflow: hidden;
  position: relative;
  background: var(--sand);
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.photo-item:hover img { transform: scale(1.03); }

/* Golden retriever: anchor — spans 2 rows in col 1 */
.photo-item--anchor {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: 3 / 4;
}
/* Top-right slots: staffy + french bulldog */
.photo-item--top-mid {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: 1;
}
.photo-item--top-right {
  grid-column: 3;
  grid-row: 1;
  aspect-ratio: 1;
}
/* Bottom row: dachshund vet + surgery */
.photo-item--bot-mid {
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: 1;
}
.photo-item--bot-right {
  grid-column: 3;
  grid-row: 2;
  aspect-ratio: 1;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  .site-nav { padding: 1.25rem 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .sticky-book { display: block; }

  .hero { padding: 2rem 1.25rem 4rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__headline { font-size: 2.5rem; }
  .hero__visual { display: block; }
  .hero__photo { aspect-ratio: 4 / 3; max-height: 360px; }

  .photo-section { padding: 3.5rem 1.25rem; }
  .photo-section__header { flex-direction: column; gap: 0.75rem; }
  .photo-section__note { text-align: left; max-width: none; }
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .photo-item--anchor {
    grid-column: 1 / -1;
    grid-row: 1;
    aspect-ratio: 16 / 9;
  }
  .photo-item--top-mid  { grid-column: 1; grid-row: 2; aspect-ratio: 1; }
  .photo-item--top-right { grid-column: 2; grid-row: 2; aspect-ratio: 1; }
  .photo-item--bot-mid  { grid-column: 1; grid-row: 3; aspect-ratio: 1; }
  .photo-item--bot-right { grid-column: 2; grid-row: 3; aspect-ratio: 1; }

  .ezyvet-section { padding: 3.5rem 1.25rem; }
  .ezyvet-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .triage-section { padding: 3.5rem 1.25rem; }
  .triage-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .booking-section { padding: 3.5rem 1.25rem; }
  .booking-card { padding: 1.75rem 1.25rem; }
  .booking-grid { grid-template-columns: 1fr; }
  .reason-grid { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }

  .reno-section { padding: 3.5rem 1.25rem; }
  .reno-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .site-footer { padding: 3rem 1.25rem 5rem; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 390px) {
  .hero__headline { font-size: 2.125rem; }
  .booking-section__headline { font-size: 2rem; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr; }
}
