/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --w: #FAF9F6;
  /* warm white — dominant */
  --cream: #F4F1EB;
  /* cream — section alt */
  --paper: #EDE9E0;
  /* paper — deeper alt */
  --ink: #0E0D0A;
  /* near-black ink */
  --ink-60: rgba(14, 13, 10, .6);
  --ink-30: rgba(14, 13, 10, .3);
  --ink-10: rgba(14, 13, 10, .08);
  --muted: #7A7870;
  --faint: #C8C4BA;
  --sage: #6D9174;
  /* sage green */
  --sage-lt: #8FAF96;
  --sage-deep: #4F6E56;
  --sage-bg: #EBF1EC;
  --sage-faint: rgba(109, 145, 116, .10);
  --amber: #BC9C49;
  --amber-faint: rgba(168, 114, 10, .09);
  --onyx: #0C0B09;
  /* footer + why-section */

  --ff-disp: Helvetica, 'Helvetica Neue', Arial, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ff-inst: Helvetica, 'Helvetica Neue', Arial, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ff-body: 'Plus Jakarta Sans', sans-serif;
  --ff-mono: 'JetBrains Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-mid: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased
}

body {
  background: var(--w);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  display: block;
  max-width: 100%
}

/* Noise layer — Daily Objects grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: .3;
  mix-blend-mode: multiply;
}

/* ═══════════════════════════════════════════
   NAV — Full-width → floating pill on scroll
═══════════════════════════════════════════ */
.nav-outer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  justify-content: center;
  padding: 0 0;
  pointer-events: none;
  will-change: padding, top;
  transition: padding .5s cubic-bezier(.4, 0, .2, 1), top .5s cubic-bezier(.4, 0, .2, 1);
}

.nav-outer.scrolled {
  top: 14px;
  padding: 0 40px;
}

#nav {
  width: 100%;
  max-width: 1600px;
  height: 64px;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid transparent;
  border-radius: 0px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  pointer-events: auto;
  will-change: max-width, border-radius, box-shadow;
  transition:
    max-width .5s cubic-bezier(.4, 0, .2, 1),
    height .5s cubic-bezier(.4, 0, .2, 1),
    padding .5s cubic-bezier(.4, 0, .2, 1),
    background .4s cubic-bezier(.4, 0, .2, 1),
    border-color .4s cubic-bezier(.4, 0, .2, 1),
    border-radius .5s cubic-bezier(.4, 0, .2, 1),
    box-shadow .5s cubic-bezier(.4, 0, .2, 1);
}

.nav-outer.scrolled #nav {
  max-width: 1200px;
  height: 54px;
  padding: 0 8px 0 24px;
  background: rgba(250, 249, 246, .92);
  border-color: rgba(14, 13, 10, .08);
  border-radius: 100px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .07), 0 1px 4px rgba(0, 0, 0, .04);
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0
}

.nav-logo {
  height: 30px;
  width: auto;
  transition: transform .3s var(--ease)
}

.nav-brand:hover .nav-logo {
  transform: scale(1.05)
}

/* Center links container */
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  background: transparent;
  border-radius: 100px;
  padding: 3px;
  transition: background .55s var(--ease);
}

.nav-outer.scrolled .nav-links {
  background: rgba(14, 13, 10, .04)
}

.nav-links a {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  text-transform: none;
  color: rgba(237, 233, 224, .8);
  position: relative;
  padding: 6px 14px;
  border-radius: 100px;
  transition: color .3s var(--ease), background .3s var(--ease);
  display: block;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--cream);
  background: rgba(255, 255, 255, .1)
}

.nav-links a.active {
  color: var(--cream);
  background: rgba(255, 255, 255, .15);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
}

/* Scrolled state — revert to dark text */
.nav-outer.scrolled .nav-links a {
  color: var(--muted)
}

.nav-outer.scrolled .nav-links a:hover {
  color: var(--ink);
  background: rgba(14, 13, 10, .05)
}

.nav-outer.scrolled .nav-links a.active {
  color: var(--ink);
  background: var(--w);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06)
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0
}

/* CTA button — sage default, ink on hover */
.nav-cta {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--w);
  background: var(--sage-deep);
  padding: 10px 20px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: color .4s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: var(--amber);
  transform: translateY(102%);
  transition: transform .4s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14, 13, 10, .18);
  color: var(--ink);
}

.nav-cta:hover::before {
  transform: translateY(0)
}

.nav-cta-text {
  position: relative;
  z-index: 1
}

.nav-cta-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: transform .3s var(--ease);
}

.nav-cta:hover .nav-cta-icon {
  transform: translate(2px, -2px)
}

/* Hamburger — mobile */
.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(237,233,224,.3);
  cursor: pointer;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background .3s, border-color .3s;
}

