    
    /* Outfit */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Outfit-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Outfit-Bold.ttf') format('truetype');
}

/* Playfair Display */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/PlayfairDisplay-Bold.ttf') format('truetype');
}

/* Patrick Hand */
@font-face {
  font-family: 'Patrick Hand';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/PatrickHand-Regular.ttf') format('truetype');
}

/* Roboto */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/Roboto-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}

/* Lora */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Lora-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Lora-Bold.ttf') format('truetype');
}

/* Pacifico */
@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Pacifico-Regular.ttf') format('truetype');
}

/* Yellowtail */
@font-face {
  font-family: 'Yellowtail';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Yellowtail-Regular.ttf') format('truetype');
}

/* Sniglet */
@font-face {
  font-family: 'Sniglet';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Sniglet-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Sniglet';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/Sniglet-ExtraBold.ttf') format('truetype');
}

/* Poppins */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Poppins-Bold.ttf') format('truetype');
}

/* Boldonse */
@font-face {
  font-family: 'Boldonse';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Boldonse-Regular.ttf') format('truetype');
}

/* Cal Sans */
@font-face {
  font-family: 'Cal Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/CalSans-Regular.ttf') format('truetype');
}

/* Bernard MT Condensed */
@font-face {
  font-family: 'Bernard MT Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/BernardMTCondensed-Regular.ttf') format('truetype');
}


/* League Spartan */
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/LeagueSpartan-SemiBold.ttf') format('truetype');
}

/* Montserrat */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-display: swap;
}




