/* Full site — fire & ice brand theme */

@import url("brand.css");

:root {
  --bg: var(--brand-navy);
  --surface: var(--brand-surface);
  --text: var(--brand-white);
  --muted: var(--brand-muted);
  --accent: var(--brand-flame);
  --accent-hover: #fbbf6a;
  --accent-soft: var(--brand-ice-soft);
  --link: var(--brand-link);
  --border: rgba(255, 255, 255, 0.09);
  --radius: 10px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans",
    sans-serif;
  --max: 1080px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.site {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--brand-navy);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -12%, rgba(245, 158, 75, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 85% 50% at 50% 105%, rgba(30, 58, 90, 0.32) 0%, transparent 55%);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  z-index: 100;
  border-radius: 6px;
}

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

.inner.narrow {
  max-width: 42rem;
}

.site-header {
  background: rgba(11, 17, 24, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: block;
  color: var(--text);
  text-decoration: none;
  line-height: 1.2;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-tag {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.1rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--brand-white);
}

.header-cta {
  margin-left: 0.25rem;
}

main {
  flex: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.button.primary {
  background: linear-gradient(135deg, var(--brand-flame) 0%, var(--brand-fire) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.button.primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.45);
}

.button.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--brand-white);
}

.button.ghost:hover {
  background: var(--brand-ice-soft);
  border-color: var(--brand-ice);
}

/* Hero */
.site-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: transparent;
  border-bottom: none;
}

.site-hero .inner {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .site-hero .inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

.site-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--brand-white);
}

.site-hero .lede {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 38ch;
}

.site-hero .lede strong {
  color: var(--text);
  font-weight: 600;
}

.hero-aside {
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
}

.hero-aside.brand-frame {
  border-radius: var(--radius);
}

.hero-aside h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.hero-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-aside li {
  padding: 0.4rem 0;
  padding-left: 1.35rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-aside li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-flame);
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
}

/* Trust strip */
.trust-strip {
  background: rgba(21, 34, 56, 0.6);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.trust-list strong {
  color: var(--text);
}

/* Sections */
.section {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.02);
}

.section h2 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  color: var(--brand-white);
}

.section-intro {
  margin: 0 0 1.75rem;
  color: var(--muted);
  max-width: 52ch;
}

/* Services */
.service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  background: var(--surface);
  border: 1px solid rgba(45, 212, 255, 0.15);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}

.service-card:nth-child(even) {
  border-color: rgba(249, 115, 22, 0.2);
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--brand-ice);
}

.service-card:nth-child(even) h3 {
  color: var(--brand-flame);
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.service-tags {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.service-tags span {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  background: rgba(10, 18, 34, 0.5);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--muted);
}

/* Audience */
.audience-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.audience-card {
  padding: 1rem 0;
}

.audience-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.audience-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Approach */
.approach-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .approach-list {
    grid-template-columns: 1fr 1fr;
  }
}

.approach-list li {
  padding-left: 1rem;
  border-left: 3px solid var(--brand-ice);
}

.approach-list li:nth-child(even) {
  border-left-color: var(--brand-flame);
}

.approach-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.approach-list p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Area */
.area-note {
  background: rgba(21, 34, 56, 0.8);
  border: 1px solid var(--brand-border-ice);
  outline: 1px solid rgba(232, 121, 168, 0.25);
  outline-offset: 2px;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.area-note strong {
  color: var(--text);
}

/* CTA band */
.cta-band {
  background: rgba(23, 36, 51, 0.65);
  border-top: 1px solid var(--border);
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  margin: 0 0 0.5rem;
}

.cta-band p {
  margin: 0 0 1.25rem;
  opacity: 0.92;
  max-width: 40ch;
  margin-inline: auto;
}

.cta-band .button.primary {
  background: linear-gradient(135deg, var(--brand-flame), var(--brand-fire));
  color: #fff;
}

.cta-band .button.primary:hover {
  filter: brightness(1.08);
}

.cta-band .button.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.cta-band .button.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.cta-band .actions {
  justify-content: center;
}

/* Page template */
.page {
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.page h1 {
  margin-top: 0;
  letter-spacing: -0.02em;
}

.page h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
}

.page p,
.page li {
  color: var(--muted);
}

.page strong {
  color: var(--text);
}

.contact-list {
  padding-left: 1.25rem;
}

.contact-list a,
.contact-box a {
  color: var(--brand-ice);
}

.contact-box {
  padding: 1.15rem 1.35rem;
  margin-top: 0;
  background: rgba(23, 36, 51, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.contact-box > p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-box > p:last-child {
  margin-bottom: 0;
}

.contact-service-area {
  margin: 0;
  color: var(--muted);
}

.contact-area-range {
  margin: 0.2rem 0 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--brand-white);
  line-height: 1.45;
}

.contact-box strong,
.contact-service-area strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-flame);
}

