/* =============================================================================
   PAWCO — Complete Design System Stylesheet
   Dark Editorial meets Warm Luxury
   ============================================================================= */

/* ─── Google Fonts are loaded via functions.php enqueue ─── */

/* ─── Gilroy — self-hosted (not the CDN mirror, so it can't break if that
   third-party package disappears). Client-approved per licensing check. ─── */
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/gilroy/Gilroy-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/gilroy/Gilroy-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/gilroy/Gilroy-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/gilroy/Gilroy-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/gilroy/Gilroy-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/gilroy/Gilroy-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/gilroy/Gilroy-Heavy.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* =============================================================================
   1. CSS VARIABLES — DESIGN TOKENS
   ============================================================================= */
:root {
  /* Backgrounds */
  --color-dark:        #1A1030;
  --color-dark-2:      #221540;
  --color-dark-3:      #2C1A52;
  --color-cream:       #F8F7FF;
  --color-cream-2:     #EDE8FF;
  --color-white:       #FFFFFF;

  /* Text */
  --color-text-light:  #F0EEFF;
  --color-text-muted:  #9A8EC8;
  --color-text-dark:   #1A1030;
  --color-text-mid:    #4A3880;

  /* Accent — pet auntie purple */
  --color-gold:        #9B8EE8;
  --color-gold-light:  #B8AEFF;
  --color-gold-dim:    #7060CC;

  /* Borders */
  --color-border-dark:  rgba(155, 142, 232, 0.18);
  --color-border-light: rgba(26, 16, 48, 0.12);

  /* Typography — client-directed switch to Gilroy site-wide (was a
     3-font system: Plus Jakarta Sans / Josefin Sans / Barlow). All three
     roles now point at Gilroy, differentiated by weight instead of by
     family; 'Helvetica Neue'/Helvetica kept as the fallback chain so a
     failed font load still degrades to the client's second-choice font. */
  --font-primary:   'Gilroy', 'Helvetica Neue', Helvetica, sans-serif;
  --font-geometric: 'Gilroy', 'Helvetica Neue', Helvetica, sans-serif;
  --font-utility:   'Gilroy', 'Helvetica Neue', Helvetica, sans-serif;

  /* Spacing */
  --space-section-xl: 180px;
  --space-section-lg: 120px;
  --space-section-md: 80px;
  --space-section-sm: 48px;

  /* Container */
  --container-max:    1380px;
  --container-gutter: clamp(20px, 4vw, 60px);

  /* Breakpoints (reference) */
  --bp-sm:  480px;
  --bp-md:  768px;
  --bp-lg:  1024px;
  --bp-xl:  1280px;
  --bp-2xl: 1440px;
}


/* =============================================================================
   2. RESET & BASE
   ============================================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto !important; /* Lenis handles smooth scroll — !important overrides Elementor's media query */
}

body {
  font-family: var(--font-utility);
  font-weight: 400;
  color: var(--color-text-dark);
  background: var(--color-cream);
  line-height: 1.65;
  letter-spacing: -0.010em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul, ol { list-style: none; }

/* =============================================================================
   3. TYPOGRAPHY SYSTEM
   ============================================================================= */

/* Display — hero headlines */
.type-display {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

/* H1 */
.type-h1 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.035em;
}

/* H2 */
.type-h2 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.030em;
}

/* H3 */
.type-h3 {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

/* Body */
.type-body {
  font-family: var(--font-utility);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  letter-spacing: -0.010em;
}

/* Label — nav, tags, buttons */
.type-label {
  font-family: var(--font-geometric);
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Number / stat display */
.type-number {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 96px);
  letter-spacing: -0.04em;
  line-height: 1;
}


/* =============================================================================
   4. LAYOUT UTILITIES
   ============================================================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
}

.section {
  padding: var(--space-section-lg) var(--container-gutter);
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-full {
  padding: var(--space-section-lg) 0;
}

.section-full > .section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
}

.section--dark  { background: var(--color-dark); }
.section--cream { background: var(--color-cream); }
.section--cream-2 { background: var(--color-cream-2); }

/* Grid helpers */
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 32px); }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 32px); }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 32px); }
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 32px); }


/* =============================================================================
   5. SECTION LABELS (gold eyebrow text)
   ============================================================================= */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-geometric);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}


