/* ============================================================
   ANDERSON VETERINARY SURGERY — Main Stylesheet
   ============================================================ */

/* === Custom Properties === */
:root {
  --teal:         #3AABB5;
  --teal-dark:    #2A8A94;
  --teal-xdark:   #1E6E78;
  --teal-light:   #EBF7F8;
  --teal-mid:     #C5E8EC;
  --slate:        #5C6C7A;
  --slate-light:  #8A97A3;
  --grey-bg:      #F5F7F8;
  --white:        #FFFFFF;
  --text:         #2D3A42;
  --text-light:   #5C6C7A;
  --border:       #DDE4E8;
  --red:          #D94040;
  --red-dark:     #B83030;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.06);
  --shadow:       0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg:    0 4px 24px rgba(0,0,0,0.14);
  --radius-sm:    4px;
  --radius:       8px;
  --radius-lg:    16px;
  --t:            0.2s ease;
  --t-slow:       0.35s ease;
  --max-w:        1200px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* === Skip Link === */
.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  background: var(--teal);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--t);
}
.skip-link:focus { top: 1rem; }

/* === Typography === */
h1, h2, h3, h4, h5 {
  font-family: 'Lato', sans-serif;
  color: var(--slate);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--teal-xdark); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

.lead {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.75;
}
.text-teal  { color: var(--teal); }
.text-slate { color: var(--slate); }
.text-light { color: var(--text-light); }
.text-center { text-align: center; }

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.section-alt { background: var(--grey-bg); }
.section-teal { background: var(--teal); color: var(--white); }
.section-teal h2, .section-teal h3 { color: var(--white); }
.section-dark { background: var(--slate); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* === Section Headers === */
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: .5rem; }
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 640px; }
.section-header.center p { margin: 0 auto; }
.section-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .5rem;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--teal-dark);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  color: var(--teal-dark);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}
.btn-emergency {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}
.btn-emergency:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .875rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* === Cards === */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-body { padding: 1.75rem; }
.card-img img { width: 100%; height: 220px; object-fit: cover; }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
  transition: box-shadow var(--t), transform var(--t);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card .icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-card .icon svg { width: 26px; height: 26px; stroke: var(--teal); fill: none; }
.service-card h3 { margin-bottom: .5rem; color: var(--slate); }
.service-card p { color: var(--text-light); font-size: .95rem; margin: 0; }

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
  display: flex;
  flex-direction: column;
}
.team-card .team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.team-card .team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-card .team-photo .initials {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--teal-dark);
  letter-spacing: .5px;
}
.team-card .team-photo .photo-soon {
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  color: var(--slate-light);
  text-align: center;
  padding: 0 1rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.team-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.team-card h3 { font-size: 1.05rem; margin-bottom: .15rem; }
.team-card .credentials {
  font-size: .8rem;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: .5rem;
  display: block;
}
.team-card .role-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 20px;
  margin-bottom: .75rem;
}
.team-card p { color: var(--text-light); font-size: .9rem; margin: 0; }
.team-card .speciality {
  display: inline-block;
  margin-top: .75rem;
  font-size: .8rem;
  color: var(--slate-light);
}
.team-card .speciality strong { color: var(--teal-dark); }

/* === Emergency Strip === */
.emergency-strip {
  background: var(--red);
  color: var(--white);
  padding: .55rem 0;
  text-align: center;
  font-size: .9rem;
}
.emergency-strip a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.emergency-strip a:hover { color: rgba(255,255,255,0.85); }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}
.logo img { height: 52px; width: auto; }
.logo:hover { opacity: .85; }

/* === Main Nav === */
.main-nav { display: flex; align-items: center; gap: 1.5rem; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .75rem;
  color: var(--slate);
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color var(--t), background var(--t);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: var(--teal); background: var(--teal-light); }
.main-nav > ul > li > a.nav-emergency {
  color: var(--red);
}
.main-nav > ul > li > a.nav-emergency:hover {
  background: #fef2f2;
}
.arrow { font-size: .65rem; opacity: .6; }

