/* ============================================================
   SERVE PLUS — Global Design System
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --dark-bg: #0A0A0A;
  --dark-surface: #111111;
  --light-bg: #F5F3EE;
  --light-surface: #EDEAE3;
  --accent: #C4A35A;
  --white: #FFFFFF;
  --muted-dark: #999999;
  --dark-text: #111111;
  --muted-light: #666666;
  --divider-light: #E0DDD6;
  --max-width: 1280px;
  --section-padding: 120px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Select arrow */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C4A35A' stroke-width='1.5' fill='none' stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  cursor: pointer;
  color: #444444;
}

.form-select option {
  color: #111111;
  background: #FFFFFF;
}

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

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

ul {
  list-style: none;
}

/* --- Typography --- */
.font-display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
}

.font-editorial {
  font-family: 'Cormorant Garamond', serif;
}

.font-body {
  font-family: 'Inter', sans-serif;
}

/* Section Labels */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 24px;
}

.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  margin-top: 8px;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-dark {
  background-color: var(--dark-bg);
  color: var(--white);
}

.section-light {
  background-color: var(--light-bg);
  color: var(--dark-text);
}

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

/* --- Gold Rule --- */
.gold-rule {
  height: 1px;
  background: var(--accent);
  border: none;
  margin: 0;
}

.light-rule {
  height: 1px;
  background: var(--divider-light);
  border: none;
  margin: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.nav-dark {
  background: transparent;
}

.nav.nav-scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(196, 163, 90, 0.2);
}

.nav.nav-light {
  background: var(--light-bg);
  box-shadow: 0 1px 0 var(--divider-light);
}

.nav.nav-light .nav-link {
  color: var(--dark-text);
}

.nav.nav-light .nav-logo {
  color: var(--dark-text);
}

.nav.nav-light .nav-cta {
  color: var(--accent);
  border-color: var(--accent);
}

.nav.nav-light .hamburger span {
  background: var(--dark-text);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.12em;
  color: var(--white);
  transition: color 0.2s;
}

.nav-logo:hover {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 10px 20px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--dark-bg);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-bg);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
}

.mobile-nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.2s;
  line-height: 1.1;
}

.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-cta {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 14px 28px;
  transition: all 0.2s ease;
  display: inline-block;
}

.mobile-cta:hover {
  background: var(--accent);
  color: var(--dark-bg);
}

.mobile-contact {
  margin-top: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(196, 163, 90, 0.2);
  padding: 80px 0 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--muted-dark);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-dark);
  transition: color 0.2s;
}

.footer-nav-link:hover {
  color: var(--accent);
}

.footer-contact {
  text-align: right;
}

.footer-contact-item {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted-dark);
  margin-bottom: 8px;
  transition: color 0.2s;
  display: block;
}

.footer-contact-item a {
  color: var(--muted-dark);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--accent);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--muted-dark);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 16px 36px;
  transition: all 0.2s ease;
  cursor: pointer;
  border-radius: 0;
  background: transparent;
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--dark-bg);
}

.btn-primary-fill {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-text);
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 16px 36px;
  transition: all 0.2s ease;
  cursor: pointer;
  border-radius: 0;
  width: 100%;
  text-align: center;
}

.btn-primary-fill:hover {
  background: transparent;
  color: var(--accent);
}

.btn-sub-copy {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-style: italic;
  color: var(--muted-dark);
  margin-top: 12px;
}

/* ============================================================
   HERO SHARED STYLES
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 32px;
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 130px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 36px;
}

.hero-h1-outline {
  -webkit-text-stroke: 2px var(--accent);
  color: transparent;
  display: block;
  /* Firefox fallback — uses paint-order */
  paint-order: stroke fill;
}

.hero-h1-solid {
  color: var(--white);
  display: block;
}

@media (max-width: 480px) {
  .hero-h1-outline {
    -webkit-text-stroke: 1.5px var(--accent);
  }
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* Geometric grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.04;
}

.hero-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 163, 90, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 163, 90, 0.8) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Hero bottom bar */
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid var(--accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
}

.hero-bottom-left {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(196, 163, 90, 0.7);
}

.hero-scroll {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.3);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* Page hero (non-home) */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 96px;
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  width: 100%;
}

