/* ================================================================
   Disan Marketing SL — Premium Edition
   Purple · Teal · Metallic
   ================================================================ */

:root {
  --violet-950: #0c0618;
  --violet-900: #150a28;
  --violet-800: #2a1454;
  --violet-600: #7c3aed;
  --violet-500: #8b5cf6;
  --violet-400: #a78bfa;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --cyan-400: #22d3ee;
  --silver-100: #f0f4ff;
  --silver-300: #c4cad8;
  --silver-500: #8b93a8;
  --silver-700: #4a5068;

  --bg: #04040c;
  --bg-elevated: #0a0a14;
  --bg-glass: rgba(12, 10, 24, 0.72);
  --text: #edeaf4;
  --text-soft: rgba(237, 234, 244, 0.72);
  --text-muted: rgba(196, 202, 216, 0.55);
  --line: rgba(255, 255, 255, 0.07);
  --line-bright: rgba(139, 92, 246, 0.35);

  --grad-brand: linear-gradient(128deg, #a78bfa 0%, #14b8a6 52%, #22d3ee 100%);
  --grad-metallic: linear-gradient(135deg, #c4cad8 0%, #8b5cf6 28%, #14b8a6 62%, #c4cad8 100%);
  --grad-surface: linear-gradient(160deg, rgba(139, 92, 246, 0.07) 0%, rgba(20, 184, 166, 0.04) 100%);
  --grad-hero: radial-gradient(ellipse 90% 70% at 70% 20%, rgba(124, 58, 237, 0.18) 0%, transparent 55%),
               radial-gradient(ellipse 60% 50% at 10% 80%, rgba(20, 184, 166, 0.12) 0%, transparent 50%),
               linear-gradient(180deg, #060610 0%, #04040c 100%);

  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.12);
  --shadow-teal: 0 0 50px rgba(20, 184, 166, 0.1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Outfit', system-ui, sans-serif;
  --nav-h: 88px;
  --max-w: 1320px;
  --section-y: clamp(5.5rem, 11vw, 9rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t: 0.45s var(--ease-out);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1.5rem);
}

body {
  font-family: var(--font-ui);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(139, 92, 246, 0.35);
  color: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* Noise overlay */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9990;
  opacity: 0.035;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.preloader-active {
  overflow: hidden;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}

.preloader--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.preloader-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.preloader-orb--1 {
  width: 55vmin;
  height: 55vmin;
  top: 15%;
  left: 20%;
  background: rgba(124, 58, 237, 0.35);
  animation: preloaderDrift 8s ease-in-out infinite;
}

.preloader-orb--2 {
  width: 45vmin;
  height: 45vmin;
  bottom: 10%;
  right: 15%;
  background: rgba(20, 184, 166, 0.28);
  animation: preloaderDrift 8s ease-in-out infinite reverse;
}

@keyframes preloaderDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -25px) scale(1.06); }
}

.preloader-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 70%);
}

.preloader-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  animation: preloaderFadeIn 0.8s var(--ease-out) both;
}

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

.preloader-emblem {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.preloader-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
}

.preloader-orbit--1 {
  inset: 0;
  border-top-color: rgba(167, 139, 250, 0.7);
  border-right-color: rgba(167, 139, 250, 0.15);
  animation: preloaderSpin 2.4s linear infinite;
}

.preloader-orbit--2 {
  inset: 10px;
  border-bottom-color: rgba(45, 212, 191, 0.65);
  border-left-color: rgba(45, 212, 191, 0.12);
  animation: preloaderSpin 1.8s linear infinite reverse;
}

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

.preloader-icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(8, 8, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 40px rgba(139, 92, 246, 0.2),
    inset 0 0 20px rgba(20, 184, 166, 0.08);
  animation: preloaderPulse 2.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.2), inset 0 0 20px rgba(20, 184, 166, 0.08); }
  50% { box-shadow: 0 0 56px rgba(139, 92, 246, 0.35), inset 0 0 28px rgba(20, 184, 166, 0.14); }
}

.preloader-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(167, 139, 250, 0.4));
}

.preloader-brand {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--silver-100);
  margin-bottom: 0.35rem;
}

.preloader-tag {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 2rem;
}

.preloader-track {
  width: min(220px, 60vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.preloader-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--grad-brand);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.5);
  transition: width 0.25s var(--ease-out);
}

.preloader-percent {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 10001;
  background: var(--grad-brand);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
}

/* Typography utilities */
.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.display-title em.text-gradient {
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  font-synthesis: none;
  line-height: 1.2;
  padding: 0.1em 0.1em 0.12em 0.04em;
  margin: -0.1em -0.1em -0.08em -0.04em;
  overflow: visible;
}

.text-metallic {
  background: var(--grad-metallic);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-400);
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--grad-brand);
}

.display-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.display-title em {
  font-style: italic;
  font-weight: 500;
}

.section-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  user-select: none;
  pointer-events: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem clamp(1rem, 3vw, 2rem);
  transition: padding var(--t);
}

.header.scrolled {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.header-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.5rem 0.5rem 0.5rem 1.15rem;
  border-radius: 999px;
  background: rgba(8, 8, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow:
    0 4px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}

.header-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(255, 255, 255, 0.04) 40%, rgba(20, 184, 166, 0.15) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.header.scrolled .header-inner {
  background: rgba(6, 6, 14, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 8px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(139, 92, 246, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity var(--t);
}

.logo:hover {
  opacity: 0.88;
}

.logo--image {
  line-height: 0;
}

.logo-img {
  display: block;
  width: auto;
  height: clamp(40px, 7vw, 54px);
  object-fit: contain;
}

.logo-img--footer {
  height: clamp(44px, 8vw, 58px);
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--grad-brand);
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.4);
}

.logo-mark::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.2);
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--silver-100);
}

.logo-tag {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* Nav center — link group with dividers */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links li + li::before {
  content: '';
  width: 1px;
  height: 16px;
  flex-shrink: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(167, 139, 250, 0.35) 30%,
    rgba(45, 212, 191, 0.35) 70%,
    transparent 100%
  );
  opacity: 0.7;
}

