/* ============================================================
   VAN CITY VETERINARY HOSPITAL — style.css
   Mobile-first responsive CSS
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --yellow:  #F5C800;
  --teal:    #2A7A8C;
  --navy:    #1C2B3A;
  --grey:    #6B7280;
  --white:   #FFFFFF;
  --light-bg: #F8F9FA;
  --border:  #E5E7EB;
  --teal-dark: #1f5f6e;
  --yellow-dark: #d4aa00;

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container-max: 1200px;
  --container-pad: 1.25rem;
  --radius:  0.5rem;
  --radius-lg: 1rem;
  --shadow:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);

  --transition: 0.2s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

.btn-full { width: 100%; display: block; }

/* ── Section base ───────────────────────────────────────────── */
section {
  padding: 4rem 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-intro h2 { margin-bottom: 1rem; }

/* ── Placeholder images ─────────────────────────────────────── */
.placeholder-img {
  background: linear-gradient(135deg, #e8f4f7 0%, #d0eaf0 100%);
  border: 2px dashed var(--teal);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: var(--teal);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  min-height: 280px;
}

/* ── HEADER / NAV ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

/* Header logo — crop to content area of the 1200×1200 transparent PNG
   Content sits at roughly y:30–69%, x:13–81% of the square canvas */
.header-logo {
  display: block;
  width: 127px;
  height: 60px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.header-logo img {
  position: absolute;
  width: 150px;
  height: 150px;
  top: -39px;
  left: -15px;
  max-width: none;
}

/* Coming Soon banner — inside site-header, sticks with nav on scroll */
.coming-soon-banner {
  background: var(--navy);
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  text-align: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  white-space: nowrap;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--teal); }

/* Hidden on desktop — shown before hamburger on mobile */
.header-book-btn { display: none; }

/* Hidden on desktop — shown at bottom of mobile nav dropdown */
.nav-phone-item { display: none; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  padding: 0;
  overflow: hidden;
}

.hero-bg-image {
  position: relative;
  background: url('assets/homepage_hero.jpg') center center / cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,43,58,0.72) 0%, rgba(28,43,58,0.45) 55%, rgba(28,43,58,0.05) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-ctas .btn-secondary {
  color: var(--white);
  border-color: var(--white);
}
.hero-ctas .btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

@media (max-width: 767px) {
  .hero-bg-image {
    min-height: 420px;
  }
  .hero-overlay {
    background: rgba(28,43,58,0.62);
  }
}

/* ── ABOUT / INTRO ──────────────────────────────────────────── */
.about {
  background: var(--white);
}

.about-text {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-text h2 { margin-bottom: 1.25rem; }

.about-text p {
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.75;
}

.sister-clinic-note {
  font-size: 0.9rem !important;
  color: var(--grey) !important;
  margin-top: 1.25rem !important;
}

.sister-clinic-note a {
  color: var(--teal);
  text-decoration: underline;
  font-weight: 600;
}

/* Trust signals */
.trust-signals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.trust-signal-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-signal-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-signal-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

/* ── SERVICES ───────────────────────────────────────────────── */
.services {
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(42,122,140,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.55;
  margin: 0;
}

.services-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--grey);
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  max-width: 700px;
  margin: 0 auto;
}

.services-note a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
}

/* ── APPOINTMENT FORM SECTION ───────────────────────────────── */
.appointment {
  background: #F0F4F5;
}

.appointment .section-intro {
  margin-bottom: 2.5rem;
}

.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* Progress bar */
.form-progress {
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--navy);
  gap: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  cursor: default;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}

.step-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
}

.progress-step.active .step-num {
  background: var(--teal);
  color: var(--white);
}
.progress-step.active .step-label {
  color: var(--white);
}

.progress-step.completed .step-num {
  background: rgba(42,122,140,0.5);
  color: var(--white);
}
.progress-step.completed .step-label {
  color: rgba(255,255,255,0.6);
}

.progress-connector {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 0 0.5rem;
  margin-bottom: 1.15rem;
}

/* Form steps */
.form-step {
  padding: 2rem;
}

.form-step.hidden {
  display: none;
}

.form-thankyou {
  padding: 2.5rem 2rem;
  text-align: center;
}

.form-thankyou.hidden {
  display: none;
}

.form-step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.form-step-sub {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 1.75rem;
}

