/* ============================================================
   Working With Animals — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

/* === CUSTOM PROPERTIES === */
:root {
  --green:      #1B3A2D;
  --cream:      #F5EFE3;
  --charcoal:   #1C1C1A;
  --terracotta: #C4622D;
  --mist:       #EAE8E2;
  --stone:      #8A8A7E;

  --green-dark: #152e22;
  --green-mid:  #254d3c;
  --terracotta-dark: #a8511f;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Fluid spacing */
  --sp-2xs: clamp(0.375rem, 0.8vw, 0.5rem);
  --sp-xs:  clamp(0.5rem,   1vw,   0.75rem);
  --sp-sm:  clamp(0.75rem,  1.5vw, 1rem);
  --sp-md:  clamp(1rem,     2vw,   1.5rem);
  --sp-lg:  clamp(1.5rem,   3vw,   2.5rem);
  --sp-xl:  clamp(2rem,     5vw,   4rem);
  --sp-2xl: clamp(3rem,     7vw,   6rem);
  --sp-3xl: clamp(4rem,     9vw,   9rem);

  /* Fluid type */
  --text-xs:   clamp(0.75rem,  0.9vw,  0.8125rem);
  --text-sm:   clamp(0.8125rem,1vw,    0.9375rem);
  --text-base: clamp(1rem,     1.15vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1.5vw,  1.375rem);
  --text-xl:   clamp(1.25rem,  2vw,    1.625rem);
  --text-2xl:  clamp(1.5rem,   2.5vw,  2.125rem);
  --text-3xl:  clamp(1.875rem, 3.5vw,  2.875rem);
  --text-4xl:  clamp(2.25rem,  4.5vw,  3.75rem);
  --text-hero: clamp(2.5rem,   6vw,    5rem);

  /* Z-index scale */
  --z-base:    0;
  --z-raised:  10;
  --z-sticky:  50;
  --z-overlay: 100;
  --z-nav:     200;
  --z-modal:   300;

  --nav-height: 72px;
  --container:  1200px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --duration-fast: 150ms;
  --duration-base: 280ms;
  --duration-slow: 550ms;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, picture, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; text-wrap: balance; }
p { text-wrap: pretty; }
blockquote, cite, q { font-style: normal; }

/* === LAYOUT === */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}
.container--narrow {
  width: min(760px, 100% - 3rem);
  margin-inline: auto;
}
.container--wide {
  width: min(1440px, 100% - 2rem);
  margin-inline: auto;
}

/* === TYPOGRAPHY === */
.display-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-hero);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.sub-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  line-height: 1.2;
}
.body-large { font-size: var(--text-lg); line-height: 1.6; }
.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === SECTIONS === */
.section {
  padding-block: var(--sp-3xl);
}
.section--cream {
  background: var(--cream);
  color: var(--charcoal);
}
.section--mist {
  background: var(--mist);
  color: var(--charcoal);
}
.section--green {
  background: var(--green);
  color: var(--cream);
}

/* === SVG ICON UTILITIES === */
.benefit-icon {
  display: block;
  width: 44px;
  height: 44px;
  color: var(--terracotta);
  margin-bottom: var(--sp-md);
}
.benefit-icon svg { width: 100%; height: 100%; display: block; }

.service-list-left {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.service-list-icon {
  display: block;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: var(--terracotta);
  opacity: 0.85;
}
.service-list-icon svg { width: 100%; height: 100%; display: block; }

.faq-cluster-head {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}
.faq-cluster-head .faq-cluster-heading { margin-bottom: 0; }
.faq-cluster-icon {
  display: block;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  color: var(--terracotta);
}
.faq-cluster-icon svg { width: 100%; height: 100%; display: block; }

.service-type-icon {
  display: block;
  width: 40px;
  height: 40px;
  color: var(--terracotta);
  margin-block: var(--sp-sm);
}
.service-type-icon svg { width: 100%; height: 100%; display: block; }

.section--green .section-heading,
.section--green h1,
.section--green h2,
.section--green h3 {
  color: var(--cream);
}
.section--green .stone-text { color: #a8b8b0; }
.section--cream .stone-text { color: var(--stone); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875em 2em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background var(--duration-base) var(--ease-out),
              color var(--duration-base) var(--ease-out),
              transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--terracotta);
  color: #fff;
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 4px 16px rgba(196, 98, 45, 0.35);
}

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 239, 227, 0.5);
}
.btn-outline-cream:hover {
  background: rgba(245, 239, 227, 0.08);
  border-color: var(--cream);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--cream);
}

