:root {
  --black: #080808;
  --ink: #0c0c0a;
  --gold: #0abfbc;
  --gold-light: #5de8e4;
  --gold-dim: #0d6b69;
  --off-white: #f0ece3;
  --muted: #6b6560;
  --border: rgba(10,191,188,0.18);
  --section-pad: clamp(5rem, 10vw, 9rem);
  --side-pad: clamp(1.5rem, 6vw, 5rem);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
section[id], div[id] { scroll-margin-top: 80px; }
body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1),
              color 1.2s ease;
}
.js-ready .reveal { opacity: 0; transform: translateY(18px); }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.js-ready .reveal-text { color: rgba(240,236,227,0.35); }
.js-ready .reveal-text.visible { color: rgba(240,236,227,0.75); }
.js-ready .stagger > * {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.1s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.2s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.3s; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem var(--side-pad);
  background: linear-gradient(to bottom, rgba(8,8,8,0.92), transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s;
}
nav.scrolled { border-bottom-color: var(--border); }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  letter-spacing: 0.14em; color: var(--gold);
  text-decoration: none; text-transform: uppercase;
  position: relative; padding-bottom: 6px;
}
.logo-us { position: relative; display: inline-block; }
.logo-us::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 50%; transform: translateX(-50%);
  width: 100%; height: 4px;
  border-radius: 0 0 50% 50% / 0 0 4px 4px;
  border-bottom: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
  border-top: none;
  transition: bottom 0.8s cubic-bezier(0.25,1,0.5,1);
}
.nav-logo:hover .logo-us::after { bottom: 0; }
.nav-links { display: flex; gap: 2.4rem; list-style: none; }
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.4s ease;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  padding: 0.6rem 1.5rem; text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--side-pad) clamp(4rem, 8vw, 7rem);
  position: relative; overflow: hidden;
  cursor: crosshair;
}
.hero-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
  will-change: transform, filter;
  transform-origin: center center;
  filter: brightness(0.52) saturate(0.9);
  transition: filter 0.05s linear;
}
.hero-gradient {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.6) 40%,
    rgba(8,8,8,0.2) 70%,
    rgba(8,8,8,0.0) 100%);
  pointer-events: none;
}
/* Teal radial spotlight that follows mouse */
.hero-spotlight {
  position: absolute; z-index: 2;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,191,188,0.12) 0%, transparent 60%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: left 0.08s linear, top 0.08s linear;
  left: 50%; top: 50%;
}
/* Ripple on click */
.hero-ripple {
  position: absolute; z-index: 5;
  border-radius: 50%;
  border: 1.5px solid rgba(10,191,188,0.6);
  background: rgba(10,191,188,0.06);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: rippleOut 1.1s cubic-bezier(0.2,1,0.4,1) forwards;
}
@keyframes rippleOut {
  0%   { width: 0px; height: 0px; opacity: 1; }
  100% { width: 700px; height: 700px; opacity: 0; }
}
.hero-content {
  position: relative; z-index: 3; max-width: 880px;
  will-change: transform;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: fadeUp 0.9s 0.15s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
  flex-shrink: 0;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 300; line-height: 0.95; letter-spacing: -0.02em;
  color: var(--off-white);
  opacity: 0; animation: fadeUp 0.9s 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
}
h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  margin-top: 2rem; max-width: 460px;
  font-size: 1.05rem; font-weight: 300; line-height: 1.75;
  color: rgba(240,236,227,0.6);
  opacity: 0; animation: fadeUp 0.9s 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-actions {
  margin-top: 2.8rem; display: flex; gap: 1.4rem; align-items: center;
  opacity: 0; animation: fadeUp 0.9s 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; right: var(--side-pad); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeUp 0.9s 1s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-scroll span {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(240,236,227,0.25);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(0.5); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  padding: 1rem 2.4rem; text-decoration: none; display: inline-block;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(240,236,227,0.7); text-decoration: none;
  border-bottom: 1px solid rgba(10,191,188,0.5); padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ─── BRANDS BAR ─── */
.brands-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.3rem 0; display: flex; align-items: center;
  overflow: hidden; background: var(--ink);
}
.brands-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); white-space: nowrap;
  padding: 0 2.6rem 0 var(--side-pad); flex-shrink: 0;
  border-right: 1px solid var(--border);
}
.brands-track-wrap {
  overflow: hidden; flex: 1;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}
.brands-track {
  display: flex; align-items: center; gap: 2.4rem;
  white-space: nowrap; animation: scrollBrands 20s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }
.brands-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300; letter-spacing: 0.08em;
  color: rgba(240,236,227,0.4); flex-shrink: 0; transition: color 0.3s;
}
.brands-track span:hover { color: var(--gold-light); }
.brands-track .dot { font-size: 0.55rem; color: var(--gold-dim); }
@keyframes scrollBrands {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SHARED ─── */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.015em;
}
h2 em { font-style: italic; color: var(--gold-light); }
.body-text {
  font-size: 1rem; line-height: 1.9;
  color: rgba(240,236,227,0.6); margin-top: 1.6rem;
}

/* ─── WHY MUSE ─── */
.why {
  padding: var(--section-pad) var(--side-pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center;
  border-top: 1px solid var(--border);
}
.ai-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
}
.pillar {
  background: var(--ink); padding: 2.2rem 2rem;
  transition: background 0.4s ease, transform 0.4s ease;
  cursor: default;
}
.pillar:hover { background: #141410; transform: translateY(-2px); }
.pillar-number {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.22em;
  color: var(--gold-dim); margin-bottom: 0.9rem;
  transition: color 0.4s;
}
.pillar:hover .pillar-number { color: var(--gold); }
.pillar h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 300; margin-bottom: 0.5rem;
  transition: color 0.4s;
}
.pillar:hover h4 { color: var(--gold-light); }
.pillar p { font-size: 0.88rem; line-height: 1.65; color: rgba(240,236,227,0.5); transition: color 0.4s; }
.pillar:hover p { color: rgba(240,236,227,0.7); }

/* ─── SERVICES ─── */
.services {
  padding: var(--section-pad) var(--side-pad);
  border-top: 1px solid var(--border);
}
.services-header { margin-bottom: 3.5rem; }
.services-list { display: flex; flex-direction: column; }
.service-item {
  display: grid;
  grid-template-columns: 72px 1fr 1.2fr auto;
  align-items: center; gap: 2rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--border);
  cursor: default; position: relative;
}
.service-item::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 1px; height: 60%;
  background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
  transition: transform 0.5s ease;
}
.service-item:hover::before { transform: translateY(-50%) scaleY(1); }
.service-item:hover .service-name { color: var(--gold-light); transform: translateX(0.2rem); }
.service-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.63rem; letter-spacing: 0.2em; color: var(--gold-dim);
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 300; line-height: 1.1;
  transition: color 0.4s ease, transform 0.4s ease;
  display: inline-block;
}
.service-desc { font-size: 0.92rem; line-height: 1.7; color: rgba(240,236,227,0.55); }
.service-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-dim); border: 1px solid var(--border);
  padding: 0.35rem 0.9rem; white-space: nowrap;
  transition: color 0.4s, border-color 0.4s;
}
.service-item:hover .service-tag { color: var(--gold); border-color: rgba(10,191,188,0.3); }

/* ─── TEAM ─── */
.team {
  padding: var(--section-pad) var(--side-pad);
  border-top: 1px solid var(--border);
}
.team-intro { max-width: 600px; margin-top: 1.2rem; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem; }
.team-card {
  padding: 3rem; border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: border-color 0.4s;
}
.team-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s ease;
}
.team-card:hover { border-color: rgba(10,191,188,0.2); }
.team-card:hover::after { transform: scaleX(1); }
.team-role {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300;
  margin-bottom: 0.6rem; line-height: 1.1;
}
.team-linkedin {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.4rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  transition: color 0.25s, gap 0.25s;
}
.team-linkedin:hover { color: var(--gold-light); gap: 0.8rem; }
.team-bio { font-size: 0.95rem; line-height: 1.8; color: rgba(240,236,227,0.75); }
.team-personality {
  font-size: 0.9rem; line-height: 1.75;
  color: rgba(201,168,76,0.65); font-style: italic;
  margin-top: 1.2rem; padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

/* ─── MISSION ─── */
.mission {
  padding: var(--section-pad) var(--side-pad);
  border-top: 1px solid var(--border);
  text-align: center; position: relative; overflow: hidden;
}
.mission-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(10,191,188,0.055) 0%, transparent 68%);
  pointer-events: none;
}
.mission blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 300; font-style: italic; line-height: 1.2;
  max-width: 820px; margin: 1.8rem auto;
  color: var(--off-white);
}
.mission > p {
  font-size: 1rem; color: rgba(240,236,227,0.55);
  max-width: 440px; margin: 1.8rem auto 0; line-height: 1.8;
}