.nav-links a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--t), background var(--t);
  position: relative;
  border-radius: 999px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0.35rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 12px;
  height: 1px;
  background: var(--grad-brand);
  transition: transform var(--t);
}

.nav-links a:hover {
  color: var(--silver-100);
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-links a.active {
  color: var(--silver-100);
  background: rgba(139, 92, 246, 0.1);
  box-shadow: inset 0 0 0 1px rgba(167, 139, 250, 0.15);
}

.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
  width: 16px;
  background: var(--teal-400);
}

/* Services dropdown — desktop only */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-trigger::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.45;
  transition: transform var(--t), opacity var(--t);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 300px;
  padding: 0.5rem;
  list-style: none;
  border-radius: 14px;
  background: rgba(6, 6, 14, 0.97);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t), visibility var(--t), transform var(--t);
  z-index: 1002;
}

.nav-dropdown-menu li {
  margin: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-soft);
  border-radius: 10px;
  white-space: normal;
  line-height: 1.4;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  color: var(--silver-100);
  background: rgba(139, 92, 246, 0.1);
}

.nav-dropdown-menu a.active {
  color: var(--silver-100);
  background: rgba(139, 92, 246, 0.14);
  box-shadow: inset 0 0 0 1px rgba(167, 139, 250, 0.2);
}

@media (min-width: 1201px) {
  /* Invisible bridge so the cursor can reach the menu without losing hover */
  .nav-dropdown-menu::before {
    content: '';
    position: absolute;
    left: -1rem;
    right: -1rem;
    top: -0.75rem;
    height: 0.75rem;
  }

  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown.is-open .nav-dropdown-trigger::before,
  .nav-dropdown:focus-within .nav-dropdown-trigger::before {
    transform: rotate(180deg);
    opacity: 0.7;
  }
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-actions::before {
  content: '';
  width: 1px;
  height: 28px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 100%
  );
  margin-right: 0.25rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(135deg, #f0f4ff 0%, #e8ecf4 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 2px 12px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  cursor: pointer;
}

.nav-cta svg {
  transition: transform var(--t);
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow:
    0 8px 32px rgba(255, 255, 255, 0.14),
    0 0 24px rgba(139, 92, 246, 0.12);
}

.nav-cta:hover svg {
  transform: translateX(2px);
}

/* Mobile menu CTA — hidden on desktop */
.nav-links li.nav-mobile-cta-wrap {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color var(--t), background var(--t);
}

.menu-toggle:hover {
  border-color: rgba(167, 139, 250, 0.3);
  background: rgba(139, 92, 246, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  transition: transform var(--t), opacity var(--t);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
  background: var(--grad-hero);
  overflow: hidden;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: drift 14s ease-in-out infinite;
}

.hero-orb--1 {
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  top: -15%;
  right: -10%;
  background: rgba(124, 58, 237, 0.22);
}

.hero-orb--2 {
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  bottom: 0;
  left: -8%;
  background: rgba(20, 184, 166, 0.14);
  animation-delay: -7s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 25px); }
}

.hero-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.02) 49.5%, rgba(255,255,255,0.02) 50.5%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(255,255,255,0.015) 49.5%, rgba(255,255,255,0.015) 50.5%, transparent 50.5%);
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.hero-eyebrow {
  margin-bottom: 2rem;
  animation: rise 1s var(--ease-out) both;
}

.hero-headline {
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  line-height: 1.12;
  margin-bottom: 1.75rem;
  animation: rise 1s var(--ease-out) 0.1s both;
}

.hero-headline .hero-accent {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-synthesis: none;
  font-variant-ligatures: common-ligatures;
  letter-spacing: -0.015em;
  line-height: 1.12;
  overflow: visible;
}

.hero-headline .hero-accent-text {
  display: inline-block;
  line-height: 1.12;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding: 0 0.06em 0.14em 0;
  margin-bottom: -0.14em;
}

.hero-lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 300;
  color: var(--text-soft);
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: rise 1s var(--ease-out) 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
  animation: rise 1s var(--ease-out) 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t), background var(--t);
  cursor: pointer;
}

.btn-primary {
  color: var(--bg);
  background: var(--silver-100);
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(255, 255, 255, 0.1);
  background: #fff;
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  border-color: var(--line-bright);
  background: rgba(139, 92, 246, 0.06);
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  animation: rise 1s var(--ease-out) 0.45s both;
}

.hero-pillar {
  padding: 1.5rem 2rem 0;
  position: relative;
}

.hero-pillar:first-child {
  padding-left: 0;
}

.hero-pillar:not(:first-child) {
  padding-left: 2.25rem;
}

.hero-pillar:not(:last-child) {
  padding-right: 2.25rem;
}

.hero-pillar:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1.5rem;
  right: 0;
  width: 1px;
  height: calc(100% - 1.5rem);
  background: var(--line);
}

.hero-pillar-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--silver-100);
}

.hero-pillar-label {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  animation: rise 1.2s var(--ease-out) 0.35s both;
}

.hero-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.hero-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 4, 12, 0.65) 100%);
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}

.hero-visual:hover .hero-frame img {
  transform: scale(1.06);
}

.hero-frame-border {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 3;
}

.hero-frame-glow {
  position: absolute;
  inset: 10%;
  z-index: -1;
  background: var(--grad-brand);
  filter: blur(60px);
  opacity: 0.2;
}

.hero-float-card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  z-index: 4;
  padding: 1.25rem 1.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
  max-width: 220px;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-float-card span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 0.35rem;
}

.hero-float-card strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.3;
}