/* Storefront in step 1 */
.step1-storefront {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.step1-storefront img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.step1-storefront-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(28,43,58,0.85));
  padding: 1rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Form fields */
.field-group {
  margin-bottom: 1.25rem;
}

.field-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.field-group input[type="text"],
.field-group input[type="email"],
.field-group input[type="tel"],
.field-group input[type="date"],
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,122,140,0.12);
}

.field-group input:disabled,
.field-group select:disabled {
  background: #f3f4f6;
  color: var(--grey);
  cursor: not-allowed;
}

.field-group textarea {
  resize: vertical;
  min-height: 100px;
}

.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.field-required::after {
  content: ' *';
  color: #dc2626;
}

.field-error {
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 0.3rem;
  display: none;
}

.field-error.visible {
  display: block;
}

/* Radio buttons */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.25rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
}

.radio-label:hover {
  border-color: var(--teal);
  background: rgba(42,122,140,0.05);
}

.radio-label input[type="radio"] {
  accent-color: var(--teal);
  width: 1rem;
  height: 1rem;
}

.radio-label input[type="radio"]:checked + span {
  color: var(--teal);
  font-weight: 600;
}

/* Checkbox no-vet row */
.date-with-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.date-with-checkbox input[type="date"] {
  flex: 1;
  min-width: 140px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--grey);
  cursor: pointer;
  white-space: nowrap;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--teal);
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

/* Step 3 — reasons grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.reason-option {
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--navy);
  text-align: center;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  user-select: none;
}

.reason-option:hover:not(.disabled) {
  border-color: var(--teal);
  background: rgba(42,122,140,0.05);
}

.reason-option.selected {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
}

.reason-option.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Step 4 — summary */
.summary-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.summary-table tr {
  border-bottom: 1px solid var(--border);
}

.summary-table tr:last-child {
  border-bottom: none;
}

.summary-table td {
  padding: 0.65rem 0.5rem;
  vertical-align: top;
}

.summary-table td:first-child {
  font-weight: 600;
  color: var(--grey);
  width: 45%;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-right: 1rem;
}

.summary-table td:last-child {
  color: var(--navy);
  font-weight: 500;
}