/* ============================================================
   SHARED SECTION COMPONENTS
   ============================================================ */

/* Two-column editorial layout */
.two-col-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.editorial-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  color: var(--dark-text);
}

/* Gold link */
.gold-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gold-link:hover {
  opacity: 0.75;
}

/* ============================================================
   HOME — PILLARS SECTION
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.pillar {
  padding: 48px 48px 48px 0;
  position: relative;
}

.pillar:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: var(--accent);
}

.pillar:not(:first-child) {
  padding-left: 48px;
}

.pillar-numeral {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.pillar-rule {
  height: 1px;
  background: var(--accent);
  margin-bottom: 24px;
}

.pillar-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.pillar-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted-dark);
}

/* ============================================================
   HOME — SERVICES OVERVIEW
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--divider-light);
}

.service-card {
  padding: 40px;
  border-right: 1px solid var(--divider-light);
  border-bottom: 1px solid var(--divider-light);
  position: relative;
  transition: all 0.2s ease;
  cursor: default;
}

.service-card:nth-child(even) {
  border-right: none;
}

.service-card:nth-child(5),
.service-card:nth-child(6) {
  border-bottom: none;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s;
}

.service-card:hover::before {
  background: var(--accent);
}

.service-card:hover {
  box-shadow: 0 4px 24px rgba(196, 163, 90, 0.08);
  transform: translateY(-2px);
}

.service-numeral {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.service-descriptor {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.5;
}

/* ============================================================
   HOME — TRACK RECORD STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.stat-cell {
  padding: 48px;
  position: relative;
  text-align: left;
}

.stat-cell:not(:nth-child(3n))::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  bottom: 20%;
  width: 1px;
  background: var(--accent);
  opacity: 0.4;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 7vw, 90px);
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
  max-width: 220px;
}

.stats-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-style: italic;
  color: var(--muted-dark);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(196, 163, 90, 0.2);
  max-width: 720px;
}

/* ============================================================
   HOME — WHERE WE FIT (Split Section)
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 600px;
}

.split-left {
  background: var(--light-bg);
  padding: 100px 80px 100px 40px;
}

.split-left-inner {
  max-width: 640px;
  margin-left: auto;
}

.split-right {
  background: var(--dark-bg);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.split-right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--accent);
  opacity: 0.3;
}

.split-points {
  margin: 32px 0;
}

.split-point {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--dark-text);
  line-height: 1.6;
}

.split-point::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 400;
}

.split-bottom-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 40px;
}

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 24px;
}

.split-note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted-dark);
  line-height: 1.6;
  margin-top: 16px;
}

.split-note strong {
  color: var(--white);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: var(--section-padding) 0;
  background: var(--dark-bg);
}

.cta-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 100px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.cta-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
  max-width: 560px;
}

/* ============================================================
   ABOUT — PRINCIPLES GRID
   ============================================================ */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.principle-cell {
  padding: 60px;
  border-bottom: 1px solid rgba(196, 163, 90, 0.15);
  border-right: 1px solid rgba(196, 163, 90, 0.15);
}

.principle-cell:nth-child(even) {
  border-right: none;
}

.principle-cell:nth-child(3),
.principle-cell:nth-child(4) {
  border-bottom: none;
}

.principle-numeral {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.principle-rule {
  height: 1px;
  background: var(--accent);
  margin-bottom: 20px;
  width: 40px;
}

.principle-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.principle-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--muted-dark);
  line-height: 1.7;
}

/* ============================================================
   ABOUT — FOUNDER PROFILE
   ============================================================ */
.founder-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 80px;
  align-items: start;
}

.founder-photo-wrap {
  position: relative;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 2px solid var(--accent);
  display: block;
  background: var(--light-surface);
}

.founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border: 2px solid var(--accent);
  background: var(--light-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.founder-photo-placeholder span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--accent);
  opacity: 0.3;
  letter-spacing: 0.1em;
}

.founder-photo-placeholder span:last-child {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.founder-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  letter-spacing: 0.04em;
  color: var(--dark-text);
  line-height: 1;
  margin-bottom: 8px;
}

.founder-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--muted-light);
  margin-bottom: 24px;
}

