/* ============================================================
   CIRCLE SQUARE — Master Stylesheet
   Premium All Abilities Movement Hub, Ballarat VIC
   ============================================================ */

/* ─── IMPORTS ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── CUSTOM PROPERTIES ───────────────────────────────────── */
:root {
  /* Brand Colours */
  --black:        #0a0a0a;
  --jet:          #262626;
  --charcoal:     #3a3a3a;
  --mid:          #6b6b6b;
  --light-grey:   #b0b0b0;
  --smoke:        #f7f7f7;
  --off-white:    #f2f2f0;
  --white:        #ffffff;
  --orange:       #cc5500;
  --orange-dark:  #a84400;

  /* Semantic Tokens */
  --color-bg:           var(--white);
  --color-bg-alt:       var(--smoke);
  --color-bg-dark:      var(--black);
  --color-text:         var(--black);
  --color-text-muted:   var(--mid);
  --color-border:       rgba(10,10,10,0.10);
  --color-border-dark:  rgba(255,255,255,0.12);

  /* Type Scale */
  --font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --text-xs:    0.75rem;   /* 12px */
  --text-sm:    0.875rem;  /* 14px */
  --text-base:  1rem;      /* 16px */
  --text-lg:    1.125rem;  /* 18px */
  --text-xl:    1.25rem;   /* 20px */
  --text-2xl:   1.5rem;    /* 24px */
  --text-3xl:   2rem;      /* 32px */
  --text-4xl:   2.75rem;   /* 44px */
  --text-5xl:   3.75rem;   /* 60px */
  --text-6xl:   5rem;      /* 80px */
  --text-7xl:   7rem;      /* 112px */
  --text-8xl:   10vw;
  --text-hero:  clamp(3.5rem, 10vw, 10rem);
  --text-display: clamp(2.5rem, 6vw, 7rem);

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  10rem;

  /* Layout */
  --container:      1440px;
  --container-text: 780px;
  --nav-height:     72px;
  --gutter:         clamp(1.25rem, 4vw, 3rem);

  /* Motion */
  --ease-expo-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart-out:  cubic-bezier(0.25, 1, 0.5, 1);
  --ease-expo-in-out: cubic-bezier(0.87, 0, 0.13, 1);
  --dur-fast:   300ms;
  --dur-med:    500ms;
  --dur-slow:   800ms;
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* Selection */
::selection { background: var(--black); color: var(--white); }

/* ─── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--smoke); }
::-webkit-scrollbar-thumb { background: var(--jet); border-radius: 2px; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
}
.t-hero {
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.t-display {
  font-size: var(--text-display);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
}
.t-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.t-subhead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-text-muted);
}
.t-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}
.t-body {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--jet);
}
.t-large {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* ─── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--text {
  max-width: var(--container-text);
}
.section {
  padding: clamp(3.5rem, 7vw, 7rem) 0;
}
.section--sm {
  padding: clamp(3rem, 6vw, 6rem) 0;
}
.section--lg {
  padding: clamp(7rem, 14vw, 14rem) 0;
}

/* Dark sections */
.section--dark {
  background: var(--black);
  color: var(--white);
}
/* Concrete texture on dark+texture sections */
.section--dark.texture {
  background-image: url('brand/concrete-texture.jpg');
  background-size: cover;
  background-position: center;
}
.section--dark.texture::before {
  background-image: none;
  background: rgba(10,10,10,0.88);
  opacity: 1;
}
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4, .section--dark h5, .section--dark h6 {
  color: var(--white);
}
.section--dark .t-subhead,
.section--dark .t-body {
  color: rgba(255,255,255,0.65);
}
.section--dark .t-label {
  color: rgba(255,255,255,0.4);
}
.section--alt {
  background: var(--smoke);
}
.section--jet {
  background: var(--jet);
  color: var(--white);
}
.section--concrete {
  background-image: url('brand/concrete-texture.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section--concrete-dark {
  background-image: url('brand/concrete-texture.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.section--concrete-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.82);
  pointer-events: none;
}
.section--concrete-dark > * { position: relative; z-index: 1; }
.section--concrete-dark, .section--concrete-dark h1,
.section--concrete-dark h2, .section--concrete-dark h3 { color: var(--white); }

/* ─── NOISE TEXTURE ───────────────────────────────────────── */
.texture {
  position: relative;
}
.texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}
.texture > * { position: relative; z-index: 2; }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--dur-fast) var(--ease-quart-out),
              border-color var(--dur-fast) var(--ease-quart-out),
              box-shadow var(--dur-fast) var(--ease-quart-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--color-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav--dark {
  background: var(--black);
  border-bottom-color: var(--color-border-dark);
}
.nav--dark .nav__logo { color: var(--white); }
.nav--dark .nav__links a { color: rgba(255,255,255,0.75); }
.nav--dark .nav__links a:hover { color: var(--white); }
.nav--dark .nav__hamburger span { background: var(--white); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  transition: opacity var(--dur-fast);
}
.nav__logo:hover { opacity: 0.7; }

/* Real logo images — swap between light/dark versions */
.nav__logo-img {
  height: 26px;
  width: auto;
  display: block;
  transition: opacity var(--dur-fast);
}
.nav__logo-img--light { display: block; }  /* off-black — for white nav */
.nav__logo-img--dark  { display: none; }   /* white — for dark nav */

/* On dark hero nav show white logo */
.nav--dark .nav__logo-img--light { display: none; }
.nav--dark .nav__logo-img--dark  { display: block; }

/* Legacy icon/text styles (hidden once images load) */
.nav__logo-icon { display: none; }
.nav__logo-text { display: none; }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--jet);
  transition: color var(--dur-fast);
  white-space: nowrap;
}
.nav__links a:hover { color: var(--black); }
.nav__links a.active { color: var(--black); font-weight: 600; }
.nav--dark .nav__links a.active { color: var(--white); font-weight: 600; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.125rem;
  background: var(--black);
  color: var(--white) !important;
  font-size: var(--text-sm) !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: background var(--dur-fast), transform var(--dur-fast) !important;
}
.nav__cta:hover {
  background: var(--jet) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}