.hero-vertical-label {
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

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

/* Marquee */
.marquee-strip {
  border-block: 1px solid var(--line);
  background: var(--bg-elevated);
  overflow: hidden;
  padding: 1.1rem 0;
  position: relative;
}

.marquee-viewport {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.marquee-track span {
  flex-shrink: 0;
  padding: 0 2.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee-track span::after {
  content: '◆';
  margin-left: 2.5rem;
  font-style: normal;
  font-size: 0.5rem;
  vertical-align: middle;
  color: var(--violet-500);
}

/* Sections shared */
.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section-head {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-head--split {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}

.section-head-content {
  max-width: 640px;
}

.section-title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.85;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal-d4 { transition-delay: 0.48s; }

/* About */
.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-visual-wrap {
  position: relative;
}

.about-visual-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.about-visual-frame {
  position: relative;
  overflow: hidden;
}

.about-visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.about-visual-accent {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 50%;
  height: 50%;
  border: 1px solid var(--line-bright);
  z-index: -1;
}

.about-quote {
  margin: 2.5rem 0;
  padding-left: 1.75rem;
  border-left: 1px solid;
  border-image: var(--grad-brand) 1;
}

.about-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--silver-100);
}

.about-body p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.about-tag {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: border-color var(--t), color var(--t);
}

.about-tag:hover {
  border-color: var(--line-bright);
  color: var(--teal-400);
}

/* Philosophy — bento */
.philosophy {
  background: var(--bg-elevated);
}

.philosophy-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.philosophy-card {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: var(--grad-surface);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity var(--t);
}

.philosophy-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-3px);
}

.philosophy-card:hover::before {
  opacity: 1;
}

.philosophy-card:nth-child(1) { grid-column: span 5; }
.philosophy-card:nth-child(2) { grid-column: span 7; }
.philosophy-card:nth-child(3) { grid-column: span 12; display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; align-items: center; }

.philosophy-index {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.philosophy-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.philosophy-card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.8;
}

/* Approach */
.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.approach-visual {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.approach-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.approach-visual::after {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.approach-list {
  display: flex;
  flex-direction: column;
}

.approach-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
  transition: padding-left var(--t);
  cursor: default;
}

.approach-item:first-child {
  border-top: 1px solid var(--line);
}

.approach-item.active,
.approach-item:hover {
  padding-left: 0.75rem;
}

.approach-item-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1;
  transition: color var(--t);
}

.approach-item.active .approach-item-num,
.approach-item:hover .approach-item-num {
  color: var(--teal-400);
}

.approach-item h4 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.approach-item p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
}

/* Landscape */
.landscape {
  background: var(--bg-elevated);
}

.landscape-hero {
  position: relative;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.landscape-hero img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  filter: brightness(0.75) saturate(1.1);
  transition: transform 1.4s var(--ease-out);
}

.landscape-hero:hover img {
  transform: scale(1.03);
}

.landscape-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(to top, rgba(4, 4, 12, 0.92) 0%, transparent 55%);
}

.landscape-hero-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.landscape-hero-text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-soft);
  max-width: 520px;
}

.landscape-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.landscape-cell {
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color var(--t), background var(--t);
}

.landscape-cell:hover {
  border-color: var(--line-bright);
  background: rgba(139, 92, 246, 0.04);
}

.landscape-cell-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal-400);
}

.landscape-cell h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.landscape-cell p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Values */
.values-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}

.value-block {
  padding: clamp(2.5rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  margin: -1px 0 0 -1px;
  transition: background var(--t);
}

.value-block:hover {
  background: var(--grad-surface);
}

.value-block-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.7;
}

.value-block h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.value-block p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.8;
}

/* Connect */
.connect {
  padding-bottom: calc(var(--section-y) * 0.75);
}

.connect-panel {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  overflow: visible;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(139, 92, 246, 0.1) 0%, transparent 60%),
    var(--bg-elevated);
}

.connect-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.connect-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}

.connect-inner h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.16;
  margin-bottom: 1.25rem;
  overflow: visible;
}

.connect-inner p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
}

.connect-email {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem 2.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--silver-100);
  transition: border-color var(--t), background var(--t), transform var(--t), box-shadow var(--t);
  cursor: pointer;
}

.connect-email:hover {
  border-color: var(--teal-400);
  background: rgba(20, 184, 166, 0.06);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

.connect-email svg {
  color: var(--teal-400);
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 3.5rem;
}

.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 340px;
}

.footer-heading {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-soft);
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--violet-400);
  margin-top: 3px;
}

.footer-contact-item a {
  transition: color var(--t);
}

.footer-contact-item a:hover {
  color: var(--teal-400);
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 300;
}

.footer-hours-row span:first-child {
  color: var(--text-muted);
}

.footer-hours-row span:last-child {
  color: var(--text-soft);
}

.footer-hours-row:last-child {
  border-bottom: none;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.footer-bottom-inner > span {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-legal a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t);
}

.footer-legal a:hover {
  color: var(--teal-400);
}

.footer-legal-sep {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 18, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--silver-100);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition:
    opacity var(--t),
    visibility var(--t),
    transform var(--t),
    border-color var(--t),
    background var(--t),
    box-shadow var(--t),
    color var(--t);
}

.scroll-top::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  padding: 1px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.45) 0%, rgba(20, 184, 166, 0.35) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--t);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  border-color: rgba(167, 139, 250, 0.35);
  background: rgba(139, 92, 246, 0.12);
  color: var(--teal-400);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(139, 92, 246, 0.15);
}

.scroll-top:hover::before {
  opacity: 1;
}

.scroll-top:active {
  transform: translateY(0) scale(0.94);
}

.scroll-top svg {
  transition: transform var(--t);
}

.scroll-top:hover svg {
  transform: translateY(-2px);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: clamp(0.75rem, 3vw, 1.5rem);
  right: clamp(0.75rem, 3vw, 1.5rem);
  bottom: clamp(0.75rem, 3vw, 1.5rem);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity var(--t), visibility var(--t), transform var(--t);
  pointer-events: none;
}

.cookie-banner.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.15rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 20px;
  background: rgba(8, 8, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(139, 92, 246, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  max-width: var(--max-w);
  margin: 0 auto;
}

.cookie-banner-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.25) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(20, 184, 166, 0.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cookie-banner-main {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.cookie-banner-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.2);
  color: var(--teal-400);
}