.confirmation-callout {
  background: var(--yellow);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.confirm-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--navy);
  cursor: pointer;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.confirm-checkbox-label input[type="checkbox"] {
  margin-top: 0.15rem;
  accent-color: var(--teal);
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

/* Disclaimer */
.form-disclaimer {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Form navigation buttons */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-nav .btn-back {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--grey);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.form-nav .btn-back:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.form-nav .btn-next {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  flex: 1;
  max-width: 320px;
}

.form-nav .btn-next:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.form-nav.first-step .btn-next {
  max-width: 100%;
}

/* Submit button */
.btn-submit {
  display: block;
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* Thank you */
.thankyou-icon {
  width: 72px;
  height: 72px;
  background: rgba(42,122,140,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.thankyou-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--teal);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-thankyou h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.form-thankyou p {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.7;
}

.thankyou-clinic-info {
  margin-top: 1.75rem;
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--navy);
  text-align: left;
}

.thankyou-clinic-info a {
  color: var(--teal);
  font-weight: 600;
}

/* ── LOCATION ───────────────────────────────────────────────── */
.location {
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.location-details h2 { margin-bottom: 1.5rem; }

.location-item {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.location-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(42,122,140,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-item-text {
  padding-top: 0.35rem;
}

.location-item-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 0.2rem;
}

.location-item-value {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}

.location-item-value a {
  color: var(--teal);
  font-weight: 700;
}

.location-item-value a:hover {
  text-decoration: underline;
}

.location-cta {
  margin-top: 2rem;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  width: auto;
  height: 80px;
  display: block;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}

.footer-brand a {
  color: var(--yellow);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  align-items: flex-start;
}

.footer-contact-item a {
  color: var(--yellow);
  font-weight: 600;
}

.footer-contact-item a:hover {
  text-decoration: underline;
}

.sister-callout {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-top: 1rem;
}

.sister-callout a {
  color: var(--teal);
  font-weight: 600;
}

.canadian-owned {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.875rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.social-icon:hover {
  background: rgba(255,255,255,0.18);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── MEDIA QUERIES ──────────────────────────────────────────── */

/* Tablet — ≥ 640px */
@media (min-width: 640px) {
  .trust-signals {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Desktop — ≥ 900px */
@media (min-width: 900px) {
  section { padding: 5.5rem 0; }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Below tablet — ≤ 768px */
@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-photo img {
    height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-signals {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile — ≤ 480px */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    text-align: center;
  }

  .form-step {
    padding: 1.5rem;
  }

  .form-progress {
    padding: 1.25rem 1rem;
  }

  .step-label {
    display: none;
  }

  .step-num {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .trust-signals {
    grid-template-columns: 1fr;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .form-nav .btn-next {
    max-width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════
   PHASE 2 ADDITIONS
   ══════════════════════════════════════════════════════════════ */

/* ── FULL NAV (Phase 2) ──────────────────────────────────────── */
.site-nav {
  display: none; /* hidden on mobile until hamburger opens it */
}

.site-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--teal);
  background: rgba(42,122,140,0.07);
}

.nav-link--active {
  color: var(--teal);
  background: rgba(42,122,140,0.1);
  position: relative;
}

.nav-link--active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

/* Hamburger button */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: var(--light-bg);
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Desktop: show nav, hide hamburger */
@media (min-width: 900px) {
  .site-nav {
    display: block;
  }

  .nav-toggle {
    display: none;
  }
}

/* Mobile nav open state */
@media (max-width: 899px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 99;
    display: none; /* controlled via JS class */
  }

  .site-nav.site-nav--open {
    display: block;
  }

  .site-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
  }

  .nav-link {
    padding: 0.875rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .nav-link--active::after {
    display: none;
  }

  .site-header {
    position: sticky; /* stays sticky so dropdown positions correctly */
  }

  /* Single-row mobile header: logo | Book Appointment | hamburger */
  .header-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .header-logo {
    flex: 1;
  }

  .header-book-btn {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    padding: 0.5rem 0.875rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .header-actions {
    display: none;
  }

  /* Phone number at bottom of mobile nav dropdown */
  .nav-phone-item {
    display: block;
    border-top: 2px solid var(--border);
    margin-top: 0.25rem;
    padding-top: 0.25rem;
  }

  .nav-phone-item .nav-link {
    color: var(--teal);
    font-weight: 700;
  }
}


/* Footer nav list */
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.footer-nav-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-nav-list a:hover {
  color: var(--white);
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--yellow);
  padding: 3.5rem 0;
}

.page-hero-content {
  max-width: 720px;
}

.page-hero h1 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--navy);
  opacity: 0.85;
  line-height: 1.7;
  margin: 0;
}

/* ── TWO-COLUMN SPLIT PAGE HERO ─────────────────────────────── */
.page-hero--split {
  padding: 0;
  position: relative;
  z-index: 1; /* image overlap sits above section below */
}

.page-hero-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 3rem;
  align-items: start;
  padding: 3.5rem 0 3.5rem;
}

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

.page-hero-image {
  display: flex;
  justify-content: center;
  margin-bottom: -200px; /* 40% of 480px image overlaps into section below */
}

.page-hero-portrait {
  width: 100%;
  height: 480px;
  background: #E8F4F6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(28,43,58,0.15);
}

/* Section directly below a split hero — add padding for the 200px overlap */
.section-after-hero-overlap {
  padding-top: calc(200px + 1.5rem);
}

@media (min-width: 900px) {
  .section-after-hero-overlap {
    padding-top: calc(200px + 2rem);
  }
}

@media (max-width: 768px) {
  .page-hero-split {
    grid-template-columns: 1fr;
    padding: 3rem 0;
  }

  .page-hero-image {
    margin-bottom: 0; /* no overlap on mobile */
  }

  .page-hero-portrait {
    height: auto;
    aspect-ratio: 4 / 3;
    box-shadow: none;
  }

  .section-after-hero-overlap {
    padding-top: 4rem;
  }
}

/* ── FONT AWESOME ICON OVERRIDES ─────────────────────────────── */
.service-icon i {
  font-size: 1.5rem;
  color: var(--teal);
  line-height: 1;
}

.trust-signal-icon i {
  font-size: 1.125rem;
  color: var(--white);
  line-height: 1;
}

.location-item-icon i {
  font-size: 1rem;
  color: var(--teal);
  line-height: 1;
}

.social-icon i {
  font-size: 1.125rem;
  color: var(--white);
  line-height: 1;
}

/* ── BLOG GRID ───────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Blog card */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f4f7 0%, #d0eaf0 100%);
  border-bottom: 2px dashed var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: var(--teal);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

.blog-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

/* Type badge */
.blog-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 2rem;
  white-space: nowrap;
}

.blog-badge--article {
  background: var(--teal);
  color: var(--white);
}

.blog-badge--news {
  background: var(--navy);
  color: var(--white);
}

.blog-badge--video {
  background: var(--yellow);
  color: var(--navy);
}

/* Topic tag */
.blog-topic-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--grey);
  background: var(--light-bg);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius);
  white-space: nowrap;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
  line-height: 1.35;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--grey);
  margin-bottom: 0.75rem;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-card-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
  text-decoration: none;
}

.blog-card-link:hover {
  color: var(--teal-dark);
  gap: 0.6rem;
}

/* Blog filter bar */
.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.blog-filter-bar label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.blog-filter-bar select {
  padding: 0.5rem 2.25rem 0.5rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
}

.blog-filter-bar select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,122,140,0.12);
}

.blog-filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.blog-pagination button {
  min-width: 40px;
  height: 40px;
  padding: 0 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.blog-pagination button:hover,
.blog-pagination button.active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

/* ── BLOG POST (single) ──────────────────────────────────────── */
.blog-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #e8f4f7 0%, #d0eaf0 100%);
  border-bottom: 2px dashed var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

.blog-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .blog-hero {
    height: 260px;
  }
}

.post-header {
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.post-header .blog-card-meta {
  margin-bottom: 1rem;
}

.post-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.post-byline {
  font-size: 0.9rem;
  color: var(--grey);
}

/* Prose styles for blog post body */
.prose {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.075rem;
  line-height: 1.8;
  color: #374151;
}

.prose h2 {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  margin: 2.5rem 0 1rem;
  color: var(--navy);
}

.prose h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin: 2rem 0 0.75rem;
  color: var(--navy);
}

.prose p {
  margin-bottom: 1.5rem;
}

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

.prose a {
  color: var(--teal);
  text-decoration: underline;
  font-weight: 600;
}

.prose a:hover {
  color: var(--teal-dark);
}

.prose ul,
.prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

.prose li {
  margin-bottom: 0.5rem;
}

.prose blockquote {
  border-left: 4px solid var(--teal);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--light-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--navy);
}