.btn-text {
  padding: 0;
  color: var(--terracotta);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  transition: color var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}
.btn-text:hover { color: var(--terracotta-dark); }
.btn-text-cream {
  color: var(--cream);
  border-bottom-color: rgba(245, 239, 227, 0.5);
}
.btn-text-cream:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--green);
  z-index: var(--z-nav);
  border-bottom: 1px solid rgba(245, 239, 227, 0.08);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  outline: none;
}
.nav-logo:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
  border-radius: 2px;
}
.nav-logo svg { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  margin-inline-start: auto;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(245, 239, 227, 0.85);
  letter-spacing: 0.01em;
  transition: color var(--duration-fast) var(--ease-out);
  padding-block: 0.25em;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--cream); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-inline-start: var(--sp-sm); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  padding: 0;
  margin-inline-start: var(--sp-sm);
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-base) var(--ease-out);
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green);
  z-index: calc(var(--z-nav) - 1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.nav-mobile.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}
.nav-mobile a:hover { opacity: 1; color: var(--cream); }
.nav-mobile .nav-mobile-cta {
  margin-top: var(--sp-sm);
}

/* Nav wordmark text (beside orbit mark) */
.nav-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(245, 239, 227, 0.3);
  padding-left: 12px;
  margin-left: 2px;
}
.nav-wordmark-top {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.7);
  line-height: 1.3;
}
.nav-wordmark-bottom {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* === FOOTER === */
.footer {
  background: var(--green);
  color: var(--cream);
  padding-block: var(--sp-2xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(245, 239, 227, 0.15);
  margin-bottom: var(--sp-xl);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.footer-brand p,
.footer-brand a {
  font-size: var(--text-sm);
  color: rgba(245, 239, 227, 0.7);
  line-height: 1.6;
}
.footer-brand a:hover { color: var(--cream); }
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  text-align: right;
}
.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(245, 239, 227, 0.7);
  transition: color var(--duration-fast) var(--ease-out);
}
.footer-nav a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}
.footer-ethics {
  font-size: var(--text-sm);
  color: rgba(245, 239, 227, 0.55);
  font-style: italic;
}
.footer-bottom > p:last-child {
  font-size: var(--text-xs);
  color: rgba(245, 239, 227, 0.4);
}

/* === HERO BASE === */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  background: var(--green);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 58, 45, 0.82) 0%,
    rgba(27, 58, 45, 0.45) 50%,
    rgba(27, 58, 45, 0.18) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block-end: var(--sp-3xl);
  padding-block-start: var(--sp-xl);
  color: var(--cream);
  max-width: 800px;
}
.hero-content h1 {
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: var(--sp-md);
}
.hero-content .hero-sub {
  font-size: var(--text-lg);
  color: rgba(245, 239, 227, 0.85);
  max-width: 56ch;
  margin-bottom: var(--sp-xl);
  line-height: 1.55;
}

/* Interior page hero (shorter) */
.hero--interior {
  min-height: 52vh;
  align-items: flex-end;
}
.hero--interior .hero-content {
  padding-block-end: var(--sp-2xl);
}
.hero--interior h1 {
  font-size: var(--text-4xl);
}

/* === TESTIMONIAL COMPONENT === */
.testimonial-strip {
  padding-block: var(--sp-2xl);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-xl);
}
.testimonial {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  line-height: 1.35;
  color: var(--cream);
}
.testimonial-cite {
  font-size: var(--text-sm);
  color: rgba(245, 239, 227, 0.6);
  font-style: normal;
  font-weight: 500;
}