.nav-hamburger:hover {
  background: rgba(237,233,224,.1);
  border-color: rgba(237,233,224,.5)
}
.nav-outer.scrolled .ham-line{background:var(--ink)}
.nav-outer.scrolled .nav-hamburger{border-color:var(--ink-10)}
.nav-outer.scrolled .nav-hamburger:hover{background:rgba(14,13,10,.04);border-color:var(--ink-30)}

.ham-line {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s;
}

.nav-hamburger.open .ham-line {
  background: var(--ink) !important;
}

.nav-hamburger.open {
  border-color: var(--ink-30) !important;
}

.nav-hamburger.open:hover {
  background: rgba(14, 13, 10, .04) !important;
}

.nav-hamburger.open .ham-line:first-child {
  transform: translateY(3.25px) rotate(45deg)
}

.nav-hamburger.open .ham-line:last-child {
  transform: translateY(-3.25px) rotate(-45deg)
}

/* Mobile overlay */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 899;
  background: rgba(250, 249, 246, .97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}

.nav-mobile-overlay.open {
  opacity: 1;
  visibility: visible
}

.nav-mobile-inner {
  text-align: center
}

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 40px
}

.nav-mobile-links a {
  font-family: var(--ff-disp);
  font-size: clamp(32px, 7vw, 52px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -.02em;
  display: inline-block;
  position: relative;
  transition: color .3s;
  opacity: 0;
  transform: translateY(20px);
}

.nav-mobile-overlay.open .nav-mobile-links a {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}

.nav-mobile-links li:nth-child(1) a {
  transition-delay: .05s
}

.nav-mobile-links li:nth-child(2) a {
  transition-delay: .1s
}

.nav-mobile-links li:nth-child(3) a {
  transition-delay: .15s
}

.nav-mobile-links li:nth-child(4) a {
  transition-delay: .2s
}

.nav-mobile-links li:nth-child(5) a {
  transition-delay: .25s
}

.nav-mobile-links a:hover {
  color: var(--sage-deep)
}

.nav-mobile-cta {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--w);
  background: var(--sage-deep);
  padding: 14px 36px;
  border-radius: 100px;
  display: inline-flex;align-items:center;gap:8px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease) .3s, transform .5s var(--ease) .3s, background .3s;
}

.nav-mobile-overlay.open .nav-mobile-cta {
  opacity: 1;
  transform: translateY(0)
}

.nav-mobile-cta:hover {
  background: var(--ink)
}

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.tag {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tag::before {
  display: none;
}

.h2 {
  font-family: var(--ff-disp);
  font-size: clamp(38px, 4.4vw, 68px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--ink);
}

.h2 em {
  font-style: normal;
  font-weight: 200;
  color: var(--sage-deep)
}

.body-copy {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted)
}

/* Scroll-reveal base */
.sr {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .85s var(--ease), transform .85s var(--ease)
}

.sr.in {
  opacity: 1;
  transform: translateY(0)
}

.sr-l {
  transform: translateX(-24px)
}

.sr-l.in {
  transform: translateX(0)
}

.sr-s {
  transform: scale(.96) translateY(16px)
}

.sr-s.in {
  transform: scale(1) translateY(0)
}

.d1 {
  transition-delay: .07s
}

.d2 {
  transition-delay: .14s
}

.d3 {
  transition-delay: .21s
}

.d4 {
  transition-delay: .28s
}

.d5 {
  transition-delay: .35s
}

.d6 {
  transition-delay: .42s
}

/* Buttons */
.btn {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
  display: inline-block;
  padding: 10px 24px;
  position: relative;
  overflow: hidden;
  transition: color .3s;
  cursor: pointer;
  border: none;
}

.btn-dark {
  color: var(--w);
  background: var(--sage-deep);
  border-radius: 100px
}

.btn-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: var(--amber);
  transform: translateY(101%);
  transition: transform .38s var(--ease);
}

.btn-dark:hover{color:var(--ink)}
.btn-dark:hover::before {
  transform: translateY(0)
}

.btn-dark span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-dark .btn-arrow {
  transition: transform .3s var(--ease);
}

.btn-dark:hover .btn-arrow {
  transform: translate(2px, -2px);
}

.btn-ink-outline {
  color: var(--ink);
  background: transparent;
  border: 1.5px solid rgba(14, 13, 10, .25);
  border-radius: 100px;
}

.btn-ink-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .38s var(--ease);
}

.btn-ink-outline:hover {
  color: var(--w);
  border-color: var(--ink);
}

.btn-ink-outline:hover::before {
  transform: translateY(0);
}

