/* ============================================================
   PINNACLE OOH — style.css
   Billboard & Out-of-Home Advertising Landing Page
   ============================================================ */

/* ============================================================
   FONT DECLARATIONS
   ============================================================ */

/* Delight — Display / Headings / CTAs */
@font-face {
  font-family: 'Delight';
  src: url('../fonts/delight/delight-vf.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Delight';
  src: url('../fonts/delight/delight-thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Delight';
  src: url('../fonts/delight/delight-extralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Delight';
  src: url('../fonts/delight/delight-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Delight';
  src: url('../fonts/delight/delight-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Delight';
  src: url('../fonts/delight/delight-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Delight';
  src: url('../fonts/delight/delight-semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Delight';
  src: url('../fonts/delight/delight-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Delight';
  src: url('../fonts/delight/delight-extrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Delight';
  src: url('../fonts/delight/delight-black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Stack Sans Text — Body / UI text */
@font-face {
  font-family: 'Stack Sans Text';
  src: url('../fonts/stack/StackSansText-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Stack Sans Text';
  src: url('../fonts/stack/StackSansText-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Stack Sans Text';
  src: url('../fonts/stack/StackSansText-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Stack Sans Text';
  src: url('../fonts/stack/StackSansText-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Stack Sans Text';
  src: url('../fonts/stack/StackSansText-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Stack Sans Text';
  src: url('../fonts/stack/StackSansText-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Brand colours — Cocoon Outdoor Advertising */
  --color-teal:        #7dcdc2;   /* Teal — primary accent, labels, links, stats */
  --color-teal-dk:     #5ab3a7;   /* Teal dark — hover states */
  --color-coral:       #c98b7c;   /* Coral — CTAs, buttons, watch reel */
  --color-coral-dk:    #b5705f;   /* Coral dark — button hover */
  --color-sage:        #a9d69f;   /* Sage — campaign tags, stats strip accent */
  --color-sage-dk:     #88c27d;   /* Sage dark */

  /* Semantic aliases */
  --color-primary:     var(--color-teal);
  --color-primary-dk:  var(--color-teal-dk);

  --color-dark:        #111111;   /* Near-black */
  --color-text:        #1e1e1e;   /* Default body text */
  --color-muted:       #6b6b6b;   /* Secondary / captions */
  --color-border:      #e0e0e0;   /* Dividers */
  --color-light:       #f5f4f2;   /* Off-white backgrounds */
  --color-white:       #ffffff;

  /* Typography */
  --font-display: 'Delight', Georgia, serif;
  --font-body:    'Stack Sans Text', 'Helvetica Neue', Arial, sans-serif;

  /* Type scale */
  --text-hero:      clamp(3.2rem, 7vw, 7.5rem);
  --text-h2:        clamp(2.4rem, 5vw, 5rem);
  --text-h3:        clamp(1.9rem, 3.5vw, 3.6rem);
  --text-stat:      clamp(2.8rem, 5.5vw, 5.5rem);
  --text-body:      clamp(1rem, 1.2vw, 1.18rem);
  --text-small:     0.875rem;
  --text-label:     0.78rem;
  --text-nav:       0.95rem;

  /* Spacing */
  --section-space:    clamp(5rem, 10vw, 10rem);
  --section-space-sm: clamp(3rem, 6vw, 6rem);
  --container-pad:    clamp(1.25rem, 4vw, 3rem);

  /* Layout */
  --container-width: 1440px;
  --header-height:   100px;

  /* Animation */
  --ease-out:   cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  /* Borders */
  --radius-sm:  2px;
  --radius-btn: 3px;
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

address {
  font-style: normal;
}

svg {
  display: block;
  fill: currentColor;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.6rem 1.2rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-small);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 9999;
  transition: top 0.2s;
  border-radius: var(--radius-btn);
}

.skip-link:focus {
  top: 1rem;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .parallax-image img,
  .parallax-cta img {
    transform: none !important;
  }
}


/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}


/* ============================================================
   TYPOGRAPHY — REUSABLE
   ============================================================ */

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.25s ease, gap 0.25s ease;
}

.text-link:hover {
  border-color: var(--color-primary);
  gap: 0.7rem;
}

.text-link .arrow {
  transition: transform 0.25s ease;
}

.text-link:hover .arrow {
  transform: translateX(3px);
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 1rem 2rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
  white-space: nowrap;
  min-height: 52px;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: translateY(1px);
}

/* Primary — coral */
.btn-primary {
  background-color: var(--color-coral);
  color: var(--color-white);
  border-color: var(--color-coral);
}

.btn-primary:hover {
  background-color: var(--color-coral-dk);
  border-color: var(--color-coral-dk);
}

/* White (on dark backgrounds) */
.btn-white {
  background-color: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--color-white);
}

/* Outline white (on dark backgrounds) */
.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--color-white);
}

/* Submit button states */
.btn-submit {
  min-width: 200px;
}

.btn-submit .btn-loading {
  display: none;
}

.btn-submit.is-loading .btn-label {
  display: none;
}

.btn-submit.is-loading .btn-loading {
  display: inline;
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}


/* ============================================================
   REVEAL ANIMATIONS — IntersectionObserver driven
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service cards get stagger via nth-child */
.service-card.reveal-up {
  transition-duration: 0.6s;
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }

/* Hero entrance (triggered immediately) */
.reveal-hero {
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 0.85s var(--ease-out) forwards;
}

.reveal-hero.delay-1 { animation-delay: 0.15s; }
.reveal-hero.delay-2 { animation-delay: 0.3s; }
.reveal-hero.delay-3 { animation-delay: 0.5s; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================================
   HEADER — transparent, floats over hero
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: transparent;
  height: var(--header-height);
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background-color: var(--color-white);
  box-shadow: 0 1px 16px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

/* Transparent Cocoon logo */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.header-logo:hover,
.site-header.is-scrolled .header-logo {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.header-logo img {
  height: 78px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(255,255,255,0.42));
}

/* Right-side controls group *//* Right-side controls group */
.header-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Pill CTA button */
.header-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-dark);
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background-color 0.22s ease, transform 0.18s ease;
  white-space: nowrap;
  min-height: 44px;
}

.header-cta-pill svg {
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.header-cta-pill:hover {
  background: var(--color-coral);
}

.header-cta-pill:hover svg {
  transform: translateX(3px);
}

/* When scrolled, pill CTA stays dark */
.site-header.is-scrolled .header-cta-pill {
  background: var(--color-dark);
}

.site-header.is-scrolled .header-cta-pill:hover {
  background: var(--color-coral);
}

/* Circle hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.25s ease, background-color 0.25s ease;
  flex-shrink: 0;
}

.hamburger:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
}

.site-header.is-scrolled .hamburger {
  border-color: var(--color-border);
}

.site-header.is-scrolled .hamburger:hover {
  border-color: var(--color-dark);
  background: var(--color-light);
}

.hamburger-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transform-origin: center;
}

.site-header.is-scrolled .hamburger-line {
  background-color: var(--color-dark);
}

/* Two-line hamburger → X when open */
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Hide old desktop nav */
.header-nav { display: none; }


/* ============================================================
   OFF-CANVAS — floating white card from top-right
   ============================================================ */
.off-canvas {
  position: fixed;
  inset: 0;
  z-index: 980;
  pointer-events: none;
}

.off-canvas.is-open {
  pointer-events: all;
}

/* Backdrop — subtle, lets the hero show through */
.off-canvas-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.25);
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
}

.off-canvas.is-open .off-canvas-backdrop {
  opacity: 1;
}

/* White card panel — floats top-right with a gap from the edge */
.off-canvas-panel {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: min(380px, calc(100vw - 2rem));
  background: var(--color-white);
  border-radius: 20px;
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  /* Start scaled down + shifted up slightly */
  transform: scale(0.92) translateY(-12px);
  transform-origin: top right;
  opacity: 0;
  transition: transform 0.38s var(--ease-out), opacity 0.32s ease;
  pointer-events: none;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.1);
}

.off-canvas.is-open .off-canvas-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Circle close button — top right of card */
.off-canvas-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.off-canvas-close:hover {
  background: var(--color-light);
  border-color: var(--color-dark);
}

/* Nav list */
.off-canvas-nav {
  flex: 1;
}

.off-canvas-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.off-canvas-list li {
  border-bottom: none;
}

.off-canvas-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.025em;
  padding: 0.45rem 0;
  text-decoration: none;
  line-height: 1.15;
  transition: color 0.18s ease;
}

.off-canvas-link:hover {
  color: var(--color-primary);
}

/* Bottom CTA */
.off-canvas-footer {
  padding-top: 2rem;
  margin-top: auto;
}

/* Pill CTA inside menu */
.off-canvas-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  background: transparent;
  border: 1.5px solid var(--color-dark);
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
}

.off-canvas-cta-pill svg {
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.off-canvas-cta-pill:hover {
  background: var(--color-coral);
  color: var(--color-white);
  border-color: var(--color-coral);
}

.off-canvas-cta-pill:hover svg {
  transform: translateX(3px);
}


/* ============================================================
   HERO — Image background, left-aligned content
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;   /* anchor content toward lower third */
  overflow: hidden;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  line-height: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  pointer-events: none;
  transition: opacity 0.9s ease, transform 6s linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  display: block;
}

.hero-slide:first-child img {
  object-position: center 54%;
}

.hero-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,8,8,0.72) 0%,
    rgba(8,8,8,0.45) 55%,
    rgba(8,8,8,0.22) 100%
  );
}

/* Carousel message */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(5.8rem, 9vw, 8rem);
  padding-top: 0;
}

.hero-text-col {
  max-width: 820px;
  text-align: left;
  margin-top: clamp(5rem, 12vw, 10rem);
}

.hero-text-col.hero-copy-animate {
  animation: heroCopyEnter 0.55s ease both;
}

@keyframes heroCopyEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.8;
  margin-bottom: 1.25rem;
}

.hero-heading {
  max-width: 900px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.2vw, 5.6rem);
  font-weight: 700;
  line-height: 1.02;
  color: var(--color-white);
  letter-spacing: -0.035em;
  margin: 0;
}

/* Typing cursor */
.type-cursor {
  display: inline-block;
}

.type-cursor::after {
  content: '|';
  display: inline-block;
  color: var(--color-teal);
  font-weight: 300;
  animation: cursorBlink 0.75s step-end infinite;
  margin-left: 2px;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero slider controls */
.hero-slider-controls {
  position: absolute;
  z-index: 12;
  bottom: 1.65rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transform: translateX(-50%);
}

.hero-slider-arrow {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.52);
  border-radius: 50%;
  background: rgba(0,0,0,0.24);
  color: var(--color-white);
  cursor: pointer;
  backdrop-filter: blur(7px);
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.hero-slider-arrow:hover {
  border-color: var(--color-coral);
  background: var(--color-coral);
  transform: scale(1.05);
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-slider-dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255,255,255,0.48);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.hero-slider-dot.is-active {
  width: 2.3rem;
  background: var(--color-teal);
}

/* Watch Reel box — larger */
.watch-reel {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255,255,255,0.96);
  border: none;
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  align-self: flex-end;
  margin-bottom: 2px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}

.watch-reel:hover {
  background: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.watch-reel-play {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background-color 0.22s ease, transform 0.22s ease;
}

.watch-reel:hover .watch-reel-play {
  background: var(--color-coral-dk);
  transform: scale(1.08);
}

.watch-reel-play svg {
  margin-left: 3px;
  width: 22px;
  height: 22px;
}

.watch-reel-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.2rem;
}

.watch-reel-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.watch-reel-sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: scrollBounce 2.4s var(--ease-in-out) infinite;
}