/* =============================================================================
   6. BUTTONS
   ============================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-geometric);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn span { position: relative; z-index: 1; }

.btn-arrow {
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Primary — dark bg, gold fill on hover */
.btn-primary {
  background: var(--color-dark);
  color: var(--color-text-light);
  border: 1px solid var(--color-dark);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { color: var(--color-dark); }

/* Gold — gold bg, dark fill on hover */
.btn-gold {
  background: var(--color-gold);
  color: var(--color-dark);
  border: 1px solid var(--color-gold);
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.btn-gold:hover::after { transform: translateX(0); }
.btn-gold:hover { color: var(--color-text-light); }

/* Ghost on dark bg */
.btn-ghost-light {
  background: transparent;
  border: 1px solid rgba(240, 237, 229, 0.4);
  color: var(--color-text-light);
}
.btn-ghost-light:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Ghost on cream */
.btn-ghost-dark {
  background: transparent;
  border: 1px solid rgba(17, 17, 17, 0.15);
  color: var(--color-text-dark);
}
.btn-ghost-dark:hover {
  border-color: var(--color-dark);
  background: var(--color-dark);
  color: var(--color-text-light);
}


/* =============================================================================
   7. HEADER
   ============================================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(13, 13, 11, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--color-border-dark);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo {
  text-decoration: none;
  z-index: 1001;
  position: relative;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* On dark header (default) show white logo, hide purple logo */
.site-header .logo-img--dark  { display: none; }
.site-header .logo-img--light { display: block; }

/* On scrolled/light header show purple logo */
.site-header.is-scrolled .logo-img--dark  { display: block; }
.site-header.is-scrolled .logo-img--light { display: none; }

/* Primary nav */
.nav-primary {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-primary a {
  font-family: var(--font-geometric);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(240, 237, 229, 0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}
.nav-primary a:hover { color: var(--color-text-light); }

.nav-book-btn { margin-left: 16px; }

/* Correct contrast on gold button inside nav */
.nav-primary .btn-gold,
.nav-primary .btn-gold span {
  color: var(--color-dark) !important;
}
.nav-primary .btn-gold:hover,
.nav-primary .btn-gold:hover span {
  color: var(--color-text-light) !important;
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-text-light);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay nav */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--container-gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
}
.nav-overlay-links a {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(32px, 8vw, 56px);
  letter-spacing: -0.03em;
  color: var(--color-text-light);
  opacity: 0.4;
  transition: opacity 0.2s ease, color 0.2s ease;
  line-height: 1.2;
}
.nav-overlay-links a:hover {
  opacity: 1;
  color: var(--color-gold);
}
.nav-overlay-book {
  width: 100%;
  justify-content: center;
}


/* =============================================================================
   8. HERO SECTION
   ============================================================================= */
.section-hero {
  min-height: 100vh;
  background: var(--color-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--container-gutter) 80px;
  padding-left: max(var(--container-gutter), calc((100vw - var(--container-max)) / 2 + var(--container-gutter)));
  position: relative;
  z-index: 2;
}

.hero-label {
  margin-bottom: 32px;
}

.hero-headline {
  color: var(--color-text-light);
  margin-bottom: 28px;
}

.hero-headline .line {
  display: block;
}

.hero-sub {
  font-family: var(--font-utility);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--color-text-muted);
  max-width: 380px;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Rover trust badge */
.hero-rover-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 18px;
  background: rgba(26, 16, 48, 0.92);
  border: 1px solid rgba(240, 238, 255, 0.22);
  border-radius: 100px;
  color: var(--color-text-light);
  text-decoration: none !important;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 10;
}
.hero-rover-badge:hover {
  background: rgba(40, 28, 72, 0.96);
  border-color: rgba(240, 238, 255, 0.4);
  transform: translateY(-1px);
}
.rover-stars {
  color: #FFB800;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1;
}
.rover-text {
  color: var(--color-text-light);
  opacity: 0.9;
}
.rover-text strong {
  font-weight: 600;
  opacity: 1;
}
.rover-arrow {
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.hero-rover-badge:hover .rover-arrow {
  transform: translate(2px, -2px);
}

/* Gold accent line */
.hero-line {
  position: absolute;
  bottom: 80px;
  left: max(var(--container-gutter), calc((100vw - var(--container-max)) / 2 + var(--container-gutter)));
  height: 1px;
  background: var(--color-gold);
  width: 0;
  animation: hero-line-grow 1.2s 1.2s ease forwards;
}
@keyframes hero-line-grow {
  to { width: 80px; }
}

/* Ticker */
.hero-ticker {
  position: absolute;
  bottom: 48px;
  left: max(var(--container-gutter), calc((100vw - var(--container-max)) / 2 + var(--container-gutter)));
  overflow: hidden;
  width: 400px;
}
.hero-ticker-inner {
  display: flex;
  gap: 32px;
  font-family: var(--font-geometric);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-dim);
  white-space: nowrap;
  animation: ticker-scroll 18s linear infinite;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Hero image */
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img,
.hero-image video,
.hero-image .hero-img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--color-dark) 0%, transparent 30%),
    linear-gradient(180deg, rgba(13,13,11,0.95) 0%, rgba(13,13,11,0.6) 10%, transparent 30%),
    rgba(13,13,11,0.45);
  z-index: 1;
}
.hero-img-placeholder {
  background: linear-gradient(135deg, #1a1a16 0%, #2a2a22 50%, #1a1a16 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-placeholder span {
  font-family: var(--font-geometric);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}


/* =============================================================================
   9. STATS STRIP
   ============================================================================= */
.section-stats {
  background: var(--color-dark);
  padding: var(--space-section-md) 0;
  border-top: 1px solid var(--color-border-dark);
}

.stats-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  color: var(--color-text-light);
}

.stat-label {
  color: var(--color-gold-dim);
  line-height: 1.4;
}


/* =============================================================================
   10. SERVICES GRID
   ============================================================================= */
.section-services {
  background: var(--color-cream);
}

.services-header {
  margin-bottom: 60px;
}

.services-heading {
  color: var(--color-text-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--color-cream-2);
  border: 1px solid var(--color-border-light);
  padding: 48px 40px;
  cursor: pointer;
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.service-card:hover {
  background: var(--color-dark-2);
  border-color: var(--color-border-dark);
}

.service-card:hover .service-num    { color: var(--color-gold); }
.service-card:hover .service-title  { color: var(--color-text-light); }
.service-card:hover .service-desc   { color: var(--color-text-muted); }
.service-card:hover .service-price  { color: var(--color-gold); }

.service-num {
  font-family: var(--font-geometric);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--color-gold-dim);
  text-transform: uppercase;
  margin-bottom: 24px;
  transition: color 0.4s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-num::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s ease;
}
.service-card:hover .service-num::after { width: 32px; }

.service-title {
  color: var(--color-text-dark);
  margin-bottom: 16px;
  transition: color 0.4s ease;
}

.service-desc {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-mid);
  margin-bottom: 28px;
  transition: color 0.4s ease;
}

.service-price {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text-dark);
  transition: color 0.4s ease;
}


/* =============================================================================
   11. PROCESS — HOW IT WORKS
   ============================================================================= */
.section-process {
  background: var(--color-dark);
}

.process-heading {
  color: var(--color-text-light);
  margin-bottom: 72px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  padding: 0 40px 0 0;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  right: -1px;
  width: 1px;
  height: 60%;
  background: var(--color-border-dark);
}

