@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --aed-obsidian: #0A0A0A;
  --aed-dark: #111111;
  --aed-card: #161616;
  --aed-border: #222222;
  --aed-border-light: #2A2A2A;
  --aed-teal: #3DD6A3;
  --aed-teal-dim: rgba(61,214,163,0.12);
  --aed-teal-glow: rgba(61,214,163,0.05);
  --aed-bone: #F5F2EE;
  --bone-text-primary: #0A0A0A;
  --bone-text-secondary: #4A4A4A;
  --bone-text-muted: #888888;
  --bone-teal: #0F6E56;
  --bone-border: rgba(0,0,0,0.08);
  --aed-white: #FFFFFF;
  --aed-muted: #888888;
  --aed-sub: #555555;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --max-width: 1100px;
  --section-pad: 100px;
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--aed-dark);
  color: var(--aed-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }

[data-reveal="scale"] {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal="scale"].revealed {
  opacity: 1;
  transform: scale(1);
}

/* ── NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease-in-out),
              border-color 0.4s var(--ease-in-out);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo img { display: block; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--aed-white); }
.nav-links a[aria-current="page"] { color: var(--aed-teal); }
.nav-cta {
  padding: 9px 20px;
  background: var(--aed-teal);
  color: var(--aed-obsidian);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.88; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--aed-white);
  transition: all 0.25s ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--aed-obsidian);
  z-index: 200;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 24px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-menu a:hover { color: var(--aed-teal); }
.mobile-cta {
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: var(--aed-teal) !important;
  border: 1px solid var(--aed-teal);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-top: 16px;
}
.mobile-close {
  position: absolute;
  top: 28px; right: 40px;
  background: none;
  border: none;
  color: var(--aed-muted);
  font-size: 20px;
  cursor: pointer;
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 24px; }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--aed-obsidian);
  border-top: 1px solid var(--aed-border);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}
.footer-brand p {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--aed-muted);
  line-height: 1.7;
}
.footer-brand img { margin-bottom: 4px; display: block; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aed-muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-col a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--aed-teal); }
.footer-base {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 40px;
  border-top: 1px solid var(--aed-border);
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 300;
  color: var(--aed-sub);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px 40px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-base { flex-direction: column; gap: 8px; padding: 20px 24px; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: var(--aed-teal);
  color: var(--aed-obsidian);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary.large { padding: 16px 36px; font-size: 15px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--aed-white); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: transparent;
  color: var(--aed-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--aed-border-light);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-outline:hover { border-color: var(--aed-teal); color: var(--aed-teal); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: transparent;
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.25);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.btn-outline-dark:hover { border-color: #1a7a5e; color: #1a7a5e; }

.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: var(--aed-teal);
  color: var(--aed-obsidian);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.btn-teal:hover { opacity: 0.88; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
  animation: heroZoom 8s ease-out forwards;
}
.hero-slide.active {
  opacity: 1;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.4) 50%,
    rgba(10,10,10,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aed-teal);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  color: var(--aed-white);
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--aed-teal);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--aed-obsidian);
  border-bottom: 1px solid var(--aed-border);
}
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 0 48px;
  flex-shrink: 0;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--aed-white);
  line-height: 1;
  display: block;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--aed-teal);
}
.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aed-muted);
  margin-top: 8px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--aed-border);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .stats-inner { gap: 24px; }
  .stat { padding: 0 24px; }
  .stat-divider { display: none; }
}

/* ── FEATURED WORK ── */
.featured-work { padding: var(--section-pad) 0; background: var(--aed-dark); }
.section-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section-header { margin-bottom: 48px; }
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aed-teal);
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--aed-white);
}
.work-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  margin-bottom: 40px;
}
.work-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--aed-card);
}
.work-card.large {
  grid-row: 1 / 3;
  aspect-ratio: unset;
}
.work-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(30%);
  transition: filter 0.5s ease, transform 0.5s var(--ease-out);
}
.work-card:hover .work-img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.work-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(10,10,10,0.85));
  display: flex;
  align-items: flex-end;
  gap: 12px;
  transform: translateY(8px);
  transition: transform 0.35s var(--ease-out);
}
.work-card:hover .work-info { transform: translateY(0); }
.work-type {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aed-teal);
  position: absolute;
  top: 20px; left: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.work-card:hover .work-type { opacity: 1; }
