:root {
  --navy: #071622;
  --navy-2: #0c2130;
  --navy-3: #113144;
  --green: #567b48;
  --green-2: #6f965e;
  --sage: #b9cfae;
  --sage-2: #e9f0e3;
  --cream: #f7f3ea;
  --paper: #fffdf7;
  --muted: #64717a;
  --muted-dark: rgba(255,255,255,.72);
  --line: rgba(7,22,34,.11);
  --line-dark: rgba(255,255,255,.13);
  --shadow: 0 26px 80px rgba(7,22,34,.18);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background:
    radial-gradient(circle at 18% 0%, rgba(185,207,174,.34), transparent 32%),
    var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1180px, calc(100% - 36px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 14px 10px 20px;
  border: 1px solid rgba(7,22,34,.10);
  border-radius: 999px;
  background: rgba(255,253,247,.88);
  box-shadow: 0 18px 55px rgba(7,22,34,.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: top .22s ease, width .22s ease, padding .22s ease, background .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.site-header.scrolled {
  top: 10px;
  width: min(1080px, calc(100% - 28px));
  padding-top: 8px;
  padding-bottom: 8px;
  background: rgba(255,253,247,.96);
  border-color: rgba(7,22,34,.12);
  box-shadow: 0 16px 46px rgba(7,22,34,.13);
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: clamp(200px, 21vw, 236px);
  height: 46px;
  overflow: visible;
  flex: 0 0 auto;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(7,22,34,.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.desktop-nav a { transition: color .18s ease, transform .18s ease; }
.desktop-nav a:hover { color: var(--green); transform: translateY(-1px); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 13px 30px rgba(86,123,72,.28);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(86,123,72,.34); }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--navy);
  background: var(--cream);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url('irish-atlantic-coastline.jpg') center right/cover no-repeat;
  transform: scale(1.02);
  opacity: .86;
  filter: saturate(1.02) brightness(1.03) contrast(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 74% 30%, rgba(111,150,94,.10), transparent 30%),
    radial-gradient(circle at 8% 18%, rgba(255,253,247,.84), rgba(247,243,234,.46) 32%, transparent 56%),
    linear-gradient(90deg, rgba(255,253,247,.88) 0%, rgba(247,243,234,.52) 36%, rgba(247,243,234,.20) 64%, rgba(247,243,234,.08) 100%),
    linear-gradient(180deg, rgba(255,253,247,.22) 0%, rgba(247,243,234,.18) 48%, rgba(247,243,234,.78) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -170px;
  bottom: 18%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(111,150,94,.20);
  filter: blur(80px);
}
.hero-inner {
  width: min(1180px, calc(100% - clamp(36px, 8vw, 136px)));
  min-height: 100vh;
  margin: 0 auto;
  padding: 148px 0 74px;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 760px; }
.eyebrow,
.label,
.card-kicker {
  margin: 0 0 16px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .98;
}
h1 {
  max-width: 840px;
  font-size: clamp(48px, 7vw, 92px);
}
h2 { font-size: clamp(38px, 5vw, 66px); }
.hero h1 { color: var(--navy); }
.hero .eyebrow,
.hero .card-kicker { color: var(--green); }

.hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(7,22,34,.72);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.68;
}
.promise {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 900;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-3px); }
.primary {
  color: white;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 20px 48px rgba(86,123,72,.32);
}
.secondary {
  color: var(--navy);
  border: 1px solid rgba(7,22,34,.13);
  background: rgba(255,253,247,.66);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 38px rgba(7,22,34,.08);
}
.secondary:hover { border-color: rgba(86,123,72,.34); background: rgba(255,253,247,.90); }

.launch-card {
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid rgba(7,22,34,.10);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,253,247,.90), rgba(247,243,234,.78));
  box-shadow: 0 30px 90px rgba(7,22,34,.13);
  backdrop-filter: blur(22px);
}
.launch-card h2 {
  color: var(--navy);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.04;
}
.launch-card p {
  margin: 18px 0 0;
  color: rgba(7,22,34,.70);
  line-height: 1.7;
}
.mini-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.mini-grid div {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(7,22,34,.09);
  background: rgba(255,255,255,.54);
}
.mini-grid strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mini-grid span {
  display: block;
  margin-top: 6px;
  color: rgba(7,22,34,.58);
  font-size: 14px;
}