.nav--dark .nav__cta {
  background: var(--white) !important;
  color: var(--black) !important;
}
.nav--dark .nav__cta:hover { background: var(--smoke) !important; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 110;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
  transition: transform var(--dur-med) var(--ease-expo-out),
              opacity var(--dur-fast) var(--ease-quart-out),
              width var(--dur-fast) var(--ease-quart-out);
  transform-origin: center;
}
.nav__hamburger span:nth-child(1) { width: 100%; }
.nav__hamburger span:nth-child(2) { width: 70%; }
.nav__hamburger span:nth-child(3) { width: 85%; }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 90;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--gutter);
  transform: translateY(-100%);
  transition: transform var(--dur-slow) var(--ease-expo-in-out);
  pointer-events: none;
}
.nav__mobile.open {
  display: flex;
  transform: translateY(0);
  pointer-events: all;
}
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav__mobile-links a {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.2);
  line-height: 1.15;
  transition: color var(--dur-fast) var(--ease-quart-out),
              transform var(--dur-fast) var(--ease-quart-out);
  display: block;
}
.nav__mobile-links a:hover { color: var(--white); transform: translateX(8px); }
.nav__mobile-links a.active { color: var(--white); }
.nav__mobile-cta {
  margin-top: var(--space-xl);
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--black);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 2px;
  width: fit-content;
}
.nav__mobile-contact {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.nav__mobile-contact span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}
.nav__mobile-contact a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  transition: color var(--dur-fast);
}
.nav__mobile-contact a:hover { color: rgba(255,255,255,0.8); }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9375rem 2rem;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-quart-out),
              color var(--dur-fast) var(--ease-quart-out),
              border-color var(--dur-fast) var(--ease-quart-out),
              transform var(--dur-fast) var(--ease-quart-out),
              box-shadow var(--dur-fast) var(--ease-quart-out);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--primary:hover {
  background: var(--jet);
  border-color: var(--jet);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--smoke);
  border-color: var(--smoke);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--lg {
  font-size: var(--text-base);
  padding: 1.125rem 2.5rem;
  letter-spacing: 0.05em;
}
.btn__arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-fast) var(--ease-quart-out);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ─── IMAGE PLACEHOLDERS ──────────────────────────────────── */
.img-placeholder {
  background: var(--smoke);
  border: 1px dashed var(--light-grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 320px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0,0,0,0.02) 8px,
    rgba(0,0,0,0.02) 16px
  );
}
.img-placeholder__label {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.img-placeholder__icon {
  width: 40px;
  height: 40px;
  opacity: 0.25;
  position: relative;
  z-index: 1;
}
.img-placeholder--tall { min-height: 480px; }
.img-placeholder--short { min-height: 240px; }
.img-placeholder--sq { aspect-ratio: 1; min-height: auto; }
.img-placeholder--hero { min-height: 100%; height: 100%; }

/* ─── DIVIDER ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--color-border);
}
.divider--dark {
  background: var(--color-border-dark);
}
.section-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-xl);
}
.section-rule__line {
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.section-rule--dark .section-rule__line {
  background: var(--color-border-dark);
}

/* ─── SCROLL ANIMATIONS ───────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-slow) var(--ease-expo-out),
              transform var(--dur-slow) var(--ease-expo-out);
}
[data-reveal="left"] {
  transform: translateX(-32px);
}
[data-reveal="right"] {
  transform: translateX(32px);
}
[data-reveal="scale"] {
  transform: scale(0.96);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="1"] { transition-delay: 100ms; }
[data-reveal][data-delay="2"] { transition-delay: 200ms; }
[data-reveal][data-delay="3"] { transition-delay: 300ms; }
[data-reveal][data-delay="4"] { transition-delay: 400ms; }
[data-reveal][data-delay="5"] { transition-delay: 500ms; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--black);
  color: var(--white);
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) 0 clamp(3rem, 8vw, 7rem);
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.5;
}
.hero__title {
  color: var(--white);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 18ch;
}
.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 50ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero__scroll-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  animation: scrollLine 2s var(--ease-expo-out) infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ─── INTRO SECTION ───────────────────────────────────────── */
.intro {
  padding: clamp(3.5rem, 7vw, 7rem) 0;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}
.intro__label-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-lg);
}
.intro__number {
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--smoke);
  font-variant-numeric: tabular-nums;
  user-select: none;
}
.intro__text {
  max-width: 56ch;
}