@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
    
    :root {
      --cream: #f4e9d1;
      --black: #1a1a1a;
      --gold:  #d4af37;
      --font-body:    'Outfit', sans-serif;
      --font-heading: 'Playfair Display', serif;
      --font-caption: 'Patrick Hand', cursive;
      --font-nav:     'Sniglet', system-ui;
      --font-quote:   'Lora', serif;
    }
    * { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior:smooth; scroll-snap-type:y mandatory; }
    html, body {
      touch-action: pan-x pan-y; /* allow only one‐finger pans, no pinch/zoom */
    }
    
    html, body {
      touch-action: manipulation; /* disables pinch zoom but still allows scroll */
    }
    
    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--black);
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }

    /* NAVBAR */
    header { position: fixed; top: 20px; left: 0; width: 100%; display: flex; justify-content: center; pointer-events: none; z-index:1000; }
    .nav-wrapper { pointer-events: auto; background: var(--black); border-radius: 8px; padding: 0.5rem 2rem; display: flex; align-items: center; justify-content: space-between; width: 90%; max-width: 1100px; }
    .nav-wrapper img.logo { height: 40px; filter:
    brightness(0) 
    saturate(100%) 
    invert(72%) 
    sepia(42%) 
    saturate(600%) 
    hue-rotate(1deg) 
    brightness(99%) 
    contrast(92%); }
    nav#navbar { display: flex; gap: 2rem; font-family: var(--font-nav); letter-spacing: 0.1em; }
    nav#navbar a { color: var(--gold); font-weight: 300; position: relative; transition: color .3s; }
    nav#navbar a:hover { color: #fff; }
    nav#navbar a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width .3s; }
    nav#navbar a:hover::after { width: 100%; }
    .menu-toggle { display: none; background: none; border: none; cursor: pointer; }
    .menu-toggle svg { width: 24px; height: 24px; stroke: var(--gold); stroke-width: 2; fill: none; }
    @media (max-width: 768px) {
      .menu-toggle { display: block; }
      nav#navbar { display: none; position: fixed; top:0; left:0; width:100%; height:100vh; background: rgba(0,0,0,0.95); flex-direction: column; align-items:center; justify-content:center; gap: 2rem; z-index:1001; }
      nav#navbar.show { display: flex; }
      nav#navbar a { font-size: 2rem; }
    }

    /* SECTIONS */
    main { margin-top: 100px; }
    section {
      height: 100vh; scroll-snap-align: start;
      display: flex; align-items: center; justify-content: center;
      position: relative; padding: 2rem;
      opacity: 0; transform: translateY(50px);
      transition: opacity .6s ease, transform .6s ease;
      overflow: hidden;
    }
    section.visible { opacity: 1; transform: translateY(0); }
    h2.section-title { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 1rem; opacity: 0; animation: fadeIn 1s ease-out forwards; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to   { opacity: 1; transform: translateY(0); } }
    .paw-overlay { position: absolute; font-size: 100px; color: var(--black); opacity: 0.1; }

    /* HERO */
  

  
    #hero .logo-hero { width: 300px; height: 300px; object-fit: cover; flex-shrink: 0; }
    .headline-rotate-wrapper { flex: 1; display: flex; flex-direction: column; align-items: flex-start; max-width: 60%; margin-top: .5rem; gap: 2.5rem; }
    .headline-rotate { font-family: var(--font-heading); font-size: clamp(1.5rem,5vw,2.5rem); line-height: 1.2; min-height: 6rem; }
    .headline-rotate .dot { animation: blink 1s steps(1) infinite; }
    @keyframes blink { 0%,50%{opacity:1;}51%,100%{opacity:0;} }
    .rotating { animation: fadeInText .6s ease forwards; }
    .rotating.fade-out { animation: fadeOutText .6s ease forwards; }
    @keyframes fadeInText { from{opacity:0;} to{opacity:1;} }
    @keyframes fadeOutText{ from{opacity:1;} to{opacity:0;} }

    .hero-headline { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 1rem; }
    .hero-title-main { font-family: 'Bernard MT Condensed', serif; font-size: clamp(80px, 10vw, 120px); white-space: nowrap; line-height: 1; position: relative; color: #000; }
    .hero-title-main .hero-paw { position: absolute; top: -20px; right: -50px; font-size: 50px; transform: rotate(20deg); color: #000; }
    .hero-title-sub { font-family: "League Spartan", sans-serif; font-weight: 700; font-size: clamp(20px, 3vw, 32px); text-transform: uppercase; letter-spacing: 0.25em; color: #000; margin-top: 0.2rem; white-space: nowrap; }
    .hero-btn { font-family: "Yellowtail", cursive; font-size: 2rem; font-weight: 400; background-color: var(--black); color: var(--gold); padding: 0.75rem 1.5rem; border-radius: 8px; transition: background-color 0.3s, color 0.3s, transform 0.2s; }
    .hero-btn:hover { background-color: var(--gold); color: var(--black); transform: translateY(-2px); }
    @media (min-width: 769px) { #hero { justify-content: center; padding-left:2rem; } .headline-rotate-wrapper { align-items: flex-start; } }
    @media (max-width: 768px) { #hero { flex-direction: column; align-items: center; padding-left: 0; } .headline-rotate-wrapper { align-items: center; max-width: 90%; text-align: center; } .hero-btn { margin: 3rem auto 0 auto; } }

    /* ABOUT */   #about   { flex-direction:column; text-align:center; padding:4rem; z-index: -1;}
    /* SERVICES */#services{ background:#fbe7c6; flex-direction:column; text-align:center; padding:4rem; }
    #services ul { list-style: disc inside; margin-top:1rem; }
    #services li{ margin:0.5rem 0; }
    /* SAFETY */   #safety  { background:var(--cream); flex-direction:column; text-align:center; padding:4rem; }
    /* CONTACT */  #contact { background:var(--cream); flex-direction:column; text-align:center; padding:4rem; }

    /* REVIEWS */
    #reviews { background:#fff6e9; flex-direction:column; text-align:center; padding:4rem; overflow: visible; }
    .review-rotator { position: relative; width:100%; max-width:800px; padding:2rem 1rem; overflow:hidden; }
    .review-item { position:absolute; top:0; left:0; width:100%; opacity:0; transform:scale(0.95); transition: opacity .8s ease, transform .8s ease; text-align:center; }
    .review-item.active { opacity:1; transform:scale(1); }
    .stars { color: var(--black); font-size:1.5rem; margin-bottom:.5rem; }
    .review-text { font-size:1.2rem; margin-bottom:.5rem; }
    .review-author { font-family: var(--font-quote); font-style: italic; color:#555; }

    /* GALLERY */
    /* gallery title aligned right on desktop, centered on mobile */











/* desktop & tablet: hide the button, show the full text */
#read-journey-btn {
  display: none !important;
}
.about-content .about-text {
  display: block !important;
  text-align:center;

}
    

    
    /* allow hero overflow so the img can spill down */
#hero {
  position: relative;
  overflow: visible;
  top: -3rem;

}

/* the overlapping image at the bottom */
.hero-bottom-img {
  position: absolute;
  bottom:-169px;              /* how far it overlaps—tweak as needed */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;                 /* or a fixed px value */
  max-width: 1999px;           /* adjust to suit your design */
  pointer-events: none;       /* so clicks pass through */
  z-index: 2;                 /* above hero content but under nav */
}

/* ensure next section covers anything below hero bg */
main > section:not(#hero) {
  position: relative;
  z-index: 1;
}

/* ABOUT header image wrapper */
/* Typewriter cursor */
.cursor {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: bold;
  animation: blinkCursor 0.7s steps(1) infinite;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* ABOUT SECTION */
#about {
  position: relative;
 
  overflow: hidden;
}

#about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

#about .about-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding: 4rem 2rem;
}




#about p {
  line-height: 1.6;
  color: var(--black);
}

#about .about-values {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 0;
}

#about .about-values li {
  background: var(--gold);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-family: var(--font-nav);
  color: var(--black);
}

#about .about-values li strong {
  color: black;
}

#about a {
  color: black;
  text-decoration: underline;
}