.founder-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--dark-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.founder-languages {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted-light);
  margin-top: 20px;
}

.founder-note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: var(--muted-light);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--divider-light);
}

.founder-photo-img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--accent);
  object-fit: cover;
  object-position: top center;
}

/* ============================================================
   ABOUT — WHY US (STACKED LIST)
   ============================================================ */
.reasons-list {
  margin-top: 48px;
}

.reason-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding: 40px 0;
  border-top: 1px solid var(--accent);
  align-items: start;
  transition: background 0.2s;
  border-radius: 0;
}

.reason-row:hover {
  background: #161616;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
}

.reason-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: var(--white);
}

.reason-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--muted-dark);
  line-height: 1.7;
}

/* ============================================================
   ABOUT — WHERE WE'VE DELIVERED
   ============================================================ */
.delivered-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 48px;
}

.delivered-cell {
  padding: 48px;
  border-top: 2px solid var(--accent);
  border-right: 1px solid var(--divider-light);
  border-bottom: 1px solid var(--divider-light);
}

.delivered-cell:nth-child(even) {
  border-right: none;
}

.delivered-cell:nth-child(3),
.delivered-cell:nth-child(4) {
  border-bottom: none;
}

.delivered-category {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.delivered-items {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--dark-text);
  line-height: 1.8;
}

/* ============================================================
   SERVICES — DETAIL SECTIONS
   ============================================================ */
.service-detail {
  padding: var(--section-padding) 0;
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 60px;
  align-items: start;
}

.service-big-numeral {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 140px;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  letter-spacing: 0.02em;
  position: sticky;
  top: 100px;
}

.service-content-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 28px;
}

.service-body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.service-includes-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-bullet {
  display: flex;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.service-bullet::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

/* Services — Stat Callout */
.stat-callout {
  display: inline-flex;
  align-items: baseline;
  gap: 24px;
  padding: 32px 40px;
  border: 1px solid rgba(196, 163, 90, 0.3);
  margin-bottom: 36px;
}

.stat-callout-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--accent);
  line-height: 1;
}

.stat-callout-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted-dark);
  max-width: 200px;
  line-height: 1.5;
}

/* ============================================================
   SERVICES — ENGAGEMENT MODELS
   ============================================================ */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
}

.model-cell {
  padding: 48px 40px;
  border-top: 2px solid var(--accent);
  border-right: 1px solid var(--divider-light);
}

.model-cell:last-child {
  border-right: none;
}

.model-numeral {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.model-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--dark-text);
  margin-bottom: 16px;
}

.model-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--muted-light);
  line-height: 1.7;
}

.models-note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: var(--muted-light);
  margin-top: 40px;
}

/* ============================================================
   HOW WE WORK — FRAMEWORK
   ============================================================ */
.framework-container {
  margin-top: 64px;
}

.framework-line {
  display: flex;
  align-items: stretch;
  position: relative;
  padding-bottom: 0;
  margin-bottom: 48px;
}

/* Desktop horizontal connector */
.framework-stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.framework-stages::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--accent);
  z-index: 0;
}

.framework-stage {
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.stage-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.stage-numeral {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  text-align: center;
}

.stage-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--dark-text);
  text-align: center;
  margin-bottom: 16px;
}

.stage-body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.7;
  text-align: center;
}

/* ============================================================
   HOW WE WORK — OUTPUTS
   ============================================================ */
.outputs-list {
  margin-top: 32px;
}

.output-item {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--accent);
  padding: 24px 0;
  border-top: 1px solid rgba(196, 163, 90, 0.3);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.output-item:last-child {
  border-bottom: 1px solid rgba(196, 163, 90, 0.3);
}

.output-item::before {
  content: '— ';
}

/* ============================================================
   HOW WE WORK — WHO WE SERVE
   ============================================================ */
.segments-list {
  margin-top: 48px;
}

.segment-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  padding: 40px 0;
  border-top: 1px solid var(--accent);
  align-items: start;
  transition: background 0.2s;
}

.segment-row:hover {
  background: var(--light-surface);
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
}

.segment-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--dark-text);
}

.segment-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--muted-light);
  line-height: 1.7;
  padding-top: 6px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 80px;
  align-items: start;
}