/* ─── PHOTO STRIP (auto-scroll) ───────────────────────────── */
.photo-strip {
  overflow: hidden;
  position: relative;
  /* edge fade */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.photo-strip__track {
  display: flex;
  gap: 4px;
  width: max-content;
  animation: stripScroll 120s linear infinite;
}
.photo-strip__item {
  height: 380px;
  width: auto;
  flex-shrink: 0;
  overflow: hidden;
}
.photo-strip__item img {
  height: 100%;
  width: auto;
  min-width: 280px;
  max-width: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
@keyframes stripScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── BUILD VIDEO ─────────────────────────────────────────── */
.build-video {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  background: #000;
  position: relative;
  overflow: hidden;
}
.build-video iframe,
.build-video video {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  object-fit: cover;
}
.build-video__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.build-video__icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}
.build-video__label {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── SPACE PHOTO CAROUSEL ────────────────────────────────── */
.space-photo-carousel__track {
  position: relative;
  overflow: hidden;
}
.space-photo-carousel__slide {
  display: none;
}
.space-photo-carousel__slide.active {
  display: block;
}
.space-photo-carousel__slide img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.space-photo-carousel__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* ─── SPACE CAROUSEL ──────────────────────────────────────── */
.space-carousel {
  position: relative;
}
.space-carousel__track {
  position: relative;
}
.space-carousel__slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.space-carousel__slide.active {
  display: grid;
}
.space-carousel__img {
  overflow: hidden;
}
.space-carousel__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.space-carousel__slide:hover .space-carousel__img img {
  transform: scale(1.03);
}
.space-carousel__info {
  background: #111;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.space-carousel__num {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.14em;
  font-weight: 600;
}
.space-carousel__title {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
  line-height: 1.2;
}
.space-carousel__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  max-width: 36ch;
}
.space-carousel__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.space-carousel__btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: border-color 0.2s, color 0.2s;
}
.space-carousel__btn:hover {
  border-color: rgba(255,255,255,0.6);
  color: rgba(255,255,255,0.9);
}
.space-carousel__count {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ─── BUILD CAROUSEL ──────────────────────────────────────── */
.build-carousel {
  position: relative;
}
.build-carousel__track {
  position: relative;
  overflow: hidden;
}
.build-carousel__slide {
  display: none;
}
.build-carousel__slide.active {
  display: block;
}
.build-carousel__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.build-carousel__btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--color-border);
  background: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.build-carousel__btn:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}
.build-carousel__count {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ─── SERVICES CARDS ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1px;
  border: 1px solid var(--color-border);
  background: var(--color-border);
}
.service-card {
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-quart-out);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-expo-out);
}
.service-card:hover { background: var(--smoke); }
.service-card:hover::after { transform: scaleX(1); }
.service-card__number {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--mid);
}
.service-card__title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.service-card__excerpt {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--jet);
  flex: 1;
}
.service-card__expand {
  display: none;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--mid);
}
.service-card__expand.open { display: block; }
.service-card__toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: fit-content;
  transition: gap var(--dur-fast);
}
.service-card__toggle:hover { gap: 0.75rem; }
.service-card__toggle-icon {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-fast) var(--ease-quart-out);
}
.service-card__toggle.open .service-card__toggle-icon { transform: rotate(45deg); }

/* ─── WHO WE SUPPORT ──────────────────────────────────────── */
.who-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

/* ─── STATEMENT SECTION ───────────────────────────────────── */
.statement {
  padding: clamp(5rem, 10vw, 12rem) 0;
}
.statement__quote {
  font-size: clamp(1.375rem, 3vw, 2.25rem);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
  max-width: 70ch;
}
.statement__quote strong {
  color: var(--white);
  font-weight: 700;
}