.cookie-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--silver-100);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.cookie-banner-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 640px;
}

.cookie-banner-desc a {
  color: var(--teal-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
}

.cookie-banner-desc a:hover {
  color: var(--cyan-400);
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t), background var(--t), color var(--t);
}

.cookie-btn--decline {
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn--decline:hover {
  border-color: rgba(167, 139, 250, 0.35);
  color: var(--silver-100);
  background: rgba(139, 92, 246, 0.08);
}

.cookie-btn--accept {
  color: var(--bg);
  background: linear-gradient(135deg, #f0f4ff 0%, #e8ecf4 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
}

.cookie-btn--accept:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.12);
}

body.cookie-visible .scroll-top {
  bottom: calc(clamp(0.75rem, 3vw, 1.5rem) + 7.5rem);
}

/* Responsive */
@media (max-width: 1100px) {
  .philosophy-card:nth-child(1),
  .philosophy-card:nth-child(2),
  .philosophy-card:nth-child(3) {
    grid-column: span 12;
    display: block;
  }

  .landscape-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-layout,
  .about-grid,
  .approach-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .hero-frame img { aspect-ratio: 16/10; }
  .hero-float-card { left: 1rem; bottom: 1rem; }
  .hero-vertical-label { display: none; }
  .hero-pillars { grid-template-columns: 1fr; }
  .hero-pillar:not(:last-child)::after { display: none; }
  .hero-pillar { padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
  .hero-pillar:first-child,
  .hero-pillar:not(:first-child),
  .hero-pillar:not(:last-child) { padding-left: 0; padding-right: 0; }
  .hero-pillar:last-child { border-bottom: none; }

  .about-visual-wrap { max-width: 480px; margin: 0 auto; }
  .about-visual-accent { display: none; }

  .approach-visual {
    position: relative;
    top: 0;
    max-width: 420px;
    margin: 0 auto 2rem;
  }

  .section-head--split {
    grid-template-columns: 1fr;
  }

  .section-num { font-size: 4rem; }

  .values-showcase {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1200px) {
  .nav-center {
    display: block;
    position: fixed;
    top: calc(var(--nav-h) + 0.65rem);
    left: 1rem;
    right: 1rem;
    flex: none;
    z-index: 1001;
    pointer-events: none;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    padding: 0.65rem;
    border-radius: 16px;
    background: rgba(6, 6, 14, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--t), opacity var(--t), visibility var(--t);
    pointer-events: auto;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links li + li::before {
    width: 100%;
    height: 1px;
    flex-shrink: 0;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(167, 139, 250, 0.25) 30%,
      rgba(45, 212, 191, 0.25) 70%,
      transparent 100%
    );
  }

  .nav-dropdown-menu {
    display: none !important;
  }

  .nav-dropdown-trigger::before {
    display: none;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.85rem 0.75rem;
    text-align: center;
    font-size: 0.78rem;
  }

  .nav-links a.active {
    background: rgba(139, 92, 246, 0.12);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-actions::before {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links li.nav-mobile-cta-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 0.25rem;
  }

  .nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: calc(100% - 1rem);
    margin: 0.35rem auto 0.25rem;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecf4 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
    transition: transform var(--t), box-shadow var(--t), background var(--t);
    cursor: pointer;
  }

  .nav-links a.nav-mobile-cta {
    color: #000;
  }

  .nav-links a.nav-mobile-cta.active {
    color: #000;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecf4 100%);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
  }

  .nav-mobile-cta:hover,
  .nav-links a.nav-mobile-cta:hover {
    color: #000;
    background: #fff;
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
  }

  .nav-mobile-cta svg {
    color: #000;
    transition: transform var(--t);
  }

  .nav-mobile-cta:hover svg {
    transform: translateX(2px);
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 76px; }

  .header-inner {
    padding: 0.45rem 0.45rem 0.45rem 1rem;
  }

  .header-inner { padding-right: 0.45rem; }

  /* Hero pillars — centered on mobile */
  .hero-pillar {
    text-align: center;
    padding: 1.35rem 0;
  }

  .hero-pillar-value,
  .hero-pillar-label {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-pillar-label {
    max-width: 260px;
  }

  /* Footer — centered on mobile */
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-brand p {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-section {
    text-align: center;
  }

  .footer-heading {
    margin-bottom: 1.25rem;
  }

  .footer-contact-item {
    justify-content: center;
    text-align: left;
  }

  .footer-hours {
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-hours-row {
    padding: 0.9rem 0;
  }

  .landscape-grid { grid-template-columns: 1fr; }
  .landscape-hero img { aspect-ratio: 16/10; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { text-align: center; }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.15rem;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-direction: column-reverse;
  }

  .cookie-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  body.cookie-visible .scroll-top {
    bottom: calc(clamp(0.75rem, 3vw, 1.5rem) + 11.5rem);
  }
}

/* Mobile menu overlay */
body.menu-open::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(4, 4, 12, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Legal pages */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
  background: var(--grad-hero);
  overflow: hidden;
  text-align: center;
}

.page-hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
}

.page-hero-orb--1 {
  width: 40vw;
  height: 40vw;
  max-width: 420px;
  top: -10%;
  right: 10%;
  background: rgba(124, 58, 237, 0.35);
}

.page-hero-orb--2 {
  width: 30vw;
  height: 30vw;
  max-width: 320px;
  bottom: -10%;
  left: 5%;
  background: rgba(20, 184, 166, 0.25);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 1rem;
}

.page-hero-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

.legal-section {
  padding: var(--section-y) 0;
  background: var(--bg);
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--grad-surface);
}

.legal-nav-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 1rem;
}

.legal-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.legal-nav a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  transition: color var(--t), border-color var(--t);
}

.legal-nav a:hover {
  color: var(--silver-100);
}

.legal-body {
  max-width: 760px;
}

.legal-block {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}

.legal-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 500;
  color: var(--silver-100);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.legal-block p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  margin: 0.75rem 0 1rem;
  padding-left: 1.25rem;
}

