/* ============================================================
   INTEGREN — REDESIGN
   Luxury editorial aesthetic · Bebas Neue + Playfair + Inter
   ============================================================ */

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

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  overflow-x: clip;
}
html::-webkit-scrollbar { display: none; }

:root {
  --black:   #000000;
  --white:   #FFFFFF;
  --grey-1:  #F5F5F5;
  --grey-2:  #E0E0E0;
  --grey-3:  #999999;
  --grey-4:  #555555;
  --accent:  #E8B4A0;
  --teal:    #0a9d9b;
  --serif:   'Playfair Display', Georgia, serif;
  --display: 'Bebas Neue', Impact, sans-serif;
  --sans:    'Inter', system-ui, sans-serif;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  overflow-x: clip;
}

img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* === PAGE FRAME ============================================== */
.page-border-top,
.page-border-bottom {
  position: fixed;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  z-index: 9999;
  pointer-events: none;
}
.page-border-top    { top: 0; }
.page-border-bottom { bottom: 0; }

/* === SCROLL PROGRESS ======================================== */
.scroll-progress {
  position: fixed;
  top: 2px; left: 0;
  height: 1px;
  background: var(--black);
  width: 0%;
  z-index: 9998;
  pointer-events: none;
  transition: width 0.05s linear;
}

/* === PAGE TRANSITION ======================================== */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s ease;
}
.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* === SCROLL REVEAL ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in      { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* === TYPOGRAPHY — MIXED HEADLINE ============================ */
.mixed-headline {
  font-size: clamp(64px, 9.5vw, 136px);
  line-height: 0.90;
  letter-spacing: -0.02em;
}
.display-word {
  font-family: var(--display);
  font-weight: 400;
  color: var(--black);
  display: block;
}
.serif-word {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--black);
  display: block;
  font-size: 1.08em;
  margin-left: 0.06em;
}

/* White variant (dark backgrounds) */
.mixed-headline.light .display-word,
.mixed-headline.light .serif-word { color: var(--white); }

/* Interior pages — slightly smaller headline */
.mixed-headline.sm {
  font-size: clamp(48px, 7vw, 100px);
}

/* Section labels */
.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-3);
  display: block;
  margin-bottom: 28px;
}

/* Index numbers */
.index-num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--grey-3);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  min-width: 44px;
}

/* Body text */
.body-text {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--grey-4);
  max-width: 420px;
}

/* === NAV ===================================================== */
.main-nav {
  position: fixed;
  top: 2px; left: 0; right: 0;
  height: 64px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--grey-2);
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 clamp(24px, 5vw, 80px);
}

.nav-logo a {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 26px;
  width: auto;
  filter: brightness(0); /* white logo → black for white nav bg */
}

.nav-links-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav-links-center a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-3);
  padding: 0 18px;
  transition: color 0.2s;
}
.nav-links-center a:hover,
.nav-links-center a.active { color: var(--black); }

.nav-sep {
  font-size: 10px;
  color: var(--grey-2);
  user-select: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta-btn {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 0;
  display: inline-block;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.nav-cta-btn:hover {
  background: var(--white);
  color: var(--black);
  box-shadow: inset 0 0 0 1px var(--black);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--black);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { }
.nav-hamburger.open span:nth-child(2) { }
.nav-hamburger.open span:nth-child(3) { }

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1002;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 clamp(28px, 7vw, 56px) 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.is-visible {
  display: flex;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Header: logo + close button */
.nav-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-bottom: clamp(36px, 8vh, 64px);
  flex-shrink: 0;
  border-bottom: 1px solid var(--grey-2);
}
.nav-overlay-logo-img {
  height: 24px;
  width: auto;
  filter: brightness(0);
  opacity: 0.9;
}
.nav-overlay-close {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nav-overlay-close:hover { opacity: 1; }

.nav-overlay a {
  font-family: var(--display);
  font-size: clamp(44px, 10vw, 72px);
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 4px;
  transform: translateX(-16px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s ease, color 0.2s;
  display: inline-block;
}
.nav-overlay a:hover { color: var(--grey-3); }
/* Links are now nth-child 2–5 (header div is first child) */
.nav-overlay.open a:nth-child(2) { transform: none; opacity: 1; transition-delay: 0.06s; }
.nav-overlay.open a:nth-child(3) { transform: none; opacity: 1; transition-delay: 0.11s; }
.nav-overlay.open a:nth-child(4) { transform: none; opacity: 1; transition-delay: 0.16s; }
.nav-overlay.open a:nth-child(5) { transform: none; opacity: 1; transition-delay: 0.21s; }

.nav-overlay-email {
  position: absolute;
  bottom: 40px;
  left: clamp(28px, 7vw, 56px);
  font-family: var(--sans);
  font-size: 11px !important;
  font-weight: 300;
  color: var(--grey-3) !important;
  letter-spacing: 0.04em;
  transition-delay: 0.26s !important;
  transform: translateX(0) !important;
}

/* === MARQUEE ================================================= */
.marquee-strip {
  border-top: 1px solid var(--grey-2);
  border-bottom: 1px solid var(--grey-2);
  padding: 18px 0;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 7%, black 93%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, black 7%, black 93%, transparent 100%);
  background: var(--white);
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 35s linear infinite;
}
.marquee-strip:hover .marquee-inner { animation-play-state: paused; }
.marquee-inner span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-2);
  flex-shrink: 0;
  padding-right: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === SECTION HELPERS ======================================== */
.section {
  padding: clamp(64px, 9vw, 120px) clamp(24px, 5vw, 80px);
}
.section-grey {
  background: var(--grey-1);
  border-top: 1px solid var(--grey-2);
  border-bottom: 1px solid var(--grey-2);
}
.section-black { background: var(--black); }

/* === HOME: HERO (full-bleed gradient) ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Canvas cloud sky */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Top info bar (number + label) */
.hero-top-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: calc(56px + 28px) clamp(24px, 5vw, 80px) 0;
}
/* On hero-page, the section already has top padding — reset hero-top-bar's own padding */
.hero-page .hero-top-bar { padding: 0; margin-bottom: clamp(32px, 5vw, 56px); }
/* About dark hero — top-bar positioned at top of section, not inline flow */
.hero-about .hero-top-bar {
  position: absolute;
  top: calc(56px + 28px);
  left: clamp(24px, 5vw, 80px);
  right: clamp(24px, 5vw, 80px);
  padding: 0;
  margin-bottom: 0;
}

.hero-page-num {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
}

.hero-top-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Main content — sits at bottom of hero */
.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(24px, 5vw, 80px) clamp(88px, 11vw, 130px);
}