/* ─── CONTACT ─── */
.contact {
  padding: var(--section-pad) var(--side-pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  border-top: 1px solid var(--border);
  background: var(--ink);
}
.contact h2 { font-size: clamp(2.4rem, 4vw, 3.8rem); }
.contact-details { display: flex; flex-direction: column; justify-content: center; }
.contact-item {
  display: flex; flex-direction: column; gap: 0.35rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:first-child { padding-top: 0; }
.contact-item:last-child { border-bottom: none; }
.contact-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-dim);
  transition: color 0.4s, transform 0.4s;
  display: inline-block;
}
.contact-item:hover .contact-label { color: var(--gold); transform: translateX(0.2rem); }
.contact-value {
  font-size: 1rem; color: rgba(240,236,227,0.85);
  transition: transform 0.4s;
  display: inline-block;
}
.contact-item:hover .contact-value { transform: translateX(0.2rem); }
.contact-item { cursor: default; }
.contact-value a {
  color: rgba(240,236,227,0.85); text-decoration: none;
  transition: color 0.2s;
  cursor: pointer; position: relative; z-index: 10;
}
.contact-value a:hover { color: var(--gold-light); }

/* ─── FOOTER ─── */
footer {
  padding: 2rem var(--side-pad);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--black);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-dim);
}
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.12em;
  color: var(--muted); text-align: right; line-height: 1.7;
}

/* ─── MODAL ─── */
#modal {
  display: none; position: fixed; inset: 0; z-index: 999;
  align-items: center; justify-content: center; padding: 1.5rem;
}
#modal.open { display: flex; }
#modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(4,4,3,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: mFadeIn 0.5s ease forwards;
}
.modal-box {
  position: relative; z-index: 1;
  background: #0d0d0b;
  border: 1px solid rgba(10,191,188,0.15);
  width: min(600px, 100%);
  max-height: 92vh; overflow-y: auto;
  animation: mSlideUp 0.5s cubic-bezier(0.25,1,0.5,1) forwards;
  display: flex;
}
.modal-accent {
  width: 3px; flex-shrink: 0;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}
.modal-inner { padding: 3.2rem 3rem 3.2rem 2.8rem; flex: 1; }
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: none; border: none; cursor: pointer;
  color: rgba(240,236,227,0.3); padding: 0.5rem;
  transition: color 0.3s; z-index: 2;
}
.modal-close:hover { color: var(--gold-light); }
.modal-sub {
  font-size: 1rem; line-height: 1.8;
  color: rgba(240,236,227,0.65); margin-bottom: 0.5rem;
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 3.4rem); font-weight: 300;
  line-height: 1.0; margin-bottom: 2.4rem;
}
.modal-title em { font-style: italic; color: var(--gold-light); }
.modal-form { display: flex; flex-direction: column; gap: 2rem; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.modal-field { display: flex; flex-direction: column; gap: 0.6rem; }
.modal-field label {
  font-family: 'DM Mono', monospace;
  font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(10,191,188,0.9);
}
.modal-field input,
.modal-field textarea {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(240,236,227,0.25);
  color: var(--off-white);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 300;
  padding: 0.85rem 0; outline: none; resize: none;
  -webkit-appearance: none;
  transition: border-color 0.3s;
  border-radius: 0;
}
.modal-field textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(240,236,227,0.15);
  border-bottom: 1px solid rgba(240,236,227,0.28);
}
.modal-field input::placeholder,
.modal-field textarea::placeholder { color: rgba(240,236,227,0.3); font-size: 0.95rem; }
.modal-field input:focus { border-bottom-color: var(--gold); }
.modal-field textarea:focus { border-color: rgba(10,191,188,0.4); }
.modal-pills { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.pill {
  font-family: 'DM Mono', monospace;
  font-size: 0.63rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(240,236,227,0.6);
  border: 1px solid rgba(240,236,227,0.2);
  background: none; padding: 0.6rem 1.1rem;
  cursor: pointer; border-radius: 0;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.pill:hover { border-color: rgba(10,191,188,0.5); color: var(--off-white); }
.pill.active { border-color: var(--gold); color: var(--gold-light); background: rgba(10,191,188,0.08); }
.modal-footer { display: flex; align-items: center; gap: 1.8rem; margin-top: 0.4rem; flex-wrap: wrap; }
.modal-submit {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  border: none; cursor: pointer;
  padding: 1rem 2rem;
  display: flex; align-items: center; gap: 0.7rem;
  transition: background 0.3s, transform 0.3s;
}
.modal-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.modal-privacy { font-size: 0.72rem; color: rgba(240,236,227,0.25); line-height: 1.5; }
.modal-success { display: none; flex-direction: column; align-items: flex-start; gap: 1rem; padding: 2rem 0; }
.success-heading { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; }
.success-sub { font-size: 0.88rem; color: rgba(240,236,227,0.45); line-height: 1.7; }
@keyframes mFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes mSlideUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .why, .contact { grid-template-columns: 1fr; gap: 3.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 60px 1fr; }
  .service-desc, .service-tag { display: none; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-copy { text-align: center; }
  .hero-scroll { display: none; }
}
@media (max-width: 560px) {
  .modal-inner { padding: 2.8rem 1.8rem 2.8rem 1.6rem; }
  .modal-row { grid-template-columns: 1fr; }
  .modal-footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
}