/* ─── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-band__text {}
.cta-band__title {
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 22ch;
  margin-bottom: 0.75rem;
}
.cta-band__subtitle {
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
  color: rgba(255,255,255,0.5);
  max-width: 44ch;
}
.cta-band__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ─── STATS ROW ───────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border: 1px solid var(--color-border-dark);
}
.stat-item {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-right: 1px solid var(--color-border-dark);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
}
.stat-item__label {
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ─── PAGE HERO (Interior) ────────────────────────────────── */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: calc(var(--nav-height) + clamp(4rem, 8vw, 8rem)) 0 clamp(4rem, 8vw, 8rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border-dark);
}
.page-hero__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.page-hero__label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}
.page-hero__title {
  color: var(--white);
  max-width: 22ch;
  margin-bottom: 1.5rem;
}
.page-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 52ch;
}

/* ─── ABOUT PAGE ──────────────────────────────────────────── */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--color-border);
  background: var(--color-border);
  margin-top: var(--space-xl);
}
.founder-card {
  background: var(--white);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
}
.founder-card__name {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.375rem;
}
.founder-card__role {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.25rem;
}
.founder-card__bio {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--jet);
  flex: 1;
}
.founder-card__bio-more {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--mid);
}
.founder-card__bio-more.open { display: block; }
.founder-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap var(--dur-fast);
}
.founder-card__read-more:hover { gap: 0.5rem; }
.founder-card__read-more svg {
  width: 12px; height: 12px;
  transition: transform var(--dur-fast) var(--ease-quart-out);
}
.founder-card__read-more.open svg { transform: rotate(45deg); }

/* ─── TEAM ROWS ───────────────────────────────────────────── */
.team-rows {
  border-top: 1px solid var(--color-border);
}
.team-row {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid var(--color-border);
  min-height: 400px;
}
.team-row--reverse {
  flex-direction: row-reverse;
}
.team-row__photo {
  width: 45%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 4vw, 4rem);
  background: var(--smoke);
}
.team-row__bio {
  width: 55%;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-row__name {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.team-row__text {
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--jet);
  max-width: 46ch;
}
.team-row__download {
  margin-top: 2rem;
  align-self: flex-start;
}

/* ─── TEAM PHOTO FAN ──────────────────────────────────────── */
.team-photo-fan {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 4;
  position: relative;
}
.team-photo-fan__main,
.team-photo-fan__card {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  overflow: hidden;
}
.team-photo-fan__main {
  z-index: 3;
  transition: transform 400ms var(--ease-expo-out);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.team-photo-fan__card {
  z-index: 2;
  transition: transform 500ms var(--ease-expo-out);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.team-photo-fan__card--1 { transition-delay: 0ms; }
.team-photo-fan__card--2 { transition-delay: 60ms; }
.team-photo-fan__card--3 { transition-delay: 120ms; }
.team-photo-fan__main img,
.team-photo-fan__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Fan out on hover */
.team-photo-fan:hover .team-photo-fan__card--1 {
  transform: rotate(-20deg) translate(-52%, 6%);
}
.team-photo-fan:hover .team-photo-fan__card--2 {
  transform: rotate(18deg) translate(48%, 6%);
}
.team-photo-fan:hover .team-photo-fan__card--3 {
  transform: rotate(-7deg) translate(-14%, 4%);
}
.team-photo-fan:hover .team-photo-fan__main {
  transform: translateY(-6px);
}

.facility-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  border: 1px solid var(--color-border-dark);
  background: var(--color-border-dark);
}
.facility-feature {
  background: var(--jet);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.facility-feature__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.facility-feature__desc {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

/* Expandable sections */
.expand-section {
  border-bottom: 1px solid var(--color-border);
}
.expand-section__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.75rem 0;
  text-align: left;
  gap: 1.5rem;
}
.expand-section__title {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  transition: color var(--dur-fast);
}
.expand-section:hover .expand-section__title { color: var(--jet); }
.expand-section__icon {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--dur-fast), background var(--dur-fast),
              transform var(--dur-med) var(--ease-expo-out);
}
.expand-section.open .expand-section__icon {
  background: var(--black);
  border-color: var(--black);
  transform: rotate(45deg);
}
.expand-section__icon svg path {
  stroke: var(--mid);
  transition: stroke var(--dur-fast);
}
.expand-section.open .expand-section__icon svg path { stroke: var(--white); }
.expand-section__body {
  display: none;
  padding-bottom: 1.75rem;
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--jet);
  max-width: 68ch;
}
.expand-section__body.open { display: block; }

/* ─── SERVICES PAGE ───────────────────────────────────────── */
.service-block {
  border-bottom: 1px solid var(--color-border);
}
.service-block__trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: clamp(2rem, 4vw, 3rem) 0;
  text-align: left;
  gap: 2rem;
  transition: background var(--dur-fast);
}
.service-block__trigger:hover { background: none; }
.service-block__left { flex: 1; }
.service-block__num {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--mid);
  margin-bottom: 0.75rem;
}
.service-block__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0.875rem;
}
.service-block__teaser {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--jet);
  max-width: 60ch;
}
.service-block__icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--dur-fast), background var(--dur-fast),
              transform var(--dur-med) var(--ease-expo-out);
  margin-top: 0.375rem;
}
.service-block.open .service-block__icon {
  background: var(--black);
  border-color: var(--black);
  transform: rotate(45deg);
}
.service-block__icon svg path { stroke: var(--mid); transition: stroke var(--dur-fast); }
.service-block.open .service-block__icon svg path { stroke: var(--white); }
.service-block__body {
  display: none;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 72ch;
}
.service-block__body.open { display: block; }
.service-block__detail {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.75;
  color: var(--jet);
  margin-bottom: 1.25rem;
}
.service-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--color-border);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  border-radius: 2px;
}