.legal-block li {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 0.5rem;
  list-style: disc;
}

.legal-block a {
  color: var(--teal-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
}

.legal-block a:hover {
  color: var(--cyan-400);
}

.legal-contact-box {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.legal-contact-box p {
  margin-bottom: 0.35rem;
}

.legal-contact-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: relative;
    top: 0;
  }

  .legal-nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 1rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: calc(var(--nav-h) + 2.5rem);
  }

  .legal-nav ul {
    grid-template-columns: 1fr;
  }

  .faq-categories {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .faq-category-btn {
    flex-shrink: 0;
  }
}

/* FAQ page */
.faq-section {
  padding: var(--section-y) 0;
  background: var(--bg);
}

.faq-intro {
  max-width: 560px;
  margin: 0 auto 3rem;
  text-align: center;
}

.faq-intro p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.85;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.faq-category-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color var(--t), color var(--t), background var(--t);
}

.faq-category-btn:hover {
  border-color: var(--line-bright);
  color: var(--silver-100);
}

.faq-category-btn.active {
  color: var(--silver-100);
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(167, 139, 250, 0.35);
}

.faq-group {
  display: none;
  max-width: 820px;
  margin: 0 auto;
}

.faq-group.active {
  display: block;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.015);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.open {
  border-color: var(--line-bright);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--silver-100);
  cursor: pointer;
  transition: color var(--t);
}

.faq-question:hover {
  color: #fff;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  transition: transform var(--t), border-color var(--t), background var(--t);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: rgba(167, 139, 250, 0.35);
  background: rgba(139, 92, 246, 0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.8;
}

.faq-answer-inner a {
  color: var(--teal-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
}

.faq-answer-inner a:hover {
  color: var(--cyan-400);
}

.faq-cta {
  margin-top: 3.5rem;
  text-align: center;
}

.faq-cta-box {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.75rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--grad-surface);
}

.faq-cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.faq-cta-box p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

/* Values page */
.values-hero-visual {
  margin-top: 3rem;
  position: relative;
}

.values-hero-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 7;
}

.values-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.values-hero-frame-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), transparent 40%, rgba(20, 184, 166, 0.12));
  pointer-events: none;
  z-index: 1;
}

.values-manifesto {
  padding: var(--section-y) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.values-manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--silver-100);
  margin-bottom: 1.5rem;
}

.values-manifesto-quote em {
  font-style: normal;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.values-manifesto-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.85;
  max-width: 620px;
  margin: 0 auto;
}

.values-pillars-section {
  padding: var(--section-y) 0;
}

.values-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 3rem;
}

.values-pillar-card {
  background: var(--bg);
  padding: clamp(2rem, 3.5vw, 2.75rem);
  transition: background var(--t);
}

.values-pillar-card:hover {
  background: var(--grad-surface);
}

.values-pillar-symbol {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  margin-bottom: 1.25rem;
  background: rgba(139, 92, 246, 0.06);
}

.values-pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.values-pillar-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
}

.values-split {
  padding: var(--section-y) 0;
  background: var(--bg-elevated);
}

.values-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.values-split-visual {
  position: relative;
}

.values-split-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1;
}

.values-split-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.values-split-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 50%;
  bottom: -20px;
  right: -20px;
  pointer-events: none;
}

.values-standards-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}

.values-standard-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.values-standard-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--teal-400);
  opacity: 0.8;
  line-height: 1;
  padding-top: 0.15rem;
}

.values-standard-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.values-standard-item p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
}

.values-banner {
  position: relative;
}

.values-banner-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 21 / 9;
}

.values-banner-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.values-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 8, 12, 0.92) 0%, rgba(8, 8, 12, 0.55) 55%, transparent 100%);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.values-banner-text {
  max-width: 480px;
}

.values-banner-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.values-banner-text p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.8;
}

.values-commitments {
  padding: var(--section-y) 0;
}

.values-commitments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.values-commitment {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.015);
  transition: border-color var(--t), transform var(--t);
}

.values-commitment:hover {
  border-color: var(--line-bright);
  transform: translateY(-3px);
}

.values-commitment-icon {
  color: var(--purple-400);
  margin-bottom: 0.85rem;
}

.values-commitment h4 {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-100);
  margin-bottom: 0.5rem;
}

.values-commitment p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

.values-page-cta {
  padding-bottom: calc(var(--section-y) * 0.75);
}

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

  .values-commitments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-split-layout {
    grid-template-columns: 1fr;
  }

  .values-split-visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
}

.values-banner-section {
  padding-top: 0;
}

@media (max-width: 768px) {
  .values-pillars-grid {
    grid-template-columns: 1fr;
  }

  .values-commitments-grid {
    grid-template-columns: 1fr;
  }

  .values-banner-overlay {
    background: linear-gradient(to top, rgba(8, 8, 12, 0.95) 0%, rgba(8, 8, 12, 0.6) 100%);
    align-items: flex-end;
  }

  .values-hero-frame {
    aspect-ratio: 16 / 10;
  }

  .values-banner-frame {
    aspect-ratio: 4 / 3;
  }
}

/* Landscape page */
.landscape-page-hero-visual {
  margin-top: 3rem;
  position: relative;
}

.landscape-page-hero-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 7;
}

.landscape-page-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landscape-page-hero-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), transparent 45%, rgba(139, 92, 246, 0.15));
  pointer-events: none;
  z-index: 1;
}

.landscape-context {
  padding: var(--section-y) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.landscape-context-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.landscape-context-lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--silver-100);
}

.landscape-context-lead em {
  font-style: italic;
  color: var(--teal-400);
}

.landscape-context-body p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.landscape-context-body p:last-child {
  margin-bottom: 0;
}

.landscape-forces {
  padding: var(--section-y) 0;
}

.landscape-forces-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.landscape-force {
  padding: 1.75rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.015);
  transition: border-color var(--t), transform var(--t);
}

.landscape-force:hover {
  border-color: var(--line-bright);
  transform: translateY(-4px);
}