/* Thin rule before sub-info */
.hero-rule {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 32px 0 24px;
  width: 100%;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero-sub-text {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.50);
  max-width: 360px;
  line-height: 1.85;
}

.hero-cta-link {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s;
}
.hero-cta-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

/* White corner wedge — bottom-left */
.hero-corner {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: clamp(180px, 22vw, 300px);
  height: clamp(60px, 7vw, 96px);
  background: var(--white);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 3;
}

/* Scroll indicator — bottom right */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: clamp(24px, 5vw, 80px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll span {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-lr;
}
.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 40%;
  background: rgba(255,255,255,0.6);
  animation: scroll-drop 1.9s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(300%); opacity: 0; }
}

/* Nav overrides when homepage is at top (transparent over gradient) */
body.page-home .main-nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
body.page-home .main-nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--grey-2);
}
body.page-home .main-nav .nav-logo img {
  filter: brightness(0) invert(1);
}
body.page-home .main-nav.scrolled .nav-logo img {
  filter: brightness(0);
}
body.page-home .main-nav .nav-links-center a {
  color: rgba(255,255,255,0.60);
}
body.page-home .main-nav.scrolled .nav-links-center a {
  color: var(--grey-3);
}
body.page-home .main-nav.scrolled .nav-links-center a.active,
body.page-home .main-nav.scrolled .nav-links-center a:hover {
  color: var(--black);
}
body.page-home .main-nav .nav-links-center a.active,
body.page-home .main-nav .nav-links-center a:hover {
  color: rgba(255,255,255,0.95);
}
body.page-home .main-nav .nav-sep { color: rgba(255,255,255,0.2); }
body.page-home .main-nav.scrolled .nav-sep { color: var(--grey-2); }
body.page-home .main-nav .nav-cta-btn {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
body.page-home .main-nav .nav-cta-btn:hover {
  background: rgba(255,255,255,0.92);
  color: var(--black);
  border-color: transparent;
  box-shadow: none;
}
body.page-home .main-nav.scrolled .nav-cta-btn {
  background: var(--black);
  color: var(--white);
  border: none;
}
body.page-home .main-nav .nav-hamburger span {
  background: var(--white);
}
body.page-home .main-nav.scrolled .nav-hamburger span {
  background: var(--black);
}

/* Generic transparent nav — used on dark-hero pages (about, etc.) via JS .nav-transparent class */
.main-nav.nav-transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
.main-nav.nav-transparent.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--grey-2);
}
.main-nav.nav-transparent .nav-logo img {
  filter: brightness(0) invert(1);
}
.main-nav.nav-transparent.scrolled .nav-logo img {
  filter: brightness(0);
}
.main-nav.nav-transparent .nav-links-center a {
  color: rgba(255,255,255,0.60);
}
.main-nav.nav-transparent.scrolled .nav-links-center a {
  color: var(--grey-3);
}
.main-nav.nav-transparent .nav-links-center a.active,
.main-nav.nav-transparent .nav-links-center a:hover {
  color: rgba(255,255,255,0.95);
}
.main-nav.nav-transparent.scrolled .nav-links-center a.active,
.main-nav.nav-transparent.scrolled .nav-links-center a:hover {
  color: var(--black);
}
.main-nav.nav-transparent .nav-sep { color: rgba(255,255,255,0.2); }
.main-nav.nav-transparent.scrolled .nav-sep { color: var(--grey-2); }
.main-nav.nav-transparent .nav-cta-btn {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.main-nav.nav-transparent .nav-cta-btn:hover {
  background: rgba(255,255,255,0.92);
  color: var(--black);
  border-color: transparent;
  box-shadow: none;
}
.main-nav.nav-transparent.scrolled .nav-cta-btn {
  background: var(--black);
  color: var(--white);
  border: none;
}
.main-nav.nav-transparent .nav-hamburger span {
  background: var(--white);
}
.main-nav.nav-transparent.scrolled .nav-hamburger span {
  background: var(--black);
}

/* Placeholder hint (image cards, work cards) */
.img-placeholder-hint {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.img-placeholder-hint p {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 2.2;
  max-width: 180px;
}

.hero-below-rule {
  height: 1px;
  background: var(--grey-2);
}

/* === HOME: SERVICES PREVIEW ================================= */
.services-preview {
  padding: clamp(64px, 9vw, 120px) clamp(24px, 5vw, 80px);
}

.services-preview-header {
  margin-bottom: clamp(24px, 3vw, 40px);
}
.services-preview-header .mixed-headline .display-word,
.services-preview-header .mixed-headline .serif-word {
  display: inline;
}
.services-preview-header .mixed-headline {
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.services-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  column-gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}

.services-photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--grey-1);
  border: 1px solid var(--grey-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-photo-placeholder span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-3);
}