/* === SERVICE LIST (editorial, no cards) === */
.service-list {
  display: flex;
  flex-direction: column;
}
.service-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: var(--sp-lg);
  padding-block: var(--sp-lg);
  border-bottom: 1px solid rgba(245, 239, 227, 0.18);
}
.section--cream .service-list-item {
  border-bottom-color: rgba(28, 28, 26, 0.12);
}
.service-list-item:first-child {
  border-top: 1px solid rgba(245, 239, 227, 0.18);
}
.section--cream .service-list-item:first-child {
  border-top-color: rgba(28, 28, 26, 0.12);
}
.service-list-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--cream);
  margin-bottom: 0.25em;
}
.section--cream .service-list-name { color: var(--green); }
.service-list-detail {
  font-size: var(--text-sm);
  color: rgba(245, 239, 227, 0.65);
}
.section--cream .service-list-detail { color: var(--stone); }
.service-list-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--terracotta);
  white-space: nowrap;
}

/* === STEPS COMPONENT === */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-xl);
  counter-reset: steps;
}
.step {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.step-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--terracotta);
  letter-spacing: -0.03em;
}
.step-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.2;
}
.step-body {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: rgba(245, 239, 227, 0.75);
  max-width: 30ch;
}
.section--cream .step-body { color: var(--stone); }

/* === PHOTO SPLIT (text left/right, image other side) === */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}
.photo-split--reverse { direction: rtl; }
.photo-split--reverse > * { direction: ltr; }
.photo-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.photo-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-2xl) var(--sp-xl);
  gap: var(--sp-md);
}
.photo-split-content h2 {
  font-size: var(--text-3xl);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* === CALLOUT BLOCK === */
.callout {
  padding: var(--sp-xl);
  border-left: 3px solid var(--terracotta);
  background: rgba(245, 239, 227, 0.06);
}
.section--cream .callout {
  background: rgba(27, 58, 45, 0.05);
}
.callout p {
  font-size: var(--text-base);
  line-height: 1.65;
}

/* === CTA BANNER === */
.cta-banner {
  text-align: center;
  padding-block: var(--sp-3xl);
}
.cta-banner h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--sp-md);
  letter-spacing: -0.025em;
}
.cta-banner p {
  font-size: var(--text-lg);
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: var(--sp-xl);
}

/* === FAQ ACCORDION === */
.faq-cluster {
  margin-bottom: var(--sp-2xl);
}
.faq-cluster-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-sm);
  border-bottom: 2px solid var(--terracotta);
  color: var(--cream);
  display: inline-block;
}
.section--cream .faq-cluster-heading { color: var(--green); }

.faq-item {
  border-bottom: 1px solid rgba(245, 239, 227, 0.15);
}
.section--cream .faq-item {
  border-bottom-color: rgba(28, 28, 26, 0.1);
}
.faq-item:first-of-type { border-top: 1px solid rgba(245, 239, 227, 0.15); }
.section--cream .faq-item:first-of-type {
  border-top-color: rgba(28, 28, 26, 0.1);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-md);
  padding-block: var(--sp-md);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--cream);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.section--cream .faq-item summary { color: var(--green); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 3v14M3 10h14' stroke='%23C4622D' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform var(--duration-base) var(--ease-out);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-answer-inner {
  overflow: hidden;
  max-height: 9999px;
  transition: max-height 0.38s var(--ease-out);
}
.faq-answer-inner p {
  padding-bottom: var(--sp-md);
  padding-right: var(--sp-xl);
  font-size: var(--text-base);
  line-height: 1.7;
  color: rgba(245, 239, 227, 0.8);
}
.section--cream .faq-answer-inner p { color: var(--stone); }

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* === PAGE HEADER (non-hero interior pages) === */
.page-header {
  background: var(--green);
  padding-block: var(--sp-2xl);
}
.page-header h1 {
  font-size: var(--text-4xl);
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-sm);
}
.page-header p {
  font-size: var(--text-lg);
  color: rgba(245, 239, 227, 0.75);
  max-width: 52ch;
}

