:root {
  --indigo: #51578a;
  --indigo-deep: #3a3f6b;
  --indigo-dark: #292d4f;
  --indigo-soft: #aab0d4;
  --indigo-pale: #e3e4f0;
  --red: #c8312c;
  --red-soft: #e6716c;
  --ink: #1b1c2b;
  --ink-soft: #4d4f63;
  --ink-mute: #7c7f93;
  --ink-pale: #b6b8c8;
  --paper: #f3f1f8;
  --paper-warm: #f9f5ec;
  --paper-soft: #ffffff;
  --rule: #dedfeb;
  --shadow-sm: 0 2px 6px rgba(27,28,43,0.06);
  --shadow-md: 0 18px 36px -20px rgba(27,28,43,0.2);
  --shadow-lg: 0 40px 70px -32px rgba(27,28,43,0.32);
  --container: 1560px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 9vw, 140px);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-xl: 56px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font: "houschka-rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-body); font-size: 18.5px; line-height: 1.6; color: var(--ink-soft); background: var(--paper); -webkit-font-smoothing: antialiased; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font); color: var(--ink); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); letter-spacing: -0.025em; line-height: 1.08; }
h3 { font-size: clamp(1.3rem, 2.1vw, 1.6rem); letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* Eyebrow labels are not used on vet sites per project rule. Hidden in case any HTML markup still references the class. */
.eyebrow { display: none !important; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 17px 28px; font-family: var(--font); font-weight: 700; font-size: 0.96rem; border: 1.5px solid transparent; border-radius: 999px; cursor: pointer; transition: all 0.25s var(--ease); white-space: nowrap; }
.btn .arrow { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--indigo); color: var(--paper-soft); border-color: var(--indigo); }
.btn-primary:hover { background: var(--indigo-deep); border-color: var(--indigo-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--ink); color: var(--paper-soft); border-color: var(--ink); }
.btn-dark:hover { background: var(--indigo); border-color: var(--indigo); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper-soft); }
.btn-light { background: var(--paper-soft); color: var(--ink); border-color: var(--paper-soft); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost-light { background: transparent; color: var(--paper-soft); border-color: rgba(255,255,255,0.55); }
.btn-ghost-light:hover { background: var(--paper-soft); color: var(--ink); border-color: var(--paper-soft); }

/* ============================================================
   HEADER, logo as feature
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 30; background: var(--paper); padding-block: 22px; transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease); will-change: background-color; }
.site-header.scrolled { background: var(--paper-soft); box-shadow: 0 1px 0 var(--rule); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-logo { display: inline-flex; align-items: center; transform-origin: left center; transition: transform 0.25s var(--ease); will-change: transform; }
.site-header.scrolled .site-logo { transform: scale(0.72); }
.site-logo img { height: 108px; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link { font-size: 1.04rem; font-weight: 600; color: var(--ink-soft); padding: 10px 16px; border-radius: 999px; transition: color 0.2s var(--ease), background 0.2s var(--ease); display: inline-flex; align-items: center; gap: 5px; }
.nav-link:hover { color: var(--ink); background: rgba(255,255,255,0.6); }
.nav-link svg { width: 10px; height: 10px; opacity: 0.5; }
.nav-item { position: relative; }
.nav-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); background: var(--paper-soft); border: 1px solid var(--rule); border-radius: var(--radius-sm); padding: 8px; min-width: 220px; opacity: 0; pointer-events: none; transition: opacity 0.2s var(--ease), transform 0.2s var(--ease); box-shadow: var(--shadow-lg); }
.nav-item:hover .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown a { display: block; padding: 10px 14px; font-weight: 600; font-size: 0.9rem; color: var(--ink-soft); border-radius: 8px; }
.nav-dropdown a:hover { color: var(--ink); background: var(--paper); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .login { font-size: 0.94rem; font-weight: 600; color: var(--ink-soft); padding: 10px 8px; }
.header-cta .login:hover { color: var(--ink); }
.btn-header-register { padding: 12px 22px; font-size: 0.94rem; }
/* Repeat prescriptions form helpers */
.form-question { display: block; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.req { font-weight: 500; color: var(--ink-mute); font-size: 0.85rem; }
.form-radio-group, .form-checkbox-group { display: flex; flex-wrap: wrap; gap: 22px; }
.form-radio, .form-checkbox { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 500; color: var(--ink-soft); }
.form-radio input, .form-checkbox input { width: 18px; height: 18px; accent-color: var(--indigo); cursor: pointer; }

/* Homepage VidiVet section */
.vidivet-home { padding: var(--section-y) 0; overflow: hidden; }
.vidivet-home-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.vidivet-home-body h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.2; }
.vidivet-home-body h2 .accent { color: var(--indigo); font-weight: 700; }
.vidivet-home-body h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); color: var(--ink); }
.vidivet-home-body h4 { font-size: 1.05rem; color: var(--ink); margin-bottom: 8px; font-weight: 700; }
.vidivet-home-body p { color: var(--ink-soft); margin-bottom: 14px; }
.vidivet-home-visuals { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.vidivet-home-app { width: 100%; max-width: 360px; height: auto; }
.vidivet-home-qr { width: 160px; height: 160px; background: #ffffff; padding: 10px; border-radius: 12px; box-shadow: var(--shadow-md); }
@media (max-width: 900px) {
  .vidivet-home-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .vidivet-home-body h2 { max-width: 28ch; margin-left: auto; margin-right: auto; }
}

/* Contact page VidiVet banner */
.vidivet-banner { display: flex; gap: clamp(24px, 3vw, 40px); align-items: center; justify-content: space-between; background: var(--indigo-pale); border-radius: var(--radius-lg); padding: clamp(28px, 3vw, 40px); border: 1px solid rgba(0,0,0,0.04); }
.vidivet-banner-body h3 { font-size: clamp(1.25rem, 1.8vw, 1.55rem); margin-bottom: 8px; color: var(--ink); }
.vidivet-banner-body p { color: var(--ink-soft); max-width: 60ch; margin: 0; }
.vidivet-banner .btn { flex-shrink: 0; }
@media (max-width: 760px) {
  .vidivet-banner { flex-direction: column; align-items: flex-start; gap: 18px; }
}
.mobile-toggle { display: none; width: 46px; height: 46px; border: 1.5px solid var(--rule); background: transparent; cursor: pointer; border-radius: 999px; align-items: center; justify-content: center; }
.mobile-toggle svg { width: 20px; height: 20px; }
@media (max-width: 1080px) { .main-nav { display: none; } .header-cta .login, .btn-header-register { display: none; } .mobile-toggle { display: inline-flex; } .site-logo img { height: 80px; } }

.mobile-menu { position: fixed; inset: 0; z-index: 60; background: var(--paper); transform: translateX(100%); transition: transform 0.4s var(--ease); padding: 24px var(--gutter); overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.mobile-menu img { height: 70px; }
.mobile-close { width: 46px; height: 46px; border: 1.5px solid var(--rule); background: transparent; border-radius: 999px; cursor: pointer; }
.mobile-menu nav a { display: block; font-size: 1.5rem; font-weight: 700; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--rule); letter-spacing: -0.02em; }

/* ============================================================
   HERO, Mizo-style centred
   ============================================================ */
.hero { position: relative; padding: clamp(20px, 4vw, 60px) 0 0; overflow: hidden; background: var(--paper); }
.hero-bottom-curve { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(80px, 9vw, 130px); pointer-events: none; z-index: 4; }
.hero-bottom-curve svg { width: 100%; height: 100%; display: block; }

/* Reusable section-curve overlay, sits at the bottom of a section in the next section's colour */
.section-curve { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(50px, 5vw, 90px); pointer-events: none; z-index: 1; }
.section-curve svg { width: 100%; height: 100%; display: block; }
.hero-eyebrow { text-align: center; margin-bottom: 22px; display: block; }
.hero-title { text-align: center; font-size: clamp(2.6rem, 5.4vw, 4.8rem); line-height: 1.02; color: var(--ink); max-width: 18ch; margin: 0 auto; letter-spacing: -0.035em; font-weight: 700; }
.hero-title .accent { color: var(--indigo); font-weight: 700; }
.hero-sub { text-align: center; max-width: 56ch; margin: 24px auto 0; font-size: clamp(1.05rem, 1.3vw, 1.18rem); color: var(--ink-soft); font-weight: 500; }
.hero-cta { text-align: center; margin-top: -59px; }
.hero-cta .btn { padding: 18px 36px; font-size: 1rem; }

.hero-stage { position: relative; margin: clamp(20px, 2.5vw, 36px) auto 0; max-width: 1200px; aspect-ratio: 2 / 1; overflow: visible; }
.hero-arch { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero-arch svg { width: 100%; height: 100%; display: block; }
.hero-stage-photo { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); z-index: 2; height: 100%; aspect-ratio: 679 / 971; }
.hero-stage-photo img { width: 100%; height: 100%; object-fit: contain; object-position: bottom center; display: block; }
/* Hero photo rotator: slow crossfade between staff portraits, no movement, no flash. */
.hero-stage-rotator { position: relative; }
.hero-stage-rotator .hero-rotator-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease-in-out; }
.hero-stage-rotator .hero-rotator-slide.is-active { opacity: 1; }

.hero-pills { position: absolute; left: 3%; top: 30%; z-index: 3; background: var(--paper-soft); border-radius: 20px; padding: 22px 24px; box-shadow: 0 18px 36px -22px rgba(27,28,43,0.16); display: flex; flex-direction: column; gap: 14px; max-width: 280px; }
.hero-pill { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.hero-pill .check { width: 22px; height: 22px; border-radius: 999px; background: var(--indigo); color: var(--paper-soft); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-pill .check svg { width: 12px; height: 12px; }

.hero-badge { position: absolute; right: 3%; top: 46%; z-index: 3; background: var(--paper-soft); border-radius: 20px; padding: 18px 20px 20px; box-shadow: 0 18px 36px -22px rgba(27,28,43,0.16); max-width: 230px; }
.hero-badge .row { display: flex; align-items: center; gap: 0; }
.hero-badge .avatars { display: flex; }
.hero-badge .avatars span { width: 36px; height: 36px; border-radius: 999px; background-color: var(--indigo-pale); border: 3px solid var(--paper-soft); margin-left: -10px; background-size: cover; background-position: center; }
.hero-badge .avatars span:first-child { margin-left: 0; }
.hero-badge .count { width: 50px; height: 50px; border-radius: 999px; background: var(--indigo); color: var(--paper-soft); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.78rem; letter-spacing: -0.01em; margin-left: -10px; border: 3px solid var(--paper-soft); flex-shrink: 0; }
.hero-badge .text { font-size: 1.02rem; font-weight: 700; color: var(--indigo); margin-top: 12px; line-height: 1.2; letter-spacing: -0.01em; }

@media (max-width: 900px) {
  .hero-stage { aspect-ratio: 5 / 4; max-width: 520px; }
  .hero-stage-photo { width: 56%; max-width: 280px; bottom: -3%; }
  .hero-pills, .hero-badge { position: static; max-width: none; margin-top: 24px; transform: none; }
  .hero-pills { max-width: 360px; margin-left: auto; margin-right: auto; }
  .hero-badge { width: max-content; max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* ============================================================
   HOW IT WORKS, 3-step
   ============================================================ */
.how { padding: var(--section-y) 0 calc(var(--section-y) - 20px); background: #ffffff; }
.how-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end; margin-bottom: 50px; }
.how-head h2 { max-width: 16ch; }
.how-head .actions { text-align: right; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.how-step { display: flex; gap: 18px; align-items: flex-start; padding: 18px 0; }
.how-step .step-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--paper-soft); border: 1px solid var(--rule); display: inline-flex; align-items: center; justify-content: center; color: var(--indigo); flex-shrink: 0; }
.how-step .step-icon svg { width: 26px; height: 26px; }
.how-step .body h3 { font-size: 1.15rem; margin-bottom: 8px; line-height: 1.2; }
.how-step .body p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 800px) { .how-head { grid-template-columns: 1fr; } .how-head .actions { text-align: left; } .how-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ============================================================
   FULL-WIDTH PHOTO BREAK
   ============================================================ */
.photo-break { padding: 0 var(--gutter) var(--section-y); background: #ffffff; position: relative; }
.photo-break .frame { max-width: var(--container); margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16 / 7; background: var(--indigo-pale); }
.photo-break .frame img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   ALWAYS HERE, text+photo
   ============================================================ */
.always { padding: var(--section-y) 0; position: relative; }
.always-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.always-body h2 { margin-top: 20px; max-width: 14ch; }
.always-body h2 .accent { color: var(--indigo); }
.always-body p { margin-top: 22px; font-size: 1.05rem; color: var(--ink-soft); max-width: 50ch; }
.always-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.always-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3.4; background: var(--indigo-pale); }
.always-photo img { width: 100%; height: 100%; object-fit: cover; }
.always-decoration { position: absolute; bottom: -40px; left: -40px; width: 180px; height: 180px; opacity: 0.5; color: var(--indigo-soft); pointer-events: none; z-index: -1; }
@media (max-width: 900px) { .always-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICES, photo + indigo card
   ============================================================ */
.services { padding: var(--section-y) 0; background: #ffffff; position: relative; }
.services-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.services-head h2 { margin-top: 20px; }
.services-head h2 .accent { color: var(--indigo); }
.services-shell { display: grid; grid-template-columns: 0.85fr 1.2fr; gap: 24px; align-items: stretch; }
.services-photo { border-radius: var(--radius-lg); overflow: hidden; background: var(--indigo-pale); position: relative; min-height: 0; }
.services-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.services-card { background: var(--indigo); color: var(--paper-soft); border-radius: var(--radius-lg); padding: clamp(28px, 3vw, 40px); position: relative; overflow: hidden; }
.services-card::before { content: ""; position: absolute; right: -80px; top: -80px; width: 220px; height: 220px; border-radius: 50%; background: var(--indigo-deep); opacity: 0.55; }
.services-card-inner { position: relative; z-index: 1; }
.services-card h3 { color: var(--paper-soft); font-size: 1.15rem; margin-bottom: 18px; font-weight: 700; }
.services-cols { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 10px 22px; margin-bottom: 22px; }
.services-cols span { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--paper-soft); font-size: 0.92rem; }
.services-cols span::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--red-soft); flex-shrink: 0; }
@media (max-width: 900px) { .services-shell { grid-template-columns: 1fr; } .services-photo { min-height: 320px; } .services-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .services-cols { grid-template-columns: 1fr; } }

/* ============================================================
   HEALTH CLUB, two cards
   ============================================================ */
.club { padding: var(--section-y) 0; background: var(--paper); position: relative; }
.club-head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.club-head h2 { margin-top: 20px; }
.club-head h2 .accent { color: var(--indigo); }
.club-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.plan { background: var(--paper-soft); border-radius: var(--radius-lg); padding: 0; overflow: hidden; display: grid; grid-template-columns: 1.05fr 1fr; min-height: 320px; position: relative; }
.plan-left { padding: 36px; display: flex; flex-direction: column; justify-content: space-between; }
.plan-icon { width: 40px; height: 40px; border-radius: 999px; background: var(--paper); display: inline-flex; align-items: center; justify-content: center; color: var(--indigo); margin-bottom: 22px; }
.plan-icon svg { width: 20px; height: 20px; }
.plan-name { font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.plan-blurb { font-size: 0.92rem; color: var(--ink-soft); margin-top: 6px; }
.plan-pricing { margin-top: 30px; }
.plan-pricing .label { font-size: 0.78rem; font-weight: 700; color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.plan-pricing .value { font-size: 2.2rem; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; line-height: 1.1; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.plan-pricing .value .per { font-size: 0.92rem; font-weight: 500; color: var(--ink-mute); letter-spacing: 0; }
.plan-pricing .note { font-size: 0.85rem; color: var(--ink-mute); margin-top: 4px; }
.plan-right { background: var(--indigo); color: var(--paper-soft); padding: 36px 32px; position: relative; overflow: hidden; }
.plan-right::before { content: ""; position: absolute; right: -50px; bottom: -50px; width: 160px; height: 160px; border-radius: 50%; background: var(--indigo-deep); opacity: 0.5; }
.plan-right-inner { position: relative; z-index: 1; }
.plan-right h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); font-weight: 700; margin-bottom: 18px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; color: var(--paper-soft); font-weight: 500; line-height: 1.4; }
.plan-features li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--red-soft); }
.plan-tag { position: absolute; top: 18px; right: 18px; background: var(--red); color: var(--paper-soft); padding: 6px 14px; border-radius: 999px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; z-index: 2; }
@media (max-width: 900px) { .club-grid { grid-template-columns: 1fr; } .plan { grid-template-columns: 1fr; } }

/* ============================================================
   TEAM, "Top products" replacement
   ============================================================ */
.team { padding: var(--section-y) 0; background: #ffffff; position: relative; }
.team-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end; margin-bottom: 40px; }
.team-head h2 { max-width: 14ch; }
.team-head h2 .accent { color: var(--indigo); }
.team-head .actions { text-align: right; display: flex; gap: 10px; justify-content: flex-end; }
.team-arrow { width: 44px; height: 44px; border-radius: 999px; border: 1.5px solid var(--rule); background: var(--paper-soft); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s var(--ease); }
.team-arrow:hover { background: var(--indigo); color: var(--paper-soft); border-color: var(--indigo); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.member { background: var(--paper-soft); border-radius: var(--radius-md); overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); cursor: pointer; }
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.member-photo { aspect-ratio: 4 / 4.5; overflow: hidden; background: var(--indigo-pale); }
.member-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.member:hover .member-photo img { transform: scale(1.05); }
.member-info { padding: 22px 22px 26px; }
.member-info .name { font-weight: 700; font-size: 1.1rem; color: var(--ink); letter-spacing: -0.015em; }
.member-info .role { font-size: 0.85rem; color: var(--ink-mute); margin-top: 4px; font-weight: 500; }
@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-head { grid-template-columns: 1fr; } .team-head .actions { text-align: left; justify-content: flex-start; } }

/* ============================================================
   EXPERTISE CTA banner
   ============================================================ */
.cta { padding: var(--section-y) 0; background: #ffffff; }
.cta-card { background: var(--ink); color: var(--paper-soft); border-radius: var(--radius-xl); padding: clamp(70px, 9vw, 140px) clamp(30px, 5vw, 80px); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; isolation: isolate; min-height: clamp(420px, 50vw, 560px); }
.cta-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,28,43,0.25) 0%, rgba(27,28,43,0.55) 50%, rgba(27,28,43,0.85) 100%); z-index: 1; pointer-events: none; }
.cta-card > *:not(.cta-slideshow) { position: relative; z-index: 2; }
.cta-card-body { max-width: 760px; margin: 0 auto; }
.cta-card-body h2 { color: var(--paper-soft); margin: 0 auto 22px; max-width: 22ch; font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.cta-card-body p { color: rgba(255,255,255,0.88); margin: 0 auto 36px; font-size: 1.1rem; max-width: 56ch; }
.cta-card-body .btn { margin: 0 auto; }
.cta-card-body .btn-light { padding: 18px 34px; font-size: 1rem; }

/* Slideshow inside .cta-card is repurposed as a full-bleed background */
.cta-card .cta-slideshow { position: absolute; inset: 0; z-index: 0; border-radius: 0; aspect-ratio: auto; overflow: hidden; box-shadow: none; max-width: none; margin: 0; }
.cta-card .cta-slideshow .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease-in-out; }
.cta-card .cta-slideshow .slide.is-active { opacity: 1; }
.cta-card .cta-slideshow .slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-card .cta-slideshow .slide-label { display: none; }
.cta-card .cta-slideshow .slide-dots { display: none; }

