/* =====================================================================
   Eternal Shepherd Lutheran Church — Site Stylesheet
   Modernized 2026. Teal palette + warm whites + gold accent.
   ===================================================================== */

/* ------- Design tokens ------- */
:root {
  --teal-900:   #053347;   /* deepest teal */
  --teal-800:   #064058;
  --teal-700:   #074d6b;   /* primary brand */
  --teal-600:   #0a6485;
  --teal-500:   #2b81a3;
  --teal-100:   #e4eef3;   /* pale teal tint */
  --gold:       #d8ae47;   /* warm gold accent */
  --gold-dark:  #b08832;
  --cream:      #faf7f1;   /* warm cream */
  --warm-white: #fbfaf6;   /* page background */
  --gray-900:   #1d242a;
  --gray-700:   #4a5560;
  --gray-500:   #7a8590;
  --gray-300:   #cdd3da;
  --gray-200:   #e7eaee;
  --gray-100:   #f3f5f8;
  --white:      #ffffff;
  --shadow-sm:  0 2px 8px rgba(7,77,107,.07);
  --shadow-md:  0 12px 32px rgba(7,77,107,.10);
  --radius:     12px;
  --radius-sm:  6px;
  --maxw:       1180px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ------- Reset & base ------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-700); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--gold-dark); }
p { margin: 0 0 1em; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--teal-900);
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

hr {
  border: 0;
  height: 1px;
  background: var(--gray-200);
  margin: 2rem 0;
}

.container {
  width: 92%;
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ------- Buttons ------- */
.btn {
  display: inline-block;
  padding: .8em 1.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .02em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  line-height: 1.2;
  text-align: center;
}
.btn-primary {
  background: var(--teal-700);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-800);
  color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--teal-900);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.85);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--teal-900);
}
.btn-ghost {
  background: transparent;
  color: var(--teal-700);
  border-color: var(--teal-700);
}
.btn-ghost:hover {
  background: var(--teal-700);
  color: var(--white);
}
.btn-sm { padding: .55em 1.1em; font-size: .9rem; }

/* ------- Header / Navigation ------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--teal-900);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.15;
}
.brand img { height: 48px; width: 48px; }
.brand-text { display: flex; flex-direction: column; }
.brand-text small {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.brand:hover { color: var(--teal-700); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: .4rem;
  color: var(--teal-900);
}
.nav-toggle svg { width: 28px; height: 28px; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.primary-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: .2rem;
}
.primary-nav a {
  display: block;
  padding: .55rem .9rem;
  color: var(--gray-700);
  font-weight: 500;
  font-size: .96rem;
  border-radius: var(--radius-sm);
}
.primary-nav a:hover,
.primary-nav .has-dropdown:hover > a {
  color: var(--teal-700);
  background: var(--teal-100);
}
.primary-nav .has-dropdown { position: relative; }
.primary-nav .has-dropdown > a::after {
  content: "▾";
  font-size: .65em;
  margin-left: .35em;
  opacity: .6;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: .4rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .18s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  padding: .55rem .8rem;
  font-size: .94rem;
  white-space: nowrap;
}
.give-btn { margin-left: .5rem; }

/* ------- Hero ------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
      135deg,
      rgba(5, 51, 71, .72) 0%,
      rgba(7, 77, 107, .55) 100%
    ),
    url("../images/IMG_7697-min.jpg") center/cover no-repeat;
  color: var(--white);
}
.hero-inner {
  width: 92%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 5rem 0;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .82rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  margin-bottom: .35em;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.hero p.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  max-width: 720px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,.92);
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------- Service times strip ------- */
.service-strip {
  background: var(--cream);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.service-item h4 {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: .5rem;
}
.service-item p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--gray-900);
}
.service-item strong {
  display: block;
  color: var(--teal-900);
  font-size: 1.15rem;
  font-family: var(--font-display);
}

/* ------- Section base ------- */
section { padding: 5rem 0; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .eyebrow {
  display: block;
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: .8rem;
}
.section-head h2 { margin-bottom: .35em; }
.section-head p.lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gray-700);
  font-size: 1.1rem;
}