/* Photo — left column, fills grid row height */
.services-preview-photo {
  overflow: hidden;
  position: relative;
  min-height: 200px;
  box-shadow: 8px 8px 0 0 var(--grey-2);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.services-preview-photo:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 0 var(--grey-2), 0 8px 24px rgba(0,0,0,0.08);
}

.services-preview-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-preview-photo .img-placeholder-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-preview-photo .img-placeholder-hint p {
  color: var(--grey-3);
}

/* Accordion list */
.services-list { border-top: 1px solid var(--grey-2); }

.svc-item { border-bottom: 1px solid var(--grey-2); }

.svc-item-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--black);
  transition: background 0.2s;
}
.svc-item-header:hover { background: var(--grey-1); }

.svc-item-name {
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex: 1;
  line-height: 1;
}

.svc-item-toggle {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 300;
  color: var(--grey-3);
  transition: transform 0.3s var(--ease), color 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.svc-item.open .svc-item-toggle {
  transform: rotate(45deg);
  color: var(--black);
}

.svc-item-body {
  height: 0;
  overflow: hidden;
  transition: height 0.45s var(--ease);
}

.svc-item-content {
  padding: 4px 0 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.svc-item-desc {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--grey-4);
  line-height: 1.7;
  max-width: 340px;
}

.svc-learn-more {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--black);
  border: 1px solid var(--black);
  padding: 10px 20px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.svc-learn-more:hover {
  background: var(--black);
  color: var(--white);
}

/* === HOME: PROCESS ========================================== */

/* Two-column top: headline+text left, photo right */
.process-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
  margin-bottom: 60px;
}

.process-top-left {}
.process-headline-line1 {
  display: block;
  white-space: nowrap;
}
.process-headline-line1 .display-word,
.process-headline-line1 .serif-word {
  display: inline;
}
.process-headline-line2 {
  display: block;
}

.process-top-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-4);
  line-height: 1.85;
  max-width: 520px;
  margin-top: 24px;
}

/* Editorial photo for process section */
.process-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--grey-1);
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 0 0 var(--grey-2);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.process-photo:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 0 var(--grey-2), 0 8px 24px rgba(0,0,0,0.08);
}

.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 4-step columns */
.process-wrap {
  border-top: 1px solid var(--grey-2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  padding: 40px 36px;
  border-right: 1px solid var(--grey-2);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: default;
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child  { border-right: none; padding-right: 0; }
.process-step:hover {
  background: var(--grey-1);
  transform: translateY(-4px);
  border-top: 1px solid var(--grey-2);
  margin-top: -1px;
}
.process-step:first-child:hover { padding-left: 0; }

.process-step-icon {
  color: var(--black);
  margin-bottom: 24px;
  transition: transform 0.3s var(--ease);
}
.process-step:hover .process-step-icon {
  transform: scale(1.12);
}

.process-step-num {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-bottom: 18px;
  display: block;
}
.process-step-title {
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1;
}
.process-step-body {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-4);
  line-height: 1.8;
  max-width: 180px;
}

/* Process section — tighter bottom so gap to work-preview isn't huge */
.process-section { padding-bottom: 0; }

/* === HOME: CAPABILITIES ===================================== */
.capabilities-section {
  padding: clamp(64px, 9vw, 120px) clamp(24px, 5vw, 80px);
}
.capabilities-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}
.capabilities-header .mixed-headline {
  margin-top: 12px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-2);
  border: 1px solid var(--grey-2);
}

/* All cards */
.cap-card {
  background: var(--white);
  padding: clamp(28px, 3.5vw, 44px);
  transition: background 0.3s var(--ease);
}
.cap-card:hover { background: var(--grey-1); }

/* Featured card spans 2 cols, has side-by-side layout */
.cap-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.cap-card-tag {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-3);
  display: block;
  margin-bottom: 14px;
}
.cap-card-title {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 14px;
}
.cap-card-body {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--grey-4);
  line-height: 1.8;
}

/* Dark variant */
.cap-card--dark {
  background: var(--black);
}
.cap-card--dark:hover { background: #1a1a1a; }
.cap-card--dark .cap-card-tag { color: rgba(255,255,255,0.35); }
.cap-card--dark .cap-card-title { color: var(--white); }
.cap-card--dark .cap-card-body { color: rgba(255,255,255,0.55); }
.cap-card-link {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 3px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cap-card-link:hover { opacity: 0.5; }

/* Google Business Mockup */
.cap-card-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gmb-panel {
  background: var(--white);
  border: 1px solid #dadce0;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.gmb-business-name {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  color: #202124;
  margin-bottom: 4px;
}
.gmb-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.gmb-stars { color: #f5a623; font-size: 13px; letter-spacing: 1px; }
.gmb-review-count {
  font-family: var(--sans);
  font-size: 11px;
  color: #70757a;
}
.gmb-category {
  font-family: var(--sans);
  font-size: 11px;
  color: #70757a;
  margin-bottom: 16px;
}
.gmb-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gmb-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid #dadce0;
  color: #1a73e8;
  background: var(--white);
  cursor: default;
  white-space: nowrap;
}
.gmb-btn--primary {
  background: #1a73e8;
  color: var(--white);
  border-color: #1a73e8;
}

/* === HOME: WORK PREVIEW ===================================== */
.work-preview {
  padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 80px);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
  background: var(--grey-2);
}

.work-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: block;
}

.work-card-bg {
  width: 100%; height: 100%;
  position: absolute;
  inset: 0;
  transition: transform 0.55s var(--ease);
}
.work-card:hover .work-card-bg { transform: scale(1.03); }

.work-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  z-index: 3;
  transition: opacity 0.3s ease;
}
.work-card:hover .work-card-label { opacity: 0; }