/* paw stays low-opacity behind */
#about .paw-overlay {
  font-size: 120px;
  color: var(--black);
  transform: rotate(20deg);
  opacity: 0.05;
  position: absolute;
  
  z-index: 1;
}




/* Ensure content sits above them */
#about .about-content {
  position: relative;
  z-index: 2;
}


/* Ensure content sits above them */
#about .about-content {
  position: relative;
  z-index: 2;
}

/* responsive tweaks */
@media (max-width: 768px) {
  #about .about-content {
    padding: 2rem 1rem;
    text-align: center;
  }
  #about .about-values {
    grid-template-columns: 1fr;
  }
  #about .paw-overlay {
    display: none;
  }
}


/* NEW: wrapper floats both image + caption */
.about-portrait-wrapper {
  float: left;
  width: 200px;               /* same width as your portrait */
  margin: 0 1.5rem 0.5rem 0;  /* space to the right & below */
  text-align: center;         /* caption centered under image */
  /* no clearing needed here */
}

/* keep circle cropping on the image */
.about-portrait {
  width: 100%;
  padding-top: 100%;          /* 1:1 aspect ratio */
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.about-portrait img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

/* small caption tucked right under the portrait */
.portrait-info {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  line-height: 1.2;

}
.portrait-name {
  font-weight: bold;
  color: var(--black);
  margin: 0;
 

}
.portrait-position {
  font-family: var(--font-body);
  color: #555;
  margin: 0;
}



@media screen and (min-width: 769px) {
  nav#navbar .close-menu {
    display: none !important;
  }
}




/* Mobile: center above text */
@media (max-width: 768px) {
  .about-portrait {
    float: none;
    margin: 0 auto 1.5rem;
    width: 150px;
    height: 150px;
    shape-outside: none;
    shape-margin: 0;
  }
}

/* 1) Define the shake keyframes */
@keyframes shake {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(2deg); }
  40%  { transform: rotate(-2deg); }
  60%  { transform: rotate(2deg); }
  80%  { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}

/* 2) Apply on scroll-into-view */
#about.visible .about-values li {
  transform-origin: center center;
  animation: shake 0.5s ease-in-out;
}

/* 3) Re-trigger on hover */
.about-values li:hover {
  transform-origin: center center;
  animation: shake 0.5s ease-in-out;
}


/* Base shake (keeps both forwards/backwards transforms) */
#about.visible .about-values li {
  transform-origin: center center;
  animation: shake 0.5s ease-in-out both;
}

/* Stagger via nth-child delays */
#about.visible .about-values li:nth-child(1) { animation-delay: 0s;    }
#about.visible .about-values li:nth-child(2) { animation-delay: 0.15s; }
#about.visible .about-values li:nth-child(3) { animation-delay: 0.30s; }
#about.visible .about-values li:nth-child(4) { animation-delay: 0.45s; }
#about.visible .about-values li:nth-child(5) { animation-delay: 0.60s; }
/* Add more nth-child rules if you have more items */

/* Hover: override to animate immediately on hover */
.about-values li:hover {
  animation: shake 0.5s ease-in-out both;
  animation-delay: 0s !important;
}



/* use Poppins for “About Us” */
#about .section-title {
  font-family: "Cal Sans", sans-serif;
      /* new Avenir-like font */
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--black);
 /* opacity: 0;
  transform: scale(0.5);*/
 /* transition: transform 0.3s, opacity 0.3s;*/
}

/* pop-bounce on scroll into view */


/* hover wiggle */
/* 1) Cal Sans for your main Services headline */
.services-intro .section-title {
  font-family: 'Cal Sans', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  color: var(--black);
}

/* 2) Copy as your site default (Outfit) */
.services-intro p,
.card p {
  font-family: var(--font-nav);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--black);
}

/* 3) Remove previous bg; center and pad */
#services {
  background:#fff;
  flex-direction: column;
  text-align: center;
  padding: 4rem 2rem;
}

/* 4) Card grid layout (unchanged) */
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  margin: 0 auto;
}

/* 5) Gold cards with black text */
.services-cards .card {
  background: var(--gold);
  color: var(--black);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(20px);
  opacity: 0;
  transition: transform .6s ease, opacity .6s ease;
}

/* 6) Staggered reveal on scroll */
#services.visible .card {
  opacity: 1;
  transform: translateY(0);
}
#services.visible .card:nth-child(1) { transition-delay: 0.1s; }
#services.visible .card:nth-child(2) { transition-delay: 0.2s; }
#services.visible .card:nth-child(3) { transition-delay: 0.3s; }
#services.visible .card:nth-child(4) { transition-delay: 0.4s; }

/* 7) Card hover lift + icon rotate */
.services-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.services-cards .card:hover .service-icon {
  transform: rotate(-15deg) scale(1.1);
}