@media (max-width: 700px) { .cta-card { min-height: 380px; padding: 60px 24px; } }

/* ============================================================
   FAQs accordion + photo
   ============================================================ */
.faqs { padding: var(--section-y) 0; }
.faqs-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.faqs-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.faqs-head h2 { max-width: 14ch; }
.faqs-head h2 .accent { color: var(--indigo); }
.faq-list { border-top: 1px solid var(--rule); }
.faq { border-bottom: 1px solid var(--rule); }
.faq-q { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; cursor: pointer; font-size: 1.05rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; user-select: none; }
.faq-q .toggle { width: 32px; height: 32px; border-radius: 999px; border: 1.5px solid var(--rule); flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; transition: all 0.25s var(--ease); }
.faq.open .faq-q .toggle { background: var(--indigo); border-color: var(--indigo); color: var(--paper-soft); transform: rotate(45deg); }
.faq-q .toggle svg { width: 14px; height: 14px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 0 22px; color: var(--ink-soft); font-size: 0.98rem; max-width: 60ch; }
.faq.open .faq-a { max-height: 400px; }
.faqs-photo { position: sticky; top: 140px; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; background: var(--indigo-pale); }
.faqs-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .faqs-grid { grid-template-columns: 1fr; } .faqs-photo { position: static; aspect-ratio: 16/10; } }

