/* ==========================================================================
   Cleary Lake Veterinary Hospital — site styles
   Layout language modeled on rhinebeckequine.com; colors from the CLVH
   practice brochure:
     deep green  #1c803f   sage green #82bb8a
     deep blue   #35549a   steel blue #6881b5   light blue #809cce
   ========================================================================== */

:root {
  --green: #1c803f;
  --green-dark: #14602f;
  --sage: #82bb8a;
  --sage-tint: #eef5ef;
  --blue: #35549a;
  --blue-mid: #6881b5;
  --blue-light: #809cce;
  --blue-tint: #eff2f8;
  --ink: #333333;
  --ink-soft: #5a5a5a;
  --paper: #ffffff;
  --gray-bg: #f4f4f4;
  --radius: 10px;
  --site-max: 1500px;
  --content-max: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', -apple-system, sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- type ---------- */

h1, h2, h3, h4 { font-weight: 100; line-height: 1.15; }
h1 { font-size: clamp(42px, 6vw, 64px); }
h2 { font-size: clamp(30px, 4vw, 42px); }
h3 { font-size: clamp(24px, 3vw, 30px); }
h4 { font-size: 22px; font-weight: 300; }

.eyebrow {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
}

/* ---------- brand pinstripe band (from the brochure) ---------- */

.pinstripe {
  height: 26px;
  border-top: 5px solid var(--sage);
  border-bottom: 5px solid var(--sage);
  background:
    repeating-linear-gradient(90deg,
      var(--blue-light) 0 6px,
      var(--blue-mid) 6px 8px);
  box-shadow: inset 0 3px 0 var(--paper), inset 0 -3px 0 var(--paper);
}

.pinstripe--thin { height: 18px; border-top-width: 4px; border-bottom-width: 4px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 15px 26px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.btn:hover { background: var(--blue); color: #fff; text-decoration: none; }

.btn--solid { background: var(--green); border-color: var(--green); color: #fff; }
.btn--solid:hover { background: var(--green-dark); border-color: var(--green-dark); }

.btn--green { border-color: var(--green); color: var(--green); }
.btn--green:hover { background: var(--green); color: #fff; }

.btn--white { border-color: #fff; color: #fff; }
.btn--white:hover { background: #fff; color: var(--ink); }

/* ---------- announcement bar ---------- */

.announce {
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  padding: 9px 16px;
}
.announce a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.announce strong { font-weight: 500; }

/* ---------- header ---------- */

.site-header {
  background: var(--paper);
}
.site-header__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 16px 4vw 14px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-header__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
/* fixed logo size — never scales with the viewport */
.site-header__logo img { height: 90px; width: auto; max-width: none; flex-shrink: 0; }

.site-nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  column-gap: 26px;
  row-gap: 4px;
}
.site-nav a {
  color: var(--ink);
  font-size: 18px;
  font-weight: 300;
  padding: 4px 0;
  white-space: nowrap;
}
.site-nav a:hover { text-decoration: none; color: var(--green); }
.site-nav a.is-active {
  border-bottom: 1px solid var(--ink);
}

/* dropdowns */
.nav-item { position: relative; }
.nav-item .chev { font-size: 12px; color: #999; position: relative; top: -3px; }
.nav-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: -18px;
  z-index: 60;
  min-width: 250px;
  background: var(--paper);
  border: 1px solid #e6e6e6;
  border-top: 3px solid var(--green);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  padding: 12px 0;
}
.nav-item:hover .nav-drop,
.nav-item:focus-within .nav-drop { display: block; }
.nav-drop a {
  display: block;
  padding: 9px 22px;
  font-size: 17px;
  white-space: nowrap;
}
.nav-drop a:hover { background: var(--sage-tint); }
.nav-drop a.is-active { border-bottom: none; color: var(--green); }

/* header controls share one fixed size, independent of logo and viewport */
.site-header__cta,
.mode-switch a {
  padding: 11px 16px;
  font-size: 13.5px;
  line-height: 1.2;
}
.site-header__cta { white-space: nowrap; }

/* mode switcher — standardized on the .btn language */
.mode-switch {
  display: inline-flex;
  flex-shrink: 0;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.mode-switch a {
  color: var(--blue);
  white-space: nowrap;
}
.mode-switch a:hover { text-decoration: none; background: var(--blue-tint); }
.mode-switch a.is-on {
  background: var(--blue);
  color: #fff;
}
.mode-switch a.is-on:hover { background: var(--blue); }

/* mobile nav */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 980px) {
  .site-header__inner { position: relative; flex-wrap: wrap; gap: 14px; justify-content: center; }
  .site-header__logo img { height: 85px; }
  .site-header__brand { gap: 8px; align-items: center; margin: 0 auto; }
  .nav-toggle { display: block; position: absolute; right: 4vw; top: 30px; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding-top: 8px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { font-size: 20px; padding: 8px 0; }
  .site-header__cta { display: none; }
  .nav-item { width: 100%; }
  .nav-item .chev { display: none; }
  .nav-drop {
    display: block;
    position: static;
    border: none;
    box-shadow: none;
    padding: 0 0 4px 18px;
    min-width: 0;
  }
  .nav-drop a { font-size: 17px; padding: 6px 0; color: var(--ink-soft); }
  .nav-drop a:hover { background: none; }
}

/* ---------- Signature components (Option 1 language) ---------- */

/* vertical pinstripe rail — ONE definition, shared by the internal-page
   rail and the gate page's hover strip so they are always identical */
.sig-rail,
.gate__choice::after {
  /* border-box explicitly: the `*` reset does not reach pseudo-elements,
     which made the gate strip render wider than the rail */
  box-sizing: border-box;
  width: 22px;
  border-left: 5px solid var(--sage);
  border-right: 5px solid var(--sage);
  background: repeating-linear-gradient(180deg, var(--blue-light) 0 6px, var(--blue-mid) 6px 8px);
  box-shadow: inset 3px 0 0 #fff, inset -3px 0 0 #fff;
}
.sig-rail {
  position: fixed;
  top: 0; bottom: 0; left: 0;
  z-index: 40;
}
body.has-rail { padding-left: 22px; }

/* editorial split hero — headline stays in its own column, no overlap */
.sig-hero {
  display: grid;
  grid-template-columns: 6fr 5fr;
  align-items: center;
  gap: 56px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 64px 4vw 84px;
}
.sig-hero__text .eyebrow { letter-spacing: 4px; }
.sig-hero__text h1 {
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 1.02;
  margin: 14px 0 26px;
}
.sig-hero__text h1 em { font-style: normal; color: var(--green); }
.sig-hero__text p { max-width: 460px; color: var(--ink-soft); }
.sig-hero__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.sig-hero__photo { position: relative; }
.sig-hero__photo .ph {
  display: block;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 999px 999px 12px 12px;
}
.sig-hero__photo::after {
  content: "";
  position: absolute;
  right: -16px; top: 26px; bottom: -26px; left: 26px;
  background: var(--blue);
  border-radius: 999px 999px 12px 12px;
  z-index: -1;
}

/* ghost-numeral tiles */
.sig-tiles {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 4vw 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.sig-tile { position: relative; padding: 38px 6px 0; border-top: 1px solid #e2e2e2; }
.sig-tile .num {
  position: absolute;
  top: -14px; right: 0;
  font-size: 120px;
  font-weight: 100;
  color: var(--sage-tint);
  line-height: .8;
  z-index: 0;
}
.sig-tile h3 { font-size: 32px; font-weight: 100; color: var(--blue); position: relative; }
.sig-tile p { font-size: 16.5px; color: var(--ink-soft); margin-top: 10px; position: relative; }
.sig-tile a.more {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* editorial welcome — big thin heading over a hairline, offset copy.
   Vertical rhythm: white sections carry 40px top/bottom, so any two
   adjacent white sections sit exactly 80px apart. */
.sig-welcome {
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px 4vw;
}
.sig-welcome > h2 {
  font-size: clamp(34px, 3.6vw, 52px);
  padding-bottom: 26px;
  border-bottom: 1px solid #e2e2e2;
}
.sig-welcome__body {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.sig-welcome__body p { color: var(--ink-soft); }
.sig-welcome .btn { margin-top: 30px; }

/* staggered reviews on sage (extra bottom clears the translateY stagger) */
.sig-reviews { background: var(--sage-tint); padding: 64px 4vw 96px; }
.sig-reviews__intro { max-width: 860px; margin: 0 auto; text-align: center; }
.sig-reviews__intro h2 { font-size: clamp(36px, 4vw, 54px); }
.sig-reviews__intro p { margin-top: 16px; color: var(--ink-soft); font-size: 17.5px; }
.sig-reviews__grid {
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.sig-reviews__grid .review:nth-child(3n+2) { transform: translateY(34px); }
.sig-reviews__grid .review:nth-child(3n) { transform: translateY(-14px); }

/* editorial internal-page head: crumb, big title over hairline, arch photo right */
.sig-page-head {
  max-width: 1500px;
  margin: 0 auto;
  padding: 44px 4vw 40px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}
.sig-page-head__photo { order: -1; }
.sig-page-head__text .crumb {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.sig-page-head__text .crumb a { color: var(--green); }
.sig-page-head__text h1 {
  font-size: clamp(40px, 4.8vw, 72px);
  margin-top: 12px;
  padding-bottom: 26px;
  border-bottom: 1px solid #e2e2e2;
}
.sig-page-head__text .intro { margin-top: 26px; }
.sig-page-head__text .intro p { color: var(--ink-soft); }
.sig-page-head__text .intro p + p { margin-top: 14px; }
.sig-page-head__photo { position: relative; }
.sig-page-head__photo .ph {
  display: block;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 999px 999px 12px 12px;
}
.sig-page-head__photo::after {
  content: "";
  position: absolute;
  left: -12px; top: 20px; bottom: -20px; right: 20px;
  background: var(--blue);
  border-radius: 999px 999px 12px 12px;
  z-index: -1;
}
@media (max-width: 900px) {
  .sig-page-head { grid-template-columns: 1fr; gap: 40px; padding-top: 30px; }
  .sig-page-head__photo { order: 0; width: min(300px, 72vw); margin: 0 auto; }
}
@media (max-width: 760px) {
  .sig-page-head__text h1 { font-size: 36px; }
}

/* paired wide-arch photos (logo-style arches) */
.sig-duo {
  max-width: 1100px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.sig-duo .ph {
  display: block;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 999px 999px 12px 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}
@media (max-width: 760px) {
  .sig-duo { grid-template-columns: 1fr; gap: 30px; max-width: 420px; }
}

/* editorial footer */
.sig-foot { background: var(--paper); }
.sig-foot { border-top: 1px solid #e2e2e2; }
.sig-foot__main {
  max-width: 1500px;
  margin: 0 auto;
  padding: 48px 4vw;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.sig-foot__brand img.f-logo { height: 74px; width: auto; }
.sig-foot__brand p { margin-top: 16px; font-size: 15.5px; color: var(--ink-soft); max-width: 300px; }
.sig-foot__brand .assoc { margin-top: 22px; }
.sig-foot__brand .assoc img { height: 46px; width: auto; }
.sig-foot h4 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.sig-foot__visit p { font-size: 16.5px; color: var(--ink-soft); line-height: 1.7; }
.sig-foot__visit p + p { margin-top: 12px; }
.sig-foot__visit a { color: var(--ink); }
.sig-foot__cta h3 {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 100;
  line-height: 1.15;
}
.sig-foot__cta h3 em { font-style: normal; color: var(--green); }
.sig-foot__cta-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sig-foot__cta-actions .btn { padding: 12px 18px; font-size: 13.5px; }
.sig-foot .social-row { justify-content: flex-start; margin-top: 20px; }
.sig-foot .social-row a { color: var(--green); opacity: 1; }
.sig-foot .social-row a:hover { color: var(--green-dark); }
.sig-foot__bottom {
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: 14.5px;
  font-weight: 300;
  padding: 16px 4vw;
}
.sig-foot__bottom .credit { font-size: 13px; opacity: .8; }
.sig-foot__bottom a { color: #fff; }

@media (max-width: 980px) {
  .sig-hero { grid-template-columns: 1fr; gap: 40px; padding-top: 44px; padding-bottom: 64px; }
  .sig-hero__photo { width: min(440px, 100%); margin: 0 auto; }
  .sig-hero__photo::after { right: -10px; top: 18px; bottom: -18px; left: 18px; }
  .sig-tiles { grid-template-columns: 1fr; gap: 10px; padding-bottom: 32px; }
  .sig-tile { padding-top: 30px; }
  .sig-tile .num { font-size: 88px; top: -6px; }
  .sig-welcome { padding: 32px 5vw; }
  .sig-welcome__body { grid-template-columns: 1fr; gap: 16px; }
  .sig-reviews { padding: 48px 5vw 56px; }
  .sig-reviews__grid { grid-template-columns: 1fr; }
  .sig-reviews__grid .review { transform: none !important; }
  .sig-foot__main { grid-template-columns: 1fr; gap: 36px; padding: 40px 5vw 36px; }
}
@media (max-width: 760px) {
  .sig-rail { width: 12px; border-left-width: 3px; border-right-width: 3px; box-shadow: inset 2px 0 0 #fff, inset -2px 0 0 #fff; }
  body.has-rail { padding-left: 12px; }
  .sig-hero__text h1 { font-size: 40px; }
  .sig-hero__actions .btn { padding: 12px 17px; font-size: 13.5px; }
  .sig-tile h3 { font-size: 27px; }
}

/* ---------- Arch & Field components (Option 2 language) ---------- */

/* green field with a pinstripe crown along its top edge */
.arch-hero {
  position: relative;
  background: var(--green);
  color: #fff;
  padding: 64px 4vw 0;
}
.arch-hero::before,
.arch-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 14px;
  border-top: 4px solid var(--sage);
  border-bottom: 4px solid var(--sage);
  background: repeating-linear-gradient(90deg, var(--blue-light) 0 6px, var(--blue-mid) 6px 8px);
}
.arch-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
}
.arch-hero__text { padding: 26px 0 70px; }
.arch-hero__text .eyebrow { color: #cfe6cf; }
.arch-hero__text h1 { color: #fff; font-size: clamp(42px, 5vw, 68px); margin: 12px 0 20px; }
.arch-hero__text p { color: #e4f0e4; max-width: 460px; }
.arch-hero__actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.arch-hero__actions .btn { border-color: #fff; color: #fff; }
.arch-hero__actions .btn:hover { background: #fff; color: var(--green); }
.arch-hero__photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 999px 999px 0 0;
  border: 6px solid #fff;
  border-bottom: none;
}
@media (max-width: 900px) {
  .arch-hero__inner { grid-template-columns: 1fr; gap: 0; }
  .arch-hero__text { padding-bottom: 44px; }
  .arch-hero__photo { width: min(340px, 78vw); margin: 0 auto; aspect-ratio: 4 / 4.4; }
}
@media (max-width: 760px) {
  .arch-hero { padding-top: 48px; }
  .arch-hero__text h1 { font-size: 34px; }
  .arch-hero__text .eyebrow { font-size: 13px; letter-spacing: 2px; }
  .arch-hero__actions { margin-top: 24px; gap: 10px; }
  .arch-hero__actions .btn { padding: 12px 17px; font-size: 13.5px; }
  .arch-card h3 { font-size: 25px; }
  .arch-quote { padding: 52px 6vw; }
  .arch-cta { padding: 54px 5vw 48px; }
}

/* arch-top photo cards */
.arch-cards { background: var(--sage-tint); padding: 76px 4vw 84px; }
.arch-cards h2 { text-align: center; }
.arch-cards__grid {
  max-width: 1100px;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}
.arch-card { text-align: center; color: var(--ink); }
.arch-card:hover { text-decoration: none; }
.arch-card .ph {
  display: block;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  border-radius: 999px 999px 12px 12px;
  border: 5px solid #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  transition: transform .2s;
}
.arch-card:hover .ph { transform: translateY(-6px); }
.arch-card h3 { margin-top: 18px; font-size: 28px; font-weight: 100; color: var(--green); }
.arch-card p { font-size: 15.5px; color: var(--ink-soft); margin-top: 6px; }
@media (max-width: 900px) {
  .arch-cards__grid { grid-template-columns: 1fr; max-width: 360px; gap: 44px; }
}

/* full-width featured quote band */
.arch-quote { background: var(--blue); color: #fff; text-align: center; padding: 64px 5vw; }
.arch-quote blockquote {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 100;
  line-height: 1.4;
}
.arch-quote .who {
  margin-top: 16px;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: #c9d6ee;
}

/* green CTA field with pinstripe crown */
.arch-cta {
  position: relative;
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 66px 5vw 58px;
}
.arch-cta h2 { color: #fff; }
.arch-cta p { margin: 12px auto 0; max-width: 720px; color: #e4f0e4; }
.arch-cta .hero__actions { margin-top: 26px; justify-content: center; }
.arch-cta .btn { border-color: #fff; color: #fff; }
.arch-cta .btn:hover { background: #fff; color: var(--green); }

/* chromeless quick-link photo cards with pinstripe hover reveal */
.qcards {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.qcard { color: var(--ink); }
.qcard:hover { text-decoration: none; }
.qcard__img {
  display: block;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.qcard .qbar {
  display: block;
  height: 12px;
  border-top: 3px solid var(--sage);
  border-bottom: 3px solid var(--sage);
  background: repeating-linear-gradient(90deg, var(--blue-light) 0 6px, var(--blue-mid) 6px 8px);
  opacity: 0;
  transition: opacity .18s;
}
.qcard:hover .qbar { opacity: 1; }
.qcard h3 {
  text-align: center;
  color: var(--blue);
  margin-top: 14px;
  font-size: clamp(24px, 2.6vw, 30px);
}
.qcard:hover h3 { color: var(--green); }

/* ---------- hero / page banner ---------- */

.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,15,.62) 0%, rgba(10,25,15,.12) 55%, rgba(10,25,15,.02) 100%);
}
.hero__content {
  position: relative;
  width: 100%;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 70px 4vw 50px;
}
.hero__content .eyebrow { color: #d9ecd9; }
.hero__content h1 { color: #fff; margin-top: 8px; }
.hero__content p {
  margin-top: 12px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  max-width: 640px;
}
.hero__actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 760px) {
  .hero { min-height: 54vh; }
  .hero::before {
    background: linear-gradient(to top, rgba(10,25,15,.78) 0%, rgba(10,25,15,.45) 62%, rgba(10,25,15,.12) 100%);
  }
  .hero__content { padding-bottom: 34px; }
  .hero__content h1, .hero__content p, .hero__content .eyebrow {
    text-shadow: 0 1px 14px rgba(0,0,0,.55);
  }
  .hero__content h1 { font-size: 34px; }
  .hero__content p { font-size: 17px; margin-top: 8px; }
  .hero__content .eyebrow { font-size: 13px; letter-spacing: 2px; }
  .hero__actions { margin-top: 20px; gap: 10px; }
  .hero__actions .btn { padding: 12px 17px; font-size: 13.5px; }
}

.banner { min-height: 40vh; }
.banner--short { min-height: 28vh; }

/* ---------- breadcrumb ---------- */

.crumbs {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 22px 5vw 0;
  font-size: 15px;
  color: var(--ink-soft);
}
.crumbs a { color: var(--ink-soft); }
.crumbs span { color: var(--ink); }

/* ---------- sections ---------- */

.section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 64px 5vw;
}
.section--wide { max-width: var(--site-max); }
.section--center { text-align: center; }
.section--tight { padding-top: 36px; }

.section h2 + p, .section h1 + p { margin-top: 18px; }
.section p + p { margin-top: 16px; }
.section h2 + .cols, .section p + .cols { margin-top: 36px; }

.band { background: var(--sage-tint); }
.band--blue { background: var(--blue-tint); }
.band--green { background: var(--green); color: #fff; }
.band--green h2, .band--green h3 { color: #fff; }

.lead { font-size: clamp(20px, 2.2vw, 25px); font-weight: 300; }

/* ---------- card grids ---------- */

.cols {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  border: 1px solid #e4e4e4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .18s;
}
.card:hover { box-shadow: 0 10px 28px rgba(0,0,0,.10); transform: translateY(-2px); }
.card__img { height: 210px; background-size: cover; background-position: center; }
.card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.card__body h3 { color: var(--green); }
.card__body p { font-size: 17px; }
.card__body .btn { margin-top: auto; align-self: flex-start; padding: 11px 20px; font-size: 14px; }
a.card { color: inherit; }
a.card:hover { text-decoration: none; }

/* service link list (Rhinebeck-style tall light links) */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 6px 40px;
  margin-top: 30px;
}
.service-list a, .service-list span {
  display: block;
  font-size: clamp(21px, 2.2vw, 26px);
  font-weight: 100;
  color: var(--blue);
  padding: 10px 0;
  border-bottom: 1px solid #e8e8e8;
}
.service-list a:hover { color: var(--green); text-decoration: none; }

/* definition-style service blocks */
.service-block { padding: 26px 0; border-bottom: 1px solid #e8e8e8; }
.service-block:last-child { border-bottom: none; }
.service-block h3 { color: var(--green); margin-bottom: 8px; }
.service-block p { font-size: 17.5px; }

/* ---------- team ---------- */

.person { padding: 34px 0; border-bottom: 1px solid #e8e8e8; }
.person:last-child { border-bottom: none; }
.person h3 { color: var(--green); }
.person .role {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 6px 0 12px;
}
.person p { font-size: 17.5px; }
.person p + p { margin-top: 12px; }

/* ---------- info strip (emergency / contact CTA) ---------- */

.cta-strip {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 52px 5vw;
}
.cta-strip h2 { color: #fff; }
.cta-strip p { margin: 12px auto 0; max-width: 720px; }
.cta-strip .hero__actions { margin-top: 26px; justify-content: center; }

/* ---------- tables (hours etc.) ---------- */

.info-table { width: 100%; max-width: 460px; border-collapse: collapse; margin-top: 18px; }
.info-table td { padding: 9px 0; border-bottom: 1px solid #e8e8e8; font-size: 17.5px; }
.info-table td:last-child { text-align: right; }

/* ---------- gate (animal-type selector) ---------- */

.gate {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.gate__head {
  text-align: center;
  padding: 34px 5vw 26px;
}
.gate__head img { height: 97px; width: auto; max-width: none; margin: 0 auto 14px; }
.gate__head p { color: var(--ink-soft); font-size: 18px; }
.gate__head h1 { font-size: clamp(28px, 3.4vw, 40px); margin-top: 4px; }
.gate__choices {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 56vh;
}
.gate__choice {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 48px 24px;
  overflow: hidden;
}
.gate__choice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,15,.72) 0%, rgba(10,25,15,.18) 55%, rgba(10,25,15,.05) 100%);
  transition: background .25s;
}
.gate__choice:hover { text-decoration: none; }
/* hover: the shared brand rail (see .sig-rail definition) rises along the
   photo's left edge; the dark scrim is untouched so text behavior is unchanged */
.gate__choice::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  opacity: 0;
  transition: opacity .2s;
}
.gate__choice:hover::after { opacity: 1; }
.gate__label { position: relative; text-align: center; }
.gate__label .eyebrow { color: #d9ecd9; }
.gate__label h2 {
  color: #fff;
  font-size: clamp(34px, 4.4vw, 56px);
  margin-top: 6px;
}
.gate__label .go {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;
  border: 1px solid #fff;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.gate__choice:hover .go {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.gate__foot {
  text-align: center;
  padding: 24px 5vw 24px;
  font-size: 15.5px;
  color: var(--ink-soft);
}
.gate__foot a { color: var(--blue); }

@media (max-width: 760px) {
  .gate__choices { grid-template-columns: 1fr; }
  .gate__choice { min-height: 44vh; padding: 30px 20px; }
  .gate__label h2, .gate__label .eyebrow { text-shadow: 0 1px 14px rgba(0,0,0,.55); }
}

/* social icon row (footer) */
.social-row {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  justify-content: center;
}
.social-row a { color: #fff; opacity: .85; }
.social-row a:hover { opacity: 1; }
.social-row svg { width: 22px; height: 22px; }


/* ---------- reviews ---------- */

.review {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid #e4e4e4;
  padding: 26px;
  font-size: 17px;
}
.review .stars { color: #e9a825; letter-spacing: 3px; font-size: 15px; }
.review p { margin-top: 10px; }
.review .who { margin-top: 12px; font-weight: 500; font-size: 15px; color: var(--ink-soft); }

/* ---------- resources link lists ---------- */

.link-list { list-style: none; margin-top: 14px; }
.link-list li { padding: 7px 0; border-bottom: 1px solid #eee; font-size: 17.5px; }
.link-list li:last-child { border-bottom: none; }

/* ---------- gallery ---------- */

.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin-top: 26px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---------- contact form ---------- */

.form-grid { display: grid; gap: 18px; margin-top: 26px; }
.form-grid label { font-size: 15px; font-weight: 500; letter-spacing: .5px; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: 6px; }
.form-grid input, .form-grid textarea {
  width: 100%;
  font: inherit;
  font-size: 17px;
  padding: 13px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fafafa;
}
.form-grid input:focus, .form-grid textarea:focus { outline: 2px solid var(--sage); border-color: var(--sage); }
.form-grid textarea { min-height: 140px; resize: vertical; }

/* ---------- upgrade notice pop-up ---------- */

.notice-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 26, 19, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: notice-fade .2s ease-out;
}
.notice-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  animation: notice-rise .25s ease-out;
}
/* stripes on top and left, composed like the internal pages: the vertical
   rail owns the full left edge and the top band starts at its right edge */
.notice-card__stripe {
  height: 14px;
  margin-left: 14px;
  border-top: 4px solid var(--sage);
  border-bottom: 4px solid var(--sage);
  background: repeating-linear-gradient(90deg, var(--blue-light) 0 6px, var(--blue-mid) 6px 8px);
}
.notice-card__rail {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 14px;
  border-left: 4px solid var(--sage);
  border-right: 4px solid var(--sage);
  background: repeating-linear-gradient(180deg, var(--blue-light) 0 6px, var(--blue-mid) 6px 8px);
}
.notice-card__body { padding: 28px 32px 32px 46px; }
.notice-card h3 {
  font-weight: 100;
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.15;
  padding-right: 26px;
}
.notice-card p { margin-top: 14px; font-size: 16.5px; color: var(--ink-soft); }
.notice-card__actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.notice-close {
  position: absolute;
  top: 22px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 6px 10px;
}
.notice-close:hover { color: var(--ink); }
@keyframes notice-fade { from { opacity: 0; } }
@keyframes notice-rise { from { opacity: 0; transform: translateY(12px); } }
@media (max-width: 480px) {
  .notice-card__body { padding: 24px 22px 26px 36px; }
}

/* ---------- misc ---------- */

.two-col {
  display: grid;
  gap: 44px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.two-col img { border-radius: var(--radius); }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.checklist { margin: 18px 0 0 0; list-style: none; }
.checklist li {
  padding: 8px 0 8px 34px;
  position: relative;
  font-size: 17.5px;
  border-bottom: 1px solid #eee;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
}

.note {
  background: var(--sage-tint);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  font-size: 17px;
  margin-top: 24px;
}