/* ─── SERVICE EXPAND PANEL ────────────────────────────────── */
.service-block__expand-inner {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 340px;
  border-top: 1px solid var(--color-border);
}
.service-block__expand-photo {
  overflow: hidden;
  border-right: 1px solid var(--color-border);
}
.service-block__expand-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-block__expand-copy {
  padding: clamp(2rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}
.service-block__expand-copy .service-block__detail {
  margin-bottom: 0;
}
.service-block__expand-copy .service-block__tags {
  margin-top: 0.5rem;
}

/* ─── SERVICE SELECTOR ────────────────────────────────────── */
.svc-selector {
  border-top: 1px solid var(--color-border);
}

/* Tab bar grid */
.svc-selector__tabs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-border);
  gap: 1px;
}
.svc-selector__tab {
  background: var(--white);
  border: none;
  cursor: pointer;
  padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1rem, 1.5vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.svc-selector__tab:hover {
  background: var(--smoke);
}
.svc-selector__tab.active {
  background: var(--black);
}
.svc-selector__tab-num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--mid);
  transition: color var(--dur-fast);
}
.svc-selector__tab.active .svc-selector__tab-num {
  color: rgba(255,255,255,0.4);
}
.svc-selector__tab-name {
  font-size: clamp(0.75rem, 1.1vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--black);
  transition: color var(--dur-fast);
}
.svc-selector__tab.active .svc-selector__tab-name {
  color: var(--white);
}

/* Panels */
.svc-selector__panels {
  position: relative;
}
.svc-panel {
  display: none;
  flex-direction: row;
  min-height: 520px;
}
.svc-panel.active {
  display: flex;
}
.svc-panel.fade-in {
  animation: svcFadeIn 300ms var(--ease-quart-out) forwards;
}
@keyframes svcFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.svc-panel__photo {
  width: 44%;
  flex-shrink: 0;
  overflow: hidden;
}
.svc-panel__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.svc-panel__content {
  width: 56%;
  padding: clamp(2.5rem, 4vw, 4.5rem) clamp(2.5rem, 4.5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--color-border);
}
.svc-panel__num {
  display: block;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(10,10,10,0.06);
  margin-bottom: -0.3em;
  margin-left: -0.04em;
  user-select: none;
}
.svc-panel__title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.svc-panel__body p {
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--jet);
  margin-bottom: 0.875rem;
  max-width: 52ch;
}
.svc-panel__body p:last-child { margin-bottom: 0; }
.svc-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

/* ─── TEAM SELECTOR ──────────────────────────────────────── */
.team-selector {
  border-top: 1px solid var(--color-border);
}

/* Tab bar */
.team-selector__tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-border);
  gap: 1px;
}
.team-selector__tab {
  background: var(--white);
  border: none;
  cursor: pointer;
  padding: clamp(1.25rem, 2vw, 1.75rem) clamp(0.875rem, 1.2vw, 1.25rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  text-align: left;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.team-selector__tab:hover {
  background: var(--smoke);
}
.team-selector__tab.active {
  background: var(--black);
}
.team-selector__tab-num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--mid);
  transition: color var(--dur-fast);
}
.team-selector__tab.active .team-selector__tab-num {
  color: rgba(255,255,255,0.4);
}
.team-selector__tab-name {
  font-size: clamp(0.7rem, 1vw, 0.875rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--black);
  transition: color var(--dur-fast);
}
.team-selector__tab.active .team-selector__tab-name {
  color: var(--white);
}
.team-selector__tab-role {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  line-height: 1.3;
  transition: color var(--dur-fast);
}
.team-selector__tab.active .team-selector__tab-role {
  color: rgba(255,255,255,0.35);
}