.process-num {
  font-family: var(--font-geometric);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.process-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.3;
  max-width: 60px;
}

.process-title {
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.process-desc {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}


/* =============================================================================
   12. ABOUT SPLIT
   ============================================================================= */
.section-about-split {
  background: var(--color-cream);
  overflow: hidden;
}

.about-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-split-image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.about-split-image img,
.about-split-image .img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-placeholder {
  background: linear-gradient(135deg, var(--color-cream-2) 0%, var(--color-cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder span {
  font-family: var(--font-geometric);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.about-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-section-md) clamp(40px, 5vw, 80px);
}

.about-heading {
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.about-body {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.8;
  color: var(--color-text-mid);
  margin-bottom: 40px;
}
.about-body p {
  margin-bottom: 20px;
}
.about-body p:last-child {
  margin-bottom: 0;
}

/* About page — hero CTA row */
.about-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* About split — image stays full-height, content vertically centred */
.section-about-split .about-split-inner {
  align-items: stretch;
}
.section-about-split .about-split-image {
  min-height: 560px;
}
.section-about-split .about-split-content {
  justify-content: center;
}

/* Full-width story section */
.about-story-section {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-section-md) var(--container-gutter);
}
.about-story-body {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.85;
  color: var(--color-text-mid);
}
.about-story-body p {
  margin-bottom: 22px;
}
.about-story-body p:last-child {
  margin-bottom: 0;
}

/* Closing signature */
.about-closing {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(112, 96, 204, 0.2);
  font-family: var(--font-utility);
  font-size: clamp(16px, 1.3vw, 18px);
  font-style: italic;
  line-height: 1.8;
  color: var(--color-text-dark);
}
.about-closing p {
  margin-bottom: 2px;
}
.about-signoff {
  margin-top: 20px !important;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  font-style: normal;
  color: var(--color-gold);
}

/* Inline Rover review link */
.about-rover-link {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.about-rover-link:hover {
  color: var(--color-gold-light);
}


/* =============================================================================
   13. TESTIMONIALS
   ============================================================================= */
.section-testimonials {
  background: var(--color-dark);
}

.testimonials-heading {
  color: var(--color-text-light);
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.testimonial-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border-dark);
  border-left: 3px solid var(--color-gold);
  padding: 40px 36px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.testimonial-stars span {
  color: var(--color-gold);
  font-size: 14px;
}

.testimonial-quote {
  font-family: var(--font-utility);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.testimonial-author {
  font-family: var(--font-geometric);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}


/* =============================================================================
   14. BOOKING CTA
   ============================================================================= */
.section-cta {
  background: var(--color-dark);
  border-top: 1px solid var(--color-border-dark);
  text-align: center;
}

.cta-heading {
  color: var(--color-text-light);
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-sub {
  margin-top: 20px;
  font-family: var(--font-utility);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-muted);
  letter-spacing: 0;
}


/* =============================================================================
   15. FOOTER
   ============================================================================= */
.site-footer {
  background: var(--color-dark);
  padding: var(--space-section-md) 0 0;
  border-top: 1px solid var(--color-border-dark);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: var(--space-section-md);
}

.footer-logo {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.04em;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-utility);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-contact a {
  display: block;
  font-family: var(--font-utility);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.footer-contact a:hover { color: var(--color-gold); }

.footer-col-title {
  font-family: var(--font-geometric);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-dim);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-family: var(--font-utility);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--color-text-light); }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.footer-social a {
  font-family: var(--font-geometric);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.footer-social a:hover { color: var(--color-gold); }

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 24px var(--container-gutter);
  border-top: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  font-family: var(--font-geometric);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-family: var(--font-geometric);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--color-gold); }


/* =============================================================================
   16. SERVICES PAGE
   ============================================================================= */
.page-hero {
  background: var(--color-dark);
  padding: 160px var(--container-gutter) var(--space-section-md);
  max-width: var(--container-max);
  margin: 0 auto;
}

.page-hero-label { margin-bottom: 24px; }
.page-hero-heading { color: var(--color-text-light); margin-bottom: 24px; }
.page-hero-sub {
  font-family: var(--font-utility);
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* Service detail split sections */
.service-detail {
  overflow: hidden;
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.service-detail-inner.reverse {
  direction: rtl;
}
.service-detail-inner.reverse > * {
  direction: ltr;
}

.service-detail-image {
  position: relative;
  overflow: hidden;
}
.service-detail-image img,
.service-detail-image .img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Drop-in dog peeks from bottom — anchor image there */
.service-detail-image img[alt="Drop-in visit"] {
  object-position: center bottom;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-section-md) clamp(40px, 5vw, 80px);
}

.service-detail-num {
  font-family: var(--font-geometric);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.service-detail-heading {
  margin-bottom: 8px;
}

.service-detail-price {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.service-detail-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.service-detail-features li {
  font-family: var(--font-utility);
  font-size: 15px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-detail-features li::before {
  content: '✓';
  color: var(--color-gold);
  font-size: 13px;
  flex-shrink: 0;
}

/* Pricing table */
.section-pricing {
  background: var(--color-cream);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}
.pricing-table th {
  font-family: var(--font-geometric);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-mid);
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  font-weight: 400;
}
.pricing-table td {
  font-family: var(--font-utility);
  font-size: 15px;
  font-weight: 300;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-mid);
}
.pricing-table td:first-child {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--color-text-dark);
}
.pricing-table td.price {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--color-text-dark);
}
.pricing-table tr:hover td { background: var(--color-cream-2); }


/* =============================================================================
   17. BOOKING PAGE
   ============================================================================= */
.booking-wrapper {
  padding: var(--space-section-md) 0;
  background: var(--color-cream);
}

.booking-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--container-gutter);
}

/* Reassurance strip */
.reassurance-strip {
  background: var(--color-dark);
  padding: var(--space-section-sm) 0;
  border-top: 1px solid var(--color-border-dark);
}

.reassurance-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.reassurance-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reassurance-icon {
  font-size: 20px;
  color: var(--color-gold);
}

.reassurance-title {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-text-light);
}