/* === SECTION DIVIDERS === */
.divider {
  width: 48px;
  height: 2px;
  background: var(--terracotta);
  margin-block: var(--sp-md);
}

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  gap: var(--sp-xs);
  font-size: var(--text-xs);
  color: rgba(245, 239, 227, 0.5);
  margin-bottom: var(--sp-lg);
}
.breadcrumb a { color: rgba(245, 239, 227, 0.5); }
.breadcrumb a:hover { color: var(--cream); }
.breadcrumb span { color: rgba(245, 239, 227, 0.3); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  .photo-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .photo-split-img {
    height: 380px;
    width: 100%;
  }
  .photo-split--reverse { direction: ltr; }
}

@media (max-width: 640px) {
  :root { --nav-height: 64px; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero-content .hero-sub { font-size: var(--text-base); }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-nav ul { text-align: left; }
  .steps {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner h2 { font-size: var(--text-3xl); }
}

@media (max-width: 480px) {
  .service-list-item {
    grid-template-columns: 1fr;
    gap: var(--sp-xs);
  }
}

/* === CREDENTIAL STRIP === */
.credential-strip {
  background: var(--charcoal);
  padding-block: var(--sp-md);
}
.credential-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs) var(--sp-2xl);
}
.credential-list li {
  font-size: var(--text-sm);
  color: rgba(245, 239, 227, 0.6);
  letter-spacing: 0.03em;
  position: relative;
  padding-right: calc(var(--sp-2xl) + 4px);
}
.credential-list li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
}
.credential-list li:last-child { padding-right: 0; }
.credential-list li:last-child::after { display: none; }
@media (max-width: 640px) {
  .credential-list {
    justify-content: flex-start;
    gap: var(--sp-xs) var(--sp-xl);
  }
  .credential-list li {
    padding-right: calc(var(--sp-xl) + 4px);
  }
}

/* === STATEMENT SECTION === */
.statement-center {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}
.statement-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.18;
  color: var(--green);
  margin-bottom: var(--sp-xl);
  letter-spacing: -0.025em;
}
.statement-follow {
  font-size: var(--text-lg);
  color: var(--stone);
  line-height: 1.7;
  max-width: 52ch;
  margin-inline: auto;
}
.statement-follow + .statement-follow {
  margin-top: var(--sp-md);
}

/* === SECTION OVERLINE === */
.section-overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: var(--sp-lg);
}
.section--green .section-overline { color: rgba(196, 98, 45, 0.85); }

/* === ANIMAL GALLERY === */
.animal-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: var(--sp-xl);
}
.animal-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
}
.animal-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.animal-gallery-item:hover img { transform: scale(1.04); }
.animal-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-lg) var(--sp-sm) var(--sp-sm);
  background: linear-gradient(to top, rgba(27, 58, 45, 0.9) 0%, transparent 100%);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.9);
}
@media (max-width: 640px) {
  .animal-gallery { grid-template-columns: 1fr 1fr; }
}

/* === PHOTO BREAK (full-bleed image strip, global) === */
.photo-break {
  height: clamp(300px, 40vw, 520px);
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media (max-width: 900px) {
  .photo-break { background-attachment: scroll; }
}

/* === SHARED SCRIPT UTILITIES === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* === FOCUS STYLES === */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

/* === SELECTION === */
::selection {
  background: var(--terracotta);
  color: #fff;
}

/* ============================================================
   SITE REFRESH — New shared components
   ============================================================ */

/* === MARQUEE STRIP === */
.marquee-strip {
  background: var(--terracotta);
  overflow: hidden;
  padding-block: 13px;
  position: relative;
  z-index: 1;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(to right, var(--terracotta), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(to left,  var(--terracotta), transparent); }
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll 32s linear infinite;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-md);
  padding-inline: var(--sp-xl);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  user-select: none;
}
.marquee-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  flex-shrink: 0;
}