/* ------- Announcement cards ------- */
.announcements { background: var(--warm-white); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-image {
  aspect-ratio: 16/9;
  background: var(--teal-100);
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card:hover .card-image img { transform: scale(1.04); }
.card-body {
  padding: 1.5rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: .5em;
}
.card-body p {
  color: var(--gray-700);
  flex: 1;
  margin-bottom: 1.2em;
}
.card-link {
  font-weight: 600;
  color: var(--teal-700);
  align-self: flex-start;
}
.card-link::after {
  content: " →";
  transition: transform .15s ease;
  display: inline-block;
}
.card-link:hover::after { transform: translateX(3px); }

/* ------- Two-column feature ------- */
.feature-split {
  background: var(--teal-900);
  color: var(--white);
  position: relative;
  padding: 0;
  overflow: hidden;
}
.feature-split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.feature-split .feature-text {
  padding: 5rem 3rem 5rem 0;
}
.feature-split .feature-text h2 {
  color: var(--white);
}
.feature-split .feature-text p { color: rgba(255,255,255,.86); }
.feature-split .feature-img {
  background: url("../images/girl_viewfinder.jpg") center/cover no-repeat;
  min-height: 420px;
  margin-right: -15vw;
  padding-right: 20vw;
}
.feature-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ------- Quick connect (digital resources) ------- */
.quick-connect {
  background: var(--cream);
  text-align: center;
}
.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.connect-tile {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  text-align: center;
  transition: all .18s ease;
  color: var(--gray-900);
  display: block;
}
.connect-tile:hover {
  border-color: var(--teal-500);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  color: var(--teal-700);
}
.connect-tile .icon {
  font-size: 2rem;
  margin-bottom: .6rem;
  color: var(--teal-700);
}
.connect-tile h4 {
  margin-bottom: .25em;
  font-size: 1.05rem;
  color: var(--teal-900);
}
.connect-tile p {
  margin: 0;
  font-size: .9rem;
  color: var(--gray-500);
}

/* ------- Sub-page hero ------- */
.page-hero {
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-600) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: .3em;
}
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255,255,255,.86);
  font-size: 1.1rem;
}
.page-hero.with-image {
  background: linear-gradient(135deg, rgba(7,77,107,.78), rgba(5,51,71,.78)),
              var(--hero-image, none) center/cover no-repeat;
}

/* Breadcrumb-ish trail */
.crumb {
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* ------- Content layout ------- */
.content {
  padding: 4rem 0;
}
.content-narrow {
  max-width: 760px;
  margin: 0 auto;
}
.content h2 { margin-top: 2.2rem; }
.content h3 { margin-top: 1.6rem; }
.content ul, .content ol { line-height: 1.75; }

.content-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.sidecard {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.sidecard h3 {
  margin-top: 0;
  font-size: 1.15rem;
  color: var(--teal-700);
}

/* ------- Photo grids (replaces carousels) ------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.photo-grid figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4/3;
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.photo-grid figure:hover img { transform: scale(1.06); }
.photo-grid.large {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.photo-grid figure.spotlight {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.feature-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 1.5rem 0;
}

.gallery-block { margin-bottom: 3.5rem; }
.gallery-block h2 { margin-bottom: .35em; }
.gallery-block > p { color: var(--gray-700); margin-bottom: 1.5rem; }
.gallery-block:last-of-type { margin-bottom: 0; }

/* ------- Info pills (Lutheranism pillars) ------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.pillar {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 1.6rem 1.6rem 1.4rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.pillar h3 {
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .95rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: .7em;
}
.pillar p { margin: 0; color: var(--gray-700); }

/* ------- Map page ------- */
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: start;
}
.map-grid iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
address {
  font-style: normal;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ------- Footer ------- */
.site-footer {
  background: var(--teal-900);
  color: rgba(255,255,255,.78);
  padding: 4.5rem 0 1.5rem;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.site-footer h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}
.site-footer h5::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-top: .6rem;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 2;
}
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,.7); margin: 0 0 1rem; }
.socials { display: flex; gap: .6rem; margin-top: 1rem; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--white);
}
.socials a:hover { background: var(--gold); color: var(--teal-900); }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.footer-search form {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
}
.footer-search input[type="text"] {
  flex: 1;
  padding: .55rem .8rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font: inherit;
  font-size: .9rem;
}
.footer-search input[type="text"]::placeholder { color: rgba(255,255,255,.45); }
.footer-search button {
  background: var(--gold);
  color: var(--teal-900);
  border: 0;
  padding: 0 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
}

/* ------- Comfort Dog Team 2 — roadmap, roles, callout, videos, form ------- */

/* Hero — soft paw-print backdrop instead of a single photo */
.page-hero.dog2-hero {
  background:
    linear-gradient(135deg, rgba(7,77,107,.88), rgba(5,51,71,.88)),
    var(--hero-image, none) center/420px repeat;
}