.reassurance-desc {
  font-family: var(--font-utility);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-muted);
}

/* Amelia overrides */
.amelia-container {
  font-family: var(--font-utility) !important;
  letter-spacing: -0.01em !important;
}
.amelia-container .el-button--primary {
  background: var(--color-dark) !important;
  border-color: var(--color-dark) !important;
  font-family: var(--font-geometric) !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  border-radius: 0 !important;
}
.amelia-container .el-input__inner {
  border-radius: 0 !important;
  border: 1px solid var(--color-border-light) !important;
  font-family: var(--font-utility) !important;
}
.amelia-container * { border-radius: 0 !important; }


/* =============================================================================
   18. ABOUT PAGE
   ============================================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.value-item {
  padding: 40px 36px;
  border: 1px solid var(--color-border-light);
  background: var(--color-cream-2);
}

.value-num {
  font-family: var(--font-geometric);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  border-top: 1px solid var(--color-gold);
  padding-top: 16px;
  width: 32px;
}

.value-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.value-desc {
  font-family: var(--font-utility);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-mid);
}

/* Certs strip */
.certs-strip {
  background: var(--color-dark);
  padding: var(--space-section-sm) 0;
  border-top: 1px solid var(--color-border-dark);
}
.certs-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cert-badge {
  font-family: var(--font-geometric);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cert-badge::before {
  content: '●';
  color: var(--color-gold);
  font-size: 8px;
}


/* =============================================================================
   19. CONTACT PAGE
   ============================================================================= */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  padding-top: var(--space-section-md);
  padding-bottom: var(--space-section-md);
}

.contact-info-title { margin-bottom: 36px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  color: var(--color-gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-detail-text {
  font-family: var(--font-utility);
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-mid);
  line-height: 1.6;
}
.contact-detail-text a {
  color: var(--color-text-dark);
  font-weight: 400;
  transition: color 0.2s ease;
}
.contact-detail-text a:hover { color: var(--color-gold); }

.contact-hours {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border-light);
}
.contact-hours-title {
  font-family: var(--font-geometric);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-dim);
  margin-bottom: 16px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-utility);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border-light);
}

/* Contact form */
.contact-form .form-group {
  margin-bottom: 24px;
}
.contact-form label {
  display: block;
  font-family: var(--font-geometric);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-text-mid);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border-light);
  padding: 10px 0;
  font-family: var(--font-utility);
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-dark);
  outline: none;
  transition: border-color 0.25s ease;
  border-radius: 0;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--color-dark);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* FAQ */
.section-faq {
  background: var(--color-cream-2);
}

.faq-list {
  margin-top: 48px;
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 24px;
}

.faq-question-text {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
  line-height: 1.3;
}

.faq-toggle {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 300;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 24px;
  text-align: center;
  line-height: 1;
}
.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-family: var(--font-utility);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-mid);
}


/* =============================================================================
   20. 404 PAGE
   ============================================================================= */
.page-404 {
  background: var(--color-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--container-gutter);
}
.page-404-num {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(120px, 20vw, 240px);
  letter-spacing: -0.05em;
  color: var(--color-dark-3);
  line-height: 1;
  margin-bottom: 0;
}
.page-404 h1 {
  color: var(--color-text-light);
  margin-bottom: 16px;
}
.page-404 p {
  color: var(--color-text-muted);
  margin-bottom: 40px;
}


/* =============================================================================
   21. ANIMATIONS — REVEAL
   ============================================================================= */
.reveal,
.stagger-item {
  /* GSAP sets opacity/transform via JS */
}


/* =============================================================================
   22. RESPONSIVE
   ============================================================================= */