/* 8) Icon styling—now black to contrast gold */
.service-icon {
  font-size: 3rem;
  color: var(--black);
  margin-bottom: 1rem;
  transition: transform .3s ease;
}

/* 9) Card titles in your heading font */
.card-title {
  font-family: var(--font-nav);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* Responsive tweaks */
@media(max-width:768px) {
  .services-intro .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .services-cards {
    gap: 1rem;
  }
  .services-cards .card {
    padding: 1.5rem 1rem;
  }
}

/* 1) Match the About Us word-spacing on the Services headline */
.services-intro .section-title {
  letter-spacing: 0.05em;            /* same as About Us */
}

/* 2) Restyle the intro sentence under the heading */
.services-intro p {
  font-family: var(--font-body);
  font-weight: bold;   /* switch from Outfit to Cal Sans */
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.03em;                /* a touch of breathing room */
  line-height: 1.5;
  margin: 0.5rem;
  padding-bottom: 1.5rem;
  max-width: 800px;
                      /* tighten the gap before cards */
  color: var(--black);
}

/* 3) Force single-column on small screens for better responsiveness */
@media (max-width: 768px) {
  .services-cards {
    grid-template-columns: 1fr !important;
  }
}


/* SAFETY SECTION LAYOUT */
#safety {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background:var(--cream);
 padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

/* SVG + Paw Animation */
.safety-animation {
  position: relative;
  width: 200px;
  height: 200px;
  flex: 1 1 200px;
  margin: 1rem;
}
.safety-animation svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
}
.pulse {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  transform-origin: 50% 50%;
  opacity: 0;
}
.pulse1 { animation: pulse 1.6s ease-out infinite; }
.pulse2 { animation: pulse 1.6s ease-out infinite; animation-delay: 0.8s; }
@keyframes pulse {
  0%   { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.safety-paw {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 3rem;
  color: var(--gold);
        opacity: 0.5;
  z-index: 1;
}

/* CONTENT COLUMN */
.safety-content {
  flex: 2 1 300px;
  max-width: 800px;
  height: 437px;
  margin-bottom: 1rem;
}
.safety-content .section-title {
  font-family: 'Cal Sans', sans-serif;
  font-size: clamp(3.5rem, 6vw, 5rem);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;

      /* new Avenir-like font */
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--black);
}
.safety-content p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* SAFETY LIST WITH STAGGERED FADE-IN */
.safety-list {
  list-style: none;
  padding: 0;
}

.safety-list li i {
  color: var(--gold);
  margin-right: 0.75rem;
  font-size: 1.2rem;
}







/* 1) Slide-in farther from the left */
.safety-list li {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-50px);               /* slide in from 50px left */
  transition: 
    opacity 0.5s ease, 
    transform 0.5s ease, 
    font-size 0.3s ease, 
    font-weight 0.3s ease;
  /* make sure text uses your body font */
  font-family: var(--font-body);
  font-size: 1rem;                            /* base size */
  line-height: 2.5;
}

/* 2) Slide-to resting spot */
#safety.visible .safety-list li {
  opacity: 1;
  transform: translateX(0);
}
/* stagger delays */
#safety.visible .safety-list li:nth-child(1) { transition-delay: 0.1s; }
#safety.visible .safety-list li:nth-child(2) { transition-delay: 0.2s; }
#safety.visible .safety-list li:nth-child(3) { transition-delay: 0.3s; }
#safety.visible .safety-list li:nth-child(4) { transition-delay: 0.4s; }
#safety.visible .safety-list li:nth-child(5) { transition-delay: 0.5s; }
#safety.visible .safety-list li:nth-child(6) { transition-delay: 0.6s; }
#safety.visible .safety-list li:nth-child(7) { transition-delay: 0.7s; }

/* 3) Enlarge and bold text on hover */
.safety-list li:hover {
  font-size: 1.1rem;     /* slightly larger */
  font-weight: 700;      /* bold */
  color: var(--black);
  border-radius: 8px;
  /* optional: nudge the icon too */
  transform: translateX(0) scale(1.02);
}

.safety-list li.active {
  font-size: 1.1rem;     /* slightly larger */
  font-weight: 700;      /* bold */
  background: var(--gold);
  color: var(--black);
  border-radius: 8px;
  /* optional: nudge the icon too */
  transform: translateX(0) scale(1.02);
}

/* keep all ticks gold by default */
.safety-list li i {
  color: var(--gold);
  transition: color 0.3s ease;
}

/* when a list‐item is “active,” make its tick black */
.safety-list li.active i {
  color: var(--black);
  padding-left: 1rem;
}



/* RESPONSIVE */
@media (max-width: 768px) {
  #safety { flex-direction: column; padding: 3rem 1rem; }
  .safety-animation, .safety-content { margin: 1rem auto; }
}


/* wrapper flex */
/* instead of flex, just relative positioning */
.safety-list-wrapper {
  position: relative;
}