.landscape-force-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: 1rem;
}

.landscape-force h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.landscape-force p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

.landscape-buyers {
  padding: var(--section-y) 0;
  background: var(--bg-elevated);
}

.landscape-buyers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.landscape-buyers-visual {
  position: relative;
}

.landscape-buyers-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1;
}

.landscape-buyers-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landscape-buyer-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.landscape-buyer-item {
  padding-left: 1.25rem;
  border-left: 2px solid rgba(167, 139, 250, 0.35);
}

.landscape-buyer-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.landscape-buyer-item p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
}

.landscape-signals-section {
  padding-top: 0;
  padding-bottom: var(--section-y);
}

.landscape-signals-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 21 / 9;
}

.landscape-signals-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landscape-signals-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(8, 8, 12, 0.92) 0%, rgba(8, 8, 12, 0.5) 50%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4rem);
}

.landscape-signals-text {
  max-width: 460px;
  text-align: right;
}

.landscape-signals-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.landscape-signals-text p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.8;
}

.landscape-regional {
  padding: var(--section-y) 0;
}

.landscape-regional-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(20, 184, 166, 0.08) 0%, transparent 60%),
    var(--grad-surface);
}

.landscape-regional-marker {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

.landscape-regional-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.landscape-regional-content p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.landscape-regional-content p:last-child {
  margin-bottom: 0;
}

.landscape-horizon {
  padding: var(--section-y) 0;
  background: var(--bg-elevated);
}

.landscape-horizon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2.5rem;
}

.landscape-horizon-card {
  background: var(--bg-elevated);
  padding: clamp(2rem, 3.5vw, 2.75rem);
  transition: background var(--t);
}

.landscape-horizon-card:hover {
  background: var(--grad-surface);
}

.landscape-horizon-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 0.85rem;
}

.landscape-horizon-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.landscape-horizon-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
}

.landscape-page-cta {
  padding-bottom: calc(var(--section-y) * 0.75);
}

@media (max-width: 1200px) {
  .landscape-forces-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .landscape-context-grid,
  .landscape-buyers-layout {
    grid-template-columns: 1fr;
  }

  .landscape-buyers-visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .landscape-forces-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landscape-regional-panel {
    grid-template-columns: 1fr;
  }

  .landscape-regional-marker {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .landscape-page-hero-frame {
    aspect-ratio: 16 / 10;
  }

  .landscape-forces-grid {
    grid-template-columns: 1fr;
  }

  .landscape-horizon-grid {
    grid-template-columns: 1fr;
  }

  .landscape-signals-banner {
    aspect-ratio: 4 / 3;
  }

  .landscape-signals-overlay {
    background: linear-gradient(to top, rgba(8, 8, 12, 0.95) 0%, rgba(8, 8, 12, 0.55) 100%);
    justify-content: flex-start;
    align-items: flex-end;
  }

  .landscape-signals-text {
    text-align: left;
  }
}

/* Approach page */
.approach-page-hero-visual {
  margin-top: 3rem;
  position: relative;
}

.approach-page-hero-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 7;
}

.approach-page-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.approach-page-hero-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), transparent 42%, rgba(20, 184, 166, 0.12));
  pointer-events: none;
  z-index: 1;
}

.approach-method-intro {
  padding: var(--section-y) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-method-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.approach-method-intro-inner p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--silver-100);
}

.approach-method-intro-inner p em {
  font-style: italic;
  color: var(--teal-400);
}

.approach-method-intro-sub {
  margin-top: 1.25rem;
  font-family: var(--font-ui) !important;
  font-size: 1rem !important;
  font-weight: 300 !important;
  color: var(--text-soft) !important;
  line-height: 1.85 !important;
}

.approach-phases {
  padding: var(--section-y) 0;
}

.approach-phases-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.approach-phase {
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1rem, 1.5vw, 1.25rem);
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  transition: background var(--t);
  position: relative;
}

.approach-phase:last-child {
  border-right: none;
}

.approach-phase:hover {
  background: var(--grad-surface);
}

.approach-phase-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.75;
}

.approach-phase h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.approach-phase p {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

.approach-collaboration {
  padding: var(--section-y) 0;
  background: var(--bg-elevated);
}

.approach-collaboration-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.approach-collaboration-visual {
  position: relative;
}

.approach-collaboration-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1;
}

.approach-collaboration-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.approach-collab-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.approach-collab-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.approach-collab-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  background: rgba(139, 92, 246, 0.06);
}

.approach-collab-point h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.approach-collab-point p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
}

.approach-blueprint-section {
  padding-top: 0;
  padding-bottom: var(--section-y);
}

.approach-blueprint-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 21 / 9;
}

.approach-blueprint-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.approach-blueprint-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 8, 12, 0.9) 0%, rgba(8, 8, 12, 0.45) 55%, transparent 100%);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.approach-blueprint-text {
  max-width: 500px;
}

.approach-blueprint-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.approach-blueprint-text p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.8;
}

.approach-engagement {
  padding: var(--section-y) 0;
}

.approach-engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.approach-engagement-card {
  padding: clamp(2rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.015);
  transition: border-color var(--t), transform var(--t);
}

.approach-engagement-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-4px);
}

.approach-engagement-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: 1rem;
}

.approach-engagement-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.approach-engagement-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.approach-engagement-fit {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  line-height: 1.6;
}

.approach-engagement-fit strong {
  color: var(--teal-400);
  font-weight: 500;
}

.approach-expect {
  padding: var(--section-y) 0;
  background: var(--bg-elevated);
}

.approach-expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2.5rem;
}

.approach-expect-item {
  background: var(--bg-elevated);
  padding: clamp(2rem, 3.5vw, 2.75rem);
  transition: background var(--t);
}

.approach-expect-item:hover {
  background: var(--grad-surface);
}

.approach-expect-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.approach-expect-item p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
}

.approach-page-cta {
  padding-bottom: calc(var(--section-y) * 0.75);
}