@media (max-width: 1024px) {
  .services-grid       { grid-template-columns: 1fr; }
  .testimonials-grid   { grid-template-columns: 1fr 1fr; }
  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
  .footer-inner        { grid-template-columns: 1fr 1fr; }
  .contact-split       { grid-template-columns: 1fr; gap: 48px; }
  .values-grid         { grid-template-columns: 1fr; }
  .reassurance-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --space-section-lg: 72px;
    --space-section-md: 52px;
    --space-section-sm: 36px;
  }

  /* ── Nav ── */
  .nav-primary  { display: none; }
  .nav-book-btn { display: none; }
  .nav-burger   { display: flex; }

  /* ── Section padding on mobile ── */
  .section {
    padding-top: var(--space-section-md);
    padding-bottom: var(--space-section-md);
  }

  /* ── Hero ── */
  .section-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 100px 24px 52px;
  }
  .hero-image {
    height: 55vw;
    min-height: 260px;
    position: relative;
  }
  .hero-ticker { display: none; }
  .hero-line   { display: none; }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Stats ── */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  /* ── Services grid ── */
  .services-grid { grid-template-columns: 1fr; }
  .service-card  { padding: 36px 28px; }

  /* ── View all button full width ── */
  .services-header + div .btn,
  [style*="margin-top: 48px"] .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Process ── */
  .process-steps         { grid-template-columns: 1fr; gap: 36px; }
  .process-step          { padding: 0; }
  .process-step::after   { display: none; }
  .process-num::after    { display: none; }

  /* ── About split ── */
  .about-split-inner   { grid-template-columns: 1fr; }
  .about-split-image   { height: 60vw; min-height: 260px; position: relative; }
  .about-split-content { padding: 40px 24px; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card  { padding: 32px 24px; }

  /* ── CTA section ── */
  .section-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Footer ── */
  .footer-inner      { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom     { flex-direction: column; text-align: center; gap: 12px; }
  .footer-legal      { justify-content: center; }

  /* ── Page hero (inner pages) ── */
  .page-hero { padding: 110px 24px 48px; }

  /* ── Service detail splits ── */
  .service-detail-inner         { grid-template-columns: 1fr; }
  .service-detail-inner.reverse { direction: ltr; }
  .service-detail-image         { height: 60vw; min-height: 260px; position: relative; }
  .service-detail-content       { padding: 40px 24px; }
  .service-detail-content .btn  { width: 100%; justify-content: center; }

  /* ── Pricing table ── */
  .pricing-table th,
  .pricing-table td { padding: 12px 10px; font-size: 13px; }
  .pricing-table td:first-child { font-size: 14px; }

  /* ── Reassurance grid ── */
  .reassurance-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* ── Values ── */
  .values-grid { grid-template-columns: 1fr; }

  /* ── Certs ── */
  .certs-inner { gap: 20px; justify-content: flex-start; flex-wrap: wrap; }

  /* ── Contact ── */
  .contact-split { padding-top: 40px; padding-bottom: 40px; }

  /* ── FAQ ── */
  .faq-question-text { font-size: 15px; }

  /* ── Type scale ── */
  .type-display { font-size: clamp(38px, 11vw, 64px); }
  .type-h1      { font-size: clamp(30px, 9vw, 52px); }
  .type-h2      { font-size: clamp(24px, 7vw, 40px); }
}

@media (max-width: 480px) {
  :root {
    --space-section-lg: 60px;
    --space-section-md: 44px;
  }

  .stats-grid        { grid-template-columns: 1fr 1fr; gap: 24px; }
  .reassurance-grid  { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .service-card      { padding: 28px 20px; }
  .hero-content      { padding: 90px 20px 44px; }
  .page-hero         { padding: 100px 20px 40px; }

  /* Pricing table — hide bundle column on tiny screens */
  .pricing-table th:last-child,
  .pricing-table td:last-child { display: none; }
}


/* =============================================================================
   ELEMENTOR LAYOUT FIXES & COMPATIBILITY
   Overrides for Elementor-generated CSS that conflicts with theme styles.
   ============================================================================= */

/* ─── Process Section: Elementor inner section layout fix ──────────────────── */
/* The .process-steps CSS class is on the Elementor inner section (fe1).
   Our CSS rule ".process-steps { display: grid }" applies to fe1 making it a
   3-col grid — but the 3 step columns are INSIDE .elementor-container, not
   direct children of fe1. Reset fe1 to block so Elementor's flex layout works,
   then force the container to be full-width so the 3 step columns get equal
   widths from flex: 1. */
.elementor-inner-section.process-steps {
  display: block !important;
}
.elementor-element-fe1 > .elementor-container {
  width: 100% !important;
  max-width: var(--container-max) !important;
  display: flex !important;
}
.elementor-element-fe1 .elementor-column {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: auto !important;
}

/* ─── Process Step Description (class used in Elementor widget) ─────────────── */
.process-step-desc,
.process-step-desc p {
  font-family: var(--font-utility) !important;
  font-weight: 300 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: var(--color-text-muted) !important;
  margin: 0 !important;
}

/* ─── Service Card Hover — override Elementor's high-specificity background ── */
.service-card:hover {
  background: var(--color-dark-2) !important;
  border-color: var(--color-border-dark) !important;
}
.service-card:hover .service-num   { color: var(--color-gold) !important; }
.service-card:hover .service-title { color: var(--color-text-light) !important; }
.service-card:hover .service-desc  { color: var(--color-text-muted) !important; }
.service-card:hover .service-price { color: var(--color-gold) !important; }

/* ─── Elementor Text-Editor Heading Color inside Service Cards ─────────────── */
.service-card .elementor-heading-title   { color: var(--color-text-dark) !important; transition: color 0.4s ease; }
.service-card:hover .elementor-heading-title { color: var(--color-text-light) !important; }

/* ─── Stats: vertical separators between stat items ────────────────────────── */
.section-stats .elementor-column:not(:last-child) {
  border-right: 1px solid var(--color-border-dark);
}

/* ─── About Split Image: Elementor image widget compat ─────────────────────── */
/* Elementor image widget wraps img inside multiple divs. Target the inner img. */
.about-split-image-col .elementor-widget-image {
  height: 100%;
}
.about-split-image-col .elementor-widget-container {
  height: 100%;
}
.about-split-image-col .elementor-image,
.about-split-image-col .elementor-widget-container a {
  display: block;
  height: 100%;
}
.about-split-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ─── About Split: ensure 2-col layout at correct proportions ──────────────── */
.elementor-element-ff2 > .elementor-container > .elementor-column {
  align-self: stretch !important;
}
.elementor-element-ff2 .about-split-image-col {
  min-height: 560px;
}
.elementor-element-ff2 .about-split-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.elementor-element-ff2 .about-split-content-col > .elementor-widget-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* ─── Testimonial Card ─────────────────────────────────────────────────────── */
.testimonial-card {
  background: var(--color-dark-2) !important;
  border-left: 3px solid var(--color-gold) !important;
}
.testimonial-card .elementor-heading-title { color: var(--color-text-light) !important; }

/* ─── Hero: support alternate class names used in Elementor widget HTML ─────── */
/* The Elementor hero widget uses .hero-video (not .hero-bg-video) */
.hero-image .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* The Elementor hero widget uses .ticker-track (not .hero-ticker-inner) */
.hero-ticker .ticker-track {
  display: flex;
  gap: 32px;
  font-family: var(--font-geometric);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-dim);
  white-space: nowrap;
  animation: ticker-scroll 18s linear infinite;
}

/* ─── Header: subtle dark gradient at top so nav links always read cleanly ─── */
/* Without this, transparent header on hero is fine, but any cream-bg page
   shows white header text invisible against light background. */
.site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(13,13,11,0.55) 0%, transparent 100%);
}

/* ─── Services section inner section: ensure 2-col layout  ─────────────────── */
.elementor-element-fc7 > .elementor-container {
  width: 100% !important;
}


