:root {
  --ink: #0f2430;
  --ink-2: #183442;
  --paper: #f7f3ec;
  --paper-2: #efe9df;
  --white: #ffffff;
  --teal: #64d6c7;
  --teal-deep: #1aa997;
  --coral: #ff7557;
  --gold: #f0c75e;
  --muted: #66737a;
  --line: rgba(15, 36, 48, 0.14);
  --shadow: 0 24px 70px rgba(15, 36, 48, 0.13);
  --radius-lg: 38px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin: 0 auto; }
.site-shell { overflow: hidden; }

.top-note {
  background: var(--ink);
  color: #dbe7e7;
  font-size: 13px;
  letter-spacing: .02em;
}
.top-note-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-note a { color: var(--teal); font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 243, 236, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 34px rgba(15, 36, 48, .07);
}
.nav-wrap {
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}
.brand img { width: 196px; height: auto; }
.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  font-size: 15px;
}
.desktop-nav > a, .nav-drop-button {
  position: relative;
  padding: 28px 0;
}
.desktop-nav > a::after, .nav-drop-button::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.desktop-nav > a:hover::after, .desktop-nav > a.active::after, .nav-drop-button:hover::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-drop-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  padding-left: 0;
  padding-right: 0;
}
.nav-drop-panel {
  position: absolute;
  top: 66px;
  left: 50%;
  transform: translate(-50%, 12px);
  width: 410px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: all .22s ease;
}
.nav-dropdown:hover .nav-drop-panel, .nav-dropdown:focus-within .nav-drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-drop-panel a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 14px;
  transition: background .2s ease, transform .2s ease;
}
.nav-drop-panel a:hover { background: var(--paper); transform: translateX(2px); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 13px 30px rgba(15,36,48,.17); }
.button-small { min-height: 44px; padding: 0 18px; font-size: 14px; }
.button-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.button-coral { background: var(--coral); border-color: var(--coral); color: var(--ink); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--ink); transition: transform .2s ease; }
.menu-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu {
  display: none;
  background: var(--paper);
  border-top: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mobile-menu.open { max-height: 780px; }
.mobile-menu-inner { padding: 20px 0 30px; display: grid; gap: 12px; }
.mobile-menu a { padding: 7px 0; font-weight: 700; }
.mobile-menu .mobile-service { padding-left: 17px; color: var(--muted); font-weight: 600; }
.mobile-label { margin-top: 7px; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 800;
  color: var(--ink-2);
}
.eyebrow::before { content: ''; width: 27px; height: 2px; background: var(--coral); }
.hero {
  position: relative;
  padding: 78px 0 90px;
}
.hero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -210px;
  top: -190px;
  border-radius: 50%;
  background: rgba(100,214,199,.2);
  filter: blur(2px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 72px;
  align-items: center;
}
h1, h2, h3, h4 { font-family: 'Manrope', Arial, sans-serif; line-height: 1.08; margin: 0; letter-spacing: -.045em; }
h1 { font-size: clamp(50px, 6vw, 86px); max-width: 760px; }
h2 { font-size: clamp(38px, 4.5vw, 62px); }
h3 { font-size: 24px; }
.hero h1 { margin: 20px 0 24px; }
.hero h1 .accent-word { position: relative; display: inline-block; z-index: 1; }
.hero h1 .accent-word::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 7px;
  height: 15px;
  background: var(--gold);
  z-index: -1;
  transform: rotate(-1.8deg);
  border-radius: 5px;
}
.hero-copy > p {
  max-width: 650px;
  font-size: 19px;
  color: var(--muted);
  margin: 0 0 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.proof-item {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.proof-item strong { display: block; font-family: 'Manrope'; color: var(--ink); font-size: 16px; margin-bottom: 3px; }

.hero-visual {
  position: relative;
  min-height: 610px;
}
.photo-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 78%;
  height: 540px;
  border-radius: 54px 54px 54px 170px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.photo-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.photo-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(15,36,48,.26));
}
.photo-small {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 43%;
  height: 255px;
  border-radius: 34px;
  overflow: hidden;
  border: 9px solid var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
  z-index: 3;
}
.photo-small img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute;
  padding: 15px 18px;
  border-radius: 17px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(15,36,48,.14);
  border: 1px solid rgba(255,255,255,.8);
  z-index: 4;
  animation: floatY 4.8s ease-in-out infinite;
}
.floating-card strong { display: block; font-family: 'Manrope'; font-size: 15px; }
.floating-card span { color: var(--muted); font-size: 12px; }
.floating-one { right: 8%; top: 68px; }
.floating-two { right: 28%; bottom: 34px; animation-delay: 1s; }
.node-orbit {
  position: absolute;
  width: 116px;
  height: 116px;
  right: -20px;
  bottom: 80px;
  border-radius: 50%;
  border: 1px dashed rgba(15,36,48,.3);
  animation: spin 16s linear infinite;
}
.node-orbit i { position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--coral); }
.node-orbit i:nth-child(1) { top: -6px; left: 50%; }
.node-orbit i:nth-child(2) { right: 1px; bottom: 17px; background: var(--teal-deep); }
.node-orbit i:nth-child(3) { left: 3px; bottom: 21px; background: var(--gold); }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes spin { to { transform: rotate(360deg); } }

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 26px;
  font-weight: 700;
  white-space: nowrap;
}
.marquee-item::after { content: '•'; color: var(--coral); font-size: 22px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 110px 0; }
.section-tight { padding: 80px 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-white { background: var(--white); }
.section-teal { background: #dff6f0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}
.section-head h2 { max-width: 760px; margin-top: 16px; }
.section-head p { max-width: 440px; color: var(--muted); margin: 0; }
.section-dark .section-head p { color: #b7c7cc; }
.section-dark .eyebrow { color: var(--teal); }

.layer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.layer-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.layer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.layer-card .number { font-family: 'Manrope'; font-weight: 800; font-size: 13px; color: var(--muted); }
.layer-card h3 { margin: 62px 0 15px; }
.layer-card p { color: var(--muted); margin: 0; }
.layer-card .dot-art {
  position: absolute;
  top: 23px;
  right: 23px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--coral) 0 6px, transparent 7px),
    radial-gradient(circle at 70% 35%, var(--teal-deep) 0 5px, transparent 6px),
    radial-gradient(circle at 48% 72%, var(--gold) 0 7px, transparent 8px),
    rgba(15,36,48,.045);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, background .25s ease;
}
.section-dark .service-card { background: #17313e; }
.service-card:hover { transform: translateY(-5px); background: #1d3d4c; }
.service-card::before {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .13;
  transition: transform .4s ease;
}
.service-card:nth-child(2n)::before { background: var(--coral); }
.service-card:nth-child(3n)::before { background: var(--gold); }
.service-card:hover::before { transform: scale(1.28); }
.service-card .service-icon {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.09);
  font-family: 'Manrope';
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 55px;
}
.service-card h3 { color: var(--paper); margin-bottom: 14px; }
.service-card p { color: #b7c7cc; max-width: 520px; margin: 0 0 24px; }
.service-link { display: inline-flex; gap: 8px; align-items: center; font-weight: 700; color: var(--paper); }
.service-link span { transition: transform .2s ease; }
.service-card:hover .service-link span { transform: translate(3px,-3px); }

.people-panel {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  min-height: 620px;
  border-radius: 42px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.people-image { position: relative; min-height: 520px; }
.people-image img { width: 100%; height: 100%; object-fit: cover; }
.people-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 65%, rgba(255,255,255,.15)); }
.people-copy { padding: 64px 58px; display: flex; flex-direction: column; justify-content: center; }
.people-copy h2 { margin: 16px 0 24px; }
.people-copy > p { color: var(--muted); font-size: 18px; }
.check-list { display: grid; gap: 12px; margin: 26px 0 34px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list li::before { content: '✓'; width: 24px; height: 24px; flex: 0 0 24px; display: grid; place-items: center; border-radius: 50%; background: #dff6f0; color: var(--teal-deep); font-weight: 800; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card { padding: 30px 24px; border-top: 1px solid rgba(247,243,236,.22); }
.process-number { font-family: 'Manrope'; font-size: 13px; color: var(--teal); font-weight: 800; letter-spacing: .1em; }
.process-card h3 { margin: 24px 0 12px; color: var(--paper); }
.process-card p { margin: 0; color: #aec0c5; }

.field-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.field-pill { padding: 10px 15px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-size: 14px; font-weight: 700; }
.section-dark .field-pill { background: rgba(255,255,255,.07); color: var(--paper); border-color: rgba(255,255,255,.13); }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--coral);
}
.cta-band::before, .cta-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(15,36,48,.15);
}
.cta-band::before { width: 360px; height: 360px; right: -110px; top: -180px; }
.cta-band::after { width: 180px; height: 180px; left: -70px; bottom: -80px; }
.cta-inner { display: flex; justify-content: space-between; gap: 50px; align-items: center; position: relative; z-index: 1; }
.cta-inner h2 { max-width: 750px; }
.cta-inner p { margin: 17px 0 0; max-width: 650px; color: rgba(15,36,48,.75); }

/* Service pages */
.service-hero { padding: 72px 0 86px; position: relative; }
.service-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.service-hero h1 { margin: 19px 0 24px; font-size: clamp(48px, 5.3vw, 78px); }
.service-hero p { font-size: 19px; color: var(--muted); max-width: 670px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0 32px; }
.service-tags span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 700; background: rgba(255,255,255,.52); }
.service-photo {
  position: relative;
  min-height: 530px;
  border-radius: 48px 48px 150px 48px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(15,36,48,.44)); }