/* ============================================================
   REVIEWS, VHD placeholder
   ============================================================ */
.reviews { padding: var(--section-y) 0; }
.reviews-head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.reviews-head h2 { margin-top: 18px; }
.reviews-head h2 .accent { color: var(--indigo); }
.reviews-head p { color: var(--ink-soft); margin-top: 16px; font-size: 1.05rem; }
.vhd { background: var(--paper-soft); border: 2px dashed var(--indigo-soft); border-radius: var(--radius-lg); padding: 60px 40px; text-align: center; max-width: 1000px; margin: 0 auto; }
.vhd .label { display: inline-flex; align-items: center; gap: 8px; background: var(--indigo); color: var(--paper-soft); padding: 8px 18px; border-radius: 999px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.vhd h3 { color: var(--ink); margin-bottom: 10px; font-size: 1.4rem; }
.vhd p { color: var(--ink-soft); }
.vhd code { display: inline-block; background: var(--paper); padding: 8px 14px; border-radius: 8px; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.84rem; color: var(--ink-soft); margin-top: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--indigo-dark); color: rgba(255,255,255,0.72); padding: 100px 0 32px; font-size: 0.94rem; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 70px; }
.footer-brand img { height: 80px; margin-bottom: 24px; }
.footer-brand p { color: rgba(255,255,255,0.55); max-width: 36ch; }
.footer-col h5 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper-soft); font-weight: 700; margin-bottom: 22px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: var(--paper-soft); }
.footer-contact strong { color: var(--paper-soft); font-weight: 700; }
.footer-contact span, .footer-contact a { display: block; }
.footer-newsletter { font-size: 0.94rem; }
.footer-newsletter p { color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.footer-newsletter form { display: flex; background: rgba(255,255,255,0.1); border-radius: 999px; padding: 5px; gap: 4px; }
.footer-newsletter input { flex: 1; border: 0; background: transparent; padding: 12px 18px; color: var(--paper-soft); font-family: var(--font); font-size: 0.92rem; outline: none; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter button { background: var(--paper-soft); color: var(--ink); border: 0; padding: 0 22px; border-radius: 999px; font-family: var(--font); font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: background 0.2s var(--ease); }
.footer-newsletter button:hover { background: var(--red-soft); color: var(--paper-soft); }
.footer-emergency { margin-top: 22px; padding: 14px 16px; background: rgba(200,49,44,0.13); border: 1px solid rgba(200,49,44,0.34); border-radius: 12px; }
.footer-emergency .label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--paper-soft); font-weight: 700; display: block; margin-bottom: 6px; }
.footer-emergency p { margin: 0; color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.colophon { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 26px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; font-size: 0.84rem; color: rgba(255,255,255,0.45); align-items: center; }
.colophon a { color: rgba(255,255,255,0.7); }
.colophon a:hover { color: var(--paper-soft); }
.colophon .credit a { color: var(--paper-soft); font-weight: 600; }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); display: inline-flex; align-items: center; justify-content: center; transition: background 0.2s var(--ease), border-color 0.2s var(--ease); }
.socials a:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: var(--paper-soft); }
.socials svg { width: 16px; height: 16px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 760px) {
  .footer-top { text-align: center; }
  .footer-brand p { max-width: 42ch; margin-left: auto; margin-right: auto; }
  .footer-brand .socials { justify-content: center; }
  .footer-contact span, .footer-contact a, .footer-contact strong { display: block; }
  .footer-col ul { align-items: center; }
  .colophon { justify-content: center; text-align: center; }
}