/* =============================================================================
   NEW FEATURES — VIDEO HERO, GALLERY, FLOATING BUTTONS, PAW CURSOR
   ============================================================================= */

/* ─── Hero Video Background ─────────────────────────────────────────────────
   The hero keeps its 2-col grid (content left, image right).
   On desktop the static .hero-bg-img fades out once the YT iframe loads.
   On mobile the video wrap is hidden — static image shows instead.
   ─────────────────────────────────────────────────────────────────────────── */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  /* hidden once video is playing — poster handles the preload frame */
  opacity: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--color-dark) 0%, transparent 40%),
    linear-gradient(180deg, rgba(13,13,11,0.95) 0%, rgba(13,13,11,0.55) 12%, transparent 35%),
    linear-gradient(0deg,   rgba(13,13,11,0.8) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.hero-image::after { display: none; }

/* Mobile: video plays inline; image is fallback only */
@media (max-width: 1023px) {
  .hero-bg-video {
    display: block;
    object-position: 60% center;
  }
  .hero-bg-img   { opacity: 0; }
  .hero-video-overlay { display: block; }
  .hero-image::after  { display: none; }
}


/* ─── Photo Gallery Section ──────────────────────────────────────────────── */
.section-gallery {
  background: var(--color-dark-2);
  padding: var(--space-section-lg) 0;
}

.gallery-header {
  margin-bottom: 56px;
}

.gallery-heading {
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.gallery-sub {
  font-family: var(--font-utility);
  font-size: 15px;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 8 / 3;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,13,11,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-tag {
  font-family: var(--font-geometric);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(13,13,11,0.7);
  padding: 6px 12px;
  border-radius: 2px;
}

.gallery-cta {
  margin-top: 56px;
  text-align: center;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .gallery-item--wide { grid-column: span 2; aspect-ratio: 16 / 9; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 4 / 3; }
}


/* ─── Floating Action Buttons ────────────────────────────────────────────── */
.float-actions {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.float-actions.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 14px;
  border-radius: 22px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.01em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  text-decoration: none;
  overflow: hidden;
  /* Start as icon-only pill */
  width: 44px;
  transition: width 0.3s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.2s ease,
              transform 0.2s ease;
}

.float-btn svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.float-btn--book svg {
  width: 22px;
  height: 22px;
}

.float-btn-label {
  opacity: 0;
  overflow: hidden;
  max-width: 0;
  transition: opacity 0.25s ease 0.05s, max-width 0.3s ease;
}

.float-btn:hover {
  width: 130px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transform: translateY(-1px);
}

.float-btn:hover .float-btn-label {
  opacity: 1;
  max-width: 100px;
}

.float-btn--book {
  background: var(--color-gold);
  color: var(--color-dark);
}
.float-btn--book:hover { background: var(--color-gold-light); }

.float-btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.float-btn--whatsapp:hover { background: #1fba5a; }

@media (max-width: 480px) {
  .float-actions { bottom: 20px; right: 16px; }
}


/* ─── Custom Paw Cursor ──────────────────────────────────────────────────── */
.paw-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 32px;
  height: 32px;
  color: var(--color-gold);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) rotate(-20deg) scale(0.8);
  transition: opacity 0.3s ease, transform 0.1s ease, color 0.2s ease;
  mix-blend-mode: normal;
}

/* Show cursor only on non-touch devices */
@media (hover: hover) {
  body:not(.touch-device) .paw-cursor {
    opacity: 0;  /* JS controls visibility */
  }
}

/* Hide the real cursor when paw is active */
body.paw-cursor-active * {
  cursor: none !important;
}

body.paw-cursor-active .paw-cursor {
  opacity: 1;
}

/* Slightly enlarge on clickable elements */
body.paw-cursor-active a .paw-cursor,
body.paw-cursor-active button .paw-cursor {
  transform: translate(-50%, -50%) rotate(-10deg) scale(1.2);
  color: var(--color-gold-light);
}

.paw-cursor.is-hovering {
  transform: translate(-50%, -50%) rotate(-10deg) scale(1.3);
  color: var(--color-gold-light);
}

.paw-cursor.is-clicking {
  transform: translate(-50%, -50%) rotate(-10deg) scale(0.9);
}


/* ─── Elementor Button Widget Compatibility ─────────────────────────────── */
/* pawco btn classes land on the Elementor widget wrapper div, not the <a>.
   These rules cascade the visual appearance down to the inner anchor. */

.elementor-widget-button .elementor-button-wrapper {
  display: block !important;
}
.elementor-widget-button .elementor-button {
  background: transparent;
  border-radius: 0;
  padding: 14px 28px;
  font-family: var(--font-geometric);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  width: auto !important;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary .elementor-button {
  background: var(--color-dark) !important;
  color: var(--color-text-light) !important;
  border: 1px solid var(--color-dark) !important;
}
.btn-primary .elementor-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.btn-primary .elementor-button:hover::after { transform: translateX(0); }
.btn-primary .elementor-button:hover { color: var(--color-dark) !important; }

.btn-gold .elementor-button {
  background: var(--color-gold) !important;
  color: var(--color-dark) !important;
  border: 1px solid var(--color-gold) !important;
}
.btn-gold .elementor-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.btn-gold .elementor-button:hover::after { transform: translateX(0); }
.btn-gold .elementor-button:hover { color: var(--color-text-light) !important; }

.btn-ghost-light .elementor-button {
  background: transparent !important;
  border: 1px solid rgba(240, 237, 229, 0.4) !important;
  color: var(--color-text-light) !important;
}
.btn-ghost-light .elementor-button:hover {
  border-color: var(--color-gold) !important;
  color: var(--color-gold) !important;
}

.btn-ghost-dark .elementor-button {
  background: transparent !important;
  border: 1px solid rgba(17, 17, 17, 0.15) !important;
  color: var(--color-text-dark) !important;
}
.btn-ghost-dark .elementor-button:hover {
  border-color: var(--color-dark) !important;
  background: var(--color-dark) !important;
  color: var(--color-text-light) !important;
}

/* Elementor button content wrapper must sit above the ::after fill animation */
.elementor-widget-button .elementor-button .elementor-button-content-wrapper { position: relative; z-index: 1; }
.elementor-widget-button .elementor-button .elementor-button-text { position: relative; z-index: 1; }


/* ─── Elementor Heading Widget Color Overrides ───────────────────────────── */
/* post-5.css sets all .elementor-heading-title to Elementor's global accent
   color. These !important rules restore the correct per-section colors. */

/* Dark sections — white headings */
.section--dark .elementor-heading-title,
.section-stats  .elementor-heading-title,
.section-cta    .elementor-heading-title {
  color: var(--color-text-light) !important;
}

/* Light sections — dark headings */
.services-heading     .elementor-heading-title,
.about-heading        .elementor-heading-title,
.section-about-split  .elementor-heading-title {
  color: var(--color-text-dark) !important;
}

/* Service card titles — dark on light-purple card */
.service-title .elementor-heading-title {
  color: var(--color-text-dark) !important;
}

/* Process step titles — white on dark */
.process-step-title .elementor-heading-title,
.section-process .elementor-heading-title {
  color: var(--color-text-light) !important;
}

/* Testimonial / CTA headings */
.testimonials-heading .elementor-heading-title {
  color: var(--color-text-light) !important;
}

/* GPS stat number — white on dark */
.stat-number .elementor-heading-title {
  color: var(--color-text-light) !important;
}

/* CTA + Services centered buttons now use HTML widgets with native <a> tags —
   no Elementor button widget overrides needed here */


/* ─── Stats Strip — Elementor Counter Widget Overrides ──────────────────── */
/* Counter widget renders title ABOVE number. Reverse so number is on top.   */
.section-stats .elementor-counter {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
}

/* Number + suffix/prefix — match .type-number styling */
.section-stats .elementor-counter-number-wrapper {
  font-family: var(--font-primary) !important;
  font-weight: 300 !important;
  font-size: clamp(48px, 6vw, 96px) !important;
  letter-spacing: -0.04em !important;
  line-height: 1 !important;
}
.section-stats .elementor-counter-number,
.section-stats .elementor-counter-number-prefix,
.section-stats .elementor-counter-number-suffix {
  color: var(--color-text-light) !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  font-size: inherit !important;
  letter-spacing: inherit !important;
}

/* Title (label) — match .type-label / .stat-label styling */
.section-stats .elementor-counter-title {
  font-family: var(--font-geometric) !important;
  font-weight: 400 !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--color-gold-dim) !important;
  line-height: 1.4 !important;
  white-space: pre-line !important;  /* respects \n in counter title */
}

/* GPS stat — heading + text use same sizing */
.section-stats .stat-number .elementor-heading-title {
  font-family: var(--font-primary) !important;
  font-weight: 300 !important;
  font-size: clamp(48px, 6vw, 96px) !important;
  letter-spacing: -0.04em !important;
  line-height: 1 !important;
  color: var(--color-text-light) !important;
}
/* stat-label is the <p> itself (not a wrapper) */
.section-stats p.stat-label,
.section-stats .elementor-widget-text-editor p {
  font-family: var(--font-geometric) !important;
  font-weight: 400 !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--color-gold-dim) !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

/* =============================================================================
   ELEMENTOR NATIVE WIDGET COMPATIBILITY
   CSS classes on native widgets land on .elementor-element wrapper, NOT on
   the inner element. These rules cascade styles from wrapper → inner element.
   ============================================================================= */

/* ─── Type Scale ─────────────────────────────────────────────────────────── */
.type-display .elementor-heading-title {
  font-family: var(--font-primary) !important;
  font-weight: 700 !important;
  font-size: clamp(56px, 7vw, 110px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.045em !important;
}
.type-h2 .elementor-heading-title {
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  font-size: clamp(28px, 3.5vw, 48px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.030em !important;
}
.type-h3 .elementor-heading-title {
  font-family: var(--font-primary) !important;
  font-weight: 500 !important;
  font-size: clamp(20px, 2.5vw, 32px) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.025em !important;
}

/* ─── Section Label ──────────────────────────────────────────────────────── */
.section-label .elementor-heading-title {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-family: var(--font-geometric) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--color-gold) !important;
  margin-bottom: 24px !important;
}
.section-label .elementor-heading-title::before {
  content: '' !important;
  display: inline-block !important;
  width: 24px !important;
  height: 1px !important;
  background: var(--color-gold) !important;
  flex-shrink: 0 !important;
  vertical-align: middle !important;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero-headline .elementor-heading-title {
  font-family: var(--font-primary) !important;
  font-weight: 700 !important;
  font-size: clamp(56px, 7vw, 110px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.045em !important;
  color: var(--color-text-light) !important;
}
.hero-label .elementor-heading-title {
  font-family: var(--font-geometric) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--color-text-muted) !important;
  margin-bottom: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.hero-label .elementor-heading-title::before {
  content: '' !important;
  display: inline-block !important;
  width: 24px !important;
  height: 1px !important;
  background: var(--color-gold) !important;
  flex-shrink: 0 !important;
}
.elementor-widget-text-editor p.hero-sub {
  font-family: var(--font-utility) !important;
  font-size: clamp(15px, 1.2vw, 17px) !important;
  line-height: 1.65 !important;
  color: rgba(240, 238, 255, 0.7) !important;
  max-width: 440px;
  margin: 0 !important;
}

/* ─── Services ───────────────────────────────────────────────────────────── */
.services-heading .elementor-heading-title {
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  font-size: clamp(28px, 3.5vw, 48px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.030em !important;
  color: var(--color-text-dark) !important;
}
/* Service card columns — style as cards */
#services-grid > .elementor-container > .elementor-row > .elementor-column {
  background: var(--color-cream-2) !important;
  border-radius: 16px;
  padding: 32px 28px !important;
  transition: background 0.3s ease, transform 0.3s ease;
}
#services-grid > .elementor-container > .elementor-row > .elementor-column:hover {
  background: var(--color-dark) !important;
  transform: translateY(-4px);
}
.service-num .elementor-heading-title {
  font-family: var(--font-geometric) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--color-gold) !important;
  margin-bottom: 12px !important;
}
.service-title .elementor-heading-title {
  font-family: var(--font-primary) !important;
  font-weight: 500 !important;
  font-size: clamp(20px, 2.5vw, 28px) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.025em !important;
  color: var(--color-text-dark) !important;
  margin-bottom: 12px !important;
}
#services-grid .elementor-column:hover .service-title .elementor-heading-title {
  color: var(--color-text-light) !important;
}
.service-desc { color: var(--color-text-mid) !important; font-size: 14px !important; line-height: 1.65 !important; }
.service-price { font-family: var(--font-geometric) !important; font-size: 11px !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; color: var(--color-gold) !important; margin-top: 16px !important; }
#services-grid .elementor-column:hover .service-desc { color: var(--color-text-muted) !important; }

/* ─── Process ────────────────────────────────────────────────────────────── */
.process-heading .elementor-heading-title {
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  font-size: clamp(28px, 3.5vw, 48px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.030em !important;
  color: var(--color-text-light) !important;
}
/* Process step columns */
#process-steps > .elementor-container > .elementor-row > .elementor-column {
  border-left: 1px solid var(--color-border-dark);
  padding-left: 32px !important;
}
#process-steps > .elementor-container > .elementor-row > .elementor-column:first-child {
  border-left: none;
  padding-left: 0 !important;
}
.process-num .elementor-heading-title {
  font-family: var(--font-geometric) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--color-gold) !important;
  margin-bottom: 24px !important;
}
.process-title .elementor-heading-title {
  font-family: var(--font-primary) !important;
  font-weight: 500 !important;
  font-size: clamp(20px, 2.5vw, 28px) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.025em !important;
  color: var(--color-text-light) !important;
  margin-bottom: 16px !important;
}
p.process-desc {
  font-family: var(--font-utility) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: var(--color-text-muted) !important;
  margin: 0 !important;
}