/* k-9.php → dog2 promo strip */
.team2-promo {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-600));
  color: #fff;
  padding: 1.8rem 1.8rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.team2-promo h3 { color: #fff; margin: 0 0 .35em; font-size: 1.2rem; }
.team2-promo p { color: rgba(255,255,255,.88); margin: 0; }
.team2-promo .btn { flex-shrink: 0; }

/* Roadmap (Next Steps) */
.roadmap {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
  counter-reset: rstep;
  max-width: 880px;
  margin: 0 auto;
}
.roadmap-step {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem 1.4rem;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.4rem;
  align-items: start;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-left: 4px solid var(--gray-300);
}
.roadmap-step.status-done       { border-left-color: var(--gold); }
.roadmap-step.status-in-progress { border-left-color: var(--teal-500); }
.roadmap-step.status-upcoming   { border-left-color: var(--gray-300); }

.roadmap-step .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}
.roadmap-step.status-done .step-num       { background: var(--gold); color: var(--teal-900); }
.roadmap-step.status-in-progress .step-num { background: var(--teal-700); color: #fff; }

.roadmap-step h3 {
  margin: 0 0 .35em;
  font-size: 1.15rem;
  color: var(--teal-900);
}
.roadmap-step .step-body p {
  margin: 0 0 .8rem;
  color: var(--gray-700);
}
.step-badge {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .35em .8em;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-700);
}
.roadmap-step.status-done .step-badge       { background: var(--gold); color: var(--teal-900); }
.roadmap-step.status-in-progress .step-badge { background: var(--teal-100); color: var(--teal-700); }

/* Role cards — Caregiver / Handler */
.role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}
.role-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.role-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.role-card h3 {
  color: var(--teal-700);
  font-size: 1.5rem;
  margin: 0 0 .6em;
}
.role-card .role-icon {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.role-card .role-icon img {
  max-height: 100%;
  width: auto;
}
.role-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--gray-700);
  line-height: 1.8;
}

/* Military / First Responder callout */
.callout-banner {
  position: relative;
  background:
    linear-gradient(135deg, rgba(7,77,107,.92), rgba(5,51,71,.88)),
    var(--callout-image, none) center/cover no-repeat;
  color: #fff;
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8rem;
  align-items: center;
  overflow: hidden;
}
.callout-banner h3 { color: #fff; margin: 0 0 .35em; }
.callout-banner p { color: rgba(255,255,255,.92); margin: 0; }
.callout-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.callout-icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  padding: 6px;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.video-tile {
  margin: 0;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  overflow: hidden;
}
.video-tile video,
.video-tile .video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  background: rgba(0,0,0,.4);
}
.video-tile .video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  gap: .6rem;
}
.video-tile .video-placeholder svg {
  width: 48px;
  height: 48px;
}
.video-tile .video-placeholder span {
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.video-tile figcaption {
  padding: 1rem 1.2rem;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}

/* Photo placeholder tiles (used on dog2.php gallery before photos are added) */
.team2-photo-grid .photo-placeholder-tile {
  background: var(--teal-100);
  border: 2px dashed var(--teal-500);
}
.team2-photo-grid .photo-placeholder-tile .photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  color: var(--teal-700);
}
.team2-photo-grid .photo-placeholder-tile svg {
  width: 42px;
  height: 42px;
  opacity: .55;
}
.team2-photo-grid .photo-placeholder-tile span {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .8;
}