/* Reveal default state: visible. The .gsap-ready class on <html> hides them so GSAP can animate them in. If GSAP fails to load, content stays visible. After GSAP animates, inline styles override the CSS hidden state permanently. */
.reveal { opacity: 1; transform: none; }
.gsap-ready .reveal { opacity: 0; transform: translateY(24px); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .gsap-ready .reveal { opacity: 1 !important; transform: none !important; }
}
/* ============================================================
   INTERNAL PAGE STYLES
   ============================================================ */
.page-hero { padding: clamp(30px, 4vw, 60px) 0 clamp(90px, 8vw, 140px); background: var(--paper); text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(50px, 6vw, 90px); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'><path d='M 0 0 Q 720 180 1440 0 L 1440 140 L 0 140 Z' fill='%23ffffff'/></svg>"); background-size: 100% 100%; background-repeat: no-repeat; pointer-events: none; z-index: 2; }
.page-hero > * { position: relative; z-index: 1; }
.page-hero-title { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.page-hero-sub { font-size: clamp(1rem, 1.2vw, 1.12rem); margin-top: 20px; }
.page-hero.with-photo .page-hero-title { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.page-hero.with-photo .hero-photo-frame { aspect-ratio: 5/4; }
.page-hero .eyebrow { justify-content: center; margin-bottom: 22px; }
.page-hero-title { font-size: clamp(2.4rem, 5.5vw, 4.4rem); letter-spacing: -0.035em; line-height: 1.02; max-width: 20ch; margin: 0 auto; font-weight: 700; }
.page-hero-title .accent { color: var(--indigo); font-weight: 700; }
.page-hero-sub { font-size: clamp(1.05rem, 1.3vw, 1.2rem); color: var(--ink-soft); max-width: 56ch; margin: 26px auto 0; font-weight: 500; }
.page-hero .page-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.page-hero-curve { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(60px, 7vw, 100px); pointer-events: none; }
.page-hero-curve svg { width: 100%; height: 100%; display: block; }

.page-section { padding: var(--section-y) 0; position: relative; }
.page-section-white { background: #ffffff; }
.page-section-paper { background: var(--paper); }

.narrow-container { max-width: 760px; }

.prose { font-size: 1.06rem; line-height: 1.7; color: var(--ink-soft); }
.prose .lead { font-size: 1.32rem; line-height: 1.5; color: var(--ink); font-weight: 500; margin-bottom: 1em; }
.prose p { margin-bottom: 1em; }
.prose h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-top: 1.5em; margin-bottom: 0.5em; color: var(--ink); }
.prose h3 { font-size: 1.3rem; margin-top: 1.3em; margin-bottom: 0.4em; color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.4em; margin-bottom: 1em; }
.prose ul li, .prose ol li { margin-bottom: 0.5em; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--indigo); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.prose a:hover { color: var(--indigo-deep); }

/* TEAM PAGE */
.team-role-block { margin-bottom: clamp(60px, 7vw, 100px); }
.team-role-block:last-child { margin-bottom: 0; }
.team-role-title { font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--ink); border-bottom: 2px solid var(--rule); padding-bottom: 18px; margin-bottom: 36px; }
.team-role-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.team-member { background: var(--paper); border-radius: var(--radius-md); overflow: hidden; display: grid; grid-template-columns: 200px 1fr; gap: 28px; transition: transform 0.3s var(--ease); }
.team-member:hover { transform: translateY(-3px); }
.team-member .member-photo, .team-member .member-photo-placeholder { aspect-ratio: 3/4; overflow: hidden; background: var(--indigo-pale); }
.team-member .member-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-member .member-photo-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--ink-mute); gap: 12px; padding: 20px; text-align: center; }
.team-member .member-photo-placeholder svg { width: 56px; height: 56px; }
.team-member .member-photo-placeholder span { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.team-member .member-info { padding: 24px 24px 26px 0; display: flex; flex-direction: column; justify-content: center; }
.team-member .member-info h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: 4px; }
.team-member .member-info .role { font-size: 0.84rem; font-weight: 700; color: var(--indigo); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; }
.team-member .member-info p { font-size: 0.96rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }
@media (max-width: 900px) { .team-role-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .team-member { grid-template-columns: 1fr; } .team-member .member-info { padding: 0 22px 24px; } }