.work-card-label-name {
  font-family: var(--display);
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.work-card-label-cat {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 4;
  transition: opacity 0.4s ease;
}
.work-card:hover .work-card-overlay { opacity: 1; }

.work-card-overlay-name {
  font-family: var(--display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}
.work-card-overlay-cat {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}

/* Placeholder hint inside work cards */
.work-card .img-placeholder-hint {
  z-index: 2;
}

.work-view-all {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
.work-view-all a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.work-view-all a:hover { color: var(--grey-3); border-color: var(--grey-3); }

/* === HOME: META CALLOUT ===================================== */
.meta-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--grey-2);
  border-bottom: 1px solid var(--grey-2);
  background: var(--white);
}
.meta-callout-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-3);
}
.meta-callout-link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.meta-callout-link:hover { color: var(--grey-3); border-color: var(--grey-3); }

/* === HOME: CTA GRADIENT SWEEP =============================== */
.home-cta .mixed-headline {
  font-size: clamp(52px, 7.5vw, 120px);
  line-height: 1.0;
}

.cta-grad-line {
  display: block;
  white-space: nowrap;
  overflow: visible;
  padding-bottom: 0.12em;
  background: linear-gradient(
    to right,
    #CF645A 0%, #A85560 25%, #706878 48%,
    #ffffff 48%, #ffffff 100%
  );
  background-size: 210% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 3.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cta-grad-line.animated {
  background-position: 0% 0;
}
.cta-grad-line .serif-word,
.cta-grad-line .display-word {
  display: inline;
  color: inherit;
  -webkit-text-fill-color: inherit;
}

/* === HOME: CTA (BLACK) ====================================== */
.home-cta {
  background: var(--black);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
  text-align: center;
}
.home-cta-sub {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-top: 24px;
  line-height: 1.7;
}
.home-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline-white:hover { background: var(--white); color: var(--black); }
.btn-text-white {
  color: rgba(255,255,255,0.35);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 14px 8px;
  transition: color 0.2s;
  display: inline-block;
}
.btn-text-white:hover { color: var(--white); }

/* === INTERIOR PAGE HERO ===================================== */
.hero-page {
  min-height: 42vh;
  padding: calc(56px + clamp(52px, 8vw, 96px)) clamp(24px, 5vw, 80px) clamp(48px, 6vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--grey-2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Book page gets full height */
.hero-page.full-height {
  min-height: 100vh;
  justify-content: center;
}

/* About page hero — dark, two-column, canvas gradient */
.hero-about {
  background: #1a1418;
  border-bottom: none;
}
.hero-about #about-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-services {
  background: #12161e;
  border-bottom: none;
}
.hero-services #services-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-sub-sm {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-3);
  margin-top: 20px;
  letter-spacing: 0.06em;
}

/* === ABOUT PAGE ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(64px, 8vw, 120px);
  align-items: start;
}

.about-img-wrap {
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 0 0 var(--grey-2);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.about-img-wrap:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 0 var(--grey-2), 0 8px 24px rgba(0,0,0,0.08);
}

.about-img-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  height: 600px;
  background: linear-gradient(170deg, #1A1A1A 0%, #2D2D2D 55%, #1A1A1A 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.about-img-caption {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 2;
}

.about-content-right .section-label { margin-top: 0; }

.about-stats {
  display: flex;
  gap: 44px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.about-stat { }
.about-stat-num {
  font-family: var(--display);
  font-size: 52px;
  color: var(--black);
  line-height: 1;
  display: block;
}
.about-stat-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-top: 6px;
  display: block;
}

/* Values — full-width alternating sections */
.value-block {
  padding: clamp(72px, 10vw, 128px) clamp(24px, 5vw, 80px);
}
.value-block--dark { background: var(--black); }
.value-block--light { background: var(--white); border-top: 1px solid var(--grey-2); border-bottom: 1px solid var(--grey-2); }

.value-block-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}
.value-block-inner--flip { direction: rtl; }
.value-block-inner--flip > * { direction: ltr; }

.value-block-num {
  display: block;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.3);
}
.value-block--light .value-block-num { color: var(--grey-3); }

.value-block-content .mixed-headline {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  margin-bottom: 28px;
}

.value-block-text {
  font-family: var(--sans);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
}
.value-block--light .value-block-text { color: var(--grey-4); }

.value-block-photo {
  overflow: hidden;
}
.value-block-photo img {
  width: 100%;
  height: clamp(300px, 40vw, 520px);
  object-fit: cover;
  display: block;
}

/* Stat card (used in value block 002) */
.value-stat-card {
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: clamp(300px, 40vw, 520px);
  gap: 16px;
  border: 1px solid var(--grey-2);
}
.value-stat-num {
  font-family: var(--display);
  font-size: clamp(72px, 10vw, 136px);
  color: var(--white);
  line-height: 1;
}
.value-stat-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* Free concept offer section */
.free-concept-section {
  background: var(--white);
  border-top: 1px solid var(--grey-2);
  border-bottom: 1px solid var(--grey-2);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 5vw, 80px);
}
.free-concept-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.free-concept-inner .mixed-headline {
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 0.95;
  margin-bottom: 16px;
}
.free-concept-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.free-concept-text {
  font-family: var(--sans);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 300;
  line-height: 1.9;
  color: var(--grey-4);
  margin-bottom: 0;
}
.free-concept-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.25s ease;
  margin-bottom: 24px;
}
.free-concept-btn:hover {
  background: #333;
}
.free-concept-fine {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--grey-3);
  text-transform: uppercase;
  text-align: right;
}

/* === SERVICES PAGE ========================================== */