.proof-strip {
  position: relative;
  z-index: 2;
  padding: 0 clamp(18px, 5vw, 68px);
  margin-top: -44px;
}
.proof-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(7,22,34,.10);
  border-radius: 26px;
  background: rgba(255,253,247,.94);
  box-shadow: 0 24px 70px rgba(7,22,34,.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.proof-inner div {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}
.proof-inner div:last-child { border-right: 0; }
.proof-inner strong {
  display: block;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}
.proof-inner span {
  display: block;
  margin-top: 8px;
  color: rgba(7,22,34,.62);
  font-size: 14px;
}

.section { padding: clamp(84px, 10vw, 140px) clamp(18px, 5vw, 68px); }
.section-inner { width: min(1180px, 100%); margin: 0 auto; }
.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 90px);
}
.align-center { align-items: center; }
.section-copy p:not(.label),
.section-head p,
.note-card p,
.fit-grid p,
.service-grid p,
.comparison p,
.timeline p,
.contact-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.section-copy > p:not(.label) { margin: 22px 0 0; max-width: 610px; }
.section-head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}
.section-head h2 { color: var(--navy); }
.section-head p { margin: 18px auto 0; max-width: 650px; }
.label { color: var(--green); }

.model { background: var(--cream); }
.comparison {
  display: grid;
  gap: 18px;
}
.comparison article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,253,247,.76);
  box-shadow: 0 18px 55px rgba(7,22,34,.06);
}
.comparison span,
.service-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.comparison h3,
.service-grid h3,
.fit-grid h3,
.timeline h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.02em;
}
.comparison p { margin: 12px 0 0; }
.highlight-card {
  color: white;
  background:
    radial-gradient(circle at 90% 0%, rgba(111,150,94,.22), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--navy-3)) !important;
}
.highlight-card span { color: var(--sage); }
.highlight-card h3 { color: white; }
.highlight-card p { color: rgba(255,255,255,.73); }

.services { background: var(--paper); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.service-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(86,123,72,.18);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffef9, #f9f5ed);
  box-shadow: 0 18px 50px rgba(7,22,34,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(86,123,72,.34);
  box-shadow: 0 24px 62px rgba(7,22,34,.08);
}
.service-grid h3 { font-size: 20px; }
.service-grid p { margin: 12px 0 0; font-size: 15px; }

.dark-section {
  color: white;
  background:
    radial-gradient(circle at 18% 12%, rgba(111,150,94,.22), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(185,207,174,.14), transparent 34%),
    linear-gradient(135deg, #06111c 0%, #0a1d2a 52%, #0d2b24 100%);
}
.dark-section h2,
.dark-section .timeline h3 { color: white; }
.dark-section .section-copy p:not(.label),
.dark-section .timeline p { color: var(--muted-dark); }
.dark-section .label { color: var(--sage); }
.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.timeline {
  display: grid;
  gap: 16px;
}
.timeline article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: rgba(255,255,255,.07);
}
.timeline span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185,207,174,.38);
  border-radius: 999px;
  color: white;
  font-weight: 900;
}
.timeline p { margin: 8px 0 0; font-size: 15px; }

.fit { background: var(--cream); }
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.fit-grid article {
  min-height: 232px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,253,247,.78);
  box-shadow: 0 18px 60px rgba(7,22,34,.06);
}
.fit-grid p { margin: 14px 0 0; }

.founder-note { background: var(--paper); }
.note-card {
  max-width: 1000px;
  padding: clamp(34px, 6vw, 64px);
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 100% 0%, rgba(111,150,94,.22), transparent 36%),
    linear-gradient(135deg, var(--navy), #102a22);
  box-shadow: var(--shadow);
}
.note-card .label { color: var(--sage); }
.note-card h2 { max-width: 820px; color: white; }
.note-card p:not(.label) {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 18px;
}

.contact {
  background: linear-gradient(180deg, var(--paper), var(--cream));
}
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .7fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 38px;
  color: white;
  background:
    radial-gradient(circle at 100% 0%, rgba(111,150,94,.24), transparent 34%),
    linear-gradient(135deg, #06111c, #0b2233 56%, #0e2f25);
  box-shadow: var(--shadow);
}
.contact-card .label { color: var(--sage); }
.contact-card h2 { color: white; }
.contact-card p { color: rgba(255,255,255,.76); margin: 22px 0 0; }
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.contact-points span {
  display: inline-flex;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.07);
  font-size: 13px;
  font-weight: 700;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  outline: 0;
  color: white;
  background: rgba(255,255,255,.08);
  padding: 15px 16px;
  font: inherit;
  resize: vertical;
  transition: border-color .18s ease, background .18s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.38); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(185,207,174,.62);
  background: rgba(255,255,255,.11);
}
.contact-form .button { width: 100%; }
.email-link {
  color: var(--sage);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}