/* SERVICE LIST */
.service-list { display: grid; gap: 0; }
.service-row { display: grid; grid-template-columns: 70px 1fr 1.4fr; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--rule); align-items: start; }
.service-row:first-child { border-top: 2px solid var(--ink); }
.service-row-num { font-family: var(--font); font-weight: 700; font-size: 1.1rem; color: var(--indigo); padding-top: 4px; }
.service-row h3 { font-size: 1.4rem; color: var(--ink); }
.service-row p { color: var(--ink-soft); font-size: 1rem; margin: 0; max-width: 60ch; }
@media (max-width: 720px) { .service-row { grid-template-columns: 1fr; gap: 14px; } .service-row-num { font-size: 0.95rem; padding: 0; } }

/* PRICE LIST */
.price-group { margin-bottom: 50px; }
.price-group:last-child { margin-bottom: 0; }
.price-group-title { font-size: 1.6rem; color: var(--ink); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--ink); }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.price-row .name { font-weight: 600; color: var(--ink); }
.price-row .name small { display: block; font-weight: 500; color: var(--ink-mute); font-size: 0.86rem; margin-top: 2px; }
.price-row .value { font-weight: 700; color: var(--indigo); white-space: nowrap; }
.price-note { background: var(--paper); border-radius: var(--radius-md); padding: 22px 26px; margin-bottom: 40px; font-size: 0.96rem; color: var(--ink-soft); }
.price-note strong { color: var(--ink); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-size: 1.3rem; margin-bottom: 14px; color: var(--ink); }
.contact-info p, .contact-info address { font-size: 1rem; color: var(--ink-soft); font-style: normal; margin: 0 0 20px; line-height: 1.55; }
.contact-info a { color: var(--indigo); text-decoration: underline; text-underline-offset: 3px; }
.contact-hours { background: var(--paper); border-radius: var(--radius-md); padding: 26px; }
.contact-hours div { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.96rem; }
.contact-hours div span:first-child { color: var(--ink-mute); }
.contact-hours div span:last-child { font-weight: 700; color: var(--ink); }
.contact-map { aspect-ratio: 4/3; background: var(--indigo-pale); border-radius: var(--radius-md); overflow: hidden; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* FORMS */
.form-wrap { background: var(--paper); border-radius: var(--radius-lg); padding: clamp(34px, 4vw, 56px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 0.88rem; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }
.form-field input, .form-field select, .form-field textarea { font-family: var(--font); font-size: 1rem; padding: 13px 16px; border: 1.5px solid var(--rule); background: #fff; border-radius: 10px; color: var(--ink); transition: border-color 0.2s var(--ease); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--indigo); }
.form-field textarea { min-height: 120px; resize: vertical; font-family: var(--font); }
.form-submit { margin-top: 24px; }
.form-note { font-size: 0.86rem; color: var(--ink-mute); margin-top: 14px; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }

/* NEWS */
.news-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { background: var(--paper-soft); border-radius: var(--radius-md); overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); cursor: pointer; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card .news-image { aspect-ratio: 16/11; background: var(--indigo-pale); overflow: hidden; }
.news-card .news-image img { width: 100%; height: 100%; object-fit: cover; }
.news-card .news-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.news-card .news-meta { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--indigo); margin-bottom: 14px; }
.news-card h3 { font-size: 1.15rem; margin-bottom: 14px; color: var(--ink); flex: 1; line-height: 1.3; }
.news-empty { background: var(--paper); border: 2px dashed var(--indigo-soft); border-radius: var(--radius-lg); padding: 70px 40px; text-align: center; color: var(--ink-soft); }
.news-empty h3 { color: var(--ink); margin-bottom: 12px; font-size: 1.4rem; }
@media (max-width: 900px) { .news-list { grid-template-columns: 1fr; } }

/* WIDGET PLACEHOLDER (shared) */
.widget-placeholder { background: var(--paper); border: 2px dashed var(--indigo-soft); border-radius: var(--radius-lg); padding: 80px 40px; text-align: center; max-width: 1000px; margin: 0 auto; }
.widget-placeholder .label { display: inline-flex; align-items: center; gap: 8px; background: var(--indigo); color: #fff; padding: 8px 18px; border-radius: 999px; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; }
.widget-placeholder h3 { color: var(--ink); margin-bottom: 12px; font-size: 1.4rem; }
.widget-placeholder p { color: var(--ink-soft); margin: 0; }
.widget-placeholder code { display: inline-block; background: #fff; padding: 8px 14px; border-radius: 8px; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.84rem; color: var(--ink-soft); margin-top: 16px; }

/* MEMORIAL */
.memorial-empty { background: var(--paper); border-radius: var(--radius-lg); padding: 80px 40px; text-align: center; }
.memorial-empty .icon { width: 64px; height: 64px; margin: 0 auto 22px; color: var(--indigo); opacity: 0.7; }
.memorial-empty h3 { color: var(--ink); margin-bottom: 12px; font-size: 1.4rem; }
.memorial-empty p { color: var(--ink-soft); max-width: 50ch; margin: 0 auto 24px; }

/* ARTICLE */
.article-hero { background: var(--paper); padding: 50px 0; }
.article-meta { display: flex; gap: 14px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--indigo); justify-content: center; margin-bottom: 18px; }
.article-feature-image { aspect-ratio: 16/8; border-radius: var(--radius-lg); overflow: hidden; background: var(--indigo-pale); margin-bottom: 50px; }
.article-feature-image img { width: 100%; height: 100%; object-fit: cover; }


/* PET ADVICE LANDING PAGE */
.advice-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 18px; }
.advice-card { background: var(--paper); border-radius: var(--radius-md); padding: 36px 32px; display: flex; flex-direction: column; justify-content: space-between; min-height: 320px; transition: transform 0.3s var(--ease); cursor: pointer; color: inherit; text-decoration: none; }
.advice-card:hover { transform: translateY(-4px); }
.advice-card.feature { background: var(--ink); color: var(--paper-soft); }
.advice-card.feature h3 { color: var(--paper-soft); }
.advice-card.feature p { color: rgba(255,255,255,0.78); }
.advice-card.feature .link-arrow { color: var(--paper-soft); border-color: var(--paper-soft); }
.advice-card.feature .icon { color: var(--indigo-soft); }
.advice-card .icon { width: 44px; height: 44px; color: var(--indigo); margin-bottom: 22px; }
.advice-card h3 { font-size: 1.45rem; line-height: 1.15; margin-bottom: 14px; color: var(--ink); }
.advice-card p { color: var(--ink-soft); margin: 0 0 26px; }
.advice-card .link-arrow { font-weight: 700; font-size: 0.95rem; color: var(--ink); border-bottom: 1.5px solid var(--ink); padding-bottom: 4px; display: inline-flex; align-items: center; gap: 8px; }
.advice-card .link-arrow svg { width: 16px; height: 16px; }
@media (max-width: 900px) { .advice-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WIDER INNER PAGE LAYOUTS
   ============================================================ */
/* Loosen the narrow container so reading is comfortable but not skinny */
.narrow-container { max-width: 920px; }
.wide-container { max-width: 1200px; }

/* Generic split image+text block, used heavily on inner pages */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; margin-bottom: var(--section-y); }
.split:last-child { margin-bottom: 0; }
.split.reverse > .split-photo { order: 2; }
.split-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/4.6; background: var(--indigo-pale); }
.split-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-body h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 18px; color: var(--ink); letter-spacing: -0.025em; line-height: 1.08; }
.split-body h2 .accent { color: var(--indigo); }
.split-body p { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.65; margin-bottom: 1em; max-width: 56ch; }
.split-body .eyebrow { margin-bottom: 14px; }
.split-body .btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 30px; } .split.reverse > .split-photo { order: 0; } }