/* Contact form */
.team2-form {
  margin-top: 1rem;
  position: relative;
}
.team2-form .form-row {
  margin-bottom: 1.1rem;
}
.team2-form label {
  display: block;
  font-weight: 600;
  font-size: .95rem;
  color: var(--teal-900);
  margin-bottom: .35rem;
}
.team2-form .req { color: var(--gold-dark); }
.team2-form input,
.team2-form textarea {
  width: 100%;
  padding: .7rem .9rem;
  font: inherit;
  font-size: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.team2-form input:focus,
.team2-form textarea:focus {
  outline: 0;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(43,129,163,.18);
}
.team2-form textarea { resize: vertical; min-height: 120px; }
.team2-form button { margin-top: .6rem; }

.form-success,
.form-error {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.4rem;
  font-size: .98rem;
}
.form-success {
  background: #e7f4e9;
  border-left: 4px solid #3a8a4a;
  color: #1e4d28;
}
.form-error {
  background: #fbe8e6;
  border-left: 4px solid #c0392b;
  color: #6b1c14;
}

/* Responsive */
@media (max-width: 720px) {
  .roadmap-step {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    padding: 1.2rem;
  }
  .roadmap-step .step-num {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  .role-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .callout-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.8rem 1.4rem;
  }
  .callout-icons { justify-content: center; }
  .team2-promo { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ------- Tables / generic content ------- */
.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.content th, .content td {
  padding: .7rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}
.content th {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--teal-900);
  background: var(--cream);
}

/* ------- Utility ------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }

/* ===================================================================
   Responsive
   =================================================================== */

@media (max-width: 960px) {
  .feature-split .container {
    grid-template-columns: 1fr;
  }
  .feature-split .feature-text {
    padding: 4rem 0 2rem;
  }
  .feature-split .feature-img {
    min-height: 280px;
    margin-right: 0;
    padding-right: 0;
    grid-row: 1;
  }
  .map-grid {
    grid-template-columns: 1fr;
  }
  .content-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  section { padding: 3.5rem 0; }
  .hero { min-height: 66vh; }
  .hero-inner { padding: 4rem 0; }
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
  }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .primary-nav a {
    padding: .9rem 1rem;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
  }
  .primary-nav .has-dropdown > a::after { content: ""; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: var(--gray-100);
    padding: 0;
  }
  .dropdown a {
    padding-left: 2.2rem;
    font-size: .95rem;
  }
  .give-btn { margin: .8rem 1rem; text-align: center; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta .btn { width: 100%; }
}

/* ===================================================================
   Seasonal services (Easter / Christmas)
   ===================================================================
   - Banner up top: optional image + overlay + title/verse
   - Grid of service cards below grouped by date
   - Two variants: .seasonal-easter (gold-forward) and .seasonal-christmas (teal-deep)
*/
.seasonal { overflow: hidden; }
.seasonal-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 4.5rem 1.5rem;
  background:
    linear-gradient(135deg, rgba(7,77,107,.68), rgba(5,51,71,.55)),
    var(--banner-image, linear-gradient(135deg, #074d6b, #053347)) center/cover no-repeat;
}
.seasonal-banner > * { position: relative; }
.seasonal-banner .crumb { color: var(--gold); margin-bottom: .8rem; }
.seasonal-banner h2 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: .35em;
  text-shadow: 0 2px 16px rgba(0,0,0,.28);
}
.seasonal-banner .verse {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,.94);
}
.seasonal-body { padding: 4rem 0; background: #ffffff; }
.seasonal-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--gray-700);
  font-size: 1.05rem;
}
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}
.seasonal-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem 1.2rem;
  box-shadow: 0 4px 14px rgba(7,77,107,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.seasonal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(7,77,107,.10);
}
.seasonal-card .card-date {
  font-family: var(--font-body);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-700);
  margin-bottom: .9rem;
  display: block;
}
.seasonal-card .svc-line {
  padding: .6rem 0;
  border-bottom: 1px dashed var(--gray-200);
}
.seasonal-card .svc-line:last-child { border-bottom: 0; padding-bottom: 0; }
.seasonal-card .svc-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal-900);
  font-size: 1.05rem;
  display: block;
  margin-bottom: .1em;
}
.seasonal-card .svc-time {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: .95rem;
}
.seasonal-card .svc-note {
  display: block;
  color: var(--gray-700);
  font-size: .88rem;
  margin-top: .15em;
  font-style: italic;
}

/* Easter — warmer, gold-forward overlay */
.seasonal-easter .seasonal-banner {
  background:
    linear-gradient(135deg, rgba(176,136,50,.55), rgba(7,77,107,.65)),
    var(--banner-image, linear-gradient(135deg, #b08832, #074d6b)) center/cover no-repeat;
}
.seasonal-easter .seasonal-card { border-top-color: var(--gold); }

/* Christmas — deep teal-forward overlay */
.seasonal-christmas .seasonal-banner {
  background:
    linear-gradient(135deg, rgba(5,51,71,.78), rgba(7,77,107,.62)),
    var(--banner-image, linear-gradient(135deg, #053347, #074d6b)) center/cover no-repeat;
}
.seasonal-christmas .seasonal-card { border-top-color: #1f6f4a; }
.seasonal-christmas .seasonal-card .card-date { color: #1f6f4a; }

/* ------- Print ------- */
@media print {
  .site-header, .site-footer, .hero-cta, .nav-toggle { display: none !important; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}