.contact-box a {
  font-size: 1.02rem;
  font-weight: 600;
}

.page .contact-box {
  margin-top: 1rem;
}

.page h1 + .contact-box {
  margin-top: 0.65rem;
}

.contact-box.brand-frame {
  border-radius: var(--radius);
}

.contact-name {
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--brand-flame);
  font-size: 1rem;
  color: var(--brand-white);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(10, 18, 34, 0.85);
  padding: 1.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  line-height: 1.5;
}

.site-footer a {
  color: var(--brand-ice);
}

.preview-banner {
  background: rgba(245, 158, 75, 0.1);
  border-bottom: 1px solid var(--border);
  color: var(--brand-muted);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.preview-banner a {
  color: var(--brand-white);
  font-weight: 600;
}

.page h1 {
  color: var(--brand-white);
}

/* ——— Mobile & touch ——— */

body.site {
  overflow-x: hidden;
}

body.site.nav-open {
  overflow: hidden;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex: 1 1 auto;
  min-width: 0;
}

.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  margin-left: auto;
}

.header-action-btn {
  padding: 0.45rem 0.7rem;
  min-height: 2.5rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.text-muted {
  color: var(--muted);
}

.contact-box-last {
  margin-bottom: 0;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.page-actions .button {
  min-height: 2.75rem;
}

.area-note a {
  color: var(--accent);
  word-break: break-word;
}

@media (max-width: 767px) {
  .inner {
    width: min(100% - 1.25rem, var(--max));
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }

  .header-row {
    width: 100%;
    flex: 1 1 auto;
  }

  .header-mobile-actions {
    display: flex;
  }

  .logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .logo-img {
    height: clamp(2.75rem, 10vw, 3.5rem);
    max-width: 3.5rem;
  }

  .logo-brand {
    font-size: clamp(1.15rem, 4.2vw, 1.75rem);
  }

  .nav {
    display: none;
  }

  .site-hero .lede {
    max-width: none;
    font-size: 1.05rem;
  }

  .site-hero h1 {
    font-size: clamp(1.65rem, 6vw, 2.1rem);
  }

  .actions .button {
    flex: 1 1 100%;
    min-height: 2.75rem;
    justify-content: center;
  }

  .trust-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 2rem 0;
  }

  .cta-band .actions .button {
    flex: 1 1 100%;
    min-height: 2.75rem;
  }

  .preview-banner {
    font-size: 0.8rem;
    line-height: 1.45;
    padding: 0.6rem 0.75rem;
  }

  .page h1 {
    font-size: clamp(1.5rem, 5vw, 1.85rem);
  }

  .contact-box a {
    word-break: break-all;
  }

  .page-actions .button {
    flex: 1 1 100%;
    justify-content: center;
  }
}

/* ——— Homepage ——— */

.section-intro-home {
  padding: clamp(1.1rem, 2.5vw, 1.65rem) 0 clamp(0.85rem, 2vw, 1.35rem);
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-copy {
  min-width: 0;
}

.intro-home-inner {
  max-width: 44rem;
}

@media (min-width: 900px) {
  .hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: center;
  }

  .intro-home-inner {
    max-width: none;
  }
}

/* Hero image gallery */
.hero-gallery {
  width: 100%;
  min-width: 0;
}

.hero-gallery-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 8rem;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.hero-gallery-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-gallery-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.hero-gallery-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-gallery-slide {
    transition: none;
  }
}

.hero-gallery-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: min(520px, 52vh);
  object-fit: contain;
  object-position: center;
}

.hero-gallery-slide--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  padding: 1.5rem;
}

.hero-gallery-placeholder-text {
  margin: 0;
  max-width: 16rem;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
  color: var(--muted);
}

.hero-gallery-placeholder-text code {
  font-size: 0.82rem;
  color: var(--brand-white);
}

.intro-home-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--brand-white);
}

.hero-title-keep {
  white-space: nowrap;
}

.intro-home-tagline {
  margin: 0 0 1.35rem;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: var(--brand-flame);
  line-height: 1.35;
}

.intro-home-body {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.intro-home-body p {
  margin: 0 0 1.1rem;
}

.intro-home-body p:last-child {
  margin-bottom: 0;
}

.intro-home-body strong {
  color: var(--brand-white);
  font-weight: 600;
}

.intro-home-body a {
  color: var(--link);
  font-weight: 600;
  text-decoration-color: rgba(158, 201, 232, 0.45);
}

.intro-home-body a:hover {
  color: var(--brand-white);
}

.site-hero-home {
  position: relative;
  padding: clamp(3rem, 9vw, 5.25rem) 0 clamp(2.25rem, 5vw, 3rem);
  text-align: center;
}

.site-hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 28%, rgba(245, 158, 75, 0.08) 0%, transparent 68%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 40rem;
  margin-inline: auto;
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-flame);
}