/* Service sections — alternating layout */
.svc-section {
  border-top: 1px solid var(--grey-2);
}
.svc-section--light { background: var(--white); }
.svc-section--dark  { background: var(--black); border-color: rgba(255,255,255,0.08); }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* Content pane — left or right half, placeholder for interactive element */
.svc-content-pane {
  position: relative;
  overflow: hidden;
  background: var(--grey-1);
  min-height: 500px;
}
.svc-section--dark .svc-content-pane {
  background: #0e1018;
}

/* Text pane */
.svc-text-pane {
  padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  min-width: 0;
  background: var(--white);
}

.svc-index {
  display: block;
  margin-bottom: 20px;
  color: var(--grey-3);
}

.svc-text-pane .mixed-headline {
  font-size: clamp(32px, 3.8vw, 58px);
  line-height: 0.95;
  margin-bottom: 28px;
}
.svc-headline .display-word,
.svc-headline .serif-word {
  display: inline;
}

.svc-desc {
  font-family: var(--sans);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 300;
  line-height: 1.9;
  color: var(--grey-4);
  margin-bottom: 32px;
}

.svc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  padding: 0;
  border-top: 1px solid var(--grey-2);
  padding-top: 24px;
}
.svc-features li {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--grey-4);
  letter-spacing: 0.04em;
  padding-left: 16px;
  position: relative;
}
.svc-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--grey-3);
}
.svc-features--light li { color: rgba(255,255,255,0.5); }
.svc-features--light li::before { color: rgba(255,255,255,0.2); }
.svc-features--light { border-color: rgba(255,255,255,0.08); }

.svc-pricing-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}
.svc-pricing {
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 30px);
  letter-spacing: 0.04em;
  color: var(--black);
}
.svc-pricing-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--grey-3);
}

.svc-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 3px;
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.svc-cta:hover { opacity: 0.5; }
.svc-cta--light {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

/* Dark content pane variant */
.svc-content-pane--dark {
  background: var(--black);
  background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── AI Automation Flow (aflow) ─────────────────────────────── */
.aflow-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 36px) clamp(22px, 4vw, 40px);
}

/* Header */
.aflow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(20px, 3vw, 28px);
  flex-shrink: 0;
}
.aflow-live-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(232, 180, 160, 0.10);
  border: 1px solid rgba(232, 180, 160, 0.22);
  border-radius: 100px;
  padding: 5px 13px 5px 10px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 180, 160, 0.85);
}
.aflow-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: aflowBlink 1.6s ease-in-out infinite;
}
@keyframes aflowBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.aflow-run-id {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}

/* Flow column */
.aflow-flow {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  min-height: 0;
}

/* Cards */
.aflow-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
  background: rgba(255,255,255,0.025);
  transition: border-color 0.38s ease, background 0.38s ease, box-shadow 0.38s ease;
  position: relative;
}
.aflow-card.aflow-active {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.055);
  box-shadow: 0 0 0 5px rgba(255,255,255,0.015), 0 4px 28px rgba(255,255,255,0.05);
}
.aflow-card--ready.aflow-active {
  border-color: rgba(232, 180, 160, 0.42);
  background: rgba(232, 180, 160, 0.06);
  box-shadow: 0 0 0 5px rgba(232, 180, 160, 0.025), 0 4px 28px rgba(232, 180, 160, 0.10);
}
.aflow-card--actions {
  align-items: flex-start;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Card icon */
.aflow-card-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: border-color 0.38s ease, color 0.38s ease, background 0.38s ease;
}
.aflow-card.aflow-active .aflow-card-icon {
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
}
.aflow-card--ready.aflow-active .aflow-card-icon {
  border-color: rgba(232, 180, 160, 0.4);
  color: rgba(232, 180, 160, 0.9);
  background: rgba(232, 180, 160, 0.06);
}

/* Gear animation */
.aflow-gear { display: block; }
.aflow-card.aflow-active .aflow-gear {
  animation: aflowSpin 1.8s linear infinite;
}
@keyframes aflowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Card text */
.aflow-card-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.aflow-card-label {
  font-family: var(--sans);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.22);
  transition: color 0.38s ease;
  white-space: nowrap;
}
.aflow-card.aflow-active .aflow-card-label { color: rgba(255,255,255,0.88); }
.aflow-card--ready.aflow-active .aflow-card-label { color: rgba(232, 180, 160, 0.95); }
.aflow-card-sub {
  font-family: var(--sans);
  font-size: clamp(9px, 0.8vw, 10px);
  font-weight: 300;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.1);
  transition: color 0.38s ease;
  white-space: nowrap;
}
.aflow-card.aflow-active .aflow-card-sub { color: rgba(255,255,255,0.35); }

/* Status badge */
.aflow-card-status {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.12);
  transition: color 0.38s ease;
  flex-shrink: 0;
}
.aflow-card.aflow-active .aflow-card-status { color: rgba(255,255,255,0.32); }
.aflow-card--ready.aflow-active .aflow-card-status { color: rgba(232, 180, 160, 0.65); }

/* Vertical connectors */
.aflow-conn {
  position: relative;
  width: 2px;
  height: clamp(22px, 3vw, 32px);
  margin: 0 auto;
  flex-shrink: 0;
  align-self: center;
}
.aflow-conn-track {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
}
.aflow-conn-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: rgba(255,255,255,0.4);
  transition: height 0.72s cubic-bezier(0.4, 0, 0.2, 1);
}
.aflow-conn.aflow-traveling .aflow-conn-fill { height: 100%; }
.aflow-conn-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
  opacity: 0;
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
}
.aflow-conn.aflow-traveling .aflow-conn-dot {
  animation: aflowDot 0.72s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes aflowDot {
  0%   { top: 0%;   opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Actions list inside actions card */
.aflow-actions-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  margin-top: 8px;
}
.aflow-action-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: clamp(10px, 0.85vw, 11px);
  font-weight: 300;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.14);
  transition: color 0.32s ease;
}
.aflow-action-row.aflow-done { color: rgba(255,255,255,0.62); }
.aflow-action-check {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.32s ease, background 0.32s ease, color 0.32s ease;
  color: transparent;
}
.aflow-action-row.aflow-done .aflow-action-check {
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
}