/* Dropdowns */
.has-dropdown { position: relative; }
.has-dropdown::after {
  /* transparent bridge fills the gap between nav item and dropdown so
     the cursor doesn't leave the hover zone while moving downward */
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: .75rem;
  pointer-events: auto;
}
.dropdown {
  position: absolute;
  top: calc(100% + .75rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: .5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  /* 200ms delay on close — cursor has time to cross the gap */
  transition: opacity var(--t) 200ms, transform var(--t) 200ms;
  z-index: 100;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  transition: opacity var(--t) 0ms, transform var(--t) 0ms;
}
.dropdown li a {
  display: block;
  padding: .55rem .9rem;
  color: var(--slate);
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--t), color var(--t);
}
.dropdown li a:hover { background: var(--teal-light); color: var(--teal-dark); }

/* Nav CTAs */
.nav-ctas { display: flex; align-items: center; gap: .75rem; }
.nav-phone {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--slate);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--teal); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: all var(--t);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Hero === */
.hero {
  position: relative;
  color: var(--white);
  padding: 9rem 0 9rem;
  overflow: hidden;
  isolation: isolate;
}
/* Photo layer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
  filter: blur(6px);
  transform: scale(1.08); /* prevent blur edge ghosting */
  z-index: -2;
}
/* Tint overlay — dark teal at ~70% opacity for text legibility */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20, 72, 80, 0.78) 0%,
    rgba(30, 110, 120, 0.65) 60%,
    rgba(58, 171, 181, 0.50) 100%
  );
  z-index: -1;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; font-size: clamp(2.2rem, 5vw, 3.2rem); }
.hero .lead { color: rgba(255,255,255,0.92); margin-bottom: 2rem; font-size: 1.15rem; }
.hero .btn-group { margin-top: .5rem; }

.hero-sm {
  background: linear-gradient(135deg, var(--teal-xdark) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 3.5rem 0;
}
.hero-sm h1 { color: var(--white); margin-bottom: .5rem; }
.hero-sm .breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .875rem;
  color: rgba(255,255,255,0.7);
  margin-top: .5rem;
}
.hero-sm .breadcrumb a { color: rgba(255,255,255,0.8); }
.hero-sm .breadcrumb a:hover { color: var(--white); }
.hero-sm .breadcrumb span { color: rgba(255,255,255,0.5); }

.hero-emergency {
  background: linear-gradient(135deg, #8B0000 0%, var(--red) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.hero-emergency h1 { color: var(--white); font-size: clamp(2.5rem, 6vw, 4rem); }

.hero-soft {
  background: linear-gradient(135deg, var(--teal-light) 0%, #D4EFF2 100%);
  padding: 3.5rem 0;
}
.hero-soft h1 { color: var(--teal-xdark); }
.hero-soft .breadcrumb { color: var(--slate-light); }
.hero-soft .breadcrumb a { color: var(--teal); }

/* === Trust Bar === */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-bar-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--slate);
}
.trust-item .ti-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item .ti-icon svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; }

/* === About Strip (home) === */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-strip img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}
.about-strip .content h2 { margin-bottom: 1rem; }
.about-strip .content p { color: var(--text-light); }
.about-strip .content .btn-group { margin-top: 1.75rem; }

/* === Services Grid === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

/* === Plans === */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.plans-grid-3 { grid-template-columns: repeat(3, 1fr); }
.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--teal);
  transition: box-shadow var(--t), transform var(--t);
}
.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.plan-card .size-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate-light);
  margin-bottom: .25rem;
}
.plan-card .weight { font-size: .85rem; color: var(--text-light); margin-bottom: .75rem; }
.plan-card .price {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--teal);
  line-height: 1;
}
.plan-card .per { font-size: .8rem; color: var(--slate-light); }
.plan-card-cat {
  grid-column: 1 / -1;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
  gap: 1rem;
}
.plan-card-cat h3 { color: var(--white); margin: 0; }
.plan-card-cat .price-big {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--white);
}
.plan-card-cat .price-big span { font-size: 1rem; font-weight: 400; opacity: .8; }