.hidden { display: none; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 32px clamp(18px, 5vw, 68px);
  color: rgba(255,255,255,.70);
  background: #06111c;
}
.footer img {
  width: 112px;
  height: auto;
  filter: brightness(1.5) contrast(.9);
}
.footer p { margin: 10px 0 0; font-size: 14px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-links a { transition: color .18s ease; }
.footer-links a:hover { color: var(--sage); }
.footer span { font-size: 14px; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .68s ease, transform .68s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid article:last-child { grid-column: span 2; }
}

@media (max-width: 920px) {
  .desktop-nav { display: none; }
  .site-header { top: 12px; width: calc(100% - 28px); padding: 10px 12px 10px 16px; }
  .site-header.scrolled { top: 8px; width: calc(100% - 24px); }
  .brand { width: 190px; height: 42px; }
  .brand img { width: 100%; height: 100%; }
  .split,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    padding-top: 134px;
    align-items: start;
  }
  .proof-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-inner div:nth-child(2) { border-right: 0; }
  .proof-inner div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .fit-grid { grid-template-columns: 1fr; }
}


@media (max-width: 920px) {
  .hero-bg { opacity: .76; background-position: center right; }
  .hero-overlay {
    background:
      radial-gradient(circle at 8% 18%, rgba(255,253,247,.90), rgba(247,243,234,.58) 40%, transparent 66%),
      linear-gradient(90deg, rgba(255,253,247,.88) 0%, rgba(247,243,234,.56) 56%, rgba(247,243,234,.20) 100%),
      linear-gradient(180deg, rgba(255,253,247,.30) 0%, rgba(247,243,234,.28) 56%, rgba(247,243,234,.88) 100%);
  }
}