/* ─── About Split ────────────────────────────────────────────────────────── */
.about-heading .elementor-heading-title {
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  font-size: clamp(28px, 3.5vw, 48px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.030em !important;
  color: var(--color-text-dark) !important;
}
p.about-body {
  font-family: var(--font-utility) !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
  color: var(--color-text-mid) !important;
  margin: 0 !important;
}
.section-about-split .elementor-column.about-split-image-col img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.testimonials-heading .elementor-heading-title {
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  font-size: clamp(28px, 3.5vw, 48px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.030em !important;
  color: var(--color-text-light) !important;
}

/* ─── Gallery ────────────────────────────────────────────────────────────── */
.gallery-heading .elementor-heading-title {
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  font-size: clamp(28px, 3.5vw, 48px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.030em !important;
  color: var(--color-text-light) !important;
}
p.gallery-sub {
  font-family: var(--font-utility) !important;
  font-size: 15px !important;
  color: var(--color-text-muted) !important;
  margin: 0 !important;
}

/* ─── CTA ────────────────────────────────────────────────────────────────── */
.cta-heading .elementor-heading-title {
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  font-size: clamp(28px, 3.5vw, 48px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.030em !important;
  color: var(--color-text-light) !important;
}
p.cta-sub {
  font-family: var(--font-utility) !important;
  font-size: 14px !important;
  color: var(--color-text-muted) !important;
  margin: 0 !important;
}

/* ─── Stats text-editor numbers ──────────────────────────────────────────── */
.stat-item .elementor-widget-text-editor span.type-number {
  display: block !important;
  font-family: var(--font-primary) !important;
  font-weight: 300 !important;
  font-size: clamp(48px, 6vw, 96px) !important;
  letter-spacing: -0.04em !important;
  line-height: 1 !important;
  color: var(--color-text-light) !important;
}
.stat-item .elementor-widget-text-editor span.type-label,
.stat-item .elementor-widget-text-editor span.stat-label {
  display: block !important;
  font-family: var(--font-geometric) !important;
  font-weight: 400 !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--color-gold-dim) !important;
  line-height: 1.4 !important;
  margin-top: 8px !important;
}

/* ─── Stats column layout ────────────────────────────────────────────────── */
#stats-grid.elementor-section .elementor-container {
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  gap: 0 !important;
}
#stats-grid > .elementor-container > .elementor-row > .elementor-column {
  text-align: center !important;
  border-right: 1px solid var(--color-border-dark);
  padding: 32px 40px !important;
}
#stats-grid > .elementor-container > .elementor-row > .elementor-column:last-child {
  border-right: none;
}

/* ─── Hero min-height ─────────────────────────────────────────────────────── */
.section-hero.elementor-section {
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
}
.section-hero > .elementor-container {
  width: 100% !important;
  padding-top: 120px !important;
  padding-bottom: 80px !important;
}

/* ─── Button centering for center-aligned buttons ─────────────────────────── */
.elementor-widget-button.elementor-align-center .elementor-button-wrapper {
  text-align: center !important;
}
.elementor-widget-button.elementor-align-right .elementor-button-wrapper {
  text-align: right !important;
}

/* ─── Elementor default resets ───────────────────────────────────────────── */
/* Kill Elementor's Roboto font injection on all our custom headings */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-primary) !important;
}
/* Kill default Elementor padding on widget containers inside our sections */
.section-hero .elementor-widget-wrap,
.section-stats .elementor-widget-wrap,
.section-about-split .elementor-widget-wrap {
  padding: 0 !important;
}