/* list stays left */
.safety-list {
  flex: 1 1 300px;
}

/* hover-image container */
.safety-hover-image {
  position: absolute;
  top: 0;               /* align with top of list */
  right: -50px;        /* pull it out to the right—tweak as needed */
  width: 300px;         /* fix your image size */
  pointer-events: none; /* clicks pass through */
}
.safety-hover-image img {
  opacity: 0;
  transition: opacity 0.4s ease;
 /* border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
  width: 100%;
  height: auto;
}



@media (max-width: 768px) {
  .safety-paw {

    display: none;
  }

  .safety-animation {

    display: none;
  }

  .safety-hover-image {
    display: none;     /* hide on small screens */
    
  }
}

/* Reviews section transparent */
#reviews {
  background: none;
}

/* Center & constrain rotator */
.review-rotator {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  height: auto; /* let cards flow */
}

/* Your existing .review-item and .review-item.active rules will handle stacking */


.review-rotator {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 240px;
  margin: 0 auto;
  overflow: visible;
}

.review-item {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) scale(0.95) translateY(10px);
  opacity: 0;
  width: 100%;
  z-index: 1;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.review-item.active {
  opacity: 1;
  transform: translateX(-50%) scale(1) translateY(0);
  z-index: 2;
}

.review-card {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.review-avatar {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid var(--gold);
}

.review-body {
  flex: 1;
}

.stars {
  margin-bottom: 0.5rem;
}

.stars svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  margin-right: 0.2rem;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}

.review-author {
  font-style: italic;
  color: #555;
  margin: 0;
}


/* —————————— */
/* Google-Review CTA under Reviews */
.review-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.qr-box {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.qr-box img {
  display: block;
  width: 150px;
  height: 150px;
}

.cta-text p {
  font-family: var(--font-nav);
  font-size: 1.2rem;
  color: var(--black);
  margin: 0;
  line-height: 1.4;
}

.cta-text a {
  color: var(--gold);
  font-weight: bold;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .review-cta {
    flex-direction: column;
    gap: 1rem;
  }
}


/* —— Stack container —— */
.photo-stack-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.photo-stack {
  position: relative;
  width: 400px; height: 400px;
  margin-bottom: 1.5rem;
  touch-action: pan-y;
}
.photo-card {
  position: absolute;
  top: 0; left: 0;
  width: 80%; height: 100%;
  margin: 0 10%;
  background: #fff;
  border: 1px solid var(--white);
  border-radius: 1px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  cursor: grab;
  transition: transform .6s ease, z-index .6s ease;
}
.photo-card img {
  width: 100%; height: 80%;
  object-fit: cover; border-radius: 4px;
}
.photo-card figcaption {
  margin-top: .5rem;
  font-family: var(--font-caption);
  font-size: 1rem;
}

.photo-stack .photo-card {
  position: absolute;
  top: 0;
  left: 0;
  /* use your --i to stagger rotation and offset */
  transform: 
    rotate(calc((var(--i) * 10deg) - 20deg))
    translate(
      calc((var(--i) * 5px) - 15px),
      calc((var(--i) * 5px) - 15px)
    );
  transform-origin: center center;
  transition: transform 0.6s ease;
  /* optional: stack ordering so higher --i sit behind */
  z-index: calc(100 - var(--i));
}

/* make sure the very top card isn’t rotated */
.photo-stack .photo-card:last-child {
  transform: none;
  z-index: 101;
}



/* “View All” grid styles */
.view-all-btn {
  background: var(--black);
  color: var(--gold);
  padding: .75rem 1.5rem;
  margin-top: 3.5rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-family: var(--font-nav);
  font-size: 1rem;
  transition: background .3s;
}
.view-all-btn:hover { background: var(--gold); color: var(--black); }


/* —— Modal & Slider —— */
.modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex; align-items: center; justify-content: center;
  z-index: 3000;
}
.modal.hidden { display: none; }
.modal-content {
  position: relative;
  width: 90%; max-width: 800px;
  background: #000000; border-radius: 8px;
  overflow: hidden;
}
.close-modal {
  position: absolute; top: 0.5rem; right: 1rem;
  font-size: 2rem; color:#fff; cursor: pointer;
  z-index: 1;
}
.slider {
  position: relative; height: 500px; background: #000000;
}
.slide {
  display: none;
  width: 100%; height: 100%;
  flex-direction: column; align-items: center; justify-content: center;
}
.slide.active { display: flex; }
.slide img {
  max-width: 100%; max-height: 80%;
  border-radius: 4px;
}
.slide .caption {
  margin-top: 1rem;
  font-family: var(--font-caption);
  font-size: 1.1rem;
  color: var(--gold);
}
.prev-slide, .next-slide {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff; border: none;
  padding: 0.5rem 1rem; border-radius: 4px;
  font-size: 2rem; cursor: pointer;
}
.prev-slide { left: 0.5rem; }
.next-slide { right: 0.5rem; }