/* === Checklist === */
.checklist { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text-light);
}
.checklist li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--teal-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232A8A94' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: .15rem;
}
.checklist.white li { color: rgba(255,255,255,0.9); }
.checklist.white li::before {
  background-color: rgba(255,255,255,0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

/* === Info / Warning Boxes === */
.info-box {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box p { margin: 0; color: var(--teal-xdark); font-size: .95rem; }
.warning-box {
  background: #FFF8EC;
  border-left: 4px solid #F59E0B;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.warning-box p { margin: 0; color: #78450A; font-size: .95rem; }
.emergency-box {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.emergency-box h2 { color: var(--white); font-size: 2.5rem; margin-bottom: .5rem; }
.emergency-box .phone-number {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
  margin: 1rem 0;
  letter-spacing: -.02em;
}
.emergency-box .phone-number a { color: inherit; }
.emergency-box p { color: rgba(255,255,255,0.88); font-size: 1.05rem; }

/* === Forms === */
.form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  color: var(--slate);
  margin-bottom: .4rem;
}
label .req { color: var(--red); margin-left: .2rem; }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--t), box-shadow var(--t);
  font-size: .95rem;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(58,171,181,0.15);
}
input.error, select.error, textarea.error {
  border-color: var(--red);
}
.field-error {
  display: block;
  margin-top: .3rem;
  font-size: .8rem;
  color: var(--red);
}
textarea { min-height: 130px; resize: vertical; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C6C7A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; padding-right: 2.5rem; }
.radio-group, .checkbox-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .25rem; }
.radio-label, .checkbox-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 400;
  color: var(--text);
}
input[type="radio"], input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--teal);
}
.form-note { font-size: .82rem; color: var(--slate-light); margin-top: .3rem; display: block; }

/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.step {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--slate-light);
  transition: all var(--t);
}
.step.active .step-num { background: var(--teal); border-color: var(--teal); color: var(--white); }
.step.done .step-num { background: var(--teal-light); border-color: var(--teal); color: var(--teal-dark); }
.step-label { font-size: .8rem; font-weight: 700; color: var(--slate-light); white-space: nowrap; }
.step.active .step-label { color: var(--teal); }
.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  min-width: 2rem;
}
.form-step { display: none; }
.form-step.active { display: block; }
.step-nav { display: flex; justify-content: space-between; margin-top: 1.5rem; }
.form-nav-btns { display: flex; gap: 1rem; }