.scroll-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.45; }
}


/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.video-modal.is-open {
  pointer-events: all;
  opacity: 1;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.88);
  cursor: pointer;
}

.video-modal-inner {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 1100px;
  transform: scale(0.95) translateY(16px);
  transition: transform 0.38s var(--ease-out);
}

.video-modal.is-open .video-modal-inner {
  transform: scale(1) translateY(0);
}

.video-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.video-modal-close:hover {
  color: var(--color-white);
  background-color: rgba(255,255,255,0.1);
}

.video-modal-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  line-height: 0;
}

.modal-video-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.modal-video-player[src=""] {
  display: none;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding-block: var(--section-space);
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.about-statement {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-dark);
  letter-spacing: -0.025em;
}

.about-right {
  padding-top: 4rem;
}

.about-body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.about-image-wrap {
  overflow: hidden;
  line-height: 0;
}

.about-image-inner {
  overflow: hidden;
}

.about-image-inner img {
  width: 100%;
  height: clamp(320px, 48vw, 700px);
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.1s linear;
  will-change: transform;
}


/* ============================================================
   STATISTICS
   ============================================================ */
.stats {
  background-color: #f0faf9;   /* very light teal wash */
  border-top: 1px solid #c5e9e6;
  border-bottom: 1px solid #c5e9e6;
  padding-block: clamp(3.5rem, 7vw, 7rem);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.stat-item {
  padding: 1.5rem 2rem;
  border-right: 1px solid #c5e9e6;
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-stat);
  font-weight: 700;
  color: var(--color-teal-dk);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}