@media (max-width: 640px) {
  .site-header { gap: 10px; padding: 9px 10px 9px 14px; }
  .brand { width: 160px; height: 36px; }
  .brand img { width: 100%; height: 100%; }
  .nav-cta { min-height: 38px; padding: 0 13px; font-size: 11px; }
  .hero-inner {
    width: calc(100% - 36px);
    min-height: auto;
    padding: 120px 0 74px;
  }
  h1 { font-size: clamp(44px, 13vw, 64px); }
  h2 { font-size: clamp(36px, 10vw, 48px); }
  .hero-copy { font-size: 16px; line-height: 1.62; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; min-height: 54px; }
  .proof-strip { margin-top: -28px; }
  .proof-inner { grid-template-columns: 1fr; }
  .proof-inner div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .proof-inner div:last-child { border-bottom: 0; }
  .section { padding: 76px 18px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article:last-child { grid-column: auto; }
  .timeline article { grid-template-columns: 1fr; }
  .contact-card { padding: 30px 20px; border-radius: 28px; }
  .footer { flex-direction: column; text-align: center; }
}

/* Hybrid: premium visual style with simplified launch-page content */
.compact-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.compact-service-grid article {
  min-height: 232px;
}
.dark-section .comparison article:not(.highlight-card) {
  border-color: var(--line-dark);
  background: rgba(255,255,255,.07);
}
.dark-section .comparison article:not(.highlight-card) span { color: var(--sage); }
.dark-section .comparison article:not(.highlight-card) h3 { color: white; }
.dark-section .comparison article:not(.highlight-card) p { color: var(--muted-dark); }
@media (max-width: 1120px) {
  .compact-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compact-service-grid article:last-child { grid-column: auto; }
}


@media (max-width: 640px) {
  .compact-service-grid { grid-template-columns: 1fr; }
}

/* Mobile polish: keep the desktop visual identity instead of letting it compress */
@media (max-width: 920px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    top: max(10px, env(safe-area-inset-top));
    width: calc(100% - 24px);
    gap: 12px;
    padding: 8px 9px 8px 12px;
    border-radius: 999px;
    background: rgba(255,253,247,.92);
    box-shadow: 0 14px 42px rgba(7,22,34,.12);
  }

  .site-header.scrolled {
    top: max(8px, env(safe-area-inset-top));
    width: calc(100% - 20px);
    background: rgba(255,253,247,.97);
    box-shadow: 0 12px 36px rgba(7,22,34,.15);
  }

  .brand {
    width: min(54vw, 190px);
    height: 40px;
    min-width: 148px;
  }

  .brand img {
    object-fit: contain;
    object-position: left center;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 15px;
    font-size: 11px;
    letter-spacing: .07em;
    white-space: nowrap;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-bg {
    opacity: .90;
    background-position: 62% center;
    transform: scale(1.01);
    filter: saturate(1.04) brightness(1.03) contrast(1.0);
  }

  .hero-overlay {
    background:
      radial-gradient(ellipse at 28% 76%, rgba(255,253,247,.84), rgba(247,243,234,.44) 34%, transparent 68%),
      radial-gradient(circle at 80% 18%, rgba(111,150,94,.10), transparent 30%),
      linear-gradient(90deg, rgba(255,253,247,.86) 0%, rgba(247,243,234,.46) 54%, rgba(247,243,234,.14) 100%),
      linear-gradient(180deg, rgba(255,253,247,.34) 0%, rgba(255,253,247,.10) 32%, rgba(247,243,234,.84) 100%);
  }

  .hero-inner {
    width: calc(100% - 40px);
    min-height: 100svh;
    padding: 132px 0 84px;
    align-items: center;
  }

  .hero-content {
    max-width: 640px;
    text-shadow: 0 1px 18px rgba(255,253,247,.72);
  }

  .hero .eyebrow {
    max-width: 520px;
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: .13em;
  }

  .hero-copy {
    max-width: 600px;
    margin-top: 22px;
    line-height: 1.62;
  }

  .promise {
    margin-top: 16px;
  }

  .proof-strip {
    margin-top: -36px;
    padding-inline: 20px;
  }

  .proof-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 24px;
  }

  .proof-inner div {
    padding: 20px 18px;
  }

  .proof-inner div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .proof-inner div:nth-child(even) {
    border-right: 0;
  }

  .proof-inner div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .proof-inner div:nth-child(n+3) {
    border-bottom: 0;
  }

  .proof-inner strong {
    font-size: clamp(26px, 6vw, 36px);
  }

  .proof-inner span {
    font-size: 13px;
    line-height: 1.35;
  }

  .section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .comparison article,
  .service-grid article,
  .fit-grid article {
    border-radius: 22px;
  }

  .service-grid article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 18px);
    padding: 8px 8px 8px 10px;
  }

  .site-header.scrolled {
    width: calc(100% - 16px);
  }

  .brand {
    width: 150px;
    min-width: 142px;
    height: 36px;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 13px;
    font-size: 10px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-bg {
    opacity: .93;
    background-position: 58% center;
    transform: scale(1.02);
  }

  .hero-overlay {
    background:
      radial-gradient(ellipse at 28% 68%, rgba(255,253,247,.86), rgba(247,243,234,.48) 36%, transparent 72%),
      linear-gradient(90deg, rgba(255,253,247,.88) 0%, rgba(247,243,234,.52) 60%, rgba(247,243,234,.18) 100%),
      linear-gradient(180deg, rgba(255,253,247,.30) 0%, rgba(255,253,247,.08) 26%, rgba(247,243,234,.86) 100%);
  }

  .hero::after {
    width: 300px;
    height: 300px;
    right: -120px;
    bottom: 20%;
    filter: blur(62px);
  }

  .hero-inner {
    width: calc(100% - 32px);
    min-height: 100svh;
    padding: 112px 0 76px;
    align-items: center;
  }

  h1 {
    font-size: clamp(42px, 11.6vw, 56px);
    line-height: 1.02;
    letter-spacing: -.055em;
  }

  h2 {
    font-size: clamp(34px, 9.4vw, 46px);
    line-height: 1.03;
  }

  .hero .eyebrow {
    max-width: 310px;
    font-size: 10px;
    line-height: 1.45;
  }

  .hero-copy {
    max-width: 95%;
    margin-top: 20px;
    font-size: 15.8px;
    line-height: 1.58;
  }

  .promise {
    font-size: 17px;
    line-height: 1.35;
  }

  .hero-actions {
    width: 100%;
    max-width: 390px;
    margin-top: 26px;
    gap: 10px;
  }

  .button {
    min-height: 52px;
    padding-inline: 18px;
    font-size: 11.5px;
  }

  .proof-strip {
    margin-top: -26px;
    padding-inline: 14px;
  }

  .proof-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 22px;
  }

  .proof-inner div {
    padding: 18px 14px;
    border-bottom: 0;
  }

  .proof-inner div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .proof-inner div:nth-child(even) {
    border-right: 0;
  }

  .proof-inner div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .proof-inner strong {
    font-size: 28px;
  }

  .proof-inner span {
    margin-top: 6px;
    font-size: 12px;
  }

  .section {
    padding: 72px 16px;
  }

  .section-head {
    text-align: left;
  }

  .section-copy p:not(.label),
  .section-head p,
  .service-grid p,
  .comparison p,
  .contact-card p {
    font-size: 15px;
    line-height: 1.66;
  }

  .comparison article,
  .service-grid article {
    padding: 22px;
  }

  .contact-card {
    padding: 28px 18px;
    border-radius: 26px;
  }

  .contact-points {
    gap: 8px;
  }

  .contact-points span {
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding: 30px 18px;
  }
}

@media (max-width: 390px) {
  .brand {
    width: 136px;
    min-width: 132px;
  }

  .nav-cta {
    padding: 0 11px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .proof-inner span {
    font-size: 11.5px;
  }
}