.prose figure {
  margin: 2rem 0;
}

.prose figcaption {
  font-size: 0.825rem;
  color: var(--grey);
  text-align: center;
  margin-top: 0.5rem;
}

/* End-of-post CTA */
.post-cta {
  max-width: 780px;
  margin: 3rem auto 0;
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.post-cta h2 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.post-cta p {
  margin-bottom: 1.5rem;
  color: var(--navy);
  opacity: 0.85;
}

.post-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.post-cta-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

/* Related posts */
.related-posts {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.related-posts .blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* ── FAQ ACCORDION (new-clients.html) ───────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), color var(--transition);
}

.faq-question:hover,
.faq-item.open .faq-question {
  background: rgba(42,122,140,0.05);
  color: var(--teal);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--white);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-answer {
  display: block;
}

/* ── STEPS / WHAT-TO-EXPECT (new-clients.html) ───────────────── */
.steps-list {
  counter-reset: steps;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  counter-increment: steps;
}

.step-num-circle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item-text h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.step-item-text p {
  font-size: 0.9rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.6;
}

/* ── BRING LIST ─────────────────────────────────────────────── */
.bring-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
  list-style: none;
}

.bring-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--navy);
}

.bring-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(42,122,140,0.12);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── TEAM CARDS (about.html) ────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
}

.team-card-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
}

.team-card-photo-placeholder {
  background: linear-gradient(135deg, #e8f4f7 0%, #d0eaf0 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.team-card-photo-placeholder img {
  width: 120px;
  height: auto;
  opacity: 0.55;
}

.team-card-photo-placeholder span {
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.team-card-body {
  padding: 1.25rem;
}

.team-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.team-card-role {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.contact-info-card h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

/* ── PROSE PAGE (privacy/accessibility) ─────────────────────── */
.prose-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 0;
}

.prose-page h1 {
  margin-bottom: 0.5rem;
}

.prose-page .prose-page-meta {
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 2.5rem;
}

/* ── Utilities ──────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.text-center { text-align: center; }