.btn-ink-outline span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ink-outline .btn-arrow {
  transition: transform .3s var(--ease);
}

.btn-ink-outline:hover .btn-arrow {
  transform: translate(2px, -2px);
}

.btn-sage-outline {
  color: var(--cream);
  background: transparent;
  border: 1.5px solid rgba(237, 233, 224, .5);
  border-radius: 100px;
}

.btn-sage-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: var(--amber);
  transform: translateY(101%);
  transition: transform .38s var(--ease);
}

.btn-sage-outline:hover {
  color: var(--ink)
}

.btn-sage-outline:hover::before {
  transform: translateY(0)
}

.btn-sage-outline span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-icon {
  width: 16px;
  height: 16px;
  transition: transform .3s var(--ease)
}

.btn:hover .btn-icon {
  transform: translateX(3px)
}

.btn-ghost {
  color: var(--muted);
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: none;
  transition: color .2s;
  padding: 0;
}

.btn-ghost .arr {
  transition: transform .25s var(--ease)
}

.btn-ghost:hover {
  color: var(--ink)
}

.btn-ghost:hover .arr {
  transform: translateX(5px)
}

.btn-outline {
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  font-family: var(--ff-mono);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 12px 28px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: color .35s;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .38s var(--ease);
}

.btn-outline:hover {
  color: var(--w)
}

.btn-outline:hover::before {
  transform: translateY(0)
}

.btn-outline span {
  position: relative;
  z-index: 1
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   HERO — Apple product reveal × DO warmth
═══════════════════════════════════════════ */
#hero {
  height: 100vh;
  padding: 120px 52px 80px;
  background: var(--w);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero background video */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 9, .75);
}

#hero>*:not(.hero-video-bg) {
  position: relative;
  z-index: 1
}

/* Ambient glow — sage top-right */
.hero-ambient {
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 145, 116, .1) 0%, transparent 68%);
  top: -180px;
  right: -160px;
  pointer-events: none;
  filter: blur(0px);
}

.hero-ambient-2 {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 114, 10, .07) 0%, transparent 70%);
  bottom: 100px;
  left: -60px;
  pointer-events: none;
}

/* Kicker */
.hero-kicker {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--sage-lt);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .15s forwards;
}

.hero-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--sage-lt)
}

/* Main content + spec card grid */
.hero-body-grid {
  display: block;
}

/* Headline — clip-reveal per word */
.hero-h1 {
  font-family: var(--ff-disp);
  font-size: clamp(50px, 7vw, 100px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.028em;
  margin-bottom: 36px;
  color: var(--cream);
}

.hero-h1 .ww {
  display: inline-block;
  clip-path: inset(-15% 0 100% 0);
  animation: clipReveal .9s var(--ease) forwards;
  margin-right: .22em;
}

.hero-h1 .it {
  /* font-style: italic; */
  font-weight: 200;
  color: var(--sage-lt)
}

.hero-h1 .hi {
  position: relative;
  display: inline-block;
}

.hero-h1 .hi::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: barIn .6s var(--ease) 1.5s forwards;
}

@keyframes clipReveal {
  to {
    clip-path: inset(0 0 0% 0)
  }
}

@keyframes barIn {
  to {
    transform: scaleX(1)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.hero-sub {
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(237, 233, 224, .8);
  max-width: 560px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) 1.3s forwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) 1.5s forwards;
}

/* Floating spec card — Daily Objects product card feel */
.spec-card {
  background: var(--cream);
  border: 1px solid var(--faint);
  border-radius: 16px;
  padding: 32px 28px;
  align-self: end;
  opacity: 0;
  animation: specIn 1s var(--ease) 1.2s forwards;
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(109, 145, 116, .06) 0%, rgba(168, 114, 10, .04) 100%);
}

@keyframes specIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.97)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.sc-badge {
  font-family: var(--ff-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--sage);
  color: white;
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 22px;
  position: relative;
}

.sc-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-10);
}

.sc-item:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.sc-label {
  font-family: var(--ff-mono);
  font-size: 8.5px;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted)
}

.sc-val {
  font-family: var(--ff-disp);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.01em
}

.sc-val.amber {
  color: var(--amber)
}

/* Stats row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hs {text-align:center}

.hs-v {
  font-family: var(--ff-disp);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--amber);
  margin-bottom: 10px;
  display: block;
}


.hs-l {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5
}

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.mq-wrap {
  background: var(--sage);
  overflow: hidden;
  padding: 14px 0;
  cursor: pointer;
}
.mq-wrap:hover .mq-track{animation-play-state:paused}

.mq-track {
  display: flex;
  white-space: nowrap;
  animation: mq 15s linear infinite
}

.mq-item {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: none;
  color: rgba(255, 255, 255, .9);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.mq-item::after {display:none}

@keyframes mq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ═══════════════════════════════════════════
   APPLE CALLOUT STRIP — "Chip. Changed everything."
═══════════════════════════════════════════ */
#callout {
  padding: 100px 52px;
  background: var(--ink);
  text-align: center;
  overflow: hidden;
  position: relative;
}

#callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(109, 145, 116, .12) 0%, transparent 70%);
}

.callout-kicker {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.callout-kicker::before,
.callout-kicker::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--sage)
}

.callout-h {
  font-family: var(--ff-disp);
  font-size: clamp(42px, 6.5vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--cream);
  max-width: 880px;
  margin: 0 auto 32px;
}

.callout-h em {
  font-style: normal;
  font-weight: 200;
  color: var(--sage-lt)
}

.callout-h .a {
  color: var(--amber)
}

.callout-sub {
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(237, 233, 224, .6);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   MISSION
═══════════════════════════════════════════ */
#mission {
  padding: 100px 52px;
  background: var(--cream)
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.mission-quote {
  font-family: var(--ff-disp);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.018em;
  color: var(--ink);
  position: relative;
  padding-left: 0;
}

.mission-quote::before {display:none}

.q-mark{
  font-family:var(--ff-disp);
  font-size:1.6em;line-height:0;color:var(--amber);opacity:.5;
  vertical-align:-.25em;
}
.q-mark--open{margin-right:6px;margin-left:-20px}
.q-mark--close{margin-left:10px}
.mission-right {}

.mission-statement {
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  padding-left: 28px;
  border-left: 2px solid var(--sage-lt);
  margin-bottom: 36px;
}

/* Daily Objects "material badge" pills */
.do-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.do-badge {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: none;
  border: 1px solid var(--faint);
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 100px;
  transition: border-color .2s, color .2s;
}

.do-badge:hover {
  border-color: var(--sage);
  color: var(--sage-deep)
}

/* ═══════════════════════════════════════════
   SURGEON — Sticky-Left Apple style
═══════════════════════════════════════════ */
#surgeon {
  background: #fff;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10)
}

.surgeon-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.surgeon-pin {
  position: sticky;
  top: 60px;
  align-self: start;
  height: auto;
  padding: 80px 64px 80px 52px;
  border-right: 1px solid var(--ink-10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.surgeon-top {}

.s-name {
  font-family: var(--ff-disp);
  font-size: clamp(46px, 5.2vw, 76px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 22px 0 10px;
}

.s-name em {
  font-style: normal;
  font-weight: 200;
  color: var(--sage-deep)
}

.s-role {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--amber);
  margin-bottom: 26px;
}

.s-bio {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 380px;
  margin-bottom: 28px;
}

.s-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 0
}

.s-pill {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--sage-deep);
  border: 1px solid rgba(79, 110, 86, .25);
  padding: 6px 14px;
  border-radius: 100px;
  transition: background .2s;
}

.s-pill:hover {
  background: var(--sage-faint)
}

/* Portrait placeholder */
.s-portrait {
  flex: 1;
  min-height: 0;
  max-height: 200px;
  background: var(--cream);
  border-radius: 10px;
  margin-top: 32px;
  border: 1px solid var(--faint);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.s-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(109, 145, 116, .08) 0%, rgba(168, 114, 10, .06) 100%);
}

.s-portrait-label {
  font-family: var(--ff-mono);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}

/* Scrolling credentials */
.surgeon-creds {
  padding: 80px 52px 80px 64px;
  border-left: 1px solid var(--ink-10);
}
.surgeon-wrap{align-items:stretch}
.surgeon-img-wrap{
  overflow:hidden;
  position:relative;
}
.surgeon-img{
  position:absolute;inset:0;
  width:100%;height:100%;object-fit:cover;
  object-position:center top;
  filter:saturate(.8);
  transition:transform .6s var(--ease);
}
.surgeon-img-wrap:hover .surgeon-img{transform:scale(1.03)}

.cred {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--ink-10);
  transition: background .2s;
}

.cred:first-child {
  border-top: 1px solid var(--ink-10)
}

.cred-n {
  font-family: var(--ff-mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--amber);
  letter-spacing: .04em;
  padding-top: 3px;
}

.cred-t {
  font-family: var(--ff-disp);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 5px;
}

.cred-s {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
#services {
  padding: 100px 0;
  background: var(--cream)
}

#services > .wrap {
  max-width: none;
  margin: 0;
}

#services .svc-head {
  padding: 0 52px;
}

#services .drag-hint {
  padding-left: 52px;
  margin-top: 16px;
  font-size: 12px;
}

.svc-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.svc-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 8px 52px 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.svc-grid::-webkit-scrollbar {
  display: none;
}