.work-info h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--aed-white);
  flex: 1;
}
.work-arrow {
  font-size: 18px;
  color: var(--aed-teal);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
}
.work-card:hover .work-arrow { opacity: 1; transform: translateX(0); }
.section-cta { text-align: center; }
@media (max-width: 768px) {
  .work-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .work-card.large { grid-row: auto; aspect-ratio: 4/3; }
  .section-inner { padding: 0 24px; }
}

/* ── POSITION SECTION ── */
.position-section { padding: var(--section-pad) 0; background: var(--aed-bone); }
.position-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.position-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.position-text .eyebrow { color: #1a1a1a; opacity: 0.4; margin-bottom: 14px; }
.position-text p {
  font-size: 16px;
  font-weight: 300;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 18px;
}
.alexi-credit {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.alexi-thumb {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.alexi-credit strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.alexi-credit span {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}
.calendly-link {
  font-size: 13px;
  font-weight: 500;
  color: #1a7a5e;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}
.calendly-link:hover { gap: 8px; }
.position-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.position-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .position-inner { grid-template-columns: 1fr; gap: 40px; }
  .position-image { aspect-ratio: 4/3; order: -1; }
}

/* ── SERVICES OVERVIEW ── */
.services-overview { padding: var(--section-pad) 0; background: var(--aed-dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
  border: 1px solid var(--aed-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  padding: 40px 36px;
  background: var(--aed-card);
  transition: background 0.3s ease;
  position: relative;
}
.service-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px; right: 0; bottom: 40px;
  width: 1px;
  background: var(--aed-border);
}
.service-card:hover { background: #1a1a1a; }
.service-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--aed-teal);
  opacity: 0.4;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--aed-white);
  margin-bottom: 14px;
}
.service-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--aed-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--aed-teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}
.service-link:hover { gap: 8px; }
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card::after { display: none; }
}

/* ── ARIA SECTION ── */
.aria-section {
  padding: var(--section-pad) 0;
  background: var(--aed-obsidian);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.aria-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--aed-teal-glow);
  pointer-events: none;
}
.aria-inner { max-width: 600px; margin: 0 auto; padding: 0 40px; position: relative; }
.aria-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--aed-teal-dim);
  border: 1px solid rgba(61,214,163,0.25);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aed-teal);
  margin-bottom: 28px;
}
.aria-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--aed-white);
  margin-bottom: 20px;
}
.aria-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--aed-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ── PROCESS PREVIEW ── */
.process-preview {
  padding: var(--section-pad) 0;
  background: var(--aed-dark);
  text-align: center;
}
.process-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.process-step {
  text-align: center;
}
.step-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--aed-teal);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.step-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--aed-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.process-connector {
  color: var(--aed-border-light);
  font-size: 18px;
}
.process-note {
  font-size: 16px;
  font-weight: 300;
  color: var(--aed-muted);
  margin-bottom: 32px;
}