.site-hero-home h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 5.5vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-lede {
  margin: 0;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 36ch;
  margin-inline: auto;
}

.section-title {
  font-size: clamp(1.2rem, 2.6vw, 1.45rem);
  font-weight: 600;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.section-region {
  padding-top: 0;
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
}

.region-copy {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.region-copy strong {
  color: var(--brand-white);
  font-weight: 600;
}

.region-copy a {
  color: var(--link);
  text-decoration-color: rgba(158, 201, 232, 0.4);
}

.region-copy a:hover {
  color: var(--brand-white);
}

.section-services {
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.service-list-home {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list-home li {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.service-list-home li:last-child {
  border-bottom: none;
}

.service-list-home strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-white);
}

.service-list-home span {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (min-width: 720px) {
  .service-list-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
  }

  .service-list-home li:nth-child(4) {
    border-bottom: none;
  }
}

.section-contact {
  padding-bottom: clamp(3rem, 7vw, 4.5rem);
  border-top: 1px solid var(--border);
}

.section-contact .section-title {
  margin-bottom: 0.65rem;
}

.contact-intro {
  margin: 0 0 1.25rem;
  max-width: none;
}

.contact-split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-split .contact-box,
.contact-split .contact-form {
  margin-top: 0;
}

.contact-form {
  margin-top: 1.5rem;
  padding: 1.35rem 1.35rem 1.5rem;
  background: rgba(23, 36, 51, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.contact-form-title {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-white);
}

.contact-form-field {
  margin-bottom: 1rem;
}

.contact-form-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-flame);
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font: inherit;
  font-size: 1rem;
  color: var(--brand-white);
  background: rgba(10, 18, 34, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-color: var(--brand-ice);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

.contact-form-field textarea {
  resize: vertical;
  min-height: 7rem;
}

.contact-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form-status {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-form-status.is-success {
  color: #bbf7d0;
  background: rgba(22, 101, 52, 0.35);
  border: 1px solid rgba(74, 222, 128, 0.35);
}

.contact-form-status.is-error {
  color: #fecaca;
  background: rgba(127, 29, 29, 0.35);
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.contact-form-submit {
  width: 100%;
  padding: 0.8rem 1.25rem;
  font-size: 1.02rem;
  cursor: pointer;
}

.contact-form-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

@media (min-width: 768px) {
  .contact-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 1.25rem 2rem;
    align-items: start;
  }

  .contact-split .contact-intro {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .contact-split .contact-form {
    margin-top: 0;
  }

  .contact-split .contact-box {
    align-self: start;
    padding: 0.9rem 1.15rem;
  }

  .contact-split .contact-box > p,
  .contact-split .contact-service-area {
    margin-bottom: 0.65rem;
  }

  .contact-split .contact-box > p:last-of-type,
  .contact-split .contact-service-area.contact-box-last {
    margin-bottom: 0;
  }
}

.section-cta {
  padding-bottom: clamp(3rem, 7vw, 4.5rem);
}

.cta-panel {
  text-align: center;
  padding: clamp(2rem, 5vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 16px;
  background: rgba(23, 36, 51, 0.72);
  border: 1px solid var(--border);
  max-width: 32rem;
  margin-inline: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.cta-panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: var(--brand-white);
}

.cta-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.button-lg {
  width: 100%;
  max-width: 18rem;
  padding: 0.85rem 1.35rem;
  font-size: 1.08rem;
}

a.button.button-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
  border: none;
  background: transparent;
  box-shadow: none;
}

.button-email:hover {
  color: var(--brand-white);
}

.cta-note {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Legacy compact / facts (other pages) */
.site-hero-compact {
  text-align: center;
  padding-bottom: 2rem;
}

.site-hero-compact .inner {
  max-width: 36rem;
  margin-inline: auto;
}

.hero-lede-short {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-tight {
  padding-top: 0;
  padding-bottom: 2rem;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

.facts-grid {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.facts-item {
  margin: 0;
}

.facts-item dt {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-flame);
}

.facts-item dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.facts-item a {
  color: var(--link);
}

.service-list-simple {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list-simple li {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.service-list-simple li:last-child {
  border-bottom: none;
}

.service-list-simple strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--brand-white);
  font-size: 1.05rem;
}

.service-list-simple span {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  .header-mobile-actions {
    display: none;
  }

  .nav {
    display: flex;
    flex: 1;
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .header-action-btn {
    transition: none;
  }
}