/* Panels */
.team-selector__panels {
  position: relative;
}
.team-panel {
  display: none;
  flex-direction: row;
  min-height: 540px;
}
.team-panel.active {
  display: flex;
}
.team-panel.fade-in {
  animation: svcFadeIn 300ms var(--ease-quart-out) forwards;
}

/* Photo side — smoke background, fan card centred */
.team-panel__photo {
  width: 44%;
  flex-shrink: 0;
  background: var(--smoke);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 4vw, 4rem);
}

/* Bio side */
.team-panel__content {
  width: 56%;
  padding: clamp(2.5rem, 4vw, 4.5rem) clamp(2.5rem, 4.5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--color-border);
}
.team-panel__num {
  display: block;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(10,10,10,0.06);
  margin-bottom: -0.3em;
  margin-left: -0.04em;
  user-select: none;
}
.team-panel__name {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 1.5rem;
  margin-top: 0.25rem;
}
.team-panel__body p {
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--jet);
  margin-bottom: 0.875rem;
  max-width: 54ch;
}
.team-panel__body p:last-child { margin-bottom: 0; }
.team-panel__download {
  margin-top: 2rem;
  align-self: flex-start;
}

/* ─── SERVICES LIST (HOME PAGE) ─────────────────────────── */
.svc-list {
  border-top: 1px solid var(--color-border);
}
.svc-list__item {
  display: grid;
  grid-template-columns: 3rem 1fr 1.25rem;
  align-items: center;
  gap: 2rem;
  padding: 1.375rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--black);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.svc-list__item:hover .svc-list__arrow {
  transform: translateX(5px);
}
.svc-list__num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--mid);
  align-self: start;
  padding-top: 0.15em;
}
.svc-list__text { min-width: 0; }
.svc-list__name {
  display: block;
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--black);
}
.svc-list__desc {
  display: block;
  font-size: var(--text-sm);
  color: var(--mid);
  margin-top: 0.3rem;
  line-height: 1.55;
}
.svc-list__arrow {
  color: var(--mid);
  transition: transform 300ms var(--ease-expo-out);
  flex-shrink: 0;
}

/* ─── REVIEWS CAROUSEL ────────────────────────────────────── */
.reviews-section {
  background: var(--smoke);
  border-top: 1px solid var(--color-border);
}
.reviews-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}
.reviews-top__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.reviews-top__stars {
  font-size: 1.25rem;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  line-height: 1;
}
.reviews-top__score {
  display: block;
  font-size: var(--text-xs);
  color: var(--mid);
  margin-top: 0.375rem;
  font-weight: 500;
}
.reviews-top__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.reviews-top__btn {
  background: none;
  border: 1px solid var(--color-border);
  width: 42px;
  height: 42px;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}
.reviews-top__btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.reviews-top__count {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--mid);
  min-width: 3rem;
  text-align: center;
}

/* Loading state */
.reviews-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 3rem 0;
}
.reviews-loading__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border);
  animation: reviewDotPulse 1.2s ease-in-out infinite;
}
.reviews-loading__dot:nth-child(2) { animation-delay: 0.2s; }
.reviews-loading__dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes reviewDotPulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.9); }
  40% { opacity: 1; transform: scale(1.1); }
}

/* Slides */
.review-slide { display: none; }
.review-slide.active { display: block; }
.review-slide.fade-in { animation: svcFadeIn 300ms var(--ease-quart-out) forwards; }

