
:root{
  --teal:#1188a0;
  --teal-dark:#0b6680;
  --orange:#ff672b;
  --navy:#123653;
  --ink:#182328;
  --muted:#5f6d72;
  --cream:#fffaf3;
  --line:#dce7ea;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Arial,Helvetica,sans-serif;color:var(--ink);background:#fff}
a{color:inherit}
.shell{width:min(1180px,calc(100% - 36px));margin:auto}

/* Header */
.site-nav{
  height:122px;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.07);
  position:relative;
  z-index:20;
}
.nav-inner{
  height:122px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  position:relative;
}
.brand{
  position:absolute;
  left:0;
  top:11px;
  width:220px;
  z-index:2;
}
.brand img{width:100%;height:auto;display:block}
.menu{
  display:flex;
  align-items:center;
  gap:25px;
  font-size:14px;
  font-weight:800;
}
.menu a{text-decoration:none}
.menu a:hover{color:var(--orange)}
.reserve{
  background:var(--orange);
  color:#fff!important;
  padding:15px 21px;
  border-radius:999px;
  box-shadow:0 8px 18px rgba(255,103,43,.24);
}

/* Homepage showcase */
.home-showcase{
  background:
    linear-gradient(90deg,rgba(255,255,255,.84),rgba(255,255,255,0) 22%,rgba(255,255,255,0) 78%,rgba(255,255,255,.84)),
    linear-gradient(180deg,#dff4fb,#f9fcfd);
  padding:18px 0 30px;
}
.home-hero{
  width:min(1480px,calc(100% - 36px));
  height:565px;
  margin:auto;
  border:8px solid #fff;
  border-radius:25px;
  overflow:hidden;
  position:relative;
  background:#167d96;
  box-shadow:0 18px 40px rgba(0,0,0,.16);
}
.home-hero-video,.home-hero-video-blur{position:absolute;inset:0;width:100%;height:100%}
.home-hero-video-blur{object-fit:cover;filter:blur(24px) brightness(.88) saturate(1.08);transform:scale(1.10)}
.home-hero-video{z-index:1;object-fit:contain;max-width:1480px;left:50%;transform:translateX(-50%);filter:brightness(1.06) saturate(1.06)}

.home-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(11,54,72,.93) 0%,rgba(11,54,72,.79) 27%,rgba(11,54,72,.24) 53%,rgba(11,54,72,0) 74%);
}
.home-copy{
  position:absolute;
  z-index:3;
  left:62px;
  top:82px;
  width:430px;
  color:#fff;
}
.home-copy h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:56px;
  line-height:1.02;
  margin:0 0 20px;
}
.orange-line{
  width:100px;
  height:5px;
  border-radius:99px;
  background:var(--orange);
  margin:0 0 18px;
}
.home-copy p{
  font-size:20px;
  line-height:1.45;
  margin:0;
}
.hero-benefits{
  position:absolute;
  z-index:4;
  left:55px;
  right:55px;
  bottom:18px;
  min-height:54px;
  border-radius:12px;
  background:rgba(11,44,58,.78);
  backdrop-filter:blur(5px);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  align-items:center;
  color:#fff;
}
.hero-benefits span{
  padding:0 16px;
  text-align:center;
  font-size:13px;
  font-weight:800;
  border-right:1px solid rgba(255,255,255,.45);
}
.hero-benefits span:last-child{border-right:0}
.home-actions{
  display:flex;
  justify-content:center;
  gap:28px;
  margin-top:16px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:14px 28px;
  border-radius:8px;
  text-decoration:none;
  font-weight:900;
}
.btn-orange{background:var(--orange);color:#fff;box-shadow:0 8px 18px rgba(255,103,43,.22)}
.btn-teal{background:var(--teal);color:#fff;box-shadow:0 8px 18px rgba(17,136,160,.20)}
.btn-white{background:#fff;color:var(--teal-dark);border:1px solid var(--line)}

/* Service cards */
.services{
  position:relative;
  padding:34px 0 82px;
  background:linear-gradient(#fff,#fffaf5);
}
.section-heading{text-align:center;margin-bottom:32px}
.section-heading h2{
  font-family:Georgia,"Times New Roman",serif;
  color:var(--navy);
  font-size:40px;
  margin:0 0 11px;
}
.section-heading p{margin:0;color:var(--muted);font-size:18px}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.service-card{
  overflow:hidden;
  border-radius:15px;
  background:#fff;
  border:1px solid #e5e9ea;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}
.service-photo{
  height:205px;
  background-size:cover;
  background-position:center;
}
.service-body{padding:19px 20px 22px;text-align:center}
.service-body h3{
  color:var(--teal-dark);
  font-size:21px;
  margin:0 0 10px;
}
.service-body p{
  color:var(--muted);
  line-height:1.55;
  margin:0 0 16px;
  min-height:72px;
}
.service-link{
  color:var(--orange);
  text-decoration:none;
  font-weight:900;
}
.service-link:hover{text-decoration:underline}

/* Existing interior-page framework */
.showcase-wrap{background:#f4f7f8;padding:28px 0 0}
.hero{
  width:min(1450px,calc(100% - 40px));
  min-height:520px;
  margin:0 auto;
  position:relative;
  overflow:hidden;
  border-radius:22px;
  background:#203b46;
  color:#fff;
  box-shadow:0 16px 42px rgba(0,0,0,.15);
}
.hero-blur,.hero-media,.hero-video-blur,.hero-video-main{position:absolute;inset:0;width:100%;height:100%}
.hero-blur{background-size:cover;background-position:center;filter:blur(25px) brightness(.78);transform:scale(1.12)}
.hero-media{z-index:1;background-size:contain;background-position:center;background-repeat:no-repeat;filter:brightness(1.06)}
.hero-video-blur{object-fit:cover;filter:blur(25px) brightness(.78);transform:scale(1.12)}
.hero-video-main{z-index:1;object-fit:contain;max-width:1450px;left:50%;transform:translateX(-50%);filter:brightness(1.06)}
.hero::after{content:"";position:absolute;inset:0;z-index:2;background:linear-gradient(180deg,rgba(5,16,20,.62),rgba(5,16,20,.10) 30%,rgba(5,16,20,.12) 65%,rgba(5,16,20,.62))}
.hero-copy{position:relative;z-index:3;width:100%;height:520px}
.hero h1{
  position:absolute;top:30px;left:50%;transform:translateX(-50%);
  width:min(1050px,calc(100% - 80px));margin:0;padding:14px 22px;
  border-radius:14px;text-align:center;font-size:clamp(36px,4vw,58px);
  line-height:1;background:rgba(5,16,20,.48);text-shadow:0 3px 10px rgba(0,0,0,.7)
}
.hero .tagline{
  position:absolute;left:50%;bottom:26px;transform:translateX(-50%);
  width:min(980px,calc(100% - 80px));padding:12px 18px;border-radius:12px;
  background:rgba(5,16,20,.55);text-align:center;font-size:19px;margin:0
}
.showcase-actions{display:flex;justify-content:center;gap:14px;flex-wrap:wrap;padding:22px 18px 28px;background:#f4f7f8}
.family{background:var(--cream);border-top:1px solid #f0dfc6;border-bottom:1px solid #f0dfc6}
.family .shell{min-height:68px;display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap;text-align:center}
.family strong{color:var(--teal-dark);text-transform:uppercase;letter-spacing:.8px}.family span{color:var(--muted)}
.section{padding:78px 0}.section.tight-top{padding-top:36px}
.grid2{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:center}
.photo{min-height:480px;border-radius:24px;background-size:cover;background-position:center;box-shadow:0 12px 30px rgba(0,0,0,.13)}
.card{background:var(--cream);border:1px solid #f0dfc6;border-radius:24px;padding:42px}
h2{font-size:clamp(36px,4vw,50px);line-height:1.05;margin:0 0 16px}
.card p,.lead,.info p,.info li,.policy li{color:var(--muted);font-size:18px;line-height:1.65}
.title{text-align:center;margin-bottom:30px}.title p{color:var(--muted);font-size:18px}
.price-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.price-card{border:1px solid var(--line);border-radius:18px;background:#fff;padding:28px 22px;text-align:center;box-shadow:0 7px 20px rgba(0,0,0,.06);min-height:315px}
.price{font-size:48px;font-weight:900;color:var(--orange);margin:18px 0 22px}
.cards,.training-grid,.compare-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.info,.training-card,.compare-card{border:1px solid var(--line);border-radius:18px;padding:28px;background:#fff;box-shadow:0 7px 20px rgba(0,0,0,.06)}
.mosaic{display:grid;grid-template-columns:repeat(12,1fr);grid-auto-rows:150px;gap:14px}
.tile{border-radius:18px;background-size:cover;background-position:center}
.addons{background:#f4fafb}.addon-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.addon{background:#fff;border:1px solid var(--line);border-radius:16px;padding:20px}
.bath-box{margin-top:28px;background:var(--cream);border:1px solid #efd9b7;border-radius:20px;padding:26px}
.bath-box iframe{width:100%;height:720px;border:0;border-radius:14px;background:#fff}
.policy{background:#fff8eb;border:1px solid #efd9b7;border-radius:22px;padding:34px}
.app-section{background:#eef9fb}.app-grid{display:grid;grid-template-columns:1fr 220px;gap:36px;align-items:center}
.about-map{width:100%;min-height:500px;border:0;border-radius:24px}
.about-details{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.about-detail{background:#fff;border:1px solid var(--line);border-radius:16px;padding:22px;text-align:center}
.cta{background:linear-gradient(135deg,var(--orange),#ff8b4a);color:#fff;text-align:center;padding:52px 20px}
.footer{background:#152329;color:#fff;padding:30px 0;text-align:center}

@media(max-width:980px){
  .menu a:not(.reserve){display:none}
  .brand{width:168px}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .grid2,.app-grid,.about-details,.addon-grid{grid-template-columns:1fr}
  .price-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:800px){
  .site-nav,.nav-inner{height:92px}.brand{width:135px;top:7px}
  .home-showcase{padding-top:12px}
  .home-hero{height:auto;min-height:0;overflow:visible;background:#fff}
  .home-hero-video-blur{display:none}
  .home-hero-video{position:relative;display:block;inset:auto;width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;max-width:none;left:auto;transform:none}
  .home-hero::after{display:none}
  .home-copy{position:static;width:auto;color:var(--ink);padding:28px 24px 22px}
  .home-copy h1{font-size:42px;color:var(--navy)}
  .home-copy p{font-size:18px;color:var(--muted)}
  .hero-benefits{position:static;margin:0 20px 20px;grid-template-columns:1fr 1fr;background:#123d50}
  .hero-benefits span{min-height:48px;display:flex;align-items:center;justify-content:center;border-bottom:1px solid rgba(255,255,255,.3)}
  .home-actions{width:calc(100% - 36px);margin:16px auto 0}
  .home-actions .btn{flex:1}
  .hero{width:calc(100% - 24px);min-height:0;overflow:visible;background:#fff;color:var(--ink)}
  .hero-media,.hero-video-main{position:relative;display:block;inset:auto;width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;background-size:cover;max-width:none;left:auto;transform:none}
  .hero-blur,.hero-video-blur,.hero::after{display:none}
  .hero-copy{height:auto;padding:26px 24px;background:#fff}
  .hero h1,.hero .tagline{position:static;transform:none;width:auto;padding:0;background:none;color:var(--ink);text-shadow:none;text-align:left}
  .hero h1{font-size:42px;margin-bottom:14px}.hero .tagline{font-size:18px;color:var(--muted)}
}
@media(max-width:580px){
  .service-grid{grid-template-columns:1fr}
  .home-actions{flex-direction:column}
  .price-grid,.cards,.training-grid,.compare-grid{grid-template-columns:1fr}
}

.boarding-hero-photo{
  background-image:url('assets/boarding-hero-suite.webp') !important;
  background-size:cover !important;
  background-position:center 46% !important;
}
.training-hero-photo{
  background-image:url('assets/training-hero-new.webp') !important;
  background-size:cover !important;
  background-position:center 58% !important;
}


/* =========================================================
   PHOTOGRAPHY EDITION — CONSISTENT INTERIOR PAGE SHOWCASES
   ========================================================= */
.interior-showcase{
  background:
    linear-gradient(90deg,rgba(255,255,255,.88),rgba(255,255,255,0) 18%,rgba(255,255,255,0) 82%,rgba(255,255,255,.88)),
    linear-gradient(180deg,#dff4fb,#f7fbfc);
  padding:18px 0 30px;
}
.interior-hero-card{
  width:min(1480px,calc(100% - 36px));
  height:565px;
  margin:0 auto;
  position:relative;
  overflow:hidden;
  border:8px solid #fff;
  border-radius:25px;
  background:#1c677c;
  box-shadow:0 18px 40px rgba(0,0,0,.16);
}
.interior-hero-blur,
.interior-hero-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.interior-hero-blur{
  background-image:var(--hero-image);
  background-size:cover;
  background-position:var(--hero-position,center);
  filter:blur(24px) brightness(.85) saturate(1.08);
  transform:scale(1.1);
}
.interior-hero-image{
  z-index:1;
  background-image:var(--hero-image);
  background-size:contain;
  background-repeat:no-repeat;
  background-position:var(--hero-position,center);
  filter:brightness(1.05) saturate(1.05);
}
.interior-hero-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(
    90deg,
    rgba(11,54,72,.89) 0%,
    rgba(11,54,72,.73) 28%,
    rgba(11,54,72,.22) 54%,
    rgba(11,54,72,0) 76%
  );
}
.interior-hero-copy{
  position:absolute;
  z-index:3;
  left:62px;
  top:78px;
  width:460px;
  color:#fff;
}
.interior-hero-copy h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(44px,4.2vw,62px);
  line-height:1.02;
  margin:0 0 19px;
}
.interior-hero-copy p{
  font-size:20px;
  line-height:1.45;
  margin:0;
}
.interior-actions{
  width:min(1480px,calc(100% - 36px));
  min-height:86px;
  margin:0 auto;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:28px;
  padding:16px 18px;
}
.interior-actions .btn{
  width:330px;
  min-height:54px;
}
.interior-actions .btn-orange,
.interior-actions .btn-teal{
  color:#fff;
}
.interior-actions .btn-teal{
  background:var(--teal);
  box-shadow:0 8px 18px rgba(17,136,160,.20);
}
.hero-daycare{
  --hero-image:url("assets/hero-daycare.webp");
  --hero-position:center 48%;
}
.hero-boarding{
  --hero-image:url("assets/hero-boarding.webp");
  --hero-position:center 52%;
}
.hero-training{
  --hero-image:url("assets/hero-training.webp");
  --hero-position:center 54%;
}
.hero-baths{
  --hero-image:url("assets/hero-baths.webp");
  --hero-position:center 50%;
}
.hero-about{
  --hero-image:url("assets/hero-about.webp");
  --hero-position:center 50%;
}

/* Consistent page transition strip */
.interior-showcase + .family{
  margin-top:0;
}

/* Recenter newer Boarding suite photos */
.boarding-suite-vertical{
  background-image:url("assets/boarding-suite-vertical.webp") !important;
  background-position:center 42% !important;
}
.boarding-suite-relaxed{
  background-image:url("assets/boarding-suite-relaxed.webp") !important;
  background-position:center 48% !important;
}

@media(max-width:800px){
  .interior-showcase{padding-top:12px}
  .interior-hero-card{
    height:auto;
    min-height:0;
    overflow:visible;
    background:#fff;
  }
  .interior-hero-blur{display:none}
  .interior-hero-image{
    position:relative;
    inset:auto;
    width:100%;
    height:auto;
    aspect-ratio:16/9;
    background-size:cover;
    border-radius:17px 17px 0 0;
  }
  .interior-hero-card::after{display:none}
  .interior-hero-copy{
    position:static;
    width:auto;
    padding:28px 24px 24px;
    color:var(--ink);
    background:#fff;
  }
  .interior-hero-copy h1{
    color:var(--navy);
    font-size:clamp(38px,8vw,50px);
  }
  .interior-hero-copy p{
    color:var(--muted);
    font-size:18px;
  }
  .interior-actions{
    width:calc(100% - 36px);
    flex-direction:column;
    gap:12px;
    padding-top:16px;
  }
  .interior-actions .btn{
    width:100%;
  }
}


/* VERSION 5 — FULL-BLEED HERO MEDIA */
.home-hero-video-blur{display:none!important}
.home-hero-video{
  position:absolute!important;
  inset:0!important;
  width:100%!important;
  height:100%!important;
  max-width:none!important;
  left:0!important;
  transform:none!important;
  object-fit:cover!important;
  object-position:center 50%!important;
}
.interior-hero-blur{display:none!important}
.interior-hero-image{
  background-size:cover!important;
  background-repeat:no-repeat!important;
}
.hero-daycare{--hero-position:center 48%}
.hero-boarding{--hero-position:center 47%}
.hero-training{--hero-position:center 58%}
.hero-baths{--hero-position:center 50%}
.hero-about{--hero-position:center 48%}
.interior-hero-card::after{
  background:linear-gradient(
    90deg,
    rgba(11,54,72,.90) 0%,
    rgba(11,54,72,.72) 27%,
    rgba(11,54,72,.22) 52%,
    rgba(11,54,72,0) 72%
  )!important;
}
.home-hero::after{
  background:linear-gradient(
    90deg,
    rgba(11,54,72,.90) 0%,
    rgba(11,54,72,.72) 27%,
    rgba(11,54,72,.20) 52%,
    rgba(11,54,72,0) 72%
  )!important;
}
@media(max-width:800px){
  .home-hero-video{
    position:relative!important;
    inset:auto!important;
    width:100%!important;
    height:auto!important;
    aspect-ratio:16/9;
    object-fit:cover!important;
    object-position:center 50%!important;
  }
  .interior-hero-image{background-size:cover!important}
}


/* PHASE 4 — REAL PHOTO EDITION */
.photo-story{padding:82px 0;background:#fff}
.photo-story.alt{background:#f4fafb}
.photo-story-grid{display:grid;grid-template-columns:1.12fr .88fr;gap:42px;align-items:center}
.story-photo{min-height:520px;border-radius:24px;background-size:cover;background-position:center;box-shadow:0 16px 36px rgba(0,0,0,.13)}
.story-copy{padding:38px;border-radius:22px;background:var(--cream);border:1px solid #efd9b7}
.story-copy h2{font-family:Georgia,"Times New Roman",serif;color:var(--navy);margin:0 0 16px}
.story-copy p{color:var(--muted);font-size:18px;line-height:1.7}
.check-list{display:grid;grid-template-columns:1fr 1fr;gap:11px 18px;margin:22px 0 26px;font-weight:800;color:var(--teal-dark)}
.large-photo-band{min-height:520px;background-size:cover;background-position:center;position:relative}
.large-photo-band::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,20,26,.70),rgba(5,20,26,.10) 60%)}
.large-photo-copy{position:relative;z-index:2;width:min(1180px,calc(100% - 36px));margin:auto;padding-top:135px;color:#fff}
.large-photo-copy h2{font-family:Georgia,"Times New Roman",serif;max-width:650px;font-size:52px;margin:0 0 16px}
.large-photo-copy p{max-width:620px;font-size:20px;line-height:1.55}
.photo-pair{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.photo-pair div{min-height:410px;border-radius:22px;background-size:cover;background-position:center;box-shadow:0 12px 28px rgba(0,0,0,.11)}
.phase4-daycare-hero{--hero-image:url("assets/daycare-hero-three-dogs.webp")!important;--hero-position:center 47%!important}
.phase4-boarding-hero{--hero-image:url("assets/boarding-hero-aussie.webp")!important;--hero-position:center 42%!important}
.home-two-dogs{background-image:url("assets/home-two-dogs.webp");background-position:center}
.daycare-playhouse{background-image:url("assets/daycare-playhouse.webp");background-position:center}
.daycare-yard-wide{background-image:url("assets/daycare-yard-wide.webp");background-position:center 45%}
.boarding-white-dog{background-image:url("assets/boarding-white-dog.webp");background-position:center 42%}
.boarding-resting-doodle{background-image:url("assets/boarding-resting-doodle.webp");background-position:center 50%}
@media(max-width:850px){
  .photo-story-grid,.photo-pair{grid-template-columns:1fr}
  .story-photo,.photo-pair div{min-height:360px}
  .large-photo-copy{padding-top:85px}
  .large-photo-copy h2{font-size:40px}
  .check-list{grid-template-columns:1fr}
}


/* HOME PAGE v1.1 — stronger localized readability behind hero wording */
.home-copy{
  padding:28px 30px 30px !important;
  border-radius:18px;
  background:linear-gradient(
    90deg,
    rgba(7,35,47,.88) 0%,
    rgba(7,35,47,.72) 72%,
    rgba(7,35,47,.28) 100%
  );
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  backdrop-filter:blur(5px);
  -webkit-backdrop-filter:blur(5px);
}
.home-copy h1{
  text-shadow:0 4px 14px rgba(0,0,0,.78);
}
.home-copy p{
  text-shadow:0 2px 8px rgba(0,0,0,.80);
}
@media(max-width:800px){
  .home-copy{
    background:#fff;
    box-shadow:none;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }
  .home-copy h1,
  .home-copy p{
    text-shadow:none;
  }
}


/* HOME PAGE v1.2 — strong text-only dark glow */
.home-copy{
  background:transparent !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}
.home-copy h1{
  text-shadow:
    0 0 5px #071d26,
    0 0 10px #071d26,
    0 0 18px #071d26,
    3px 4px 8px rgba(0,0,0,.95) !important;
  -webkit-text-stroke:1px rgba(5,22,30,.48);
}
.home-copy p{
  font-weight:700;
  text-shadow:
    0 0 4px #071d26,
    0 0 9px #071d26,
    2px 3px 7px rgba(0,0,0,.98) !important;
}
.home-copy .orange-line{
  box-shadow:0 0 8px rgba(0,0,0,.9),0 0 12px rgba(255,103,43,.65);
}
@media(max-width:800px){
  .home-copy h1{
    -webkit-text-stroke:0;
    text-shadow:none !important;
  }
  .home-copy p{
    text-shadow:none !important;
  }
}


/* =========================================================
   VERSION 6 — POLISHED REAL-PHOTO EDITION
   ========================================================= */

:root{
  --v6-navy:#123653;
  --v6-teal:#1188a0;
  --v6-orange:#ff672b;
  --v6-cream:#fff8ef;
}

/* Strong hero text readability on moving video */
.home-copy{
  padding:30px 34px 32px !important;
  border-radius:20px;
  background:linear-gradient(90deg,rgba(4,20,28,.90),rgba(4,20,28,.72) 72%,rgba(4,20,28,.25));
  box-shadow:0 14px 34px rgba(0,0,0,.30);
  backdrop-filter:blur(7px);
  -webkit-backdrop-filter:blur(7px);
}
.home-copy h1{
  text-shadow:0 4px 16px rgba(0,0,0,.95),0 0 10px rgba(0,0,0,.72) !important;
}
.home-copy p{
  font-weight:700;
  text-shadow:0 3px 10px rgba(0,0,0,.92) !important;
}

/* Premium home service layout */
.v6-services{
  padding:78px 0;
  background:linear-gradient(#fff,#fffaf5);
}
.v6-services-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  grid-template-rows:repeat(3,230px);
  gap:20px;
}
.v6-service{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  background-size:cover;
  background-position:center;
  box-shadow:0 14px 32px rgba(0,0,0,.13);
  text-decoration:none;
}
.v6-service::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(4,16,22,.05),rgba(4,16,22,.80));
}
.v6-service-main{grid-row:span 3}
.v6-service-copy{
  position:absolute;
  z-index:2;
  left:28px;
  right:28px;
  bottom:24px;
  color:#fff;
}
.v6-service-copy h3{
  font-family:Georgia,"Times New Roman",serif;
  font-size:34px;
  margin:0 0 8px;
}
.v6-service-main .v6-service-copy h3{font-size:48px}
.v6-service-copy p{font-size:17px;line-height:1.5;margin:0 0 10px}
.v6-service-copy span{font-weight:900;color:#fff}

.v6-home-story{
  padding:82px 0;
  background:#fff;
}
.v6-story-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
}
.v6-story-photo{
  min-height:560px;
  border-radius:24px;
  background-size:cover;
  background-position:center;
  box-shadow:0 16px 36px rgba(0,0,0,.14);
}
.v6-story-copy h2{
  font-family:Georgia,"Times New Roman",serif;
  font-size:48px;
  color:var(--v6-navy);
  margin:0 0 18px;
}
.v6-story-copy p{
  color:var(--muted);
  font-size:19px;
  line-height:1.7;
}
.v6-story-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 18px;
  margin:24px 0 28px;
  color:var(--teal-dark);
  font-weight:800;
}

/* Interior page hero photography */
.phase6-boarding{
  --hero-image:url("assets/boarding-hero-sleeping-doodle.webp") !important;
  --hero-position:center 52% !important;
}
.phase6-daycare{
  --hero-image:url("assets/daycare-three-dogs.webp") !important;
  --hero-position:center 48% !important;
}
.phase6-training{
  --hero-image:url("assets/training-dogs-lineup.webp") !important;
  --hero-position:center 55% !important;
}

/* Large page storytelling bands */
.v6-photo-section{padding:82px 0;background:#fff}
.v6-photo-section.alt{background:#f4fafb}
.v6-photo-pair{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.v6-photo-pair .shot{
  min-height:430px;
  border-radius:22px;
  background-size:cover;
  background-position:center;
  box-shadow:0 13px 30px rgba(0,0,0,.12);
}
.v6-wide-band{
  min-height:540px;
  background-size:cover;
  background-position:center;
  position:relative;
}
.v6-wide-band::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(4,20,28,.74),rgba(4,20,28,.08) 65%);
}
.v6-wide-copy{
  position:relative;
  z-index:2;
  width:min(1180px,calc(100% - 36px));
  margin:auto;
  padding-top:150px;
  color:#fff;
}
.v6-wide-copy h2{
  font-family:Georgia,"Times New Roman",serif;
  font-size:54px;
  max-width:680px;
  margin:0 0 16px;
}
.v6-wide-copy p{font-size:20px;line-height:1.55;max-width:620px}

@media(max-width:900px){
  .v6-services-grid{
    grid-template-columns:1fr;
    grid-template-rows:none;
  }
  .v6-service,.v6-service-main{min-height:320px;grid-row:auto}
  .v6-story-grid,.v6-photo-pair{grid-template-columns:1fr}
  .v6-story-list{grid-template-columns:1fr}
  .v6-story-photo{min-height:420px}
}
@media(max-width:800px){
  .home-copy{
    background:#fff !important;
    box-shadow:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }
  .home-copy h1,.home-copy p{text-shadow:none !important}
}


/* =========================================================
   VERSION 7 — FINAL DESIGN PASS
   ========================================================= */
:root{
  --v7-navy:#113754;
  --v7-teal:#118ba2;
  --v7-orange:#ff672b;
  --v7-soft:#f5fbfc;
}

/* Hero text remains readable through every video frame */
.home-copy{
  background:linear-gradient(90deg,rgba(3,18,27,.94),rgba(3,18,27,.78) 72%,rgba(3,18,27,.30)) !important;
  box-shadow:0 16px 38px rgba(0,0,0,.36) !important;
  backdrop-filter:blur(9px) !important;
  -webkit-backdrop-filter:blur(9px) !important;
}
.home-copy h1{
  text-shadow:0 5px 18px rgba(0,0,0,1),0 0 12px rgba(0,0,0,.9) !important;
}
.home-copy p{
  text-shadow:0 3px 12px rgba(0,0,0,1) !important;
}

/* Premium service mosaic */
.v7-services{padding:82px 0;background:linear-gradient(#fff,#fff9f2)}
.v7-service-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  grid-template-rows:repeat(3,230px);
  gap:20px;
}
.v7-service{
  position:relative;
  overflow:hidden;
  border-radius:23px;
  background-size:cover;
  background-position:center;
  box-shadow:0 15px 34px rgba(0,0,0,.14);
  text-decoration:none;
  transition:transform .25s ease,box-shadow .25s ease;
}
.v7-service:hover{transform:translateY(-4px);box-shadow:0 20px 42px rgba(0,0,0,.18)}
.v7-service.main{grid-row:span 3}
.v7-service::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(4,18,25,.02),rgba(4,18,25,.84));
}
.v7-service-copy{position:absolute;z-index:2;left:28px;right:28px;bottom:24px;color:#fff}
.v7-service-copy h3{font-family:Georgia,serif;font-size:34px;margin:0 0 8px}
.v7-service.main h3{font-size:50px}
.v7-service-copy p{font-size:17px;line-height:1.45;margin:0 0 10px}
.v7-service-copy strong{font-size:14px;letter-spacing:.5px}

/* Page photography */
.v7-page-hero{--hero-position:center 50% !important}
.v7-daycare-hero{--hero-image:url("assets/v7-daycare-hero.webp") !important;--hero-position:center 48% !important}
.v7-boarding-hero{--hero-image:url("assets/v7-boarding-hero.webp") !important;--hero-position:center 52% !important}
.v7-training-hero{--hero-image:url("assets/v7-training-hero.webp") !important;--hero-position:center 55% !important}

.v7-section{padding:86px 0;background:#fff}
.v7-section.alt{background:var(--v7-soft)}
.v7-two-col{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:stretch}
.v7-photo{
  min-height:440px;border-radius:23px;background-size:cover;background-position:center;
  box-shadow:0 14px 32px rgba(0,0,0,.12)
}
.v7-copy{
  padding:42px;border-radius:23px;background:#fff8ef;border:1px solid #efdbc0;
}
.v7-copy h2{font-family:Georgia,serif;color:var(--v7-navy)}
.v7-copy p{font-size:18px;line-height:1.7;color:var(--muted)}
.v7-full-photo{
  min-height:560px;background-size:cover;background-position:center;position:relative
}
.v7-full-photo::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(4,20,28,.78),rgba(4,20,28,.08) 67%)
}
.v7-full-copy{
  position:relative;z-index:2;width:min(1180px,calc(100% - 36px));margin:auto;
  padding-top:155px;color:#fff
}
.v7-full-copy h2{font-family:Georgia,serif;font-size:54px;max-width:680px;margin:0 0 16px}
.v7-full-copy p{font-size:20px;line-height:1.55;max-width:650px}

/* Baths specialty page */
.v7-bath-hero{
  width:min(1480px,calc(100% - 36px));height:565px;margin:20px auto 0;
  position:relative;overflow:hidden;border:8px solid #fff;border-radius:25px;
  background:url("assets/v7-bath-hero.webp") center 43%/cover no-repeat;
  box-shadow:0 18px 40px rgba(0,0,0,.16)
}
.v7-bath-hero::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(4,20,28,.86),rgba(4,20,28,.20) 57%,transparent 78%)
}
.v7-bath-hero-copy{position:absolute;z-index:2;left:62px;top:90px;width:480px;color:#fff}
.v7-bath-hero-copy h1{font-family:Georgia,serif;font-size:58px;line-height:1.03;margin:0 0 18px}
.v7-bath-hero-copy p{font-size:20px;line-height:1.5}
.v7-bath-banner{
  width:min(1180px,calc(100% - 36px));margin:34px auto 0;border-radius:22px;overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.12)
}
.v7-bath-banner img{display:block;width:100%;height:auto}
.v7-bath-logo-fix{
  position:absolute;left:42px;top:28px;width:210px;z-index:3;
  filter:drop-shadow(0 5px 8px rgba(0,0,0,.28))
}

/* About page */
.v7-about-band{background:url("assets/v7-about-facility.webp") center/cover no-repeat}
.v7-suite-band{background:url("assets/v7-about-suites.webp") center/cover no-repeat}

.fade-in{animation:v7fade .7s ease both}
@keyframes v7fade{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}

@media(max-width:900px){
  .v7-service-grid{grid-template-columns:1fr;grid-template-rows:none}
  .v7-service,.v7-service.main{min-height:330px;grid-row:auto}
  .v7-two-col{grid-template-columns:1fr}
  .v7-bath-hero{height:auto;min-height:610px}
}
@media(max-width:800px){
  .home-copy{background:#fff !important;box-shadow:none !important;backdrop-filter:none !important}
  .home-copy h1,.home-copy p{text-shadow:none !important}
  .v7-bath-hero{background-position:center;min-height:720px}
  .v7-bath-hero-copy{left:24px;right:24px;top:auto;bottom:25px;width:auto}
  .v7-bath-logo-fix{width:145px;left:18px;top:16px}
}


/* VERSION 7.1 — restore Version 6 Home hero treatment */
.home-copy{
  padding:30px 34px 32px !important;
  border-radius:20px !important;
  background:linear-gradient(90deg,rgba(4,20,28,.90),rgba(4,20,28,.72) 72%,rgba(4,20,28,.25)) !important;
  box-shadow:0 14px 34px rgba(0,0,0,.30) !important;
  backdrop-filter:blur(7px) !important;
  -webkit-backdrop-filter:blur(7px) !important;
}
.home-copy h1{
  text-shadow:0 4px 16px rgba(0,0,0,.95),0 0 10px rgba(0,0,0,.72) !important;
}
.home-copy p{
  font-weight:700 !important;
  text-shadow:0 3px 10px rgba(0,0,0,.92) !important;
}
@media(max-width:800px){
  .home-copy{
    background:#fff !important;
    box-shadow:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }
  .home-copy h1,.home-copy p{text-shadow:none !important}
}


/* VERSION 7.2 exact Version 6 home hero */
.home-showcase{
  background:
    linear-gradient(90deg,rgba(255,255,255,.84),rgba(255,255,255,0) 22%,rgba(255,255,255,0) 78%,rgba(255,255,255,.84)),
    linear-gradient(180deg,#dff4fb,#f9fcfd);
  padding:18px 0 30px;
}
.home-hero{
  width:min(1480px,calc(100% - 36px));
  height:565px;
  margin:auto;
  border:8px solid #fff;
  border-radius:25px;
  overflow:hidden;
  position:relative;
  background:#167d96;
  box-shadow:0 18px 40px rgba(0,0,0,.16);
}
.home-hero-video{z-index:1;object-fit:contain;max-width:1480px;left:50%;transform:translateX(-50%);filter:brightness(1.06) saturate(1.06)}
.home-hero-video-blur{position:absolute;inset:0;width:100%;height:100%}
.home-copy{
  position:absolute;
  z-index:3;
  left:62px;
  top:82px;
  width:430px;
  color:#fff;
}
.home-copy h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:56px;
  line-height:1.02;
  margin:0 0 20px;
}
.home-copy p{
  font-size:20px;
  line-height:1.45;
  margin:0;
}
.orange-line{
  width:100px;
  height:5px;
  border-radius:99px;
  background:var(--orange);
  margin:0 0 18px;
}
.hero-benefits{
  position:absolute;
  z-index:4;
  left:55px;
  right:55px;
  bottom:18px;
  min-height:54px;
  border-radius:12px;
  background:rgba(11,44,58,.78);
  backdrop-filter:blur(5px);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  align-items:center;
  color:#fff;
}
.hero-benefits span{
  padding:0 16px;
  text-align:center;
  font-size:13px;
  font-weight:800;
  border-right:1px solid rgba(255,255,255,.45);
}
.home-actions{
  display:flex;
  justify-content:center;
  gap:28px;
  margin-top:16px;
}

/* VERSION 7.3 — Home hero text restored to shadow-only treatment */
.home-copy{
  position:absolute !important;
  z-index:3 !important;
  left:62px !important;
  top:82px !important;
  width:430px !important;
  padding:0 !important;
  border-radius:0 !important;
  color:#fff !important;
  background:transparent !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}
.home-copy h1{
  font-family:Georgia,"Times New Roman",serif !important;
  font-size:56px !important;
  line-height:1.02 !important;
  margin:0 0 20px !important;
  -webkit-text-stroke:0 !important;
  text-shadow:
    0 4px 5px rgba(0,0,0,.98),
    0 0 12px rgba(0,0,0,.88),
    0 0 22px rgba(0,0,0,.72) !important;
}
.home-copy p{
  font-size:20px !important;
  line-height:1.45 !important;
  margin:0 !important;
  font-weight:400 !important;
  text-shadow:
    0 3px 4px rgba(0,0,0,1),
    0 0 10px rgba(0,0,0,.92),
    0 0 18px rgba(0,0,0,.70) !important;
}
.home-copy .orange-line{
  box-shadow:0 3px 7px rgba(0,0,0,.75) !important;
}
@media(max-width:800px){
  .home-copy{
    position:static !important;
    width:auto !important;
    padding:28px 24px 22px !important;
    color:var(--ink) !important;
    background:#fff !important;
  }
  .home-copy h1{
    font-size:42px !important;
    color:var(--navy) !important;
    text-shadow:none !important;
  }
  .home-copy p{
    font-size:18px !important;
    color:var(--muted) !important;
    text-shadow:none !important;
  }
}


/* VERSION 7.6 — compact Daycare and Boarding add-ons */
.addons.section{
  padding-top:42px !important;
  padding-bottom:44px !important;
}
.addons .title{
  margin-bottom:18px !important;
}
.addons .title h2{
  font-size:clamp(32px,3vw,42px) !important;
  margin-bottom:8px !important;
}
.addons .title p{
  margin:0 !important;
  font-size:16px !important;
}
.addons .addon-grid{
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:10px !important;
}
.addons .addon{
  padding:13px 14px !important;
  border-radius:12px !important;
  min-height:0 !important;
}
.addons .addon h3{
  margin:0 0 4px !important;
  font-size:15px !important;
  line-height:1.2 !important;
}
.addons .addon p{
  margin:0 !important;
  font-size:13px !important;
  line-height:1.32 !important;
}
.addons .bath-box{
  margin-top:16px !important;
  padding:15px 18px !important;
  border-radius:14px !important;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.addons .bath-box h2{
  font-size:21px !important;
  margin:0 0 3px !important;
}
.addons .bath-box p{
  font-size:14px !important;
  line-height:1.35 !important;
  margin:0 !important;
}
.addons .bath-box .btn{
  flex:0 0 auto;
  min-height:42px !important;
  padding:10px 18px !important;
  white-space:nowrap;
}

@media(max-width:980px){
  .addons .addon-grid{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  }
}
@media(max-width:720px){
  .addons.section{
    padding-top:34px !important;
    padding-bottom:36px !important;
  }
  .addons .addon-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
  .addons .bath-box{
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }
}
@media(max-width:460px){
  .addons .addon-grid{
    grid-template-columns:1fr !important;
  }
}


/* VERSION 7.9 - Add breathing room below Daycare pricing cards */
.daycare-pricing,
.pricing-grid,
.pricing-section{
  margin-bottom:48px !important;
}
.daycare-pricing + section,
.pricing-section + section,
.pricing-grid + .story-section,
.pricing-grid + section{
  margin-top:42px !important;
}


/* VERSION 7.11 — final Daycare page cleanup */

/* Shorter, better-proportioned pricing cards */
body:has(a[href="daycare.html"]) .price-card{
  min-height:255px !important;
  padding:26px 20px 22px !important;
}
body:has(a[href="daycare.html"]) .price-card h3{
  margin-bottom:10px !important;
}
body:has(a[href="daycare.html"]) .price-card .price{
  margin:12px 0 18px !important;
}
body:has(a[href="daycare.html"]) .price-card p{
  margin-bottom:0 !important;
}

/* Clear separation before “Real Rowdy Ruff House Days” */
body:has(a[href="daycare.html"]) .price-grid{
  margin-bottom:64px !important;
}
body:has(a[href="daycare.html"]) .gallery-title{
  margin-top:0 !important;
  margin-bottom:30px !important;
}

/* Make the take-home bath button unmistakable */
body:has(a[href="daycare.html"]) .addons .bath-box .btn{
  min-width:390px !important;
  min-height:58px !important;
  padding:15px 28px !important;
  font-size:18px !important;
  font-weight:900 !important;
  border-radius:12px !important;
  box-shadow:0 10px 24px rgba(255,103,43,.30) !important;
  white-space:nowrap !important;
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
body:has(a[href="daycare.html"]) .addons .bath-box .btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(255,103,43,.38) !important;
  filter:brightness(1.05);
}

/* The final two-photo section stays, and the footer follows it directly */
body:has(a[href="daycare.html"]) .v6-photo-section.alt{
  padding-bottom:72px !important;
}

@media(max-width:800px){
  body:has(a[href="daycare.html"]) .price-grid{
    margin-bottom:44px !important;
  }
  body:has(a[href="daycare.html"]) .addons .bath-box .btn{
    width:100% !important;
    min-width:0 !important;
    white-space:normal !important;
    text-align:center !important;
  }
}


/* =========================================================
   FINAL UNIFIED HERO TEXT — HOME, DAYCARE, BOARDING, TRAINING
   Keeps the first two headline lines at the exact same
   desktop size and position on all four pages.
   ========================================================= */
@media(min-width:801px){
  .home-copy,
  .interior-hero-copy{
    position:absolute !important;
    z-index:3 !important;
    left:62px !important;
    top:78px !important;
    width:460px !important;
    padding:0 !important;
    border-radius:0 !important;
    color:#fff !important;
    background:transparent !important;
    box-shadow:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }

  .home-copy h1,
  .interior-hero-copy h1{
    font-family:Georgia,"Times New Roman",serif !important;
    font-size:clamp(44px,4.2vw,62px) !important;
    line-height:1.02 !important;
    font-weight:700 !important;
    letter-spacing:normal !important;
    margin:0 0 19px !important;
    padding:0 !important;
    text-shadow:
      0 4px 5px rgba(0,0,0,.98),
      0 0 12px rgba(0,0,0,.88),
      0 0 22px rgba(0,0,0,.72) !important;
    -webkit-text-stroke:0 !important;
  }

  .home-copy h1 .hero-title-line,
  .interior-hero-copy h1 .hero-title-line{
    display:block !important;
    white-space:nowrap !important;
  }

  .home-copy p,
  .interior-hero-copy p{
    font-size:20px !important;
    line-height:1.45 !important;
    font-weight:400 !important;
    margin:0 !important;
    text-shadow:
      0 3px 4px rgba(0,0,0,1),
      0 0 10px rgba(0,0,0,.92),
      0 0 18px rgba(0,0,0,.70) !important;
  }

  .home-copy .orange-line,
  .interior-hero-copy .orange-line{
    box-shadow:0 3px 7px rgba(0,0,0,.75) !important;
  }
}


/* =========================================================
   FINAL TRAINING HERO — REAL ROWDY RUFF HOUSE PHOTO
   Shows the complete photo instead of cropping off Randi.
   ========================================================= */
.interior-hero-card.hero-training.v7-training-hero.phase6-training{
  --hero-image:url("assets/training-hero-rowdy.webp") !important;
  --hero-position:58% center !important;
  background-color:#173f4b !important;
}

/* Blurred copy fills the wide hero behind the full photograph. */
.interior-hero-card.hero-training.v7-training-hero.phase6-training
.interior-hero-blur{
  display:block !important;
  background-image:url("assets/training-hero-rowdy.webp") !important;
  background-size:cover !important;
  background-position:center center !important;
  filter:blur(26px) brightness(.64) saturate(1.05) !important;
  transform:scale(1.12) !important;
}

/* Main copy uses contain so Randi and the dog both remain visible. */
.interior-hero-card.hero-training.v7-training-hero.phase6-training
.interior-hero-image{
  background-image:url("assets/training-hero-rowdy.webp") !important;
  background-size:contain !important;
  background-repeat:no-repeat !important;
  background-position:58% center !important;
  filter:brightness(1.03) saturate(1.03) !important;
}

/* Darken only the text side; keep Randi and the dog clear. */
.interior-hero-card.hero-training.v7-training-hero.phase6-training::after{
  background:linear-gradient(
    90deg,
    rgba(6,31,41,.95) 0%,
    rgba(6,31,41,.82) 24%,
    rgba(6,31,41,.42) 39%,
    rgba(6,31,41,.08) 54%,
    rgba(6,31,41,0) 68%
  ) !important;
}

@media(max-width:800px){
  .interior-hero-card.hero-training.v7-training-hero.phase6-training
  .interior-hero-image{
    background-size:cover !important;
    background-position:47% center !important;
  }

  .interior-hero-card.hero-training.v7-training-hero.phase6-training
  .interior-hero-blur{
    display:none !important;
  }
}


/* FINAL PIXEL-PERFECT SITE NAVIGATION — ALL PAGES */
.site-nav{
  height:122px !important;
  background:#fff !important;
  border-bottom:1px solid rgba(0,0,0,.07) !important;
  position:relative !important;
  z-index:20 !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}
.site-nav .nav-inner{
  height:122px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  position:relative !important;
}
.site-nav .brand{
  position:absolute !important;
  left:0 !important;
  top:11px !important;
  width:220px !important;
  z-index:2 !important;
}
.site-nav .menu{
  display:flex !important;
  align-items:center !important;
  gap:25px !important;
  font-size:14px !important;
  font-weight:800 !important;
}
.site-nav .menu > a{
  text-decoration:none !important;
  white-space:nowrap !important;
}
.site-nav .menu .reserve{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:132px !important;
  height:48px !important;
  padding:0 !important;
  margin:0 !important;
  background:var(--orange) !important;
  color:#fff !important;
  border-radius:999px !important;
  box-shadow:0 8px 18px rgba(255,103,43,.24) !important;
  line-height:1 !important;
}
@media(max-width:980px){
  .site-nav .brand{width:168px !important;}
}
@media(max-width:800px){
  .site-nav,.site-nav .nav-inner{height:92px !important;}
  .site-nav .brand{width:135px !important;top:7px !important;}
}

/* FINAL ABOUT PAGE BOTTOM PHOTO ROTATION */
.v7-full-photo.v7-about-band{
  position:relative;
  overflow:hidden;
  background:none !important;
}

.v7-full-photo.v7-about-band::before{
  content:"";
  position:absolute;
  inset:-3%;
  z-index:0;
  background:url("assets/v7-about-facility.webp") center/cover no-repeat;
  transform:rotate(-1.2deg) scale(1.04);
  transform-origin:center center;
}

.v7-full-photo.v7-about-band::after{
  z-index:1;
}

.v7-full-photo.v7-about-band .v7-full-copy{
  position:relative;
  z-index:2;
}


/* =========================================================
   ABOUT US HERO — RUNNING DOGS PHOTO
   Adjust --about-hero-x and --about-hero-y to reposition it.
   ========================================================= */
.hero-about{
  --hero-image:url("assets/daycare-hero-option.webp") !important;
  --about-hero-x:54%;
  --about-hero-y:40%;
  --hero-position:var(--about-hero-x) var(--about-hero-y) !important;
}

.hero-about .interior-hero-image{
  background-image:url("assets/daycare-hero-option.webp") !important;
  background-size:cover !important;
  background-position:var(--about-hero-x) var(--about-hero-y) !important;
}

/* ==========================================================
   POLISHED PAGE TRANSITIONS + ABOUT PAGE (July 2026)
   The hero artwork itself is intentionally unchanged.
   ========================================================== */

/* Pull the slim message band closer to both the hero buttons
   and the first content section on every interior page. */
.interior-showcase:has(+ .family){
  padding-bottom:0;
}
.interior-showcase:has(+ .family) .interior-actions{
  min-height:72px;
  padding:10px 18px 8px;
}
.interior-showcase + .family .shell{
  min-height:50px;
  padding:7px 18px;
}
.family + .section{
  padding-top:48px;
}
.family + .training-built-section{
  padding-top:48px !important;
}

/* About introduction */
.about-page .about-intro-section{
  padding:48px 0 30px;
}
.about-page .about-intro-section .grid2{
  gap:46px;
  align-items:stretch;
}
.about-page .about-facility-photo{
  width:100%;
  height:100%;
  min-height:430px;
  aspect-ratio:auto;
  box-sizing:border-box;
  border:6px solid #fff;
  border-radius:22px;
  background-size:auto 135%;
  background-position:48% 52%;
  background-repeat:no-repeat;
  box-shadow:0 15px 34px rgba(19,67,78,.18);
}
.about-page .about-copy{
  min-height:430px;
  padding:0 8px 0 0;
  box-sizing:border-box;
}
.about-page .about-copy h2{
  position:relative;
  padding-left:18px;
  color:var(--navy);
}
.about-page .about-copy h2::before{
  content:"";
  position:absolute;
  left:0;
  top:3px;
  bottom:3px;
  width:6px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--orange),#ff9b55);
}
.about-page .about-copy p{
  color:#425a63;
  font-size:17px;
  line-height:1.58;
}

/* Address and hours cards */
.about-page .about-details-section{
  padding:0;
}
.about-page .about-details-section > .shell{
  padding:34px 0;
  border-top:1px solid #d7e8ec;
  border-bottom:1px solid #d7e8ec;
}
.about-page .about-details{
  gap:16px;
}
.about-page .about-detail{
  position:relative;
  min-height:148px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:28px 22px 22px;
  border:1px solid #cfe2e7;
  border-radius:18px;
  background:linear-gradient(180deg,#fff 0%,#f5fbfc 100%);
  box-shadow:0 10px 24px rgba(22,82,96,.09);
}
.about-page .about-detail::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:6px;
  background:linear-gradient(90deg,var(--teal),#42c4d9);
}
.about-page .about-detail:nth-child(2)::before{
  background:linear-gradient(90deg,var(--orange),#ff9a53);
}
.about-page .about-detail:nth-child(3)::before{
  background:linear-gradient(90deg,#efad35,#f8c55e);
}
.about-page .about-detail h3{
  margin:0 0 10px;
  color:var(--navy);
  font-size:18px;
}
.about-page .about-detail p{
  margin:0;
  color:#425a63;
  font-size:16px;
  line-height:1.45;
}

/* Finished Find Us treatment */
.about-page .about-map-section{
  padding:38px 0 64px;
}
.about-page .about-map-card{
  padding:32px;
  border:1px solid #cfe2e7;
  border-radius:26px;
  background:linear-gradient(145deg,#f4fbfc,#fff 58%,#eef9fb);
  box-shadow:0 16px 38px rgba(19,67,78,.13);
}
.about-page .about-map-card .title{
  margin-bottom:24px;
}
.about-page .about-map-card .title h2{
  margin:5px 0 10px;
  color:var(--navy);
}
.about-page .about-map-card .title p{
  margin:0;
}
.about-page .about-eyebrow{
  display:inline-block;
  color:var(--orange);
  font-size:13px;
  font-weight:900;
  letter-spacing:1.2px;
  text-transform:uppercase;
}
.about-page .about-map{
  display:block;
  min-height:460px;
  border:6px solid #fff;
  border-radius:18px;
  box-shadow:0 10px 26px rgba(21,74,87,.16);
}

@media(max-width:980px){
  .about-page .about-facility-photo{
    max-width:760px;
    margin:0 auto;
  }
  .about-page .about-copy{
    padding:0;
  }
  .about-page .about-details-section > .shell{
    padding:28px 0;
  }
}

@media(max-width:800px){
  .interior-showcase:has(+ .family) .interior-actions{
    min-height:0;
    padding:12px 14px 10px;
  }
  .interior-showcase + .family .shell{
    min-height:46px;
  }
  .family + .section,
  .family + .training-built-section{
    padding-top:36px !important;
  }
  .about-page .about-intro-section{
    padding:36px 0 24px;
  }
  .about-page .about-facility-photo{
    height:auto;
    min-height:360px;
    aspect-ratio:4 / 3;
    background-size:auto 135%;
    background-position:48% 52%;
  }
  .about-page .about-copy{
    min-height:0;
  }
  .about-page .about-map-section{
    padding:30px 0 46px;
  }
  .about-page .about-map-card{
    padding:18px;
    border-radius:20px;
  }
  .about-page .about-map{
    min-height:390px;
  }
}

@media(max-width:800px){
  .hero-about{
    --about-hero-x:54%;
    --about-hero-y:58%;
  }
}

/* Boarding options: room for the expanded service descriptions */
body .boarding-price-grid .price-card{
  min-height:385px;
}

body .boarding-price-grid .price-card p{
  margin:0;
  line-height:1.55;
}

/* ==========================================================
   GOOGLE REVIEW TRUST BAND + SITEWIDE FOOTER LINK
   ========================================================== */
.google-review-band{
  padding:0;
  background:linear-gradient(180deg,#fffaf5 0%,#fff 100%);
}
.google-review-band + .photo-story{
  padding-top:78px;
}
.google-review-band + .photo-story .photo-story-grid{
  align-items:stretch;
}
.google-review-band + .photo-story .story-photo,
.google-review-band + .photo-story .story-copy{
  height:100%;
  box-sizing:border-box;
}
.google-review-card{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:28px;
  padding:30px 34px;
  border:1px solid #eadbc6;
  border-radius:24px;
  background:linear-gradient(135deg,#fff 0%,#fffaf1 68%,#eef9fb 100%);
  box-shadow:0 14px 34px rgba(28,68,76,.11);
}
.google-review-stars{
  white-space:nowrap;
  color:#f4b544;
  font-size:27px;
  line-height:1;
  letter-spacing:2px;
  text-shadow:0 2px 0 #fff;
}
.google-review-kicker{
  display:block;
  margin-bottom:4px;
  color:var(--teal-dark);
  font-size:12px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
}
.google-review-copy h2{
  margin:0 0 6px;
  color:var(--navy);
  font-size:clamp(27px,3vw,38px);
  line-height:1.1;
}
.google-review-copy p{
  margin:0;
  color:#53676f;
  font-size:16px;
  line-height:1.45;
}
.google-review-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 20px;
  border:2px solid var(--teal);
  border-radius:999px;
  background:#fff;
  color:var(--teal-dark);
  font-weight:900;
  text-decoration:none;
  white-space:nowrap;
  transition:transform .18s ease,background .18s ease,color .18s ease,box-shadow .18s ease;
}
.google-review-link:hover{
  transform:translateY(-2px);
  background:var(--teal);
  color:#fff;
  box-shadow:0 8px 18px rgba(17,136,160,.20);
}
.footer-review{
  margin-top:12px;
}
.footer-review a{
  color:#ffd06a;
  font-weight:800;
  text-decoration:none;
}
.footer-review a:hover{
  color:#fff;
  text-decoration:underline;
}

@media(max-width:980px){
  .google-review-card{
    grid-template-columns:1fr;
    gap:14px;
    text-align:center;
  }
  .google-review-link{
    justify-self:center;
  }
}

@media(max-width:600px){
  .google-review-band{
    padding:0;
  }
  .google-review-band + .photo-story{
    padding-top:46px;
  }
  .google-review-card{
    padding:25px 20px;
    border-radius:19px;
  }
  .google-review-stars{
    font-size:23px;
  }
}

@media(max-width:850px){
  body .boarding-price-grid .price-card{
    min-height:auto;
  }
}

/* Home message band: match the slim transition bands on interior pages. */
.home-showcase + .home-family{
  margin-top:0;
}
.home-showcase:has(+ .home-family){
  padding-bottom:0;
}
.home-showcase:has(+ .home-family) .home-actions{
  width:min(1480px,calc(100% - 36px));
  min-height:72px;
  margin:0 auto;
  align-items:center;
  padding:10px 18px 8px;
}
.home-showcase:has(+ .home-family) .home-actions .btn{
  width:330px;
  min-height:54px;
}
.home-showcase + .home-family .shell{
  min-height:50px;
  padding:7px 18px;
}
.home-family + .v6-services{
  padding-top:48px;
}

@media(max-width:800px){
  .home-showcase:has(+ .home-family) .home-actions{
    width:calc(100% - 36px);
    min-height:0;
    margin:0 auto;
    padding:12px 14px 10px;
  }
  .home-showcase:has(+ .home-family) .home-actions .btn{
    width:auto;
  }
  .home-showcase + .home-family .shell{
    min-height:46px;
  }
  .home-family + .v6-services{
    padding-top:36px;
  }
}

/* Daycare and Boarding introduction pairs: equal cards and balanced spacing. */
.family + .service-intro-section{
  padding:48px 0 0;
}
.service-intro-grid{
  align-items:stretch;
}
.service-intro-grid > .photo,
.service-intro-grid > .card{
  min-height:430px;
  height:430px;
  box-sizing:border-box;
}
.service-intro-grid > .card{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.service-intro-grid > .card .btn{
  align-self:flex-start;
}
.service-intro-grid > .daycare-intro-card{
  justify-content:flex-start;
}
.service-intro-grid > .daycare-intro-card h2{
  margin-top:0;
}
.service-intro-grid > .daycare-intro-card .btn{
  align-self:center;
  margin:auto;
}
.service-intro-section + .service-options-section{
  padding-top:48px;
  border-top:1px solid rgba(15,127,138,.12);
}

@media(max-width:800px){
  .family + .service-intro-section{
    padding-top:36px;
  }
  .service-intro-grid > .photo,
  .service-intro-grid > .card{
    min-height:0;
    height:auto;
  }
  .service-intro-grid > .photo{
    min-height:360px;
  }
  .service-intro-section + .service-options-section{
    padding-top:36px;
  }
}

/* =========================================================
   FINAL MOBILE NAVIGATION + HOME HERO BENEFIT FIX
   ========================================================= */
.mobile-menu-toggle,
.mobile-menu-panel{
  display:none;
}

@media(max-width:800px){
  .site-nav{
    overflow:visible !important;
  }
  .site-nav .nav-inner{
    padding-right:0 !important;
  }
  .site-nav .menu{
    margin-left:auto !important;
    gap:0 !important;
  }
  .site-nav .menu > a:not(.reserve){
    display:none !important;
  }
  .site-nav .menu .reserve{
    width:auto !important;
    height:48px !important;
    padding:0 20px !important;
    margin-right:58px !important;
    font-size:14px !important;
  }
  .mobile-menu-toggle{
    position:absolute;
    right:0;
    top:22px;
    z-index:32;
    width:46px;
    height:48px;
    padding:5px 4px 3px;
    border:0;
    border-radius:10px;
    background:#fff;
    color:var(--navy);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
    font:800 10px/1 Arial,Helvetica,sans-serif;
    cursor:pointer;
  }
  .mobile-menu-icon{
    display:flex;
    flex-direction:column;
    gap:4px;
    width:25px;
  }
  .mobile-menu-icon i{
    display:block;
    width:100%;
    height:3px;
    border-radius:99px;
    background:var(--navy);
    transition:transform .18s ease,opacity .18s ease;
  }
  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon i:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon i:nth-child(2){opacity:0}
  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon i:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .mobile-menu-panel{
    position:absolute;
    z-index:31;
    top:84px;
    left:0;
    right:0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
    padding:8px;
    border:1px solid #dce7ea;
    border-radius:14px;
    background:#fff;
    box-shadow:0 16px 34px rgba(18,54,83,.22);
  }
  .mobile-menu-panel[hidden]{display:none !important}
  .mobile-menu-panel a{
    padding:14px 12px;
    border-radius:9px;
    color:var(--navy);
    text-align:center;
    text-decoration:none;
    font-size:15px;
    font-weight:900;
  }
  .mobile-menu-panel a:hover,
  .mobile-menu-panel a:focus{
    background:#eef9fb;
    color:var(--orange);
  }

  /* This override is intentionally last so the later desktop hero rules
     cannot force the four benefit statements back into one row. */
  .home-hero .hero-benefits{
    position:static !important;
    left:auto !important;
    right:auto !important;
    bottom:auto !important;
    width:auto !important;
    min-height:0 !important;
    margin:0 20px 20px !important;
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    align-items:stretch !important;
    overflow:hidden !important;
    border-radius:14px !important;
    background:#123d50 !important;
    backdrop-filter:none !important;
  }
  .home-hero .hero-benefits span{
    min-width:0 !important;
    min-height:66px !important;
    padding:10px 8px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border-right:1px solid rgba(255,255,255,.28) !important;
    border-bottom:1px solid rgba(255,255,255,.28) !important;
    white-space:normal !important;
    overflow-wrap:anywhere !important;
    text-align:center !important;
    font-size:12px !important;
    line-height:1.2 !important;
  }
  .home-hero .hero-benefits span:nth-child(2n){border-right:0 !important}
  .home-hero .hero-benefits span:nth-last-child(-n+2){border-bottom:0 !important}
}

@media(max-width:430px){
  .site-nav .brand{
    width:124px !important;
  }
  .site-nav .menu .reserve{
    height:44px !important;
    padding:0 15px !important;
    margin-right:50px !important;
    font-size:13px !important;
  }
  .mobile-menu-toggle{
    top:24px;
    width:42px;
    height:44px;
  }
  .home-copy{
    padding-left:20px !important;
    padding-right:20px !important;
  }
  .home-copy h1{
    font-size:38px !important;
  }
  .home-hero .hero-benefits{
    margin-left:12px !important;
    margin-right:12px !important;
  }
  .home-hero .hero-benefits span{
    min-height:62px !important;
    padding:9px 6px !important;
    font-size:11px !important;
  }
}

/* =========================================================
   MOBILE HEADER + HOME HERO CLEANUP — JULY 2026
   On phones: use one prominent dropdown menu, hide the top
   Reserve Now button, and remove the four crowded hero claims.
   Desktop is unchanged.
   ========================================================= */
@media (max-width:800px){
  .site-nav .menu{
    display:none !important;
  }

  .site-nav .nav-inner{
    min-height:112px !important;
    padding:0 18px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
  }

  .site-nav .brand{
    flex:0 0 auto !important;
  }

  .mobile-menu-toggle{
    position:relative !important;
    top:auto !important;
    right:auto !important;
    width:150px !important;
    height:54px !important;
    margin-left:auto !important;
    padding:0 20px !important;
    border:0 !important;
    border-radius:999px !important;
    background:var(--orange) !important;
    color:#fff !important;
    box-shadow:0 10px 24px rgba(255,91,39,.24) !important;
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:center !important;
    gap:10px !important;
    font:900 18px/1 Arial,Helvetica,sans-serif !important;
  }

  .mobile-menu-icon{
    display:none !important;
  }

  .mobile-menu-toggle::after{
    content:"▾";
    font-size:20px;
    line-height:1;
    transform:translateY(-1px);
  }

  .mobile-menu-toggle[aria-expanded="true"]::after{
    content:"▴";
  }

  .mobile-menu-panel{
    top:100% !important;
    left:16px !important;
    right:16px !important;
    margin-top:8px !important;
    grid-template-columns:1fr !important;
    padding:10px !important;
    border-radius:16px !important;
  }

  .mobile-menu-panel a{
    padding:15px 14px !important;
    border-bottom:1px solid #e6eef1;
    font-size:17px !important;
  }

  .mobile-menu-panel a:last-child{
    border-bottom:0;
  }

  .home-hero .hero-benefits{
    display:none !important;
  }
}

@media (max-width:430px){
  .site-nav .nav-inner{
    min-height:108px !important;
    padding-left:14px !important;
    padding-right:14px !important;
  }

  .site-nav .brand{
    width:132px !important;
  }

  .mobile-menu-toggle{
    width:136px !important;
    height:50px !important;
    padding:0 16px !important;
    font-size:17px !important;
  }
}

/* =========================================================
   ABOUT PAGE MOBILE TEXT WIDTH FIX — 2026-07-22
   Keeps the About Rowdy Ruff House copy inside the phone viewport.
   ========================================================= */
@media (max-width:800px){
  .about-page .about-intro-section,
  .about-page .about-intro-section > .shell,
  .about-page .about-intro-section .grid2,
  .about-page .about-copy{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    box-sizing:border-box !important;
  }
  .about-page .about-intro-section > .shell{
    width:calc(100% - 32px) !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
  .about-page .about-intro-section .grid2{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) !important;
    gap:26px !important;
  }
  .about-page .about-copy{
    padding:0 !important;
    overflow:visible !important;
  }
  .about-page .about-copy h2,
  .about-page .about-copy p{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    white-space:normal !important;
    overflow-wrap:anywhere !important;
    word-break:normal !important;
  }
  .about-page .about-copy h2{
    font-size:clamp(31px,9vw,40px) !important;
    line-height:1.08 !important;
  }
  .about-page .about-copy p{
    margin-left:0 !important;
    margin-right:0 !important;
    font-size:17px !important;
    line-height:1.58 !important;
  }
}
@media (max-width:430px){
  .about-page .about-intro-section > .shell{
    width:calc(100% - 24px) !important;
  }
}

@media (max-width:800px){
.about-page .about-copy{
  padding:0 28px 18px 28px !important;
  max-width:92%;
  margin:0 auto;
}
.about-page .about-copy h2{
  margin-bottom:18px !important;
}
.about-page .about-copy p{
  line-height:1.72 !important;
  margin-bottom:18px !important;
}
.site-nav .brand{
 top:18px !important;
}
}

/* Mobile interior hero headline spacing fix — July 2026 */
@media (max-width:800px){
  .hero-daycare .interior-hero-copy h1 .hero-title-line,
  .hero-boarding .interior-hero-copy h1 .hero-title-line,
  .hero-training .interior-hero-copy h1 .hero-title-line,
  .hero-training-custom .interior-hero-copy h1 .hero-title-line{
    display:block !important;
    white-space:normal !important;
  }
}

/* HOME PERFORMANCE PATCH — 2026-07-25 */
.home-hero-video-blur{display:none!important}
.home-hero-video{
  background:#167d96 url("assets/optimized/circle-hero-poster.jpg") center/cover no-repeat;
}
.mobile-menu-panel .mobile-reserve-link{
  margin-top:6px;
  border-bottom:0!important;
  border-radius:999px;
  background:var(--orange);
  color:#fff!important;
}
@media (prefers-reduced-motion: reduce){
  .home-hero-video{display:none!important}
  .home-hero{
    background:#167d96 url("assets/optimized/circle-hero-poster.jpg") center/cover no-repeat!important;
  }
}

/* Technical accessibility and consistent trust footer */
.visually-hidden{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.footer-contact a,.footer-hours a{color:inherit;text-decoration:none}
.footer-contact a:hover,.footer-contact a:focus{text-decoration:underline}
.footer-hours{margin-top:.3rem}

/* Accessibility contrast fixes — 2026-07-25 */
.btn-orange,
.reserve,
.mobile-menu-toggle,
.mobile-menu-panel .mobile-reserve-link{
  background:#c65300 !important;
  color:#fff !important;
}
.btn-teal{
  background:#0b6680 !important;
  color:#fff !important;
}
.mobile-menu-toggle{
  font-weight:900 !important;
}