/* Feature stat row */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: clamp(40px, 5vw, 60px) 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin: clamp(40px, 5vw, 60px) 0; }
.stat-row .stat { text-align: center; }
.stat-row .stat .num { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800; color: var(--indigo); letter-spacing: -0.03em; line-height: 1; display: inline-flex; align-items: baseline; }
.stat-row .stat .num .sup { font-size: 0.45em; color: var(--red); margin-left: 2px; vertical-align: super; }
.stat-row .stat .label { margin-top: 10px; font-size: 0.86rem; font-weight: 600; color: var(--ink-mute); letter-spacing: 0.04em; text-transform: uppercase; }
@media (max-width: 700px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }

/* Multi-column feature grid for service categories */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.feature-card { background: var(--paper); border-radius: var(--radius-md); padding: clamp(28px, 3vw, 40px); display: grid; grid-template-columns: 80px 1fr; gap: 22px; align-items: start; }
.feature-card .feature-icon { width: 56px; height: 56px; border-radius: 16px; background: #fff; color: var(--indigo); display: inline-flex; align-items: center; justify-content: center; }
.feature-card .feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--ink); }
.feature-card p { font-size: 0.96rem; color: var(--ink-soft); margin: 0; line-height: 1.6; }
@media (max-width: 800px) { .feature-grid { grid-template-columns: 1fr; } .feature-card { grid-template-columns: 56px 1fr; gap: 16px; padding: 24px; } }

/* Hero with photo (wider page-hero variant) */
.page-hero.with-photo { padding-bottom: 0; text-align: left; }
.page-hero.with-photo .container { display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: center; }
.page-hero.with-photo .eyebrow { justify-content: flex-start; margin-bottom: 22px; }
.page-hero.with-photo .page-hero-title { margin: 0; max-width: 14ch; }
.page-hero.with-photo .page-hero-sub { margin-left: 0; max-width: 48ch; }
.page-hero.with-photo .page-hero-actions { justify-content: flex-start; }
.page-hero.with-photo .hero-photo-frame { aspect-ratio: 5/4; max-height: 460px; border-radius: var(--radius-lg); overflow: hidden; background: var(--indigo-pale); }
.page-hero.with-photo .hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .page-hero.with-photo .container { grid-template-columns: 1fr; } }