/* === HORIZONTAL PHOTO STRIP === */
.photo-strip-outer {
  overflow: hidden;
  background: var(--green);
  line-height: 0;
}
.photo-strip {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  padding-bottom: 0;
}
.photo-strip::-webkit-scrollbar { display: none; }
.photo-strip.is-dragging { cursor: grabbing; }
.photo-strip-item {
  flex: 0 0 auto;
  width: clamp(190px, 26vw, 320px);
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--green-mid);
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.75s var(--ease-out);
  pointer-events: none;
}
.photo-strip-item:hover img { transform: scale(1.06); }

/* === WAVE DIVIDER === */
.wave-divider {
  display: block;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.wave-divider svg { display: block; width: 100%; height: auto; }

/* === STATS BAR (counter-animated) === */
.stats-bar {
  background: var(--charcoal);
  padding-block: var(--sp-2xl);
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--sp-xl), 6vw, 7rem);
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35em;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-value-accent { color: var(--terracotta); }
.stat-label {
  font-size: var(--text-xs);
  color: rgba(245,239,227,0.42);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
}
.stats-divider {
  width: 1px;
  height: 52px;
  background: rgba(245,239,227,0.1);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .stats-divider { display: none; }
}

/* === "WHY" BENEFIT CARDS (research-informed) === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
  gap: 2px;
  margin-top: var(--sp-2xl);
}
.why-card {
  padding: var(--sp-xl);
  background: rgba(245,239,227,0.055);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  transition: background var(--duration-base) var(--ease-out);
}
.why-card:hover { background: rgba(245,239,227,0.09); }
.why-card-bar {
  width: 28px;
  height: 2px;
  background: var(--terracotta);
  flex-shrink: 0;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.why-card p {
  font-size: var(--text-sm);
  color: rgba(245,239,227,0.68);
  line-height: 1.78;
  margin: 0;
}

/* === HERO CLIP-PATH ENTRANCE ANIMATIONS === */
@media (prefers-reduced-motion: no-preference) {
  .hero-entry {
    animation: hero-fade-up 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero-entry-img {
    animation: hero-img-in 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  @keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes hero-img-in {
    from { opacity: 0; transform: scale(0.95) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-entry, .hero-entry-img { opacity: 1 !important; }
}

/* === PHOTO BREAK WITH OVERLAY TEXT === */
.photo-break-quote {
  height: clamp(340px, 46vw, 560px);
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .photo-break-quote { background-attachment: scroll; }
}
.photo-break-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(27,58,45,0.78) 0%,
    rgba(27,58,45,0.38) 55%,
    transparent 100%
  );
}
.photo-break-quote-inner {
  position: relative;
  z-index: 2;
  max-width: 500px;
}
.photo-break-quote-inner blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.375rem);
  line-height: 1.24;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.photo-break-quote-inner cite {
  display: block;
  margin-top: var(--sp-md);
  font-size: var(--text-xs);
  color: rgba(245,239,227,0.5);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* === ENHANCED INTERIOR HERO (photo + taller) === */
.hero--interior-fresh {
  min-height: 58vh;
}

/* === SECTION INTRO (overline-less alternative) === */
.section-intro {
  max-width: 540px;
  margin-bottom: var(--sp-2xl);
}
.section-intro h2 {
  font-size: var(--text-3xl);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: var(--sp-sm);
}
.section-intro p {
  font-size: var(--text-base);
  line-height: 1.7;
  opacity: 0.75;
}

/* === FINAL CTA BOLDER === */
.cta-banner--bold {
  background: var(--green);
  padding-block: var(--sp-3xl);
  text-align: center;
}
.cta-banner--bold h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: var(--sp-md);
}
.cta-banner--bold p {
  font-size: var(--text-lg);
  color: rgba(245,239,227,0.72);
  max-width: 44ch;
  margin-inline: auto;
  margin-bottom: var(--sp-xl);
}

/* === FLOATING BG ORBIT DECORATION === */
.hero-bg-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.045;
}
.hero-bg-deco--spin {
  animation: deco-spin 70s linear infinite;
}
@keyframes deco-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-bg-deco--spin { animation: none; } }