.form-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: var(--dark-text);
  margin-bottom: 40px;
  line-height: 1.2;
}

.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--divider-light);
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--dark-text);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-bottom-color: var(--accent);
}

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

.form-note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-style: italic;
  color: var(--muted-light);
  margin-top: 16px;
}

.contact-details-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 32px;
}

.contact-detail-link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  transition: opacity 0.2s;
}

.contact-detail-link:hover {
  opacity: 0.75;
}

.contact-detail-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--dark-text);
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-note-block {
  margin-bottom: 24px;
}

.contact-note-block strong {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
  display: block;
  margin-bottom: 6px;
}

.contact-note-block p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.7;
}

/* ============================================================
   CONTACT CLOSING STRIP
   ============================================================ */
.closing-strip {
  padding: 80px 0;
  background: var(--dark-bg);
  border-top: 1px solid rgba(196, 163, 90, 0.15);
}

.closing-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 120px);
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}

.closing-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 20px;
}

.closing-contact {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted-dark);
  letter-spacing: 0.04em;
}

.closing-contact a {
  color: var(--muted-dark);
  transition: color 0.2s;
}

.closing-contact a:hover {
  color: var(--accent);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE — TABLET & MOBILE
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .two-col-editorial {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .pillar:not(:last-child)::after {
    display: none;
  }

  .pillar {
    padding: 40px 0;
    border-bottom: 1px solid rgba(196, 163, 90, 0.2);
  }

  .pillar:not(:first-child) {
    padding-left: 0;
  }

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

  .stat-cell:nth-child(2n)::after {
    display: none;
  }

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

  .split-right {
    min-height: 400px;
  }

  .split-right::before {
    display: none;
  }

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

  .service-card:nth-child(even) {
    border-right: 1px solid var(--divider-light);
  }

  .service-card:nth-child(5) {
    border-bottom: 1px solid var(--divider-light);
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .principle-cell:nth-child(even) {
    border-right: 1px solid rgba(196, 163, 90, 0.15);
  }

  .principle-cell:nth-child(3) {
    border-bottom: 1px solid rgba(196, 163, 90, 0.15);
  }

  .reason-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .delivered-cell:nth-child(even) {
    border-right: none;
  }

  .delivered-cell:nth-child(3) {
    border-bottom: 1px solid var(--divider-light);
  }

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

  .service-big-numeral {
    font-size: 80px;
    position: static;
  }

  .framework-stages {
    grid-template-columns: 1fr;
  }

  .framework-stages::before {
    display: none;
  }

  .framework-stage {
    padding: 0 0 40px;
    border-left: 1px solid rgba(196, 163, 90, 0.3);
    padding-left: 32px;
    text-align: left;
  }

  .stage-dot {
    margin: 0 0 20px;
    position: absolute;
    left: -5px;
  }

  .stage-numeral,
  .stage-title,
  .stage-body {
    text-align: left;
  }

  .segment-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .model-cell {
    border-right: none;
    border-bottom: 1px solid var(--divider-light);
  }

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

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .container {
    padding: 0 24px;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero-bottom-bar {
    padding: 16px 24px;
  }

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

  .stat-cell {
    padding: 32px 24px;
  }

  .stat-cell:nth-child(2n)::after {
    display: none;
  }

  .stat-cell:nth-child(odd)::after {
    display: block;
    top: 10%;
    bottom: 10%;
  }

  .split-left {
    padding: 64px 24px;
  }

  .split-right {
    padding: 64px 24px;
  }

  .framework-stage {
    position: relative;
  }

  .hero-bottom-bar {
    display: none;
  }

  .footer-inner {
    padding: 0 24px;
  }
}

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

  .stat-cell::after {
    display: none !important;
  }

  .hero-h1 {
    font-size: 56px;
  }

  .page-hero {
    padding: 120px 0 64px;
  }

  .cta-heading {
    font-size: 48px;
  }

  .pillar-numeral {
    font-size: 72px;
  }

  .principle-cell {
    padding: 40px 24px;
  }

  .delivered-cell {
    padding: 32px 0;
    border-right: none;
  }

  .reason-row {
    padding: 28px 0;
  }

  .service-detail-inner {
    gap: 24px;
  }

  .model-cell {
    padding: 32px 0;
  }
}