/* gallery title sits flush with the photo stack column */
#gallery .section-title {
  max-width: 600px;         /* match your .photo-stack-wrapper width */
  margin: 0 auto 1.5rem;
  margin-right: 5px; 
    /* center that 600px block, with bottom gap */
  text-align: right;         /* left-align the H2 inside that block */
  font-family: 'Cal Sans', sans-serif;
    font-size: clamp(3.5rem, 6vw, 5rem);
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--black);
}

/* mobile reset back to full-width center */


/* make #gallery a positioning context */
#gallery {
  position: relative;
  overflow: hidden;
}

/* shared styles for all bg-decor */
.gallery-decor {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
 
  pointer-events: none;
}

/* first pawprint up in the top-left */
.gallery-decor.decor1 {
  top: 13%;
  left: 3%;
  transform: rotate(350deg);
  width: 500px;
  height: 228px;
  background-image: url('../images/bone.png');
}

/* second bone down in the bottom-right */
.gallery-decor.decor2 {
  bottom: 6%;
  right: 45%;
  transform: rotate(10deg);
  width: 600px;
  height: 353px;
  background-image: url('../images/camera2.png');
}

.gallery-decor.decor3 {
  bottom: -3%;
  right: -20%;
  transform: rotate(108deg);
  width: 470px;
  height: 462px;
  background-image: url('../images/mouse.png');
}


/* responsive tweak: hide decorations on small screens */



/* ─── CONTACT SECTION ───────────────────────────────────────────────────── */

#contact.contact-section {
  background: var(--black);
  color: var(--cream);
  padding: 4rem 2rem;
  scroll-snap-align: start;
}

/* ─── SPONSORS BANNER ───────────────────────────────────────────────────── */




/* Main two-column layout */
#contact .contact-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
  align-items: start;
}

/* Left: contact details */
#contact .contact-details h2 {
  font-family: 'Cal Sans', sans-serif;
  letter-spacing: 0.05em;
  font-size: 3.5rem;
  margin-top: -0.8rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
#contact .contact-details ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  line-height: 1.8;
}
#contact .contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#contact .contact-details li i {
  color: var(--gold);
  width: 1.2em;
  text-align: center;
}
#contact .contact-details a {
  color: var(--cream);
 /* text-decoration: underline;*/
  transition: color .3s;
}
#contact .contact-details a:hover {
  color: var(--gold);
}

/* Right: social cards */
#contact .social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
#contact .social-link {
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-nav);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform .3s, background .3s, color .3s;
}
#contact .social-link i {
  font-size: 1.4rem;
}
#contact .social-link:hover {
  transform: translateY(-3px);
  background: var(--gold);
  color: var(--black);
 
}

/* WhatsApp special color */
#contact .social-link.whatsapp {
  background: #25D366;
  color: #fff;
}
#contact .social-link.whatsapp:hover {
  background: var(--gold);
  color: var(--black);
}

/* Twitter button */
#contact .social-link.twitter {
  background-color: #090223;
  color: var(--cream);
}
#contact .social-link.twitter:hover {
  background: var(--gold);
  color: var(--black);}




/* Individual brand tweaks */
#contact .social-link.insta { background: #E4405F; color: #fff; }
#contact .social-link.insta:hover {  background: var(--gold);
  color: var(--black); }
#contact .social-link.fb   { background: #1877F2; color: #fff; }
#contact .social-link.fb:hover   {  background: var(--gold);
  color: var(--black); }

/* Responsive fallback */
@media (max-width: 600px) {
  #contact .contact-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  #contact .contact-details li {
    justify-content: center;
  }
  #contact .social-links {
    justify-content: center;
  }
}


/* —————— Partnered With Section (side-by-side) —————— */
#partners {
  display: grid;
  grid-template-columns: 40% 60%;      /* title on left, logos on right */
  align-items: center;                /* vertically center both columns */
  max-width: 1060px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  gap: 1rem;                          /* space between title & logos */
}

#partners .section-title {
  font-family: 'Cal Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem); /* smaller, responsive */
  margin: 0;
  justify-self: start;                /* keep it flush left */
  color: var(--black);
  letter-spacing: 0.05em;

}



/* logos container now wide and airy */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 3rem;                          /* extra space around each logo */
  justify-items: center;
  align-items: center;
}

/* logos are black + padded; reveal color on hover */
.partner-logos img {
  max-width: 200px;
  padding: 1.5rem;                   /* plenty of clickable area */
  filter: brightness(0);
  opacity: 0.5;
  transition: filter .3s ease, transform .3s ease;
}
.partner-logos img:hover {
    opacity: 1;
  filter: none;
  transform: scale(1.05);
}