/* Footer stats */
.aflow-footer {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: clamp(16px, 2.5vw, 24px);
  padding-top: clamp(12px, 1.8vw, 18px);
  flex-shrink: 0;
}
.aflow-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}
.aflow-stat + .aflow-stat {
  border-left: 1px solid rgba(255,255,255,0.06);
  padding-left: 16px;
  margin-left: 16px;
}
.aflow-stat-num {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  transition: color 0.5s ease;
}
.aflow-stat-num.aflow-bump {
  color: rgba(255,255,255,0.85);
}
.aflow-footer.aflow-complete .aflow-stat-num {
  color: rgba(255,255,255,1);
}

/* Before / After slider */
.ba-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0a0a;
}
.ba-before img,
.ba-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  pointer-events: none;
  background: #0a0a0a;
}
.ba-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s linear;
  z-index: 1;
}
.ba-label {
  position: absolute;
  bottom: 20px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.45);
  padding: 5px 10px;
  backdrop-filter: blur(4px);
}
.ba-label--before { right: 16px; }
.ba-label--after  { left: 16px; }

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
  transition: left 0.05s linear;
  z-index: 2;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.ba-handle svg { display: block; }

.services-full-list {
  border-top: 1px solid var(--grey-2);
}

.service-item {
  border-bottom: 1px solid var(--grey-2);
}

.service-item-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 16px;
  margin: 0 -16px;
  transition: background 0.2s;
}
.service-item:hover .service-item-header,
.service-item.open .service-item-header { background: var(--grey-1); }

.service-item-name {
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  flex: 1;
  line-height: 1;
}

.service-item-toggle {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  color: var(--grey-3);
  transition: transform 0.35s var(--ease), color 0.2s;
  flex-shrink: 0;
  line-height: 1;
  width: 24px;
  text-align: center;
  user-select: none;
}
.service-item.open .service-item-toggle {
  transform: rotate(45deg);
  color: var(--black);
}

.service-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.service-item.open .service-item-body { max-height: 480px; }

.service-item-content {
  padding: 4px 16px 36px calc(44px + 16px);
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.service-features li {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-4);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}
.service-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--grey-3);
}
.service-pricing {
  font-family: var(--display);
  font-size: 22px;
  color: var(--black);
  letter-spacing: 0.05em;
  margin-top: 18px;
  display: inline-block;
}
.service-pricing-sub {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--grey-3);
  letter-spacing: 0.08em;
  margin-top: 2px;
  display: block;
}

/* Why section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  margin-top: 60px;
}
.why-item {}
.why-item-title {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 12px;
}
.why-item-body {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--grey-4);
  line-height: 1.8;
}

/* === BOOK PAGE ============================================== */

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  margin-top: 60px;
}

.book-what-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-bottom: 20px;
  display: block;
}

.book-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.book-bullets li {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-4);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
}
.book-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--grey-3);
}

.book-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.book-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--grey-3);
}
.book-meta-item svg { color: var(--grey-4); flex-shrink: 0; }

.book-quote {
  padding: 22px 24px;
  border-left: 2px solid var(--grey-2);
}
.book-quote p {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--grey-4);
  line-height: 1.7;
}
.book-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-3);
  font-style: normal;
}

.calendly-wrapper {
  border: 1px solid var(--grey-2);
  background: var(--white);
  overflow: hidden;
}

.book-reassurance {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--grey-3);
  text-align: center;
  letter-spacing: 0.04em;
}

/* === FAQ ==================================================== */
.faq-section {
  padding: clamp(64px, 9vw, 120px) clamp(24px, 5vw, 80px);
}
.faq-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.faq-header .mixed-headline {
  font-size: clamp(36px, 4.5vw, 64px);
}
.faq-header-sub {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--grey-3);
  line-height: 1.75;
  margin-top: 18px;
}
.faq-list { border-top: 1px solid var(--grey-2); }
.faq-item { border-bottom: 1px solid var(--grey-2); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--grey-4);
  transition: color 0.2s;
}
.faq-trigger:hover,
.faq-trigger[aria-expanded="true"] { color: var(--black); }
.faq-icon {
  flex-shrink: 0;
  color: var(--grey-3);
  transition: transform 0.3s var(--ease);
}
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.faq-body.open { grid-template-rows: 1fr; }
.faq-body-inner { overflow: hidden; }
.faq-body p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-4);
  line-height: 1.8;
  padding-bottom: 24px;
}
.faq-action-link {
  display: inline-block;
  margin-bottom: 24px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.faq-action-link:hover { color: var(--grey-3); border-color: var(--grey-3); }
.faq-btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }

/* === CTA BANNER (shared) ==================================== */
.cta-banner {
  background: var(--black);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 80px);
  text-align: center;
}
.cta-banner-sub {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-top: 22px;
  line-height: 1.7;
}
.cta-banner-btn {
  display: inline-block;
  margin-top: 44px;
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: background 0.2s, color 0.2s;
}
.cta-banner-btn:hover { background: var(--white); color: var(--black); }

/* === FOOTER ================================================= */
footer {
  background: var(--black);
  padding: 72px clamp(24px, 5vw, 80px) 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  margin-bottom: 40px;
}
.footer-logo img {
  height: 24px;
  width: auto;
  /* logo is white — looks correct on black footer bg, no filter needed */
  opacity: 0.9;
}
.footer-tagline {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  margin-top: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
.footer-col-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 16px;
  display: block;
}
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-links a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: var(--white); }
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-info a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.9;
  transition: color 0.2s;
}
.footer-contact-info a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy,
.footer-note {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.04em;
}