.svc-grid.dragging {
  cursor: grabbing;
}

.svc-grid.dragging .svc {
  pointer-events: none;
}

.svc {
  background: var(--w);
  border-radius: 0;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  flex: 0 0 360px;
}

.svc-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  filter: saturate(.85);
}

.svc:hover .svc-img img {
  transform: scale(1.06);
}

.svc-body {
  padding: 28px 28px 32px;
  position: relative;
}

.svc-n {
  font-family: var(--ff-mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--amber);
  margin-bottom: 12px;
}

.svc-t {
  font-family: var(--ff-disp);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}

.svc-d {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

#services .body-copy {
  font-size: 16px;
}

.svc-arr {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--faint);
  transition: color .2s, transform .3s var(--ease);
}

.svc-arr i {
  width: 18px;
  height: 18px;
}

.svc:hover .svc-arr {
  color: var(--sage);
  transform: translate(3px, -3px);
}

/* ═══════════════════════════════════════════
   PHILOSOPHY — Apple Feature Grid
═══════════════════════════════════════════ */
#philosophy {
  padding: 100px 52px;
  background: var(--w);
  overflow: hidden
}

.phil-quote-center {
  font-family: var(--ff-inst);
  font-size: clamp(32px, 5vw, 74px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.12;
  letter-spacing: -.022em;
  text-align: center;
  max-width: 920px;
  margin: 0 auto 100px;
  color: var(--ink);
}

.phil-quote-center em {
  font-style: normal;
  color: var(--sage-deep)
}

.phil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-10);
}

.phil-cell {
  background: var(--w);
  padding: 58px 48px;
  overflow: hidden;
  position: relative;
  transition: background .35s;
}

.phil-cell:hover {
  background: var(--sage-bg)
}

.phil-big {
  font-family: var(--ff-disp);
  font-size: 100px;
  font-weight: 200;
  font-style: normal;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--faint);
  margin-bottom: 28px;
  display: block;
  transition: -webkit-text-stroke-color .35s;
}

.phil-cell:hover .phil-big {
  -webkit-text-stroke-color: var(--sage-lt)
}

.phil-title {
  font-family: var(--ff-disp);
  font-size: 21px;
  font-weight: 400;
  color: var(--sage);
  line-height: 1.22;
  margin-bottom: 14px;
}

.phil-body {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted)
}

/* ═══════════════════════════════════════════
   CONDITIONS
═══════════════════════════════════════════ */
#conditions {
  padding: 100px 52px;
  background: var(--paper)
}

#conditions .h2 em {
  font-style: normal;
  font-weight: inherit;
}

#conditions .body-copy {
  font-size: 16px;
}

.cond-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.cond-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, .08);
  margin-top: 60px;
}

.cond {
  background: var(--paper);
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.cond:hover {
  background: var(--w)
}

.cond::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

.cond:hover::before {
  transform: scaleX(1)
}

.cond-dot {
  display: none;
}

.cond-name {
  font-family: var(--ff-disp);
  font-size: 22px;
  font-weight: 400;
  color: var(--sage);
  line-height: 1.22;
  margin-bottom: 12px
}

.cond-sub {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7
}

/* ═══════════════════════════════════════════
   TECHNOLOGY — Apple-style horizontal drag strip
═══════════════════════════════════════════ */
#technology {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden
}

#technology .tech-head {
  padding-left: 52px;
}

.tech-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
  padding-right: 52px
}

.tech-strip {
  display: flex;
  gap: 14px;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 16px 52px 24px 52px;
  scroll-padding-left: 52px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.tech-strip::-webkit-scrollbar {
  display: none
}

.tc {
  flex: 0 0 calc((100vw - 146px) / 4);
  background: var(--w);
  border: 1px solid var(--faint);
  border-radius: 10px;
  padding: 42px 34px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}

.tc:hover {
  border-color: var(--sage-lt);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .07)
}

.tc-cat {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}

.tc-title {
  font-family: var(--ff-disp);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px
}

.tc-body {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 32px
}

#technology .body-copy {
  font-size: 16px;
}

.tc-stat {
  font-family: var(--ff-disp);
  font-size: 60px;
  font-weight: 200;
  letter-spacing: -.03em;
  color: var(--amber);
  line-height: 1;
  margin-top: auto;
  margin-bottom: 5px
}

.tc-lbl {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted)
}

.drag-hint {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-right: 52px;
}

.drag-hint::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--faint)
}

#technology .drag-hint {
  display: none;
  font-size: 10px;
}

/* ═══════════════════════════════════════════
   JOURNEY
═══════════════════════════════════════════ */
#journey {
  padding: 100px 52px;
  background: var(--w)
}