.review-slide__quote {
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: var(--black);
  max-width: 76ch;
}
.review-slide__quote::before {
  content: '\201C';
  color: var(--orange);
  margin-right: 0.05em;
}
.review-slide__quote::after {
  content: '\201D';
  color: var(--orange);
  margin-left: 0.05em;
}
.review-slide__meta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.review-slide__stars {
  font-size: 0.875rem;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.review-slide__name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--black);
  margin: 0;
}
.review-slide__role {
  font-size: var(--text-xs);
  color: var(--mid);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.review-slide__badge {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ─── ABOUT EDITORIAL STATEMENT ──────────────────────────── */
.about-statement {
  background: var(--black);
  padding: clamp(5rem, 10vw, 10rem) 0;
  text-align: center;
}
.about-statement__text {
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--white);
}

/* ─── SERVICES EDITORIAL ROWS ────────────────────────────── */
.svc-rows {
  border-top: 1px solid var(--color-border);
}
.svc-rows--lower {
  border-top: none;
}
.svc-row {
  display: flex;
  flex-direction: row;
  min-height: 540px;
  border-bottom: 1px solid var(--color-border);
}
.svc-row--flip {
  flex-direction: row-reverse;
}
.svc-row__photo {
  width: 44%;
  flex-shrink: 0;
  overflow: hidden;
}
.svc-row__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 800ms var(--ease-expo-out);
}
.svc-row:hover .svc-row__photo img {
  transform: scale(1.03);
}
.svc-row__content {
  width: 56%;
  padding: clamp(3rem, 5vw, 5rem) clamp(2.5rem, 4.5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--color-border);
}
.svc-row--flip .svc-row__content {
  border-left: none;
  border-right: 1px solid var(--color-border);
}
.svc-row__num {
  display: block;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(10,10,10,0.06);
  margin-bottom: -0.35em;
  margin-left: -0.04em;
  user-select: none;
}
.svc-row__title {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 1.75rem;
}
.svc-row__body p {
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--jet);
  margin-bottom: 1rem;
  max-width: 52ch;
}
.svc-row__body p:last-child { margin-bottom: 0; }
.svc-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

/* ─── SERVICES STATS BLACKOUT ─────────────────────────────── */
.svc-stats-blackout {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.svc-stats-blackout__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.svc-stat {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 3.5vw, 3.5rem);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.svc-stat:last-child { border-right: none; }
.svc-stat__num {
  display: block;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.svc-stat__label {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  max-width: 22ch;
}

/* ─── NDIS & PRICING ──────────────────────────────────────── */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.pricing-table thead tr {
  background: var(--black);
  color: var(--white);
}
.pricing-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.pricing-table td {
  padding: 1.125rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--jet);
  line-height: 1.5;
  vertical-align: top;
}
.pricing-table tr:nth-child(odd) td { background: var(--smoke); }
.pricing-table tr:nth-child(even) td { background: var(--white); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:last-child {
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}
.pricing-table td:first-child {
  font-weight: 600;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: var(--black);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}
.pricing-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--smoke);
  border-left: 3px solid var(--black);
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--jet);
}

.pricing-line-items-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--black);
  color: var(--white);
  font-size: var(--text-sm);
  line-height: 1.65;
}
.pricing-line-items-note svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: rgba(255,255,255,0.5);
}
.pricing-line-items-note p {
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.pricing-line-items-note strong {
  color: var(--white);
  font-weight: 700;
}
.pricing-line-items-note a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pricing-line-items-note a:hover {
  color: rgba(255,255,255,0.7);
}

.ndis-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  border: 1px solid var(--color-border);
  background: var(--color-border);
  margin-bottom: var(--space-xl);
}
.ndis-info-card {
  background: var(--white);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.ndis-info-card__title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}
.ndis-info-card__value {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.2;
}
.ndis-info-card__sub {
  font-size: var(--text-sm);
  color: var(--mid);
  line-height: 1.5;
}

/* ─── REFERRAL FORM ───────────────────────────────────────── */
.form-wrapper {
  max-width: 860px;
  margin: 0 auto;
}
.form-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}
.form-section:last-of-type { border-bottom: none; }
.form-section__header {
  margin-bottom: var(--space-lg);
}
.form-section__number {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.5rem;
}
.form-section__title {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-grid--3 { grid-template-columns: repeat(3, 1fr); }
.form-grid--full { grid-column: 1 / -1; }
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}
.field label .required {
  color: var(--mid);
  margin-left: 0.25rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 2px;
  background: var(--white);
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
  transition: border-color var(--dur-fast) var(--ease-quart-out),
              box-shadow var(--dur-fast) var(--ease-quart-out);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--light-grey); }
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--mid); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.08);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236b6b6b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Radio / Checkbox custom */
.radio-group, .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  padding-top: 0.25rem;
}
.radio-group--stack, .checkbox-group--stack {
  flex-direction: column;
  gap: 0.5rem;
}
.radio-opt, .check-opt {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  user-select: none;
}
.radio-opt input, .check-opt input {
  width: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
  accent-color: var(--black);
}
.check-opt input { border-radius: 2px; }
.radio-opt__label, .check-opt__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--jet);
  letter-spacing: 0;
  text-transform: none;
}

/* Toggle YES/NO */
.toggle-group {
  display: flex;
  border: 1.5px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  width: fit-content;
}
.toggle-group input[type="radio"] { display: none; }
.toggle-group label {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.toggle-group label:not(:last-child) { border-right: 1px solid var(--color-border); }
.toggle-group input[type="radio"]:checked + label {
  background: var(--black);
  color: var(--white);
}

/* Day checkboxes */
.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}
.day-check { display: none; }
.day-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.25rem;
  border: 1.5px solid var(--color-border);
  border-radius: 2px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-quart-out);
  text-align: center;
}
.day-check:checked + .day-label {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.day-label:hover { border-color: var(--charcoal); color: var(--charcoal); }

/* Form submit */
.form-submit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding-top: var(--space-lg);
}
.form-submit__note {
  font-size: var(--text-sm);
  color: var(--mid);
  line-height: 1.6;
  max-width: 52ch;
}