/* === FOOTER: WHITE (all pages) ============================== */
footer {
  background: var(--white) !important;
  border-top: 1px solid var(--grey-2) !important;
}
.footer-logo img { filter: brightness(0); opacity: 1; }
.footer-tagline { color: var(--grey-3) !important; }
.footer-col-label { color: var(--grey-3) !important; }
.footer-nav-links a { color: var(--grey-4) !important; }
.footer-nav-links a:hover { color: var(--black) !important; }
.footer-contact-info a { color: var(--grey-4) !important; }
.footer-contact-info a:hover { color: var(--black) !important; }
.footer-bottom { border-top-color: var(--grey-2) !important; }
.footer-copy,
.footer-note { color: var(--grey-3) !important; }

/* === RESPONSIVE ============================================= */
@media (max-width: 1100px) {
  .services-preview-grid { grid-template-columns: 1fr; }
  .services-preview-photo { aspect-ratio: 4 / 3; }
  .process-top { grid-template-columns: 1fr; }
  .process-photo { aspect-ratio: 16 / 9; max-height: 340px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap img,
  .about-img-placeholder { height: 420px; }

  .process-top { grid-template-columns: 1fr; }
  .process-wrap { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--grey-2); padding: 28px 0; }
  .process-step:last-child { border-bottom: none; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .value-body { max-width: 200px; font-size: 11px; }
}

@media (max-width: 768px) {
  /* ── NAV: hamburger on right ── */
  .main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-links-center { display: none; }
  .nav-cta-btn { display: none; }
  .nav-hamburger { display: flex; }

  /* ── HERO: move content up, slightly larger ── */
  .hero-body {
    justify-content: center;
    padding-bottom: clamp(48px, 8vw, 72px);
    padding-top: clamp(32px, 6vw, 56px);
  }
  .mixed-headline { font-size: clamp(52px, 13vw, 100px); }
  .mixed-headline.sm { font-size: clamp(46px, 12vw, 80px); }
  .hero-top-label { display: none; }
  .hero-bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
  .hero-corner { width: clamp(120px, 30vw, 200px); height: 60px; }

  /* ── PROCESS STEPS: cleaner border treatment ── */
  .process-top { grid-template-columns: 1fr; margin-bottom: 40px; }
  .process-wrap { grid-template-columns: 1fr; border-top: none; }
  .process-step {
    border-right: none;
    border-left: none;
    border-top: 1px solid var(--grey-2);
    border-bottom: none;
    padding: 28px 0;
  }
  .process-wrap { border-top: 1px solid var(--grey-2); }
  .process-step:last-child { border-bottom: 1px solid var(--grey-2); }

  .value-body { display: none; }

  /* ── FOOTER: logo full-width top row, nav + contact 2-col below ── */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }
  .footer-top > div:first-child {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* ── GRIDS: collapse all 2-col layouts ── */
  .value-block-inner { grid-template-columns: 1fr; }
  .value-block-inner--flip { direction: ltr; }
  .value-block-photo img { height: clamp(220px, 55vw, 340px); }
  .free-concept-inner { grid-template-columns: 1fr; gap: 32px; }
  .svc-grid { grid-template-columns: 1fr; min-height: unset; }
  .svc-content-pane { min-height: 360px; }
  .svc-text-pane { padding: 36px 24px; }
  .faq-inner,
  .faq-section--dark .faq-inner { grid-template-columns: 1fr; }
  .book-section-inner { grid-template-columns: 1fr; }

  /* ── BOOK PAGE MOBILE ── */
  .book-mobile-cta {
    display: inline-block;
    margin-top: 28px;
    padding: 16px 32px;
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
  }
  .book-cal { display: none; }

  /* ── OTHER ── */
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .home-cta-btns { flex-direction: column; align-items: center; }
  .meta-callout { flex-direction: column; align-items: flex-start; gap: 12px; }

  .section { padding: 60px 24px; }
  .services-preview,
  .work-preview { padding: 60px 24px; }
  .capabilities-section { padding: 60px 24px; }
  .capabilities-grid { grid-template-columns: 1fr 1fr; }
  .cap-card--featured { grid-column: span 2; grid-template-columns: 1fr; }
  .cap-card-mockup { justify-content: flex-start; margin-top: 24px; }

  /* ── BOOK PAGE: stack booking section ── */
  .book-section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .about-stats { flex-direction: row; flex-wrap: nowrap; gap: 0; }
  .about-stat { flex: 1; }
  .about-stat-num { font-size: 38px; }
  .hero-scroll { display: none; }
}

/* ── Book a Call Page ──────────────────────────────────────── */
/* ── BOOK PAGE HERO ─────────────────────────────────────────── */
.hero-book {
  background: #12161e;
  border-bottom: none;
}
.hero-book #book-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ── BOOK SECTION (below hero) ──────────────────────────────── */
.book-section {
  padding: clamp(64px, 9vw, 112px) clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--grey-2);
}
.book-section-inner {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.book-section-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.book-section-info .mixed-headline {
  margin-bottom: clamp(28px, 4vw, 44px);
}
.book-section-info .section-label {
  margin-bottom: 20px;
}

.book-cover {
  border-top: 1px solid var(--grey-2);
  padding-top: clamp(16px, 2.5vw, 24px);
  margin-bottom: clamp(20px, 3vw, 32px);
}
.book-cover-label {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-bottom: 14px;
}
.book-cover-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.book-cover-list li {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-4);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.book-cover-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.book-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--grey-2);
  padding-top: clamp(16px, 2.5vw, 22px);
}
.book-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--grey-3);
}
.book-meta-item svg { flex-shrink: 0; opacity: 0.5; }