/* ── CLOSING CTA ── */
.closing-cta {
  padding: var(--section-pad) 0;
  background: var(--aed-obsidian);
  text-align: center;
}
.closing-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 40px;
}
.closing-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  color: var(--aed-white);
  margin-bottom: 20px;
}
.closing-cta h2 em { color: var(--aed-teal); font-style: italic; }
.closing-cta p {
  font-size: 16px;
  font-weight: 300;
  color: var(--aed-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero.short {
  padding: 140px 0 80px;
  background: var(--aed-obsidian);
}
.page-hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--aed-white);
  margin-bottom: 20px;
}
.page-hero-content h1 em { color: var(--aed-teal); font-style: italic; }
.page-hero-content p {
  font-size: 18px;
  font-weight: 300;
  color: var(--aed-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── SECTION UTILITIES ── */
.section-pad { padding: var(--section-pad) 0; }
.section-pad-sm { padding: 60px 0; }
.bg-dark { background: var(--aed-dark); }
.bg-obsidian { background: var(--aed-obsidian); }
.bg-bone { background: var(--aed-bone); }
.bg-card { background: var(--aed-card); }

/* ── PROCESS PAGE STAGES ── */
.process-stage {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: start;
  border-bottom: 1px solid var(--aed-border);
}
.process-stage:nth-child(even) .stage-image { order: -1; }
.process-stage:nth-child(even) { direction: rtl; }
.process-stage:nth-child(even) > * { direction: ltr; }
.stage-number span {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: var(--aed-teal);
  opacity: 0.3;
  line-height: 1;
}
.stage-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--aed-white);
  margin-bottom: 16px;
}
.stage-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--aed-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.stage-duration {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aed-teal);
  opacity: 0.7;
}
.stage-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.stage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.process-closing {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 40px;
  text-align: center;
}
.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--aed-white);
  line-height: 1.5;
  margin-bottom: 16px;
}
.process-closing cite {
  font-size: 13px;
  font-weight: 400;
  color: var(--aed-muted);
  font-style: normal;
}
@media (max-width: 768px) {
  .process-stage {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
  .process-stage:nth-child(even) { direction: ltr; }
  .stage-number span { font-size: 40px; }
}

/* ── BONE ACCENT SECTION ── */
.section-bone {
  background: #F5F2EE;
  color: #0A0A0A;
}
.section-bone h1,
.section-bone h2,
.section-bone h3,
.section-bone h4 {
  color: #0A0A0A;
}
.section-bone p {
  color: #4A4A4A;
}
.section-bone .eyebrow {
  color: rgba(0,0,0,0.4);
}
.section-bone a {
  color: #0F6E56;
}
.section-bone a:hover {
  color: #0A0A0A;
}
.section-bone .border-subtle {
  border-color: rgba(0,0,0,0.08);
}
.btn-on-bone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  background: #0A0A0A;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s ease;
}
.btn-on-bone:hover { opacity: 0.78; }
@media (max-width: 768px) {
  .hero-logo-lockup { display: none !important; }
  .section-bone { padding: 64px 0 !important; }
  .section-bone [style*="grid-template-columns: 100px"] {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .section-bone [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── SMALL MOBILE (≤ 480px) ── */
@media (max-width: 480px) {
  .hero-content { padding: 0 24px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .hero-scroll-hint { display: none; }
  .stats-inner { padding: 32px 24px; gap: 16px; justify-content: space-around; }
  .stat { padding: 8px 16px; min-width: 40%; text-align: center; }
  .stat-num { font-size: 40px; }
  .stat-suffix { font-size: 28px; }
  .stat-label { font-size: 10px; }
  .section-inner { padding: 0 20px; }
  .page-hero-content { padding: 0 24px; }
  .page-hero.short { padding: 120px 0 60px; }
  .closing-inner { padding: 0 24px; }
  .aria-inner { padding: 0 24px; }
  .footer-inner { padding: 0 20px 40px; }
  .footer-nav { grid-template-columns: 1fr; gap: 28px; }
  .footer-base { padding: 16px 20px; }
  .process-connector { display: none; }
  .process-strip { gap: 12px; justify-content: space-between; }
  .process-step { min-width: 60px; }
  .step-num { font-size: 22px; }
  .step-name { font-size: 11px; }
  .contact-track { padding: 24px 20px; }
  .wa-float { bottom: 16px; right: 16px; width: 48px; height: 48px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ── BONE LOGO FILTER ── */
.section-bone img[src*="logo-white"] {
  filter: brightness(0);
  opacity: 0.85;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