/* collapse to single-column on tablets */
@media (max-width: 768px) {
  #partners {
    grid-template-columns: 1fr;       /* stack title over logos */
    text-align: center;
  }
  .partner-logos {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

/* hide completely on very small phones */
@media (max-width: 480px) {
  #partners {
    display: none;
  }
}




/* Make partners a positioning context and allow overlap */
#partners {
  position: relative;
  overflow: visible; /* so the decor can hang into the gap above Reviews */
}

/* Keep content above the decor if needed */
#partners .section-title,
#partners .partner-logos {
  position: relative;
  z-index: 1;
}

/* Handtoy: same pattern as gallery-decor */
.gallery-decor.decor-handtoy {
  position: absolute;
  background-image: url(../images/handtoy.png);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;

  width: 952px;
  height: 735px;
  right: -34%;
  bottom: -36%;
}



/* If you’d rather have it flush to the RIGHT EDGE of the SECTION (respect padding),
   use this instead of right:-2rem:  right: 0; */

/* Hide on small screens to avoid crowding */
@media (max-width: 768px) {
  .gallery-decor.decor-handtoy { display: none; }
}


#services {
  position: relative;   /* create a stacking context */
  overflow: visible;    /* allow kittens to peek out */
}

/* big background PNG */
.services-kittens {
  position: absolute;
  top: 73%;
  left: -100px;          /* shift further right */
  transform: translateY(-50%);
  width: 600px;            /* fixed at 600px */
  max-width: none;
  pointer-events: none;    /* clicks pass through */
  z-index: 0;              /* behind everything in #services */
}

/* bring intro and cards above */
.services-intro,
.services-cards .card {
  position: relative;
  z-index: 1;
}

/* hide on small screens if needed */
@media (max-width: 768px) {
  .services-kittens {
    display: none;
  }
}


/* 1) Match the image’s background exactly — adjust the hex with an eyedropper if needed */
#safety {
  position: relative;
  background-color: #f4f4f4; /* ← your image’s background */
  overflow: visible;
}

  /* hide by default on desktop/tablet */
  .safety-top-paw {
    display: none;
  }

  .section-title .fa-bone {
    margin: 0 0.25em;
    vertical-align: middle;
    font-size: 1.2rem;            /* match your heading text size */
    color: var(--black);       /* or whatever color fits */
  }
  

/* 2) Flip it horizontally and pin to top-left */
.safety-graphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 600px;            /* or whatever size you need */
  height: auto;
  pointer-events: none;
  z-index: 0;
  transform: scaleY(-1);    /* ← flip vertically */
}


/* HERO → ABOUT */
#hero {
  background:
    linear-gradient(
      to bottom,
   
    var(--cream) 0% 
    );

}

/* ─── ABOUT SECTION: TRANSPARENT → CREAM FADE ─────────────────────────── */
#about {
  /* ensure positioning context & remove any old backgrounds */
  position: relative !important;
  background: none !important;
  overflow: hidden;
}

/* overlay gradient from transparent (top) to cream (bottom) */
#about::before {
  content: "";
  position: absolute;
  inset: 0;               /* top:0; right:0; bottom:0; left:0 */
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    #fbe7c6 40%, 
    #fff 100%
  );
}

/* make sure your text/content sits above the gradient */
#about .about-content {
  position: relative;
  z-index: 2;
}

/* SERVICES → SAFETY */
#services {
  background: linear-gradient(
    to bottom,
    #fff 0%,
    #fff 80%,            /* hold peach */
    #f3f3f3 100%       /* fade into cream again */
  );
}

/* SAFETY → REVIEWS */
#safety {
  background: linear-gradient(
    to bottom,
    #f3f3f3  0%,
    #f3f3f3  50%,       /* hold cream */
    #fff6e9 100%            /* fade into reviews’ pink */
  );
}

/* REVIEWS → GALLERY */
#reviews {
  background: linear-gradient(
    to bottom,
    #fff6e9 100%,
   
      /* fade into gallery overlay */
  );
}

/* GALLERY → CONTACT */
#gallery {
  background:
    
    linear-gradient(
      to bottom,
      #fff6e9  0%,
      var(--cream) 100%
    );
}
#contact {
  background: linear-gradient(
    to bottom,
    var(--cream) 0%,
    var(--black) 100%
  );
}


/* make Reviews a positioning context */
#reviews {
  position: relative;
  overflow: hidden; /* ensures graphic can sit flush to bottom */
}

/* push your rotator/content above the graphic */
#reviews .review-rotator,
#reviews .review-cta {
  position: relative;
  z-index: 1;
}

/* the bottom-of-section graphic */
.reviews-graphic {
  position: absolute;
  bottom: 0;
  left: 24%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 795px;
  pointer-events: none; /* clicks pass through */
  z-index: 0;
}

/* hide all photo-cards by default… */
.photo-stack .photo-card {
  display: none;
}

