/* ===================================================================
   Adsharp — design tokens
   Concept: precision growth signal — sharp blade mark, coastal Florida
   energy, full-screen overlay navigation (not tab/folder UI).
=================================================================== */

:root {
  --ink: #0C1A17;
  --ink-soft: #163029;
  --signal: #D4FF3F;
  --ember: #FF4D2E;
  --mist: #EEF2EF;
  --paper: #F7FAF8;
  --stone: #6E8079;
  --line: rgba(12, 26, 23, 0.12);
  --white: #FFFFFF;
  --display: "Space Grotesk", system-ui, sans-serif;
  --body: "Figtree", system-ui, sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
body.nav-locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ---- Top bar + full-screen overlay nav ---- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12,26,23,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(0);
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease),
    opacity 0.35s var(--ease);
}
.topbar-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  transition: padding 0.35s var(--ease);
}
.topbar.is-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}
.topbar.is-scrolled {
  background: rgba(247, 250, 248, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(12, 26, 23, 0.1);
}
.topbar.is-scrolled .topbar-inner {
  padding: 0.75rem 0;
}
.topbar.is-scrolled .brand-text strong { color: var(--ink); }
.topbar.is-scrolled .brand-text span { color: var(--stone); }
.topbar.is-scrolled .nav-open {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--signal);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 102;
}
.brand img { width: 38px; height: 38px; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.3s var(--ease);
}
.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.3s var(--ease);
}
.topbar-on-dark:not(.is-scrolled) .brand-text strong { color: var(--white); }
.topbar-on-dark:not(.is-scrolled) .brand-text span { color: rgba(255,255,255,0.65); }

.nav-open {
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--signal);
  min-height: 38px;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-open:hover { transform: translateY(-1px); background: var(--ink-soft); }
.topbar-on-dark:not(.is-scrolled) .nav-open {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink);
}
.nav-open-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-open-bars i {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-overlay-panel {
  padding: 5.5rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.nav-overlay-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(12,26,23,0.35), rgba(12,26,23,0.82)),
    url("../assets/images/work.jpg") center / cover no-repeat;
}
.nav-overlay-visual::after {
  content: "GROWTH SIGNAL";
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--signal);
  max-width: 8ch;
  line-height: 0.95;
}
.nav-close {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
  z-index: 210;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--white);
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-close:hover { border-color: var(--signal); color: var(--signal); }