/* Featured pricing table */
.pricing-table { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.pricing-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px; padding: 18px 26px; border-bottom: 1px solid var(--rule); align-items: center; }
.pricing-row:last-child { border-bottom: 0; }
.pricing-row.head { background: var(--ink); color: #fff; font-weight: 700; font-size: 0.84rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 16px 26px; }
.pricing-row.head .col { color: rgba(255,255,255,0.85); }
.pricing-row .name { font-weight: 600; color: var(--ink); }
.pricing-row .name small { display: block; color: var(--ink-mute); font-weight: 500; font-size: 0.84rem; margin-top: 2px; }
.pricing-row .price { font-weight: 800; color: var(--indigo); font-size: 1.1rem; letter-spacing: -0.01em; text-align: right; }
.pricing-row .yearly { font-weight: 500; color: var(--ink-mute); font-size: 0.94rem; text-align: right; }
@media (max-width: 600px) { .pricing-row { grid-template-columns: 1fr auto; gap: 8px; } .pricing-row .yearly { display: none; } .pricing-row.head .yearly { display: none; } }

/* Big feature image (full container width inside page section) */
.feature-photo { aspect-ratio: 16/8; border-radius: var(--radius-lg); overflow: hidden; background: var(--indigo-pale); margin-bottom: var(--section-y); }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Service group title centered on wider pages */
.section-title { text-align: center; max-width: 740px; margin: 0 auto clamp(40px, 5vw, 60px); }
.section-title h2 { margin-top: 18px; }
.section-title h2 .accent { color: var(--indigo); }
.section-title p { color: var(--ink-soft); font-size: 1.05rem; margin-top: 16px; }

/* News card image (override aspect) */
.news-list.three-col { grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .news-list.three-col { grid-template-columns: 1fr; } }

/* ============================================================
   CENTRED DIFFERENTIATORS LAYOUT
   ============================================================ */
.how-centered .how-head-centered { text-align: center; max-width: 820px; margin: 0 auto clamp(50px, 6vw, 80px); }
.how-centered .how-head-centered h2 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.03em; line-height: 1.04; max-width: 18ch; margin: 0 auto; }
.how-centered .how-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Box-styled how-step variant. Each card a proper card. */
.how-box { background: var(--paper); border-radius: var(--radius-md); padding: clamp(32px, 3vw, 42px) clamp(28px, 3vw, 36px); display: flex; flex-direction: column; align-items: flex-start; gap: 18px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.how-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.how-box .step-icon { width: 64px; height: 64px; border-radius: 18px; background: #ffffff; border: 1px solid var(--rule); display: inline-flex; align-items: center; justify-content: center; color: var(--indigo); flex-shrink: 0; }
.how-box .step-icon svg { width: 30px; height: 30px; }
.how-box .body { padding: 0; }
.how-box .body h3 { font-size: 1.35rem; margin-bottom: 12px; color: var(--ink); line-height: 1.15; }
.how-box .body p { margin: 0; font-size: 1rem; color: var(--ink-soft); line-height: 1.55; }

/* Centred CTA under the boxes */
.how-cta-centered { text-align: center; margin-top: clamp(40px, 5vw, 60px); }

@media (max-width: 900px) { .how-centered .how-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ============================================================
   PRICES, full-width grid of category cards
   ============================================================ */
.price-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.price-groups .price-group { background: var(--paper); border-radius: var(--radius-md); padding: clamp(28px, 3vw, 40px); margin-bottom: 0; }
.price-groups .price-group .price-group-title { margin-bottom: 18px; padding-bottom: 14px; }
.price-groups .price-row { padding: 14px 0; }
.price-groups .price-row:last-child { padding-bottom: 0; border-bottom: 0; }
@media (max-width: 900px) { .price-groups { grid-template-columns: 1fr; gap: 20px; } }

/* ============================================================
   CAREERS, two-column with sticky form
   ============================================================ */
.careers-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
@media (max-width: 900px) { .careers-grid { grid-template-columns: 1fr; } .careers-grid .form-wrap { position: static !important; } }

/* ============================================================
   TEAM PAGE: cards, role filters, bio modal
   ============================================================ */
.team-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: clamp(40px, 4vw, 60px); }
.team-filter { font-family: var(--font); font-weight: 700; font-size: 0.92rem; padding: 11px 22px; border-radius: 999px; background: transparent; border: 1.5px solid var(--rule); color: var(--ink-soft); cursor: pointer; transition: all 0.2s var(--ease); }
.team-filter:hover { color: var(--ink); border-color: var(--ink); }
.team-filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper-soft); }

.team-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { font-family: var(--font-body); background: var(--paper-soft); border: 1px solid var(--rule); border-radius: var(--radius-md); padding: 0; overflow: hidden; cursor: pointer; text-align: left; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.team-card.is-hidden { display: none; }
.team-card-photo { aspect-ratio: 3/4; background: var(--indigo-pale); overflow: hidden; }
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.team-card:hover .team-card-photo img { transform: scale(1.04); }
.team-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--ink-mute); background: var(--paper); }
.team-card-placeholder svg { width: 64px; height: 64px; }
.team-card-info { padding: 22px 22px 26px; }
.team-card-info h3 { font-size: 1.2rem; margin-bottom: 6px; color: var(--ink); }
.team-card-info .role { font-size: 0.85rem; font-weight: 600; color: var(--ink-mute); }

@media (max-width: 1100px) { .team-card-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .team-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-card-grid { grid-template-columns: 1fr; } }

/* Bio modal */
.bio-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: clamp(20px, 4vw, 60px); opacity: 0; transition: opacity 0.25s var(--ease); }
.bio-modal[hidden] { display: none; }
.bio-modal.is-open { opacity: 1; }
.bio-modal-backdrop { position: absolute; inset: 0; background: rgba(27,28,43,0.7); backdrop-filter: blur(4px); }
.bio-modal-content { position: relative; background: var(--paper-soft); border-radius: var(--radius-lg); max-width: 800px; width: 100%; max-height: 90vh; overflow: hidden; display: grid; grid-template-columns: 280px 1fr; box-shadow: var(--shadow-lg); transform: scale(0.96); transition: transform 0.3s var(--ease); }
.bio-modal.is-open .bio-modal-content { transform: scale(1); }
.bio-modal-photo { background: var(--indigo-pale); aspect-ratio: auto; }
.bio-modal-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-modal-body { padding: clamp(28px, 3vw, 44px); overflow-y: auto; }
.bio-modal-body h2 { font-size: clamp(1.6rem, 2.4vw, 2rem); margin-bottom: 6px; color: var(--ink); }
.bio-modal-body .role { font-size: 0.86rem; font-weight: 700; color: var(--indigo); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 24px; }
.bio-modal-body .bio { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.6; }
.bio-modal-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 999px; background: var(--paper-soft); border: 1px solid var(--rule); color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; z-index: 2; transition: all 0.2s var(--ease); }
.bio-modal-close:hover { background: var(--ink); color: var(--paper-soft); border-color: var(--ink); }
.bio-modal-close svg { width: 16px; height: 16px; }
@media (max-width: 700px) { .bio-modal-content { grid-template-columns: 1fr; max-height: 95vh; } .bio-modal-photo { aspect-ratio: 4/3; } }

/* ============================================================
   MOBILE AUDIT & OPTIMISATION
   Comprehensive responsive sweep across the build.
   ============================================================ */