/* ============================================================
   SERVICES — 4-column card grid, no images
   ============================================================ */
.services {
  padding-block: var(--section-space);
  background: var(--color-white);
}

.services-intro {
  max-width: 780px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.services-intro-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--color-muted);
  line-height: 1.7;
  margin-top: 1rem;
}

.services-intro-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.2rem;
  margin-top: 1.6rem;
  padding: 0;
  list-style: none;
}

.services-intro-list li {
  position: relative;
  padding-left: 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-dark);
  line-height: 1.3;
}

.services-intro-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--color-teal);
}

/* 4-column grid matching the reference */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.service-card {
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: background-color 0.25s ease;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-teal);
  transition: width 0.4s var(--ease-out);
}

.service-card:hover {
  background-color: #f8fffe;
}

.service-card:hover::after {
  width: 100%;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.service-card-desc {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  color: var(--color-muted);
  line-height: 1.65;
  flex: 1;
}


/* ============================================================
   CTA SECTION — Parallax photographic
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  min-height: clamp(380px, 55vw, 650px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-bg {
  position: absolute;
  inset: -15%;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.1s linear;
  will-change: transform;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.65);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--color-white);
  padding-block: 5rem;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin-bottom: 2.5rem;
}

/* CTA button hover lift */
.cta-btn {
  transition: background-color 0.22s ease, color 0.22s ease,
              border-color 0.22s ease, transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out) !important;
}