.nav-list { display: flex; flex-direction: column; gap: 0.15rem; }
.nav-list a {
  display: block;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  transition: color 0.2s, padding-left 0.25s var(--ease);
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--signal);
  padding-left: 0.4rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.45rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-signal {
  background: var(--signal);
  color: var(--ink);
  border-color: var(--signal);
}
.btn-signal:hover { background: #e4ff70; }
.btn-ink {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-ink:hover { background: var(--ink-soft); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost-dark:hover { background: var(--ink); color: var(--white); }
.btn-ember {
  background: var(--ember);
  color: var(--white);
  border-color: var(--ember);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12,26,23,0.97) 0%, rgba(12,26,23,0.86) 46%, rgba(12,26,23,0.48) 100%),
    url("../assets/images/hero-growth-analytics.png") 58% center / cover no-repeat;
  overflow: hidden;
  padding: 9rem 0 5rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 78% 35%, rgba(212,255,63,0.12), transparent 55%),
    repeating-linear-gradient(
      -28deg,
      transparent,
      transparent 48px,
      rgba(255,255,255,0.02) 48px,
      rgba(255,255,255,0.02) 49px
    );
  pointer-events: none;
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}
.hero-inner { max-width: 38rem; }
.hero-eyebrow {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.2;
  margin-bottom: 1.15rem;
  color: var(--signal);
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero h1 span {
  display: block;
}
.hero h1 span:last-child { color: var(--signal); }
.hero-lede {
  color: rgba(255,255,255,0.76);
  max-width: 48ch;
  margin-bottom: 1.4rem;
}
.hero-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  margin-bottom: 1.75rem;
  color: rgba(255,255,255,0.72);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-capabilities li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.hero-capabilities li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  background: var(--ember);
  clip-path: polygon(0 0, 100% 0, 100% 65%, 65% 100%, 0 100%);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-focus {
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(12,26,23,0.74);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}
.hero-focus-label {
  margin-bottom: 1rem;
  color: var(--signal);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-focus-item {
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-focus-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.05rem;
}
.hero-focus-item span {
  display: block;
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  line-height: 1.5;
}
.hero-anim {
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 0.8s var(--ease) forwards;
}
.hero-anim:nth-child(1) { animation-delay: 0.08s; }
.hero-anim:nth-child(2) { animation-delay: 0.22s; }
.hero-anim:nth-child(3) { animation-delay: 0.36s; }
.hero-anim:nth-child(4) { animation-delay: 0.5s; }
.hero-anim:nth-child(5) { animation-delay: 0.64s; }
@keyframes riseIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Page header */
.page-hero {
  padding: 8.5rem 0 3.5rem;
  background:
    linear-gradient(180deg, rgba(12,26,23,0.72), rgba(12,26,23,0.92)),
    url("../assets/images/office.jpg") center / cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero.page-hero-services {
  background:
    linear-gradient(180deg, rgba(12,26,23,0.7), rgba(12,26,23,0.92)),
    url("../assets/images/work.jpg") center / cover no-repeat;
}
.page-hero.page-hero-about {
  background:
    linear-gradient(180deg, rgba(12,26,23,0.68), rgba(12,26,23,0.9)),
    url("../assets/images/coast.jpg") center / cover no-repeat;
}
.page-hero.page-hero-contact {
  background:
    linear-gradient(180deg, rgba(12,26,23,0.7), rgba(12,26,23,0.92)),
    url("../assets/images/meeting.jpg") center / cover no-repeat;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 220px;
  height: 220px;
  background: var(--signal);
  opacity: 0.12;
  clip-path: polygon(30% 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 30%);
}
.page-hero .eyebrow {
  color: var(--signal);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 16ch;
  color: var(--white);
}
.page-hero p {
  color: rgba(255,255,255,0.72);
  max-width: 48ch;
  margin-top: 1rem;
}

section { padding: 5rem 0; }
.section-label {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  max-width: 18ch;
  margin-bottom: 1rem;
}
.section-lede {
  color: var(--stone);
  max-width: 48ch;
}

.mission {
  background: var(--white);
  border-block: 1px solid var(--line);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
.mission-stat {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding-right: 1.5rem;
  border-right: 1px solid var(--line);
  align-self: stretch;
}
.mission-stat .stat-block {
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}
.mission-stat .stat-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.stat-block strong {
  display: block;
  font-family: var(--display);
  font-size: 2.6rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.stat-block span {
  display: block;
  margin-top: 0.35rem;
  color: var(--stone);
  font-size: 0.92rem;
}

.quotes {
  position: relative;
  background:
    linear-gradient(180deg, rgba(12,26,23,0.88), rgba(12,26,23,0.94)),
    url("../assets/images/meeting.jpg") center / cover no-repeat;
  color: var(--white);
  background-attachment: fixed;
}
.photo-band {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 3.5rem 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12,26,23,0.88) 0%, rgba(12,26,23,0.55) 55%, rgba(12,26,23,0.35) 100%),
    url("../assets/images/coast.jpg") center / cover no-repeat;
}
.photo-band-title {
  color: var(--white);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  max-width: 14ch;
  margin: 0 0 1rem;
  line-height: 1.12;
}
.photo-band-title span {
  display: block;
}
.photo-band-title span:first-child {
  font-weight: 700;
}
.photo-band-title span:last-child {
  position: relative;
  margin-top: 0.55rem;
  padding-top: 0.65rem;
  font-weight: 500;
  color: var(--signal);
}
.photo-band-title span:last-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.75rem;
  height: 2px;
  background: var(--signal);
}
.photo-band p {
  color: rgba(255,255,255,0.78);
  max-width: 42ch;
  margin: 0 0 1.25rem;
}
.mission-visual {
  margin-top: 1.5rem;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  clip-path: polygon(6% 0, 100% 0, 100% 88%, 94% 100%, 0 100%, 0 12%);
  border: 1px solid var(--line);
}
.quotes .section-label { color: var(--signal); }
.quotes .section-title { color: var(--white); }
.quote-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.quote-card {
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}
.quote-card p {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 1.25rem;
}
.quote-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--signal);
  letter-spacing: 0.04em;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.75rem;
  border-top: 1px solid var(--line);
}
.process-step {
  padding: 1.75rem 1.35rem 1.75rem 0;
  border-right: 1px solid var(--line);
  padding-right: 1.5rem;
  margin-right: 1.5rem;
}
.process-step:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.process-step p {
  color: var(--stone);
  font-size: 0.95rem;
  margin: 0;
}