/* Tablet (1080px and below) */
@media (max-width: 1080px) {
  :root { --section-y: clamp(60px, 7vw, 100px); }
  h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
  h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
  .hero-stage { aspect-ratio: auto; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .careers-grid { grid-template-columns: 1fr; }
  .careers-grid .form-wrap { position: static !important; }
}

/* Phone (760px and below) */
@media (max-width: 760px) {
  body { font-size: 17px; }
  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  h3 { font-size: 1.2rem; }

  /* Header */
  .site-header { padding-block: 16px; }
  .site-logo img { height: 64px !important; }
  .site-header.scrolled .site-logo { transform: scale(0.85); }
  .header-cta .btn { padding: 12px 18px; font-size: 0.86rem; }

  /* Hero (homepage) */
  .hero-title { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero-sub { font-size: 0.98rem; padding-inline: 8px; }
  .hero-pills, .hero-badge { padding: 14px 16px; max-width: 320px; margin-inline: auto; }
  .hero-pill { font-size: 0.85rem; }
  .hero-badge .text { font-size: 0.94rem; }
  .hero-badge .avatars span { width: 28px; height: 28px; }
  .hero-badge .count { width: 42px; height: 42px; font-size: 0.7rem; }
  .hero-bottom-curve { height: clamp(40px, 10vw, 70px); }

  /* Page hero */
  .page-hero { padding: 20px 0 70px; }
  .page-hero-title { font-size: clamp(1.9rem, 7vw, 2.4rem); }
  .page-hero-sub { font-size: 0.98rem; }
  .page-hero-actions { gap: 8px; }
  .page-hero-actions .btn { padding: 12px 20px; font-size: 0.88rem; }
  /* Internal hero on mobile: photo hidden, content centred */
  .page-hero.with-photo { text-align: center; padding-bottom: clamp(60px, 12vw, 90px); }
  .page-hero.with-photo .container { grid-template-columns: 1fr; gap: 0; padding-top: 10px; }
  .page-hero.with-photo .hero-photo-frame { display: none; }
  .page-hero.with-photo .page-hero-title { margin: 0 auto; max-width: 18ch; }
  .page-hero.with-photo .page-hero-sub { margin: 22px auto 0; }
  .page-hero.with-photo .page-hero-actions { justify-content: center; }
  .page-hero.with-photo .eyebrow { justify-content: center; }

  /* Section padding */
  .page-section, .how, .always, .services, .club, .team-section, .cta, .reviews, .news, .advice, .photo-break { padding-top: 60px; padding-bottom: 60px; }

  /* Buttons */
  .btn { padding: 14px 22px; font-size: 0.9rem; }

  /* Splits stack */
  .split { gap: 24px; margin-bottom: 60px; }
  .split-photo { aspect-ratio: 4/3.4; }
  .split-body h2 { font-size: 1.65rem; }
  .split-body p { font-size: 0.98rem; }

  /* Stats single column */
  .stat-row { grid-template-columns: 1fr 1fr; gap: 20px; padding: 26px 0; }
  .stat-row .stat .num { font-size: 1.9rem; }
  .stat-row .stat .label { font-size: 0.78rem; }

  /* How (centred boxed) */
  .how-centered .how-head-centered { margin-bottom: 36px; }
  .how-centered .how-head-centered h2 { font-size: clamp(1.8rem, 6vw, 2.2rem); }
  .how-grid { grid-template-columns: 1fr; gap: 14px; }
  .how-box { padding: 26px 22px; }
  .how-box .step-icon { width: 52px; height: 52px; }
  .how-box .body h3 { font-size: 1.15rem; }

  /* Pricing table */
  .pricing-row { padding: 14px 18px; }
  .pricing-row.head { padding: 14px 18px; font-size: 0.74rem; }
  .pricing-row .name { font-size: 0.94rem; }
  .pricing-row .price { font-size: 1rem; }

  /* Prices grid stacks */
  .price-groups { grid-template-columns: 1fr; gap: 16px; }
  .price-group { padding: 22px; }

  /* Health Club plans */
  .plan { grid-template-columns: 1fr; }
  .plan-left, .plan-right { padding: 26px; }

  /* Services card */
  .services-shell { grid-template-columns: 1fr; }
  .services-photo { min-height: 240px; }
  .services-card { padding: 28px; }
  .services-cols { grid-template-columns: 1fr; gap: 10px; margin-bottom: 24px; }

  /* Team page */
  .team-filters { gap: 8px; margin-bottom: 30px; }
  .team-filter { padding: 9px 16px; font-size: 0.85rem; }
  .team-card-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .team-card-info { padding: 16px 16px 20px; }
  .team-card-info h3 { font-size: 1.05rem; }
  .team-card-info .role { font-size: 0.78rem; }

  /* Bio modal */
  .bio-modal-content { grid-template-columns: 1fr; max-height: 92vh; border-radius: var(--radius-md); }
  .bio-modal-photo { aspect-ratio: 4/3; max-height: 250px; }
  .bio-modal-body { padding: 24px; }
  .bio-modal-body h2 { font-size: 1.5rem; }

  /* CTA card */
  .cta-card { padding: 50px 22px; min-height: 360px; border-radius: var(--radius-lg); }
  .cta-card-body h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); margin-bottom: 16px; }
  .cta-card-body p { font-size: 0.98rem; margin-bottom: 26px; }

  /* News */
  .news-list { grid-template-columns: 1fr; }
  .news-card .news-body { padding: 22px; }
  .news-card h3 { font-size: 1.1rem; }

  /* Forms */
  .form-wrap { padding: 26px 22px; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .form-field input, .form-field select, .form-field textarea { font-size: 0.96rem; padding: 12px 14px; }
  .form-submit .btn { width: 100%; }

  /* Contact grid */
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-map { aspect-ratio: 4/3; }
  .contact-hours div { font-size: 0.92rem; }

  /* Footer */
  .site-footer { padding: 60px 0 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-brand img { height: 56px; }
  .colophon { font-size: 0.78rem; }

  /* Team role blocks (team page legacy section if visible) */
  .team-role-grid { grid-template-columns: 1fr; gap: 18px; }
  .team-role-title { font-size: 1.4rem; }

  /* Always intro */
  .always-grid { grid-template-columns: 1fr; gap: 28px; }
  .always-photo { aspect-ratio: 4/3; }

  /* Homepage hero, mobile: stripped back. Title + sub + CTA + arch with photo standing on the bottom curve. Pills and badge hidden. */
  .hero { padding: 12px 0 0; }
  .hero-cta { margin-top: 28px; }
  .hero-cta .btn { padding: 15px 30px; font-size: 0.95rem; }
  .hero-stage {
    aspect-ratio: auto;
    max-width: none;
    margin: 40px 0 0;
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
    padding-bottom: 0;
    position: relative;
  }
  .hero-arch {
    position: relative;
    inset: auto;
    width: 100%;
    height: 340px;
  }
  .hero-arch svg { width: 100%; height: 100%; }
  .hero-stage-photo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 260px;
    aspect-ratio: 679/971;
    z-index: 2;
  }
  .hero-pills,
  .hero-badge { display: none !important; }
}

/* Very small phones (440px and below) */
@media (max-width: 440px) {
  :root { --gutter: 16px; --radius-md: 18px; --radius-lg: 24px; --radius-xl: 32px; }
  .header-cta { gap: 8px; }
  .header-cta .btn { padding: 10px 14px; font-size: 0.82rem; }
  .team-card-grid { grid-template-columns: 1fr; }
  .team-filter { padding: 8px 14px; font-size: 0.8rem; }
  .stat-row { grid-template-columns: 1fr; gap: 16px; }
  .feature-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { grid-template-columns: 48px 1fr; gap: 14px; padding: 20px; }
  .feature-card .feature-icon { width: 48px; height: 48px; }
  .cta-card { padding: 40px 18px; }
}

/* Ensure interactive elements meet 44px tap target */
@media (max-width: 760px) {
  .nav-dropdown a { padding: 12px 16px; }
  .mobile-menu nav a { padding: 16px 0; }
}