.cta-btn:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.22) !important;
}

.cta-btn:active {
  transform: translateY(-1px) !important;
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding-block: var(--section-space);
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 7vw, 9rem);
  align-items: start;
}

.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-dark);
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.contact-body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text);
  line-height: 1.5;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  margin-top: 0.1rem;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
}

.contact-link {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--color-primary);
}

.contact-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  color: #25d366;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease;
}

.whatsapp-link:hover {
  opacity: 0.8;
}

.whatsapp-link svg {
  fill: #25d366;
}


/* ============================================================
   FORM
   ============================================================ */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--color-text);
  text-transform: uppercase;
}

.required {
  color: var(--color-primary);
}

.form-input {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.5;
}

.form-input::placeholder {
  color: #aaaaaa;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(200, 82, 42, 0.12);
}

.form-input.has-error {
  border-color: #d93025;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-error {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #d93025;
  font-weight: 500;
  min-height: 1em;
}

/* Checkbox */
.form-group--consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-muted);
  line-height: 1.55;
  flex: 1;
}

.form-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox-custom {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-white);
  margin-top: 2px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.form-checkbox:checked + .form-checkbox-custom {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.form-checkbox:checked + .form-checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-checkbox:focus-visible + .form-checkbox-custom {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.inline-link {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Form success */
.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: #f0faf4;
  border: 1px solid #34a853;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: #1a7d3a;
}

.form-success[aria-hidden="false"] {
  display: flex;
}

.form-success svg {
  flex-shrink: 0;
  stroke: #34a853;
  fill: none;
}


/* ============================================================
   FOOTER — editorial, email as hero element
   ============================================================ */
.site-footer {
  background-color: var(--color-dark);
  color: rgba(255,255,255,0.65);
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: 0;
}

/* Hero email */
.footer-email-row {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-email-hero {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 6.5rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.025em;
  line-height: 1;
  text-decoration: none;
  transition: color 0.22s ease;
  word-break: break-all;
}

.footer-email-hero:hover {
  color: var(--color-primary);
}

/* Socials row */
.footer-mid-row {
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0;
}

.footer-socials-text {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}

.footer-social-link svg {
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease;
  stroke: currentColor;
  fill: none;
}

.footer-social-link:hover {
  color: var(--color-white);
}

.footer-social-link:hover svg {
  opacity: 1;
  transform: translate(1px, -1px);
}

/* Bottom row */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding-block: 1.75rem;
  flex-wrap: wrap;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: rgba(255,255,255,0.75);
}

/* Newsletter button */
.footer-newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  transition: color 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-newsletter-btn svg {
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.footer-newsletter-btn:hover {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
}

.footer-newsletter-btn:hover svg {
  transform: translateX(3px);
}


/* ============================================================
   NEWSLETTER MODAL
   ============================================================ */
.nl-modal {
  position: fixed;
  inset: 0;
  z-index: 1010;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s ease;
}

.nl-modal.is-open {
  pointer-events: all;
  opacity: 1;
}

.nl-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.82);
  cursor: pointer;
}

.nl-modal-panel {
  position: relative;
  z-index: 10;
  background: var(--color-white);
  width: min(680px, 92vw);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 4px;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.38s var(--ease-out);
}

.nl-modal.is-open .nl-modal-panel {
  transform: translateY(0) scale(1);
}

.nl-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  background: var(--color-light);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nl-modal-close:hover {
  background: var(--color-border);
  color: var(--color-dark);
}

.nl-modal-label {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.9rem;
}

.nl-modal-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.025em;
  line-height: 1.07;
  margin-bottom: 0.9rem;
}

