/* ================================================================
   Straya Building — Design System
   Palette: charcoal-black · warm gold · cream · white
   Font: system UI stack (offline-capable)
   ================================================================ */

:root {
  --black:        #0b0b09;
  --charcoal:     #1a1713;
  --charcoal-mid: #1e1a12;
  --gold:         #c8a84a;
  --gold-light:   #dfc070;
  --gold-dark:    #8a6b1e;
  --cream:        #f6f3ec;
  --cream-warm:   #ede8d8;
  --white:        #ffffff;
  --text:         #231f18;
  --text-muted:   #6a6055;
  --border:       #ddd5c2;
  --shadow-sm:    0 2px 14px rgba(18, 13, 4, 0.08);
  --shadow-md:    0 6px 30px rgba(18, 13, 4, 0.13);
  --shadow-lg:    0 18px 60px rgba(18, 13, 4, 0.20);
  --radius:       6px;
  --max-w:        1220px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ── Header ─────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 80px;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  background: rgba(11, 11, 9, 0.97);
  border-bottom: 1px solid rgba(200, 168, 74, 0.25);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand img {
  width: auto;
  max-height: 68px;
  max-width: min(280px, 55vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  color: rgba(246, 243, 236, 0.82);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
  transition: color 0.18s;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 168, 74, 0.42);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── Typography ─────────────────────────────────────────────── */

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

h1, h2, h3, h4 { overflow-wrap: break-word; }

h1 {
  font-size: clamp(2.9rem, 7vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

h3 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ── Section containers ──────────────────────────────────────── */

.section {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4.5rem);
}

.section-hd {
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

/* ── Hero ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(11, 11, 9, 0.92) 0%,
      rgba(11, 11, 9, 0.70) 52%,
      rgba(11, 11, 9, 0.22) 100%),
    linear-gradient(0deg,
      rgba(11, 11, 9, 0.94) 0%,
      rgba(11, 11, 9, 0.00) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4.5rem);
}

.hero-content h1 { max-width: 800px; }

.hero-content .lead {
  max-width: 600px;
  margin-top: 1.3rem;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(246, 243, 236, 0.78);
  line-height: 1.68;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

/* ── Buttons ────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 2rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.btn-gold {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 168, 74, 0.32);
}

.btn-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(246, 243, 236, 0.42);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  color: var(--text);
  background: transparent;
  border-color: var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

/* ── Stats strip ────────────────────────────────────────────── */

.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4.5rem);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem 1.4rem 0;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; padding-right: 0; padding-left: 1.5rem; }
.stat-item:first-child { padding-left: 0; }

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(200, 168, 74, 0.12);
  color: var(--gold-dark);
  font-size: 1.1rem;
  font-weight: 900;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.stat-value {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
}

/* ── Service cards ──────────────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 238px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-body {
  padding: 1.5rem 1.5rem 2rem;
}

.service-card-body .num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  margin-bottom: 0.55rem;
}

.service-card-body h3 { margin-bottom: 0.6rem; }

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

/* ── Features / Why Choose Us ───────────────────────────────── */

.features-section {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4.5rem);
}

.features-section .eyebrow { color: var(--gold); }

.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.features-inner h2 { color: var(--cream); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.feature-item {
  padding: 1.8rem 1.4rem 2rem;
  border: 1px solid rgba(200, 168, 74, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.22s, border-color 0.22s;
}

.feature-item:hover {
  background: rgba(200, 168, 74, 0.06);
  border-color: rgba(200, 168, 74, 0.38);
}

.feature-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(200, 168, 74, 0.28);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.feature-item h3 {
  color: var(--cream);
  font-size: 1.08rem;
  margin-bottom: 0.55rem;
}

.feature-item p {
  color: rgba(238, 232, 216, 0.58);
  font-size: 0.93rem;
  line-height: 1.62;
  margin: 0;
}

/* ── Split / Process section ────────────────────────────────── */

.split-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4.5rem);
}

.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content h2 { margin-bottom: 1.1rem; }

.split-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s;
}

.text-link:hover { border-bottom-color: var(--gold-dark); }

.text-link::after { content: "→"; }

/* ── CTA strip ──────────────────────────────────────────────── */

.cta-strip {
  background: var(--charcoal-mid);
  border-top: 3px solid var(--gold);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem);
}

.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cta-inner h2 { color: var(--cream); font-size: clamp(1.8rem, 3.5vw, 3rem); }