.contact-band { background: var(--mist); }
.contact-band-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}
.contact-copy h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  max-width: 16ch;
}
.contact-copy p { color: var(--stone); max-width: 38ch; }
.contact-details {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-details div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.contact-details dt {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  padding-top: 0.2rem;
}
.contact-details dd { margin: 0; }
.contact-details a { text-decoration: underline; text-underline-offset: 3px; }
.contact-next {
  max-width: 38rem;
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--signal);
  background: rgba(255,255,255,0.62);
}
.contact-next h3 {
  margin-bottom: 0.85rem;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.contact-next ul {
  display: grid;
  gap: 0.55rem;
}
.contact-next li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--stone);
  font-size: 0.92rem;
}
.contact-next li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--ember);
  clip-path: polygon(0 0, 100% 0, 100% 65%, 65% 100%, 0 100%);
}

form {
  background: var(--white);
  padding: 1.75rem;
  border: 1px solid var(--line);
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--stone);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--ink); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
#form-status {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--ember);
  min-height: 1.2em;
}

.service-stack { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-row:first-child { border-top: 1px solid var(--line); }
.service-row h3 {
  font-size: 1.45rem;
  margin: 0;
}
.service-row p {
  margin: 0;
  color: var(--stone);
}

.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.25rem 2.5rem 1.25rem 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--ember);
}
.faq-item.open .faq-q::after { content: "–"; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  padding: 0 0 1.25rem;
  color: var(--stone);
  max-width: 58ch;
}

.legal { max-width: 720px; }
.legal h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.65rem;
}
.legal p, .legal li {
  color: var(--stone);
  font-size: 0.98rem;
}
.legal ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1em;
}
.legal li { margin-bottom: 0.4rem; }

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
.about-panel {
  background:
    linear-gradient(180deg, rgba(12,26,23,0.25) 0%, rgba(12,26,23,0.92) 100%),
    url("../assets/images/office.jpg") center / cover no-repeat;
  color: var(--white);
  padding: 2rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.about-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 200px;
  height: 200px;
  background: var(--signal);
  opacity: 0.18;
  clip-path: polygon(40% 0, 100% 0, 100% 60%, 60% 100%, 0 100%, 0 40%);
}
.about-panel h3 {
  position: relative;
  font-size: 1.6rem;
  color: var(--signal);
}
.about-panel p {
  position: relative;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.cta-strip {
  background: var(--signal);
  color: var(--ink);
  padding: 3rem 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  max-width: 18ch;
  margin: 0;
}

footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.foot-brand img { width: 44px; height: 44px; }
.foot-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.foot-brand span {
  display: block;
  font-size: 0.88rem;
  margin-top: 0.35rem;
  max-width: 24ch;
}
.foot-col h4 {
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 1rem;
}
.foot-col a {
  display: block;
  padding: 0.28rem 0;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--signal); }
.foot-fine {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.foot-fine a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.foot-fine a:hover { color: var(--signal); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-overlay { grid-template-columns: 1fr; }
  .nav-overlay-visual { display: none; }
  .nav-overlay-panel { border-right: 0; padding: 5rem 1.5rem 2rem; }
  .hero {
    min-height: auto;
    padding: 8.5rem 0 4.5rem;
    background-position: 62% center;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-focus {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .hero-focus-label { grid-column: 1 / -1; margin-bottom: 0; }
  .hero-focus-item { padding-bottom: 0; }
  .mission-grid,
  .contact-band-grid,
  .about-split { grid-template-columns: 1fr; }
  .mission-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
  }
  .mission-stat .stat-block {
    flex: 1 1 15rem;
    padding: 0;
    border-bottom: 0;
  }
  .quote-rail { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; border-top: 0; }
  .process-step {
    border-right: 0;
    margin-right: 0;
    padding: 1.25rem 0;
    border-top: 1px solid var(--line);
  }
  .service-row { grid-template-columns: 1fr; }
  .service-row p { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .quotes { background-attachment: scroll; }
  .photo-band { min-height: 220px; }
}
@media (max-width: 600px) {
  .container { width: min(100% - 1.75rem, var(--max)); }
  .topbar-inner { width: min(100% - 1.75rem, var(--max)); }
  .topbar-inner { padding: 0.6rem 0; }
  .brand img { width: 34px; height: 34px; }
  .hero { padding: 7.5rem 0 3.75rem; }
  .hero h1 { font-size: clamp(2.45rem, 13vw, 3.5rem); }
  .hero-focus { grid-template-columns: 1fr; }
  .hero-focus-label { grid-column: auto; }
  .process-row { grid-template-columns: 1fr; }
  .brand-text span { display: none; }
  .contact-details div { grid-template-columns: 1fr; gap: 0.15rem; }
}