.journey-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px
}

.journey-rail {
  position: relative
}

.journey-rail::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--sage) 0%, var(--faint) 100%);
}

.jstep {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 56px;
  padding: 40px 0;
  border-bottom: 1px solid var(--ink-10);
  align-items: start;
}

.jstep:first-child {
  padding-top: 0
}

.jstep-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--faint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  background: var(--w);
  position: relative;
  z-index: 1;
  transition: border-color .3s, background .3s, color .3s;
  flex-shrink: 0;
}

.jstep:hover .jstep-circle,
.jstep.lit .jstep-circle {
  border-color: var(--sage);
  background: var(--sage);
  color: #fff
}

.jstep-n {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 9px
}

.jstep-title {
  font-family: var(--ff-disp);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 9px;
  line-height: 1.2
}

.jstep-body {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75
}

#journey .body-copy {
  font-size: 16px;
}

/* ═══════════════════════════════════════════
   WHY iRUS — Dark panel
═══════════════════════════════════════════ */
#why {
  padding: 100px 52px;
  background: var(--onyx);
  position: relative;
  overflow: hidden;
}

.why-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.why-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 9, .75);
}

#why > *:not(.why-video-bg) {
  position: relative;
  z-index: 1;
}

#why .tag {
  color: var(--sage-lt)
}

#why .tag::before {
  background: var(--sage-lt)
}

#why .h2 {
  color: var(--cream)
}

#why .h2 em {
  color: var(--sage-lt)
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
}

.why {
  background: transparent;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.why:nth-child(3n) {
  border-right: none;
}

.why:nth-last-child(-n+3) {
  border-bottom: none;
}

.why:hover {
  background: rgba(255, 255, 255, .04)
}

.why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

.why:hover::before {
  transform: scaleX(1)
}

.why-n {
  font-family: var(--ff-mono);
  font-size: 16px;
  letter-spacing: .14em;
  color: var(--amber);
  margin-bottom: 18px;
  font-weight: 500;
}

.why-t {
  font-family: var(--ff-disp);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.22;
  margin-bottom: 12px
}

.why-b {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(237, 233, 224, .65);
  line-height: 1.75
}

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
#cta {
  padding: 100px 52px;
  background: var(--sage-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(109, 145, 116, .14) 0%, transparent 70%);
}

.cta-tag {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: .10em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}

.cta-h {
  font-family: var(--ff-disp);
  font-size: clamp(40px, 5.4vw, 78px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.022em;
  color: var(--ink);
  max-width: 960px;
  margin: 0 auto 22px;
}

.cta-h em {
  font-style: normal;
  color: var(--sage-deep);
}

.cta-sub {
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 52px;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 80px
}

.cta-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(79, 110, 86, .2);
  border-radius: 10px;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
}

.ci {
  padding: 28px 32px;
  border-right: 1px solid rgba(79, 110, 86, .12);
  text-align: left;
}

.ci:last-child {
  border-right: none
}

.ci-l {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 7px
}

.ci-v {
  font-family: var(--ff-disp);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink)
}

/* ═══════════════════════════════════════════
   FOOTER — Modern premium
═══════════════════════════════════════════ */
footer {
  background: var(--onyx);
  color: rgba(237, 233, 224, .6);
  position: relative;
  overflow: hidden;
}

/* Subtle top gradient line */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--sage) 30%, var(--amber) 70%, transparent 100%);
  opacity: .3;
}

/* Wrap */
.ft-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 64px 28px;
}

/* TOP — brand + CTA card */
.ft-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: stretch;
  padding-bottom: 56px;
}

.ft-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ft-logo-img {
  height: 44px;
  width: auto;
  margin-bottom: 22px;
  object-fit: contain;
  display: block;
}

.ft-tag {
  font-family: var(--ff-disp);
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  color: var(--amber);
  margin-bottom: 18px;
}

.ft-desc {
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(237, 233, 224, .7);
  max-width: 540px;
  margin-bottom: 36px;
}

.ft-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.ft-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}

.ft-social-link:hover {
  background: rgba(109, 145, 116, .25);
  border-color: rgba(109, 145, 116, .5);
  transform: translateY(-2px);
}

.ft-social-link img,
.ft-social-link svg,
.ft-social-link i {
  width: 18px;
  height: 18px;
  display: block;
}

/* CTA card */
.ft-cta {
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(237, 233, 224, .1);
  border-radius: 18px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ft-cta-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}

.ft-cta-h {
  font-family: var(--ff-disp);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--cream);
  margin: 0 0 28px;
}

.ft-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: var(--amber);
  color: var(--onyx);
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.4;
  transition: transform .3s, box-shadow .3s;
}