.book-mobile-cta { display: none; }

/* Calendly embed column */
.book-cal {
  border: 1px solid var(--grey-2);
  border-radius: 4px;
  overflow: hidden;
}
.book-cal .calendly-inline-widget {
  width: 100%;
  display: block;
}
.book-cal iframe {
  overflow: hidden !important;
  display: block;
}

/* ── FAQ Dark Theme ────────────────────────────────────────── */
.faq-section--dark {
  background: var(--black);
}
.faq-section--dark .faq-inner {
  grid-template-columns: minmax(300px, 360px) 1fr;
}
.faq-section--dark .faq-list { border-color: rgba(255,255,255,0.09); }
.faq-section--dark .faq-item { border-color: rgba(255,255,255,0.09); }
.faq-section--dark .faq-trigger {
  color: rgba(255,255,255,0.45);
}
.faq-section--dark .faq-trigger:hover,
.faq-section--dark .faq-trigger[aria-expanded="true"] { color: var(--white); }
.faq-section--dark .faq-icon { color: rgba(255,255,255,0.25); }
.faq-section--dark .faq-body-inner p {
  color: rgba(255,255,255,0.5);
}
.faq-section--dark .faq-action-link {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}
.faq-section--dark .faq-action-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* ── Care Plan Tiers ───────────────────────────────────────── */
.care-plans {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 52px) clamp(24px, 4vw, 44px);
  gap: clamp(20px, 3vw, 32px);
}
.care-plans-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.care-plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.care-plan {
  background: var(--white);
  border: 1px solid var(--grey-2);
  padding: clamp(16px, 2.5vw, 24px) clamp(14px, 2vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.care-plan--featured {
  border-color: var(--accent);
  border-top-width: 2px;
}
.care-plan-index {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--grey-4);
  margin-bottom: 6px;
}
.care-plan-name {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.04em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 14px;
}
.care-plan-rule {
  height: 1px;
  background: var(--grey-2);
  margin-bottom: 14px;
}
.care-plan--featured .care-plan-rule { background: rgba(232,180,160,0.3); }
.care-plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.care-plan-list li {
  font-family: var(--sans);
  font-size: clamp(10px, 0.85vw, 12px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.03em;
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.care-plan-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--black);
}
.care-plan--featured .care-plan-list li::before { color: var(--accent); }
.care-plans-footnote {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ── Growth Analytics Dashboard ────────────────────────────── */
.growth-dash {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 44px) clamp(20px, 3vw, 32px);
}

.growth-kpis {
  display: flex;
  gap: 0;
  margin-bottom: clamp(24px, 3.5vw, 36px);
  flex-shrink: 0;
  padding-bottom: clamp(20px, 3vw, 28px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.growth-kpi {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.growth-kpi + .growth-kpi {
  border-left: 1px solid rgba(255,255,255,0.07);
  padding-left: clamp(14px, 2vw, 22px);
  margin-left: clamp(14px, 2vw, 22px);
}
.growth-kpi-num {
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 36px);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.growth-kpi-label {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.growth-graph-wrap {
  flex: 1;
  min-height: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
.growth-svg {
  flex: 1;
  width: 100%;
  min-height: 0;
  display: block;
  overflow: visible;
}
.growth-grid {
  stroke: rgba(255,255,255,0.06);
  stroke-width: 1;
}
.growth-area {
  fill: url(#growth-gradient);
  opacity: 0;
  transition: opacity 0.8s ease 0.6s;
}
.growth-area.growth-visible { opacity: 1; }
.growth-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.growth-months {
  display: flex;
  justify-content: space-between;
  padding: 7px 0 0;
  flex-shrink: 0;
}
.growth-months span {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.growth-graph-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.growth-graph-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.growth-trend {
  font-family: var(--display);
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.06em;
  color: var(--accent);
}

/* ── Services Mobile Fixes ─────────────────────────────────── */
@media (max-width: 768px) {
  .svc-grid {
    display: flex;
    flex-direction: column;
  }
  .svc-grid > .svc-text-pane {
    order: 1;
  }
  .svc-grid > .svc-content-pane {
    order: 2;
  }

  .svc-content-pane {
    min-height: auto;
  }
  #svc-content-webdesign {
    min-height: 300px;
    aspect-ratio: 4 / 3;
  }
  #svc-content-automation {
    min-height: 560px;
  }
  #svc-content-careplans,
  #svc-content-growth {
    min-height: 500px;
  }

  .aflow-wrap,
  .care-plans,
  .growth-dash {
    position: relative;
    inset: auto;
    padding: 24px 16px;
  }

  .aflow-flow {
    justify-content: flex-start;
    gap: 8px;
  }
  .aflow-conn {
    height: 18px;
  }
  .aflow-card {
    gap: 10px;
    padding: 11px 12px;
  }
  .aflow-card-label {
    font-size: 14px;
    letter-spacing: 0.02em;
    white-space: normal;
  }
  .aflow-card-sub {
    font-size: 12px;
    letter-spacing: 0.03em;
    white-space: normal;
  }
  .aflow-action-row {
    font-size: 12px;
    letter-spacing: 0.03em;
  }
  .aflow-card-status {
    display: none;
  }
  .aflow-footer {
    flex-direction: column;
    gap: 10px;
  }
  .aflow-stat + .aflow-stat {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 10px;
  }

  .care-plans {
    justify-content: flex-start;
    gap: 14px;
  }
  .care-plans-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }
  .care-plan {
    flex: 0 0 auto;
    min-width: 210px;
    scroll-snap-align: start;
  }

  .growth-kpis {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .growth-kpi + .growth-kpi {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 12px;
  }
  .growth-months span:nth-child(odd) {
    display: none;
  }
  .growth-graph-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