.service-photo-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 20px 22px;
  background: rgba(247,243,236,.94);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}
.service-photo-card strong { display: block; font-family: 'Manrope'; margin-bottom: 5px; }
.service-photo-card span { color: var(--muted); font-size: 13px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; }
.feature-card .feature-label { font-size: 12px; color: var(--coral); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.feature-card h3 { margin: 27px 0 12px; }
.feature-card p { color: var(--muted); margin: 0; }

.split-section { display: grid; grid-template-columns: .86fr 1.14fr; gap: 70px; align-items: start; }
.split-sticky { position: sticky; top: 125px; }
.split-sticky h2 { margin: 15px 0 20px; }
.split-sticky p { color: var(--muted); }
.stack-list { display: grid; gap: 15px; }
.stack-item { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 25px; display: grid; grid-template-columns: auto 1fr; gap: 18px; }
.stack-icon { width: 45px; height: 45px; border-radius: 15px; display: grid; place-items: center; background: #dff6f0; color: var(--teal-deep); font-family: 'Manrope'; font-weight: 800; }
.stack-item h3 { font-size: 19px; letter-spacing: -.025em; margin-bottom: 6px; }
.stack-item p { color: var(--muted); margin: 0; font-size: 15px; }

.specialty-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.specialty-item { padding: 17px 18px; border-radius: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11); color: #e6eeee; font-weight: 700; }
.org-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 26px; }
.org-card { padding: 23px; border-radius: 18px; background: var(--white); border: 1px solid var(--line); }
.org-card strong { display: block; font-family: 'Manrope'; margin-bottom: 7px; }
.org-card span { color: var(--muted); font-size: 14px; }

/* Contact */
.page-hero { padding: 72px 0 62px; }
.page-hero h1 { margin: 18px 0 20px; font-size: clamp(46px, 5vw, 76px); }
.page-hero p { font-size: 19px; color: var(--muted); max-width: 760px; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 34px; align-items: start; }
.contact-aside { padding: 38px; border-radius: 30px; background: var(--ink); color: var(--paper); position: sticky; top: 124px; }
.contact-aside h2 { font-size: 38px; margin: 15px 0 20px; }
.contact-aside p { color: #b8c9cd; }
.contact-detail { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.contact-detail span { display: block; color: #8da3aa; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; margin-bottom: 7px; }
.contact-detail a, .contact-detail p { color: var(--paper); margin: 0; font-weight: 700; }
.form-card { padding: 38px; border-radius: 30px; background: var(--white); border: 1px solid var(--line); }
.form-card h2 { font-size: 38px; margin-bottom: 8px; }
.form-card > p { color: var(--muted); margin-top: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; margin-top: 26px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1px solid #d8dedf;
  border-radius: 14px;
  padding: 13px 14px;
  background: #fbfaf7;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--teal-deep); box-shadow: 0 0 0 4px rgba(26,169,151,.1); }
.form-note { font-size: 12px; color: var(--muted); margin: 15px 0 0; }
.alert { padding: 14px 16px; border-radius: 14px; margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #e4f7ef; color: #176b5e; }
.alert-error { background: #fff0ed; color: #a13b26; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

/* About */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-image { border-radius: 40px; min-height: 550px; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2 { margin: 15px 0 22px; }
.about-copy p { color: var(--muted); font-size: 17px; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value-card { padding: 30px; border-radius: 24px; background: var(--white); border: 1px solid var(--line); }
.value-card h3 { margin: 38px 0 13px; }
.value-mark { width: 50px; height: 50px; border-radius: 16px; background: var(--coral); display: grid; place-items: center; font-family: 'Manrope'; font-weight: 800; }
.value-card:nth-child(2) .value-mark { background: var(--teal); }
.value-card:nth-child(3) .value-mark { background: var(--gold); }
.value-card p { color: var(--muted); margin: 0; }

/* Legal */
.legal-wrap { max-width: 840px; margin: 0 auto; padding: 80px 0 110px; }
.legal-wrap h1 { font-size: clamp(46px, 5vw, 70px); margin-bottom: 20px; }
.legal-wrap h2 { font-size: 30px; margin: 42px 0 14px; }
.legal-wrap p, .legal-wrap li { color: #53636b; }
.legal-wrap li { margin-bottom: 8px; }

.site-footer { background: #0b1d26; color: var(--paper); padding: 78px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .7fr 1.05fr; gap: 55px; }
.footer-brand img { margin-bottom: 22px; }
.footer-brand p { max-width: 350px; color: #aabcc1; }
.footer-email { display: inline-block; margin-top: 11px; color: var(--teal); font-weight: 700; }
.footer-title { font-family: 'Manrope'; font-weight: 800; margin-bottom: 17px; }
.footer-grid > div:not(.footer-brand) a { display: block; color: #b7c6ca; margin: 9px 0; }
.footer-grid a:hover { color: var(--white); }
.footer-contact p { color: #b7c6ca; margin: 0 0 12px; }
.address-note { font-size: 11px !important; color: #7f969d !important; }
.footer-bottom { margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 25px; color: #82979d; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }

@media (max-width: 1050px) {
  .desktop-nav, .desktop-cta { display: none; }
  .menu-toggle, .mobile-menu { display: flex; }
  .nav-wrap { grid-template-columns: auto 1fr auto; }
  .menu-toggle { grid-column: 3; }
  .hero-grid, .service-hero-grid, .people-panel, .about-story, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 570px; max-width: 760px; }
  .photo-main { width: 75%; }
  .layer-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid, .specialty-grid { grid-template-columns: repeat(2,1fr); }
  .feature-grid, .value-grid { grid-template-columns: 1fr 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 32px; }
  .split-sticky, .contact-aside { position: static; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); --radius-lg: 28px; }
  .top-note-inner { justify-content: center; text-align: center; min-height: 44px; }
  .top-note-inner span { display: none; }
  .nav-wrap { height: 72px; }
  .brand img { width: 175px; }
  .hero, .service-hero { padding: 52px 0 66px; }
  .hero-grid, .service-hero-grid { gap: 42px; }
  h1, .service-hero h1 { font-size: clamp(43px, 13vw, 62px); }
  h2 { font-size: clamp(34px, 10vw, 49px); }
  .hero-copy > p, .service-hero p { font-size: 17px; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-visual { min-height: 455px; }
  .photo-main { width: 88%; height: 410px; border-radius: 38px 38px 38px 110px; }
  .photo-small { width: 45%; height: 185px; border-width: 6px; }
  .floating-one { top: 35px; right: 2%; }
  .floating-two { right: 11%; bottom: -10px; }
  .node-orbit { display: none; }
  .section { padding: 78px 0; }
  .section-tight { padding: 60px 0; }
  .section-head, .cta-inner { flex-direction: column; align-items: flex-start; }
  .layer-grid, .services-grid, .process-grid, .feature-grid, .specialty-grid, .org-grid, .value-grid { grid-template-columns: 1fr; }
  .layer-card { min-height: 240px; }
  .layer-card h3 { margin-top: 45px; }
  .service-card { min-height: 285px; padding: 28px; }
  .people-panel { border-radius: 28px; }
  .people-copy { padding: 38px 25px; }
  .service-photo { min-height: 420px; border-radius: 34px 34px 105px 34px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card, .contact-aside { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