/* Form success */
.form-success {
  display: none;
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  background: var(--smoke);
  border-radius: 2px;
  border: 1px solid var(--color-border);
}
.form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.875rem;
}
.form-success__sub {
  font-size: var(--text-base);
  color: var(--mid);
  max-width: 44ch;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── CONTACT PAGE ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-block { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-block__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}
.contact-block__value {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--black);
  line-height: 1.5;
}
.contact-block__value a {
  transition: color var(--dur-fast);
}
.contact-block__value a:hover { color: var(--mid); }
.map-wrapper {
  aspect-ratio: 16 / 10;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: 2rem;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(100%) contrast(1.1);
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
  border-bottom: 1px solid var(--color-border-dark);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.footer__brand {}
.footer__logo {
  display: inline-block;
  margin-bottom: 1.25rem;
  transition: opacity var(--dur-fast);
}
.footer__logo:hover { opacity: 0.7; }
.footer__logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 28ch;
}
.footer__col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--dur-fast);
  line-height: 1.5;
}
.footer__links a:hover { color: var(--white); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__contact-item {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.footer__contact-item a {
  color: rgba(255,255,255,0.55);
  transition: color var(--dur-fast);
}
.footer__contact-item a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__legal {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}
.footer__insta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color var(--dur-fast);
}
.footer__insta:hover { color: var(--white); }
.footer__insta svg { width: 16px; height: 16px; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .founders-grid { grid-template-columns: 1fr 1fr 1fr; }
  .team-row { min-height: 380px; }
  .team-photo-fan { max-width: 260px; }
}
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }
}
@media (max-width: 768px) {
  .intro__grid { grid-template-columns: 1fr; gap: 3rem; }
  .who-support { grid-template-columns: 1fr; gap: 3rem; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--color-border-dark); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--color-border-dark); }
  .founders-grid { grid-template-columns: 1fr; }
  .team-row { flex-direction: column; min-height: auto; }
  .team-row--reverse { flex-direction: column; }
  .team-row__photo { width: 100%; height: 360px; padding: 2rem; }
  .team-row__bio { width: 100%; }
  .team-photo-fan { max-width: 200px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid--3 { grid-template-columns: 1fr; }
  .days-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .service-block__title { font-size: clamp(1.25rem, 5vw, 1.875rem); }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .stat-item:nth-child(odd) { border-right: none; }
  .days-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .ndis-info-grid { grid-template-columns: 1fr; }
  .service-block__expand-inner { grid-template-columns: 1fr; min-height: auto; }
  .service-block__expand-photo { height: 240px; border-right: none; border-bottom: 1px solid var(--color-border); }
  .svc-row { flex-direction: column; min-height: auto; }
  .svc-row--flip { flex-direction: column; }
  .svc-row__photo { width: 100%; height: 320px; }
  .svc-row__content { width: 100%; border-left: none !important; border-right: none !important; }
  .svc-selector__tabs { grid-template-columns: repeat(4, 1fr); }
  .svc-panel { flex-direction: column; min-height: auto; }
  .svc-panel__photo { width: 100%; height: 280px; }
  .svc-panel__content { width: 100%; border-left: none; }
  .team-selector__tabs { grid-template-columns: repeat(4, 1fr); }
  .team-panel { flex-direction: column; min-height: auto; }
  .team-panel__photo { width: 100%; height: 340px; padding: 2rem; }
  .team-panel__content { width: 100%; border-left: none; }
  .team-photo-fan { max-width: 200px; }
  .svc-list__item { grid-template-columns: 2.5rem 1fr 1.25rem; gap: 1rem; }
  .review-slide__quote { font-size: clamp(1.125rem, 4vw, 1.5rem); }
  .review-slide__badge { display: none; }
  .about-statement__text { font-size: clamp(2rem, 8vw, 4rem); }
  .svc-stats-blackout__inner { grid-template-columns: 1fr 1fr; }
  .svc-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .svc-stat:last-child { border-bottom: none; }
}

/* ─── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__scroll-line::after { animation: none; }
  *:not(.photo-strip__track) { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── PRINT ───────────────────────────────────────────────── */
@media print {
  .nav, .hero__scroll, .nav__hamburger, .nav__mobile { display: none; }
  body { font-size: 12pt; }
  a { text-decoration: underline; }
}