@media (max-width: 1200px) {
  .approach-phases-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .approach-phase:nth-child(3) {
    border-right: none;
  }

  .approach-phase:nth-child(4),
  .approach-phase:nth-child(5),
  .approach-phase:nth-child(6) {
    border-top: 1px solid var(--line);
  }

  .approach-phase:nth-child(4),
  .approach-phase:nth-child(5) {
    border-right: 1px solid var(--line);
  }

  .approach-phase:nth-child(6) {
    border-right: none;
  }
}

@media (max-width: 1024px) {
  .approach-collaboration-layout {
    grid-template-columns: 1fr;
  }

  .approach-collaboration-visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .approach-engagement-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .approach-page-hero-frame {
    aspect-ratio: 16 / 10;
  }

  .approach-phases-track {
    grid-template-columns: 1fr;
  }

  .approach-phase {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .approach-phase:last-child {
    border-bottom: none;
  }

  .approach-phase:nth-child(4),
  .approach-phase:nth-child(5),
  .approach-phase:nth-child(6) {
    border-top: none;
  }

  .approach-blueprint-banner {
    aspect-ratio: 4 / 3;
  }

  .approach-blueprint-overlay {
    background: linear-gradient(to top, rgba(8, 8, 12, 0.95) 0%, rgba(8, 8, 12, 0.55) 100%);
    align-items: flex-end;
  }

  .approach-expect-grid {
    grid-template-columns: 1fr;
  }
}

/* About page */
.about-page-hero-visual {
  margin-top: 3rem;
  position: relative;
}

.about-page-hero-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 7;
}

.about-page-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-page-hero-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.13), transparent 40%, rgba(20, 184, 166, 0.11));
  pointer-events: none;
  z-index: 1;
}

.about-story {
  padding: var(--section-y) 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.about-story-lead {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.42;
  color: var(--silver-100);
}

.about-story-lead em {
  font-style: italic;
  color: var(--teal-400);
}

.about-story-body p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-story-body p:last-child {
  margin-bottom: 0;
}

.about-purpose {
  padding: var(--section-y) 0;
}

.about-purpose-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.about-purpose-visual {
  position: relative;
}

.about-purpose-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1;
}

.about-purpose-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-purpose-ring {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 50%;
  top: -18px;
  left: -18px;
  pointer-events: none;
}

.about-beliefs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-belief {
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.012);
  transition: border-color var(--t);
}

.about-belief:hover {
  border-color: var(--line-bright);
}

.about-belief h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.about-belief p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
}

.about-identity {
  padding: var(--section-y) 0;
  background: var(--bg-elevated);
}

.about-identity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.about-identity-card {
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.012);
  transition: transform var(--t), border-color var(--t);
}

.about-identity-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-bright);
}

.about-identity-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--purple-400);
  background: rgba(139, 92, 246, 0.06);
}

.about-identity-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.about-identity-card p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-roots-section {
  padding-top: 0;
  padding-bottom: var(--section-y);
}

.about-roots-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 21 / 9;
}

.about-roots-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-roots-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 8, 12, 0.88) 0%, rgba(8, 8, 12, 0.4) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.about-roots-text {
  max-width: 520px;
}

.about-roots-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.about-roots-text p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

.about-roots-text p:last-child {
  margin-bottom: 0;
}

.about-distinction {
  padding: var(--section-y) 0;
}

.about-distinction-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2.5rem;
}

.about-distinction-item {
  background: var(--bg);
  padding: clamp(2rem, 3.5vw, 2.75rem);
  transition: background var(--t);
}

.about-distinction-item:hover {
  background: var(--grad-surface);
}

.about-distinction-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 0.75rem;
}

.about-distinction-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.about-distinction-item p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
}

.about-page-cta {
  padding-bottom: calc(var(--section-y) * 0.75);
}

@media (max-width: 1024px) {
  .about-story-grid,
  .about-purpose-layout {
    grid-template-columns: 1fr;
  }

  .about-identity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-purpose-visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-page-hero-frame {
    aspect-ratio: 16 / 10;
  }

  .about-identity {
    position: relative;
    z-index: 2;
    padding-bottom: calc(var(--section-y) + 1.5rem);
  }

  .about-identity-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 0;
  }

  .about-identity-card.reveal {
    transform: none;
  }

  .about-identity-card.reveal.visible {
    transform: none;
  }

  .about-roots-section {
    position: relative;
    z-index: 1;
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
  }

  .about-roots-banner {
    aspect-ratio: auto;
    min-height: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  .about-roots-banner img {
    height: clamp(10rem, 38vw, 13rem);
    flex-shrink: 0;
  }

  .about-distinction-list {
    grid-template-columns: 1fr;
  }

  .about-roots-overlay {
    position: relative;
    inset: auto;
    flex: 1;
    align-items: flex-start;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: linear-gradient(
      180deg,
      rgba(8, 8, 12, 0.98) 0%,
      rgba(8, 8, 12, 0.94) 100%
    );
  }

  .about-roots-text h3 {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .about-roots-text p {
    font-size: 0.88rem;
    line-height: 1.75;
  }
}

/* Contact page */
.contact-section {
  padding: var(--section-y) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.contact-info-panel {
  padding: clamp(2rem, 3.5vw, 2.75rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--grad-surface);
}

.contact-info-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.contact-info-panel > p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  background: rgba(139, 92, 246, 0.06);
}

.contact-detail h3 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.65;
}

.contact-detail a {
  transition: color var(--t);
}

.contact-detail a:hover {
  color: var(--teal-400);
}

.contact-hours-block {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.contact-hours-block h3 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.contact-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-soft);
}

.contact-hours-row span:last-child {
  color: var(--text-muted);
  text-align: right;
}

.contact-form-panel {
  padding: clamp(2rem, 3.5vw, 2.75rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.015);
}

.contact-form-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.contact-form-panel > p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

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

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 300;
  transition: border-color var(--t), box-shadow var(--t);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(196, 202, 216, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--line-bright);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

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