.nl-modal-sub {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

/* Email input + submit inline */
.nl-input-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.nl-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-text);
}

.nl-field-wrap {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-btn);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nl-field-wrap:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(200,82,42,0.1);
}

.nl-input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  border: none;
  outline: none;
  padding: 0.9rem 1.1rem;
  min-width: 0;
}

.nl-input::placeholder {
  color: #bbb;
}

.nl-submit {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-coral);
  border: none;
  padding: 0.9rem 1.6rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  letter-spacing: 0.02em;
}

.nl-submit:hover {
  background: var(--color-coral-dk);
}

.nl-submit .nl-submit-loading {
  display: none;
}

.nl-submit.is-loading .nl-submit-label {
  display: none;
}

.nl-submit.is-loading .nl-submit-loading {
  display: inline;
}

.nl-error {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #d93025;
  font-weight: 500;
  min-height: 1em;
}

.nl-field-wrap.has-error {
  border-color: #d93025;
}

.nl-consent {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.nl-inline-link {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Newsletter success state */
.nl-success {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 1rem;
}

.nl-success[aria-hidden="false"] {
  display: flex;
}

.nl-success svg {
  stroke: var(--color-primary);
  fill: none;
}

.nl-success p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}


/* ============================================================
   FOOTER RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .footer-email-hero {
    font-size: clamp(1.6rem, 7vw, 3rem);
    word-break: break-word;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding-bottom: 2rem;
  }

  .footer-newsletter-btn {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .nl-field-wrap {
    flex-direction: column;
    border-radius: var(--radius-btn);
  }

  .nl-submit {
    border-radius: 0 0 var(--radius-btn) var(--radius-btn);
    padding: 0.85rem;
    text-align: center;
  }

  .footer-legal {
    gap: 0.75rem;
  }
}


/* ============================================================
   COOKIE NOTICE
   ============================================================ */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--color-dark);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
  flex-wrap: wrap;
}

.cookie-notice.is-hidden {
  transform: translateY(110%);
  pointer-events: none;
}

.cookie-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.55;
  flex: 1;
  min-width: 200px;
}

.cookie-link {
  color: var(--color-primary);
  text-decoration: underline;
}

.btn-cookie {
  flex-shrink: 0;
  padding: 0.6rem 1.5rem;
  min-height: 40px;
  font-size: 0.82rem;
}


/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* Hide pill CTA on tablet/mobile — menu has it */
  .header-cta-pill {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-item:nth-child(3) {
    border-right: none;
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid #c5e9e6;
  }

  .stat-item:nth-child(5) {
    border-top: 1px solid #c5e9e6;
  }

  .stat-item:nth-child(6) {
    border-top: 1px solid #c5e9e6;
    border-right: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 80px;
  }

  /* Shrink logo on mobile so it doesn't dominate */
  .header-logo img {
    height: 56px;
  }
}