.ft-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(188, 156, 73, .25);
}

.ft-cta-call {
  margin-top: 20px;
  font-family: var(--ff-body);
  font-size: 13px;
  color: rgba(237, 233, 224, .5);
}

.ft-cta-call a {
  color: var(--cream);
  font-weight: 500;
  margin-left: 6px;
  letter-spacing: .04em;
}

/* Column grid */
.ft-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
  padding: 56px 0;
  border-top: 1px solid rgba(237, 233, 224, .1);
}

.ft-col-title {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 22px;
}

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ft-links a {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(237, 233, 224, .65);
  transition: color .25s;
  display: inline-block;
}

.ft-links a:hover {
  color: var(--cream);
}

.ft-links--info li {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(237, 233, 224, .65);
  line-height: 1.55;
}

.ft-viewall {
  color: var(--amber) !important;
}

/* Bottom bar */
.ft-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(237, 233, 224, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ft-copy,
.ft-fullname-bottom {
  font-family: var(--ff-body);
  font-size: 12px;
  color: rgba(237, 233, 224, .55);
  margin: 0;
}

.ft-legal {
  display: flex;
  gap: 22px;
}

.ft-legal a {
  font-family: var(--ff-body);
  font-size: 12px;
  color: rgba(237, 233, 224, .55);
  transition: color .25s;
}

.ft-legal a:hover {
  color: var(--cream);
}

@media (max-width: 1000px) {
  .ft-wrap { padding: 60px 28px 20px; }
  .ft-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 44px; }
  .ft-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; padding: 44px 0; }
  .ft-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 600px) {
  .ft-wrap { padding: 48px 20px 20px; }
  .ft-cta { padding: 28px; }
  .ft-cta-h { font-size: 20px; }
  .ft-cols { grid-template-columns: 1fr; gap: 28px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media(max-width:1280px) {
  .nav-links a {
    font-size: 12px;
    padding: 6px 10px
  }

  .nav-cta {
    font-size: 12px;
    padding: 9px 16px;
    gap: 6px
  }

  .nav-links {
    gap: 1px;
    padding: 3px
  }
}

@media(max-width:1100px) {
  .nav-links a {
    font-size: 11.5px;
    padding: 5px 8px
  }

  .nav-cta {
    font-size: 11.5px;
    padding: 8px 14px
  }
}

@media(max-width:960px) {
  #nav {
    padding: 0 20px;
    height: 56px
  }

  .nav-outer.scrolled {
    padding: 0 10px
  }

  .nav-outer.scrolled #nav {
    padding: 0 6px 0 16px;
    height: 50px
  }

  .nav-center {
    display: none
  }

  .nav-cta {
    display: none
  }

  .nav-hamburger {
    display: flex
  }

  #hero {
    padding:70px 24px 30px;
    justify-content:center;
  }
  .hero-video-bg video{object-position:center 30%}
  .hero-video-overlay{
    background:linear-gradient(
      to bottom,
      rgba(12,11,9,.3) 0%,
      rgba(12,11,9,.75) 40%,
      rgba(12,11,9,.92) 100%
    ) !important;
  }
  .hero-ambient,.hero-ambient-2{display:none}
  .hero-kicker{font-size:12px;letter-spacing:.14em;margin-bottom:18px}
  .hero-h1{font-size:clamp(36px,10vw,50px);margin-bottom:20px}
  .hero-h1 .hi::after{bottom:5px;height:2px}
  .hero-sub{font-size:16px;margin-bottom:26px;line-height:1.75}
  .hero-ctas{gap:12px;display:flex;flex-direction:column;align-items:flex-start}
  .btn{font-size:14px;padding:12px 28px;width:100%;text-align:center}
  .btn span{justify-content:center}
  .btn-sage-outline span{justify-content:center}
  .hero-body-grid {
    grid-template-columns: 1fr
  }

  .spec-card {
    display: none
  }

  .hero-stats.wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;padding:60px 20px !important;
  }
  .hs-v{font-size:40px}
  .hs-l{font-size:13px}

  .wrap,
  .mission-grid,
  .svc-head,
  .tech-head,
  .journey-head,
  .cond-top,
  .footer-top {
    padding-left: 0;
    padding-right: 0
  }
  .wrap{padding:0}

  .mission-grid{gap:32px}
  .mission-quote{margin-bottom:0}
  .mission-grid,
  .svc-head,
  .tech-head,
  .journey-head,
  .cond-top {
    grid-template-columns: 1fr
  }

  .surgeon-wrap {
    grid-template-columns: 1fr
  }

  .surgeon-pin {
    position: relative;
    height: auto;
    border-right: none;
    padding: 0 24px 72px;
    align-self: auto;
    overflow: visible;
  }

  .surgeon-img-wrap{height:460px;position:static;overflow:hidden}
  .surgeon-img{position:static;height:100%;inset:auto}
  .surgeon-creds {
    padding: 40px 24px 60px
  }

  .phil-grid,
  .why-grid {
    grid-template-columns: 1fr
  }

  .svc {
    flex: 0 0 280px;
  }

  .cond-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .cond {
    padding: 28px 20px;
  }

  .jstep {
    gap: 28px;
  }

  .why-grid {
    margin-top: 0;
  }

  .why-grid .why {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    padding-left: 0;
    padding-right: 0;
  }

  .why-grid .why:last-child {
    border-bottom: none;
  }

  .cond-name {
    font-size: 18px;
  }

  .cond-sub {
    font-size: 13px;
  }

  #technology .tech-head {
    padding-left: 24px;
  }

  #technology .tech-strip {
    padding: 16px 24px 24px;
    scroll-padding-left: 24px;
    overflow-x: auto;
  }

  .tc {
    flex: 0 0 300px;
  }

  .drag-hint {
    padding-right: 24px
  }

  .ft-main {
    grid-template-columns: 1fr;
    padding: 60px 20px 48px;
    gap: 44px
  }

  .ft-creds {
    padding: 20px 24px
  }

  .ft-bottom {
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    text-align: center
  }

  .ft-legal {
    flex-wrap: wrap;
    justify-content: center
  }

  .cta-info {
    grid-template-columns: 1fr
  }

  .ci {
    border-right: none;
    border-bottom: 1px solid rgba(79, 110, 86, .12)
  }

  .ci:last-child {
    border-bottom: none
  }

  #philosophy,
  #conditions,
  #journey,
  #why,
  #cta,
  #mission{padding:60px 20px}

  #cta .cta-row {
    flex-direction: column;
    gap: 12px;
  }

  #cta .cta-row .btn {
    width: 100%;
    max-width: 320px;
  }

  #services{padding:60px 0}
  #services .svc-head{padding:0 24px}
  #services .drag-hint{padding-left:24px;font-size:10px}
  .svc-grid{padding:8px 24px 32px}
  .phil-quote-center{margin-bottom:0}
  .phil-cell{padding:36px 24px}
  #technology .drag-hint{display:flex}
  .mission-quote{font-size:clamp(22px,6vw,32px);padding-left:0}
  .q-mark--open{margin-left:-20px}
  .q-mark{font-size:1.3em}
  .q-mark--close{margin-left:6px}
  .mission-statement{font-size:15px}
  .do-badge{font-size:11px;padding:6px 14px}
  .callout-kicker{font-size:10px;margin-bottom:24px}
  .callout-h{font-size:clamp(28px,8vw,42px)}
  .callout-sub{font-size:15px;max-width:100%}
  #callout{padding:60px 20px}
  #callout,
  .cta-h,
  .callout-h {
    padding-left: 24px;
    padding-right: 24px
  }
}