.form-group--error input,
.form-group--error textarea {
  border-color: rgba(239, 68, 68, 0.5);
}

.form-error {
  font-size: 0.78rem;
  color: #f87171;
  display: none;
}

.form-group--error .form-error {
  display: block;
}

.contact-form-actions {
  margin-top: 0.5rem;
}

.contact-form-actions .btn {
  width: 100%;
  justify-content: center;
  border: none;
}

/* Contact modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}

.contact-modal.visible {
  opacity: 1;
  visibility: visible;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 12, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contact-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  padding: clamp(2rem, 4vw, 2.75rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 60%),
    var(--bg-elevated);
  text-align: center;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.35s var(--ease-out);
  box-shadow: var(--shadow-soft);
}

.contact-modal.visible .contact-modal-dialog {
  transform: translateY(0) scale(1);
}

.contact-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--t), color var(--t), background var(--t);
}

.contact-modal-close:hover {
  color: var(--silver-100);
  border-color: var(--line-bright);
  background: rgba(139, 92, 246, 0.08);
}

.contact-modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.contact-modal-icon--success {
  color: var(--teal-400);
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.35);
}

.contact-modal-icon--error {
  color: #f87171;
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.35);
}

.contact-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--silver-100);
}

.contact-modal-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.contact-modal-btn {
  width: 100%;
  justify-content: center;
  border: none;
}

body.contact-modal-open {
  overflow: hidden;
}

.contact-map-section {
  padding-bottom: var(--section-y);
}

.contact-map-head {
  margin-bottom: 1.75rem;
}

.contact-map-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 21 / 9;
  background: var(--bg-elevated);
}

.contact-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-map-frame {
    aspect-ratio: 4 / 3;
  }
}

/* Services page */
.services-page-hero-visual {
  margin-top: 3rem;
  position: relative;
}

.services-page-hero-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 7;
}

.services-page-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-page-hero-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), transparent 42%, rgba(20, 184, 166, 0.12));
  pointer-events: none;
  z-index: 1;
}

.services-intro {
  padding: var(--section-y) 0 0;
}

.services-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.services-intro-inner p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.85;
}

.services-block {
  padding: var(--section-y) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.012);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}

.service-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.service-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 4, 12, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.5rem 1.65rem;
}

.service-card-num {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: 0.65rem;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.service-card-body p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1.35rem;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-100);
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-self: flex-start;
  transition: border-color var(--t), background var(--t), transform var(--t);
}

.service-card-link:hover {
  border-color: var(--line-bright);
  background: rgba(139, 92, 246, 0.1);
  transform: translateX(3px);
}

.service-card-link svg {
  transition: transform var(--t);
}

.service-card-link:hover svg {
  transform: translateX(3px);
}

.services-page-cta {
  padding-bottom: calc(var(--section-y) * 0.75);
}

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

@media (max-width: 768px) {
  .services-page-hero-frame {
    aspect-ratio: 16 / 10;
  }

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

/* Service detail pages */
.service-detail-hero-visual {
  margin-top: 3rem;
  position: relative;
}

.service-detail-hero-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 7;
}

.service-detail-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-detail-hero-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), transparent 42%, rgba(20, 184, 166, 0.12));
  pointer-events: none;
  z-index: 1;
}

.service-detail-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.service-detail-breadcrumb a {
  color: var(--teal-400);
  transition: color var(--t);
}

.service-detail-breadcrumb a:hover {
  color: var(--cyan-400);
}

.service-detail-breadcrumb span[aria-hidden="true"] {
  opacity: 0.4;
}

.service-detail-overview {
  padding: var(--section-y) 0;
}

.service-detail-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.service-detail-overview-text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.service-detail-overview-text p:last-child {
  margin-bottom: 0;
}

.service-detail-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-detail-highlight {
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.012);
}

.service-detail-highlight h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.service-detail-highlight p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-detail-split {
  padding: var(--section-y) 0;
  background: var(--bg-elevated);
}

.service-detail-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.service-detail-split-layout--reverse .service-detail-split-visual {
  order: 2;
}

.service-detail-split-layout--reverse .service-detail-split-content {
  order: 1;
}

.service-detail-image-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.service-detail-image-frame--square {
  aspect-ratio: 4 / 3;
}

.service-detail-image-frame--wide {
  aspect-ratio: 16 / 9;
}

.service-detail-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.service-detail-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.service-detail-list-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--teal-400);
  opacity: 0.85;
  line-height: 1;
}

.service-detail-list-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.service-detail-list-item p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.7;
}

.service-detail-gallery {
  padding: var(--section-y) 0;
}

.service-detail-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.service-detail-gallery-caption {
  padding: 1rem 0.25rem 0;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-detail-outcomes {
  padding: var(--section-y) 0;
  background: var(--bg-elevated);
}

.service-detail-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.service-detail-outcome {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.012);
}

.service-detail-outcome h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.service-detail-outcome p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.65;
}

.service-detail-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  text-align: center;
}

.service-detail-nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.service-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t);
}

.service-detail-back:hover {
  color: var(--teal-400);
}

.service-detail-back svg {
  transition: transform var(--t);
}

.service-detail-back:hover svg {
  transform: translateX(-3px);
}

.service-detail-cta {
  padding-bottom: calc(var(--section-y) * 0.75);
}

@media (max-width: 1024px) {
  .service-detail-overview-grid,
  .service-detail-split-layout,
  .service-detail-split-layout--reverse .service-detail-split-visual,
  .service-detail-split-layout--reverse .service-detail-split-content {
    grid-template-columns: 1fr;
    order: unset;
  }

  .service-detail-split-visual {
    order: -1;
  }

  .service-detail-outcomes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-detail-hero-frame {
    aspect-ratio: 16 / 10;
  }

  .service-detail-gallery-grid {
    grid-template-columns: 1fr;
  }
}

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

  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }

  .preloader-orbit--1,
  .preloader-orbit--2,
  .preloader-orb--1,
  .preloader-orb--2,
  .preloader-icon-wrap {
    animation: none;
  }
}