/* ============================================================
   RESPONSIVE — TABLET PORTRAIT (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Hero */
  .hero-slider-controls {
    right: 1.25rem;
    bottom: 1.25rem;
    left: auto;
    transform: none;
  }

  .hero-slider-arrow {
    width: 2.4rem;
    height: 2.4rem;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .hero-heading br {
    display: none;
  }

  .watch-reel {
    align-self: flex-start;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-right {
    padding-top: 0;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid #c5e9e6;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid #c5e9e6;
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  /* Services card grid */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}


/* ============================================================
   RESPONSIVE — MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --header-height: 70px;
  }

  .header-logo img {
    height: 46px;
  }

  /* Hero */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Form */
  .form-row--two {
    grid-template-columns: 1fr;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Cookie */
  .cookie-notice {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤375px)
   ============================================================ */
@media (max-width: 375px) {
  .about-statement {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}


/* ============================================================
   INTEGRATED HOMEPAGE STRUCTURES — Cocoon branding retained
   ============================================================ */

/* Requested boxed content width */
.container {
  width: 90%;
  max-width: none;
  padding-inline: 0;
}

/* Priority USP section */
.usp-priority {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space-sm);
  background: var(--color-white);
}

.usp-priority::after {
  content: '';
  position: absolute;
  top: -16rem;
  right: -14rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(125,205,194,0.25);
  border-radius: 50%;
  pointer-events: none;
}

.usp-priority-head,
.featured-structures-head,
.campaign-film-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.usp-priority-title {
  max-width: 920px;
}

.usp-priority-copy,
.featured-structures-copy,
.campaign-film-copy {
  color: var(--color-muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}

.usp-priority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-dark);
  border: 1px solid var(--color-dark);
}

.usp-priority-card {
  position: relative;
  min-height: clamp(360px, 36vw, 520px);
  padding: clamp(1.8rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
}

.usp-priority-card::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: -5rem;
  bottom: -5rem;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  transition: transform 0.45s var(--ease-out);
}

.usp-priority-card:hover::after {
  transform: scale(1.2);
}

.usp-priority-card--teal {
  background: var(--color-teal);
  color: var(--color-dark);
}

.usp-priority-card--coral {
  background: var(--color-coral);
  color: var(--color-white);
}

.usp-priority-card--sage {
  background: var(--color-sage);
  color: var(--color-dark);
}

.usp-priority-index {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.usp-priority-card h3 {
  max-width: 430px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.9vw, 4.25rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.usp-priority-card p {
  max-width: 390px;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.82;
}

/* Gallery */
.gallery {
  padding-block: var(--section-space);
  background: var(--color-white);
}

.gallery-head {
  max-width: 1000px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: #0a0a0a;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 0.6s var(--ease-out), filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.02);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  appearance: none;
}

.gallery-trigger:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1020;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s ease;
}

.gallery-lightbox.is-open {
  pointer-events: all;
  opacity: 1;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.92);
  cursor: pointer;
}

.gallery-lightbox-stage {
  position: relative;
  z-index: 5;
  width: min(1100px, 88vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.97);
  transition: transform 0.38s var(--ease-out);
}

.gallery-lightbox.is-open .gallery-lightbox-stage {
  transform: scale(1);
}

.gallery-lightbox-stage img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.gallery-lightbox-counter {
  margin-top: 0.9rem;
  font-family: var(--font-body);
  font-size: var(--text-small);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}

.gallery-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.gallery-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gallery-lightbox-prev {
  left: clamp(0.75rem, 3vw, 2.5rem);
}

.gallery-lightbox-next {
  right: clamp(0.75rem, 3vw, 2.5rem);
}

@media (max-width: 640px) {
  .gallery-lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .gallery-lightbox-close {
    top: 1rem;
    right: 1rem;
  }
}

/* Featured billboard structures */
.featured-structures {
  padding-block: var(--section-space);
  background: var(--color-dark);
  color: var(--color-white);
}

.featured-structures .section-heading {
  color: var(--color-white);
}

.featured-structures .section-label {
  color: var(--color-teal);
}

.featured-structures-copy {
  color: rgba(255,255,255,0.68);
}

.featured-structures-carousel {
  position: relative;
}

.featured-structures-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.featured-structures-viewport::-webkit-scrollbar {
  display: none;
}

.featured-structures-viewport:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 0.45rem;
}

.featured-structures-track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.structure-card {
  position: relative;
  flex: 0 0 calc((100% - 1rem) / 2);
  /* 40% shorter than the original 660–820px slider height */
  min-height: clamp(396px, 32.4vw, 492px);
  overflow: hidden;
  background: #0a0a0a;
  isolation: isolate;
  scroll-snap-align: start;
}

.structure-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.03);
  transition: transform 0.7s var(--ease-out), filter 0.45s ease;
}

.structure-card:hover img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.02);
}

.structure-card-overlay {
  display: none;
}

.structure-card-content {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  overflow: visible;
  background: rgba(10,10,10,0.84);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(7px);
}