/* ═══════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: var(--w);
  border: 1px solid var(--ink-10);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(14, 13, 10, .12), 0 4px 12px rgba(14, 13, 10, .06);
  z-index: 9999;
  font-family: var(--ff-body);
  transform: translateY(0);
  opacity: 1;
  transition: transform .4s var(--ease), opacity .4s var(--ease), visibility .4s;
}

.cookie-banner.hidden {
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cb-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.cb-content p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-60);
  margin-bottom: 16px;
}

.cb-actions {
  display: flex;
  gap: 12px;
}

.cb-btn {
  flex: 1;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: all .2s;
  border: none;
}

.cb-btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink-10);
}

.cb-btn-outline:hover {
  background: var(--ink-10);
}

#cbAccept {
  background: var(--sage-deep);
  color: var(--w);
}

#cbAccept:hover {
  background: var(--ink);
}

@media (max-width: 520px) {
  .cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
    padding: 20px;
  }
  .cb-actions {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════
   WHATSAPP STICKY FAB
═══════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 14px rgba(37, 211, 102, .45),
    0 2px 6px rgba(0, 0, 0, .12);
  cursor: pointer;
  text-decoration: none;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
}

.wa-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow:
    0 8px 28px rgba(37, 211, 102, .55),
    0 4px 12px rgba(0, 0, 0, .15);
  background: #20bd5a;
}

.wa-fab:active {
  transform: scale(.96);
}

.wa-fab-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Pulse ring */
.wa-fab-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .5);
  animation: waPulse 2.4s cubic-bezier(.4, 0, .6, 1) infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: .6;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (max-width: 520px) {
  .wa-fab {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .wa-fab-icon {
    width: 28px;
    height: 28px;
  }
}