.cta-inner p {
  color: rgba(238, 232, 216, 0.68);
  margin-top: 0.6rem;
  max-width: 520px;
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 0.85rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── Footer ─────────────────────────────────────────────────── */

.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(200, 168, 74, 0.18);
  color: rgba(238, 232, 216, 0.68);
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem) 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(238, 232, 216, 0.09);
}

.footer-brand img {
  max-height: 44px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.93rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-col address {
  font-style: normal;
  display: grid;
  gap: 0.5rem;
}

.footer-col address a,
.footer-col nav a {
  color: rgba(238, 232, 216, 0.72);
  text-decoration: none;
  font-size: 0.93rem;
  transition: color 0.18s;
}

.footer-col address a:hover,
.footer-col nav a:hover { color: var(--gold); }

.footer-col nav {
  display: grid;
  gap: 0.5rem;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.4rem 0 1.8rem;
  font-size: 0.83rem;
  color: rgba(238, 232, 216, 0.38);
}

/* ── Page hero (inner pages) ────────────────────────────────── */

.page-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(11, 11, 9, 0.90) 0%,
      rgba(11, 11, 9, 0.62) 60%,
      rgba(11, 11, 9, 0.24) 100%),
    linear-gradient(0deg,
      rgba(11, 11, 9, 0.88) 0%,
      rgba(11, 11, 9, 0.00) 45%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.5rem, 5vw, 4.5rem);
}

.page-hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  max-width: 700px;
}

.page-hero-content p {
  margin-top: 1rem;
  max-width: 540px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(246, 243, 236, 0.78);
  line-height: 1.65;
}

/* ── Intro two-column (about / general) ─────────────────────── */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  border-bottom: 1px solid var(--border);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.intro-grid h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }

.copy-stack { display: grid; gap: 1rem; }

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

/* ── Light panel (full-bleed warm) ─────────────────────────── */

.light-panel {
  background: var(--cream-warm);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4.5rem);
}

.light-panel-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.light-panel .feature-grid-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.feature-card-light {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
}

.feature-card-light .num {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.feature-card-light h3 { margin-bottom: 0.6rem; }

.feature-card-light p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ── About grid (ABN details + approach) ────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.about-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin-bottom: 1.2rem;
}

dl div {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

dl div:last-child { border-bottom: none; }

dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

dd { font-weight: 700; margin: 0; }

.about-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-card p:last-of-type { margin-bottom: 1.4rem; }

/* ── Contact grid ────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.4rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.contact-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin-bottom: 0.5rem;
}

.contact-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child { border-bottom: none; }

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(200, 168, 74, 0.12);
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 0.88rem;
}

.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-detail a,
.contact-detail span {
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  color: var(--text);
  display: block;
}

.contact-detail a:hover { color: var(--gold-dark); }

.contact-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

/* ── Form ────────────────────────────────────────────────────── */

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.contact-form-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin-bottom: 0.5rem;
}

.contact-form-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.form-group {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.96rem;
  color: var(--text);
  background: #faf7f0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(200, 168, 74, 0.18);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-note {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  line-height: 1.5;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .about-grid  { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .light-panel .feature-grid-light { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-header { height: 68px; }

  .brand img {
    max-height: 54px;
    max-width: min(230px, 62vw);
  }

  .menu-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem 1.5rem 1rem;
    background: var(--black);
    border-bottom: 1px solid rgba(200, 168, 74, 0.22);
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(238, 232, 216, 0.07);
    border-radius: 0;
  }

  .site-nav a:last-child { border-bottom: none; }

  .hero { min-height: calc(100vh - 68px); }

  .hero-bg::after {
    background:
      linear-gradient(0deg,
        rgba(11, 11, 9, 0.96) 0%,
        rgba(11, 11, 9, 0.55) 52%,
        rgba(11, 11, 9, 0.18) 100%);
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
  }

  .stat-item:first-child { padding-left: 0; }
  .stat-item:last-child { border-bottom: none; padding-right: 0; }

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

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

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-img { aspect-ratio: 16 / 9; }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .light-panel .feature-grid-light { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2.5rem, 13.5vw, 3.2rem); }

  .cta-group { flex-direction: column; }
  .cta-group .btn { width: 100%; }

  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }

  .contact-actions { flex-direction: column; }
  .contact-actions .btn { width: 100%; }

  .page-hero { min-height: 360px; }

  .service-card-img { height: 210px; }
}