/* Form success/error */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success .success-icon {
  width: 64px;
  height: 64px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.form-success .success-icon svg { width: 32px; height: 32px; stroke: var(--teal); fill: none; }
.form-error-msg {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: var(--red-dark);
  border-radius: var(--radius);
  padding: .9rem 1.2rem;
  font-size: .9rem;
  margin-bottom: 1rem;
}
.honeypot { display: none !important; }

/* === Gallery === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,110,120,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
}
.gallery-item:hover .overlay { background: rgba(30,110,120,0.3); }
.gallery-item .overlay svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
  fill: none;
  opacity: 0;
  transition: opacity var(--t);
}
.gallery-item:hover .overlay svg { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background var(--t);
  font-size: 1.5rem;
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); color: var(--white); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background var(--t);
  font-size: 1.5rem;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); color: var(--white); }

/* === FAQ Accordion === */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate);
  transition: background var(--t), color var(--t);
}
.faq-question:hover { background: var(--grey-bg); color: var(--teal-dark); }
.faq-question.open { color: var(--teal); background: var(--teal-light); }
.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--border);
  transition: transform var(--t), background var(--t);
  font-size: .9rem;
  color: var(--slate);
}
.faq-question.open .faq-icon { transform: rotate(45deg); background: var(--teal); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) ease;
}
.faq-answer-inner {
  padding: 1rem 1.5rem 1.25rem;
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* === CTA Band === */
.cta-band {
  background: var(--teal);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; font-size: 1.05rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-band .btn-group { justify-content: center; }

/* === Values Cards === */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.value-card .v-icon {
  width: 64px;
  height: 64px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.value-card .v-icon svg { width: 30px; height: 30px; stroke: var(--teal); fill: none; }
.value-card h3 { margin-bottom: .5rem; }
.value-card p { color: var(--text-light); font-size: .95rem; margin: 0; }

/* === Resource Cards (Saying Goodbye) === */
.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--teal);
}
.resource-card h3 { margin-bottom: .5rem; }
.resource-card p { color: var(--text-light); margin-bottom: .75rem; font-size: .95rem; }
.resource-card a {
  font-weight: 700;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

/* === Contact Layout === */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.contact-details-box {
  background: var(--grey-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail .cd-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail .cd-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; }
.contact-detail .cd-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--slate-light);
  margin-bottom: .2rem;
  display: block;
}
.contact-detail .cd-value { font-size: .95rem; color: var(--text); }
.contact-detail .cd-value a { color: var(--teal); font-weight: 600; }
.map-embed { margin-top: 1.5rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { display: block; width: 100%; height: 260px; border: 0; }

/* === Hours Table === */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: .5rem 0; font-size: .9rem; white-space: nowrap; }
.hours-table td:first-child { padding-right: 1.25rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--teal-dark); }
.hours-table tr.closed td:last-child { color: var(--slate-light); font-weight: 400; }

/* === Team Section Headings === */
.team-section { margin-bottom: 3rem; }
.team-section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.team-section-label h2 { margin: 0; }
.team-section-label::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border);
}

/* === Common Emergencies List === */
.emergency-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.emergency-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .75rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-size: .9rem;
  color: var(--text);
}
.emergency-list li::before {
  content: '⚠';
  font-size: 1rem;
  flex-shrink: 0;
}

/* === Stats === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item .stat-num {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.stat-item .stat-label {
  font-size: .875rem;
  color: var(--text-light);
  margin-top: .25rem;
}

/* === Privacy / Legal === */
.legal-content h2 { font-size: 1.25rem; margin-top: 2.5rem; margin-bottom: .75rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-light); font-size: .95rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.toc { background: var(--grey-bg); border-radius: var(--radius); padding: 1.5rem 2rem; margin-bottom: 2.5rem; }
.toc h3 { font-size: 1rem; margin-bottom: .75rem; }
.toc ol { padding-left: 1.25rem; display: flex; flex-direction: column; gap: .35rem; }
.toc ol li a { font-size: .9rem; color: var(--teal); }

/* === Gallery Preview Strip (home) === */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
}
.gallery-strip-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery-strip-item:hover img { transform: scale(1.05); }

/* === Footer === */
.site-footer {
  background: var(--slate);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-logo { height: 72px; width: auto; margin-bottom: 1rem; filter: brightness(10); }
.footer-col h3 {
  font-family: 'Lato', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col p { font-size: .875rem; line-height: 1.7; margin-bottom: .75rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--t);
}
.footer-col ul a:hover { color: var(--white); }
.footer-col address p { font-size: .875rem; margin-bottom: .5rem; }
.footer-col address a { color: rgba(255,255,255,0.8); }
.footer-col address a:hover { color: var(--white); }
.footer-hours { display: flex; flex-direction: column; gap: .35rem; }
.footer-hours .fh-row {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: .35rem;
}
.footer-hours .fh-row span:last-child { font-weight: 600; color: var(--white); }
.footer-hours .fh-row.closed span:last-child { color: rgba(255,255,255,0.4); font-weight: 400; }
.social-links { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--t);
}
.social-links a:hover { background: var(--teal); }
.social-links svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,0.5); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--white); }