.structure-card-index {
  display: inline-grid;
  place-items: center;
  align-self: flex-start;
  flex: 0 0 2.8rem;
  width: 2.8rem;
  min-width: 2.8rem;
  height: 2.8rem;
  min-height: 2.8rem;
  aspect-ratio: 1 / 1;
  margin-bottom: 0.8rem;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.structure-card-location {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color-teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.structure-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.structure-card p {
  max-width: none;
  margin-top: 0.85rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.structure-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.9rem;
  color: var(--color-teal);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.structure-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: var(--color-dark);
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.2s var(--ease-out), background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.structure-carousel-arrow:hover,
.structure-carousel-arrow:focus-visible {
  background: var(--color-teal);
  color: var(--color-dark);
  transform: translateY(-50%) scale(1.04);
}

.structure-carousel-arrow:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.structure-carousel-arrow:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.structure-carousel-arrow--prev {
  left: clamp(0.75rem, 2vw, 1.5rem);
}

.structure-carousel-arrow--next {
  right: clamp(0.75rem, 2vw, 1.5rem);
}

@media (prefers-reduced-motion: reduce) {
  .featured-structures-viewport {
    scroll-behavior: auto;
  }
}

.structure-card-link span {
  transition: transform 0.25s ease;
}

.structure-card-link:hover span {
  transform: translateX(4px);
}

/* Full-width campaign film — complete uncropped frame */
.campaign-film {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.campaign-film-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  line-height: 0;
}

.campaign-film-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  filter: none;
  transform: none;
  backface-visibility: visible;
}

.campaign-film-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.campaign-film-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.campaign-film.is-playing .campaign-film-play {
  opacity: 0;
  pointer-events: none;
}

.campaign-film-play-icon {
  display: grid;
  width: clamp(5rem, 8vw, 7rem);
  height: clamp(5rem, 8vw, 7rem);
  place-items: center;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 50%;
  background: rgba(0,0,0,0.28);
  color: var(--color-white);
  backdrop-filter: blur(5px);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.campaign-film-play:hover .campaign-film-play-icon {
  border-color: var(--color-coral);
  background: var(--color-coral);
}

.campaign-film-play-icon svg {
  margin-left: 0.3rem;
}

/* Trusted brand marquees/* Trusted brand marquees — every uploaded logo appears once */
.trusted-brands {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 8vw, 8rem);
  background: var(--color-dark);
  color: var(--color-white);
}

.trusted-brands::before {
  content: '';
  position: absolute;
  top: 3rem;
  right: 7%;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(125,205,194,0.62);
  border-radius: 50%;
}

.trusted-brands::after {
  content: '';
  position: absolute;
  top: 4.35rem;
  right: calc(7% + 1.35rem);
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--color-coral);
}

.trusted-brands-head {
  margin-bottom: clamp(2.5rem, 5vw, 4.2rem);
}

.trusted-brands-head h2 {
  max-width: 980px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.4vw, 6.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.trusted-brands-head p {
  margin-top: 1.3rem;
  color: rgba(255,255,255,0.68);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.trusted-marquees {
  display: grid;
  gap: 0.9rem;
}

.trusted-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.trusted-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: cocoon-logo-drift-left 18s ease-in-out infinite alternate;
}

.trusted-marquee--reverse .trusted-track {
  animation-name: cocoon-logo-drift-right;
  animation-duration: 20s;
}

.trusted-marquee--slow .trusted-track {
  animation-duration: 23s;
}

.trusted-marquee:hover .trusted-track {
  animation-play-state: paused;
}

.trusted-set {
  display: flex;
  flex-shrink: 0;
  gap: 0.9rem;
  padding-inline: 0.9rem;
}

.brand-logo-card {
  width: 238px;
  height: 116px;
  flex: 0 0 238px;
  display: grid;
  place-items: center;
  padding: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(125,205,194,0.26);
  border-radius: 0.35rem;
  background: #f7f7f4;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-logo-card:hover {
  border-color: var(--color-teal);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.brand-logo-card img {
  display: block;
  width: auto;
  height: auto;
  max-width: 92%;
  max-height: 72px;
  object-fit: contain;
}

.brand-logo-fallback {
  max-width: 92%;
  color: #151515;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

@keyframes cocoon-logo-drift-left {
  from { transform: translateX(0); }
  to { transform: translateX(-24%); }
}

@keyframes cocoon-logo-drift-right {
  from { transform: translateX(-24%); }
  to { transform: translateX(0); }
}

@media (max-width: 1024px) {
  .usp-priority-head,
  .featured-structures-head,
  .campaign-film-head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .usp-priority-grid {
    grid-template-columns: 1fr;
  }

  .usp-priority-card {
    min-height: 360px;
  }

  .structure-card {
    flex-basis: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }

  .structure-card {
    flex-basis: 88%;
    /* 40% shorter than the original 780–1040px mobile slider height */
    min-height: clamp(468px, 99vw, 624px);
  }

  .structure-card-content {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    padding: 1rem;
  }

  .structure-card h3 {
    font-size: clamp(1.15rem, 5.3vw, 1.55rem);
  }

  .structure-card p {
    margin-top: 0.6rem;
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .structure-card-link {
    padding-top: 0.6rem;
    font-size: 0.7rem;
  }

  .structure-carousel-arrow {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.05rem;
  }


  .trusted-brands::before,
  .trusted-brands::after {
    display: none;
  }

  .brand-logo-card {
    width: 190px;
    height: 92px;
    flex-basis: 190px;
    padding: 0.85rem;
  }

  .brand-logo-card img {
    max-height: 58px;
  }
}

@media (max-width: 480px) {
  .usp-priority-card {
    min-height: 330px;
  }

}


.watch-reel {
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero-content {
    padding-bottom: 7.2rem;
  }

  .hero-text-col {
    max-width: 100%;
    margin-top: 7rem;
  }

  .hero-heading {
    font-size: clamp(2.35rem, 10vw, 4rem);
    line-height: 1.02;
  }

  .header-logo img {
    height: 54px;
  }
}

@media (max-width: 480px) {
  .header-logo img {
    height: 46px;
  }

  .hero-eyebrow {
    max-width: calc(100vw - 8.5rem);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    white-space: normal;
  }
}

/* ============================================================
   FINAL HERO & VIDEO LAYOUT OVERRIDES
   - Hero and campaign video remain full-bleed.
   - Desktop hero retains full-screen height.
   - Mobile hero uses 60% of viewport height.
   ============================================================ */

.hero,
.campaign-film {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: none;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero-bg,
.hero-slider,
.campaign-film-media {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.hero {
  height: 100vh;
  height: 100svh;
  min-height: 620px;
}

.campaign-film-media {
  width: 100vw;
  aspect-ratio: 16 / 9;
}

.campaign-film-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
    height: 60svh;
    min-height: 420px;
  }

  .campaign-film,
  .campaign-film-media {
    width: 100vw;
  }

  .campaign-film-media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh;
    height: 60svh;
    min-height: 380px;
  }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON — FIXED BOTTOM-RIGHT
   ============================================================ */
.floating-whatsapp {
  position: fixed !important;
  inset: auto 18px 18px auto !important;
  left: auto !important;
  right: 18px !important;
  top: auto !important;
  bottom: 18px !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  transform: none;
  overflow: visible;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.floating-whatsapp:hover {
  background: #1fbd5b;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.floating-whatsapp svg {
  display: block;
  width: 29px;
  height: 29px;
  fill: currentColor;
  flex: 0 0 auto;
}

@media (max-width: 480px) {
  .floating-whatsapp {
    right: 14px !important;
    bottom: 14px !important;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp svg {
    width: 27px;
    height: 27px;
  }
}

/* Allow the longer USP headings to wrap cleanly */
.structure-card h3 {
  text-wrap: balance;
}

/* ============================================================
   WHATSAPP PULSE ANIMATION
   ============================================================ */
.floating-whatsapp {
  isolation: isolate;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 3px solid rgba(37, 211, 102, 0.7);
  border-radius: inherit;
  pointer-events: none;
  animation: whatsappPulseRing 1.7s ease-out infinite;
}

@keyframes whatsappPulseRing {
  0% {
    opacity: 0.85;
    transform: scale(0.95);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-whatsapp::before {
    animation: none;
  }
}


/* ============================================================
   MOBILE FEATURED STRUCTURES — COMPACT CARD HEIGHT
   Keeps the featured billboard slider substantially shorter on phones.
   The !important rule also prevents JavaScript inline min-height values
   from stretching the cards again.
   ============================================================ */
@media (max-width: 768px) {
  .structure-card {
    height: clamp(430px, 120vw, 510px);
    min-height: clamp(430px, 120vw, 510px) !important;
    max-height: 510px;
  }

  .structure-card-content {
    right: 0.85rem;
    bottom: 0.85rem;
    left: 0.85rem;
    padding: 0.9rem;
  }

  .structure-card-index {
    flex-basis: 2.45rem;
    width: 2.45rem;
    min-width: 2.45rem;
    height: 2.45rem;
    min-height: 2.45rem;
    margin-bottom: 0.65rem;
  }

  .structure-card-location {
    margin-bottom: 0.3rem;
    font-size: 0.68rem;
  }

  .structure-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    line-clamp: 8;
  }
}

@media (max-width: 390px) {
  .structure-card {
    height: clamp(420px, 126vw, 490px);
    min-height: clamp(420px, 126vw, 490px) !important;
    max-height: 490px;
  }

  .structure-card p {
    -webkit-line-clamp: 7;
    line-clamp: 7;
  }
}