/* …and only display those in the active batch */
.photo-stack .photo-card.show {
  display: block;
}



/* Estimate Section */
#estimate {
  background: #f3f3f3;
  padding: 4rem 1rem;
}
#estimate .container {
  max-width: 800px;
  margin: 0 auto;
}
#estimate .section-title {
  font-family: 'Cal Sans', sans-serif;
  font-size: clamp(3.5rem, 6vw, 5rem);
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  text-align: center;
}
.estimate-form .form-row {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.estimate-form label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--black);
}
.estimate-form input[type="text"],
.estimate-form select {
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-body);
}
.estimate-form .checkbox {
  flex-direction: row;
  align-items:normal;
}
.estimate-form .checkbox label {
  margin: 0;
  font-weight: normal;
}
.estimate-form input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* Pet repeater */
#pet-list .pet-entry {
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
  position: relative;
  background: var(--cream);
}
#pet-list .pet-entry h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: var(--black);
}
.remove-pet {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 0.9rem;
}
.remove-pet:hover {
  color: var(--gold);
}

/* Add-pet button */
#add-pet {
  background: var(--black);
  color: var(--cream);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 1.5rem;
  font-family: var(--font-nav);
}
#add-pet:hover {
  background: var(--gold);
  color: var(--black);
}

/* Calculate button */
#calculate-btn {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.75rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  font-family: var(--font-nav);
}
#calculate-btn:hover {
  opacity: 0.9;
}

/* Output */
.estimate-output {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.25rem;
  color: var(--black);
}

/* ─── Three-column layout ───────────────────────────────── */
.estimate-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.form-col {
  display: flex;
  flex-direction: column;
}


/* adjust pet-entry width */
.pet-entry {
  width: 100%;
}

/* limit styling tweaks */
.remove-pet {
  align-self: flex-end;
  margin-top: 0.5rem;
}

/* (keep your existing button & input styles here…) */

/* ensure container doesn’t overflow */
#estimate { overflow: hidden; }

/* any other spacing tweaks as needed… */


/* ─── ESTIMATE SECTION ───────────────────────────────────────────────────── */

#estimate .section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2.5rem;
}

/* boxed grid wrapper */
.estimate-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);

 
}

/* force the Calculate button and output to span all columns */
.estimate-box button[type="submit"],
.estimate-output {
  grid-column: 1 / -1;
}

/* make each column flex-direction: column */
.estimate-form .form-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* lighten form rows */
.estimate-form .form-row {
  display: flex;
  flex-direction: column;
}
.estimate-form label {
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.estimate-form input,
.estimate-form select {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.95rem;
}

/* style “Add Another Pet” link */
.add-pet {
  background: none;
  border: 1px dashed #888;
  color: #444;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
}
.add-pet:hover {
  border-color: #666;
  color: #000;
}

/* Calculate button */
#calculate-btn {
  padding: 0.75rem;
  background: var(--black);
  color: var(--gold);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
#calculate-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* output styling */
.estimate-output {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--black);
  border-radius: 4px;
  font-family: var(--font-nav);
}
.estimate-output p {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: var(--gold);
  

}
.estimate-output p strong {
  color: var(--gold);

}


/* hide output until after Calculate clicked */
.estimate-output {
  display: none;
}


#estimate .form-row select#journey-type {
  background: var(--cream);
  border: 1px solid var(--black);
  padding: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 0;
  width: 100%;
}



.loader {
  margin: 1rem auto;
  border: 4px solid var(--black);
  border-top:   4px solid var(--gold);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* make any error inside your estimate box gold */
.estimate-output.error {
  color: var(--gold);
}

/* responsive fallback: stack to one column under 768px */


/* keep the journey modal completely hidden until you add .show */
#journey-modal {
  display: none !important;
  position: fixed;
  inset: 0;                   /* shorthand for top:0; right:0; bottom:0; left:0 */
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  padding: 1rem;
  z-index: 2000;
  overscroll-behavior: contain; /* prevent overscroll bounce revealing it */
}

#journey-modal.show {
  display: flex !important;
}

/* contain any overscroll so you can’t pull past the bottom into hidden elements */
html, body {
  overscroll-behavior-y: contain;
}


html.terms-page { scroll-snap-type: none; }           /* stop snap on legal page */

html.terms-page section {
  height: auto;                                       /* let it grow naturally */
  min-height: min(100vh, auto);
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 1;                                         /* make it visible */
  transform: none;
  overflow: visible;                                  /* don’t clip long text */
  padding: 2rem 1rem;
}


    /* FOOTER */
    footer { background: var(--black); color: var(--cream); padding:1rem; text-align:center; }

    footer {
      width: 100%;
      position: fixed;
      bottom: -100px;
      transition: bottom 0.4s ease-in-out;
      z-index: 1000;
      text-align: center !important;
    }

    footer.show-footer {
      bottom: 0; /* pops up */
    }
    
    