/* ==========================================================================
   Active Audio & TV — Core stylesheet
   Tweak the variables in :root to restyle the whole site quickly.
   ========================================================================== */

:root {
  /* Brand palette */
  --navy-900: #0a1a30;
  --navy-800: #0b1f3a;
  --navy-700: #122a4d;
  --navy-600: #1c3a63;
  --ink:      #0e1726;
  --slate:    #475569;
  --slate-2:  #64748b;
  --line:     #e3e8f0;
  --paper:    #f5f8fc;
  --white:    #ffffff;

  /* Accents */
  --teal:        #16c2c2;
  --teal-700:    #0a6565; /* AA text on white / paper */
  --teal-on-tint:#084040; /* AA text on teal-tinted pills */
  --amber:    #ffb020;
  --amber-600:#f59e0b;

  /* Functional */
  --text:     #1b2638;
  --text-soft:#536179;
  --bg:       #ffffff;

  /* Type */
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius:    14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(11,31,58,.06), 0 2px 8px rgba(11,31,58,.06);
  --shadow:    0 10px 30px rgba(11,31,58,.10);
  --shadow-lg: 0 24px 60px rgba(11,31,58,.18);
  --ease:      cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; color: var(--ink); font-weight: 700; letter-spacing: -0.02em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
/* Homepage — slight inset so content isn’t flush to the screen edge */
body.home #main { padding-inline: 2px; }
.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy-800); color: #dce6f5; }
.section__head { max-width: 740px; margin: 0 auto 52px; text-align: center; }
.section__head--left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--teal-on-tint);
  background: rgba(22,194,194,.12); padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(8,64,64,.14);
}
.eyebrow .icon { color: var(--teal-700); }
.section--navy .eyebrow,
.page-hero .eyebrow {
  color: var(--teal);
  background: rgba(22,194,194,.14);
  border-color: rgba(22,194,194,.28);
}
.section--navy .eyebrow .icon,
.page-hero .eyebrow .icon { color: var(--teal); }
.section__title { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin: 18px 0 14px; }
.section--navy .section__title { color: #fff; }
.section__lead { font-size: 1.1rem; color: var(--text-soft); }
.section--navy .section__lead { color: #aebfd8; }

/* ---------- Icons ---------- */
.icon { width: 24px; height: 24px; flex: none; }
.icon--xs { width: 14px; height: 14px; }
.icon--sm { width: 18px; height: 18px; }
.icon--lg { width: 34px; height: 34px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--teal); --btn-fg: #04201f;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: 13px 22px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  box-shadow: 0 8px 20px rgba(22,194,194,.28);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(22,194,194,.4); }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--phone { --btn-bg: var(--amber); --btn-fg: #3a2600; box-shadow: 0 8px 20px rgba(255,176,32,.32); }
.btn--phone:hover { box-shadow: 0 14px 30px rgba(255,176,32,.45); }
.btn--ghost {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255,255,255,.1); box-shadow: none; }
.btn--dark { --btn-bg: var(--navy-800); --btn-fg: #fff; box-shadow: var(--shadow-sm); }
.btn--block { width: 100%; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy-800); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy-900); color: #9fb3d1; font-size: .85rem; }
.topbar__inner { display: flex; align-items: center; gap: 22px; height: 40px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item--muted { margin-left: auto; }
.topbar__call { color: #fff; font-weight: 600; }
.topbar__call:hover { color: var(--teal); }
.topbar .icon { color: var(--teal); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.header.is-stuck { box-shadow: var(--shadow); }
.header__inner { display: flex; align-items: center; gap: 24px; height: 76px; }

/* Brand */
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  flex-shrink: 0; min-width: 0; max-width: 240px;
}
.brand__mark {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-700), var(--teal-700));
  color: #fff; box-shadow: var(--shadow-sm); flex-shrink: 0;
}
.brand__mark .icon { width: 26px; height: 26px; }
.brand__text { display: flex; flex-direction: column; justify-content: center; min-width: 0; line-height: 1.15; }
.brand__name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  color: var(--ink); letter-spacing: -.02em; line-height: 1.15;
  white-space: nowrap;
}
.brand__name em { font-style: normal; color: var(--teal-on-tint); }
.brand__sub {
  display: block; font-size: .68rem; color: var(--slate);
  letter-spacing: .04em; text-transform: uppercase; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Nav */
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
/* Invisible bridge so the dropdown stays open while moving the mouse down */
.nav__item--has-menu::after {
  content: ""; position: absolute; left: 0; right: 0; top: 100%;
  height: 14px; z-index: 49;
}
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink);
  background: none; border: 0; cursor: pointer; padding: 10px 11px; border-radius: 9px;
  transition: color .15s, background .15s; white-space: nowrap;
}
.nav__link:hover { color: var(--teal-700); background: rgba(22,194,194,.08); }
.nav__chev { transition: transform .2s var(--ease); transform: rotate(90deg); opacity: .6; }
.nav__item--has-menu:hover .nav__chev { transform: rotate(90deg) translateX(2px); }

.nav__menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 256px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(4px); transition: opacity .2s var(--ease), visibility .2s, transform .2s var(--ease);
  z-index: 50; pointer-events: none;
}
.nav__item--has-menu:hover .nav__menu,
.nav__item--has-menu:focus-within .nav__menu {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.nav__menu-link {
  display: block; padding: 10px 14px; border-radius: 8px; font-size: .92rem;
  color: var(--text); font-weight: 500; transition: background .15s, color .15s;
}
.nav__menu-link:hover, .nav__menu-link.is-active { background: var(--paper); color: var(--teal-700); }
.nav__item--cta { margin-left: 10px; }
/* Compact header call button */
.nav-call {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--ink);
  padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.nav-call .icon { color: var(--teal-700); }
.nav-call:hover { border-color: var(--teal); color: var(--teal-700); background: rgba(22,194,194,.06); }

/* Nav toggle (mobile) */
.nav-toggle {
  display: none; margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; cursor: pointer; padding: 12px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; color: #eaf1fb; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(22,194,194,.22), transparent 60%),
    radial-gradient(900px 600px at 10% 110%, rgba(28,58,99,.6), transparent 55%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700) 60%, var(--navy-800));
}
/* Full-bleed background photo behind the hero */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("/assets/img/hero-bg.webp") center/cover no-repeat;
  opacity: .28;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 30%, #000);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,26,48,.1), rgba(10,26,48,.55));
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: 84px 0 92px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head);
  font-weight: 600; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal); background: rgba(22,194,194,.12); border: 1px solid rgba(22,194,194,.3);
  padding: 7px 15px; border-radius: 999px;
}
.hero__title { font-size: clamp(2.2rem, 5vw, 3.7rem); color: #fff; margin: 22px 0 18px; }
.hero__title span { color: var(--teal); }
.hero__sub { font-size: 1.15rem; color: #b9c8e2; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust li {
  display: inline-flex; align-items: center; gap: 9px; font-size: .9rem; color: #dbe6f7;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  padding: 8px 14px; border-radius: 999px; backdrop-filter: blur(3px);
}
.hero__trust .icon { color: var(--teal); }

/* Photo first in DOM for early discovery; content stays left visually */
.hero__content { position: relative; z-index: 2; order: 1; }
.hero__visual { position: relative; contain: layout; order: 2; }

/* Hero visual card — fixed aspect slot prevents image/font reflow */
.hero__card {
  position: relative;
  background: linear-gradient(150deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.14); border-radius: 22px; padding: 26px;
  box-shadow: var(--shadow-lg); backdrop-filter: blur(4px);
}
.hero__photo {
  width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: 16px; display: block; box-shadow: 0 10px 30px rgba(0,0,0,.3);
  background: rgba(10,26,48,.35);
}
.hero__photo-badge {
  position: absolute; top: 40px; left: 40px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .8rem; color: #fff;
  background: rgba(10,26,48,.72); border: 1px solid rgba(255,255,255,.18);
  padding: 8px 14px; border-radius: 999px; backdrop-filter: blur(4px);
}
.hero__photo-badge .icon { color: var(--teal); }
.hero__skyline {
  height: 210px; border-radius: 16px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #163056, #0d2243);
}
.hero__skyline::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 72%;
  background:
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(22,194,194,.18) 14px 16px),
    linear-gradient(180deg, #20437a, #122a4d);
  clip-path: polygon(0 60%, 6% 60%, 6% 38%, 12% 38%, 12% 55%, 20% 55%, 20% 25%, 27% 25%, 27% 50%, 36% 50%, 36% 15%, 44% 15%, 44% 48%, 54% 48%, 54% 30%, 63% 30%, 63% 52%, 72% 52%, 72% 22%, 80% 22%, 80% 46%, 90% 46%, 90% 36%, 100% 36%, 100% 100%, 0 100%);
}
.hero__skyline::after {
  content: ""; position: absolute; left: 50%; top: 18px; width: 2px; height: 64px;
  background: var(--teal); box-shadow: 0 0 14px var(--teal); transform: translateX(-50%);
}
.hero__stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 20px;
  min-height: 76px;
}
.hero__stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 14px; text-align: center; }
.hero__stat b {
  display: block; font-family: var(--font-head); font-size: 1.5rem; color: #fff;
  font-variant-numeric: tabular-nums;
}
.hero__stat span { font-size: .76rem; color: #9fb3d1; letter-spacing: .03em; }
.hero__wave { display: block; width: 100%; height: auto; color: var(--white); }

/* ==========================================================================
   Logos / trust strip
   ========================================================================== */
.trustbar { background: #fff; border-bottom: 1px solid var(--line); }
.trustbar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 0; }
.trustbar__item { display: inline-flex; align-items: center; gap: 10px; color: var(--slate); font-weight: 500; font-size: .95rem; }
.trustbar__item .icon { color: var(--teal-700); }

/* ==========================================================================
   Service cards
   ========================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  display: flex; flex-direction: column; gap: 10px; height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(22,194,194,.14), rgba(28,58,99,.1)); color: var(--teal-on-tint);
  margin-bottom: 6px;
}
.card__icon .icon { width: 28px; height: 28px; }
.card__title { font-size: 1.18rem; }
.card__title a::after { content: ""; position: absolute; inset: 0; }
.card__text { color: var(--text-soft); font-size: .96rem; }
.card__more { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--teal-700); font-weight: 600; font-family: var(--font-head); font-size: .92rem; }
.card__more .icon { transition: transform .2s var(--ease); }
.card:hover .card__more .icon { transform: translateX(4px); }
.card--feature { border-color: rgba(22,194,194,.4); box-shadow: 0 0 0 1px rgba(22,194,194,.12); }
.card__tag { position: absolute; top: 16px; right: 16px; font-family: var(--font-head); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-on-tint); background: rgba(22,194,194,.12); border: 1px solid rgba(8,64,64,.12); padding: 4px 9px; border-radius: 999px; }

/* Tabs (residential / commercial) */
.tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 34px; }
.tab {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; cursor: pointer;
  padding: 11px 22px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--slate);
  transition: all .2s var(--ease);
}
.tab.is-active { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fade .35s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   Specialist / split feature
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media {
  border-radius: 20px; min-height: 380px; position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
  box-shadow: var(--shadow-lg);
}
.split__media::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(22,194,194,.06) 0 18px, transparent 18px 36px);
}
/* Photo variant of split media */
.split__media--photo { background: var(--navy-900); }
.split__media--photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.split__media--photo::after {
  background: linear-gradient(180deg, rgba(10,26,48,.05) 40%, rgba(10,26,48,.55) 100%);
}
.split__media-label {
  position: absolute; left: 22px; bottom: 22px; z-index: 2; color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .85rem; letter-spacing: .05em;
  background: rgba(10,26,48,.7); border: 1px solid rgba(255,255,255,.15); padding: 8px 14px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
}
.feature-list { display: grid; gap: 14px; margin-top: 22px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list .tick { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: rgba(22,194,194,.14); color: var(--teal-700); flex: none; }
.feature-list .tick .icon { width: 18px; height: 18px; }
.feature-list b { font-family: var(--font-head); color: var(--ink); }

/* ==========================================================================
   Stats band
   ========================================================================== */
.statband { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.statband__item { text-align: center; padding: 12px; }
.statband__num { font-family: var(--font-head); font-size: clamp(2rem,4vw,2.9rem); font-weight: 800; color: #fff; }
.statband__num span { color: var(--teal); }
.statband__label { color: #aebfd8; font-size: .95rem; }

/* ==========================================================================
   Process steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: relative; }
.step__num { counter-increment: step; font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--teal-700); }
.step__num::before { content: "0" counter(step); }
.step__title { font-size: 1.1rem; margin: 10px 0 6px; }
.step__text { color: var(--text-soft); font-size: .94rem; }

/* ==========================================================================
   Areas
   ========================================================================== */
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.area-col__title { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--teal-700); margin-bottom: 12px; font-family: var(--font-head); }
.area-col__links li { margin-bottom: 7px; }
.area-col__links a { color: var(--text-soft); font-size: .95rem; transition: color .15s, padding .15s; }
.area-col__links a:hover { color: var(--teal-700); padding-left: 4px; }

/* ==========================================================================
   Brands strip
   ========================================================================== */
.brands { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brands__title {
  text-align: center; font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .14em; color: var(--slate); margin-bottom: 24px;
}
.brands__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 44px; }
.brands__logo {
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em;
  color: var(--slate); transition: color .2s var(--ease);
}
.brands__logo:hover { color: var(--navy-700); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px;
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); display: block;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,26,48,.82));
  transition: opacity .3s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__caption {
  position: absolute; left: 18px; bottom: 16px; right: 18px; z-index: 2; color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem;
  display: flex; align-items: center; gap: 8px; justify-content: space-between;
}
.gallery__caption .icon { color: var(--teal); transition: transform .2s var(--ease); }
.gallery__item:hover .gallery__caption .icon { transform: translateX(4px); }
/* Feature layout: first and fourth items span larger */
.gallery__item--0 { grid-column: span 2; grid-row: span 2; }
.gallery__item--3 { grid-column: span 2; }

/* ==========================================================================
   Locations
   ========================================================================== */
.locations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 880px; margin: 0 auto; }
.location-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.location-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.location-card__icon {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, rgba(22,194,194,.16), rgba(28,58,99,.12)); color: var(--teal-700);
}
.location-card__title { font-size: 1.25rem; }
.location-card__state { color: var(--slate-2); font-size: .9rem; }
.location-card__addr { font-style: normal; color: var(--text-soft); margin-bottom: 18px; line-height: 1.6; }
.location-card__call {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700;
  color: var(--teal-700); font-size: 1rem;
}
.location-card__call:hover { color: var(--teal); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
/* Google-style review summary */
.reviews-summary {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 14px 28px; box-shadow: var(--shadow-sm); width: fit-content; margin: 0 auto 36px;
}
.reviews-summary__g {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: #fff;
  background: conic-gradient(from -45deg, #ea4335, #fbbc05, #34a853, #4285f4, #ea4335);
}
.reviews-summary__score { display: flex; align-items: center; gap: 10px; }
.reviews-summary__score b { font-family: var(--font-head); font-size: 1.6rem; color: var(--ink); }
.reviews-summary__stars { display: inline-flex; gap: 1px; color: var(--amber); }
.reviews-summary__stars .icon { width: 20px; height: 20px; fill: var(--amber); stroke: var(--amber); }
.reviews-summary__label { color: var(--text-soft); font-size: .92rem; }

.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quote__top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.quote__avatar {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--navy-700), var(--teal-700)); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
}
.quote__g {
  margin-left: auto; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  font-family: var(--font-head); font-weight: 800; font-size: .85rem; color: #fff;
  background: conic-gradient(from -45deg, #ea4335, #fbbc05, #34a853, #4285f4, #ea4335);
}
.quote__stars { display: flex; gap: 2px; color: var(--amber); margin-bottom: 12px; }
.quote__stars .icon { width: 18px; height: 18px; fill: var(--amber); stroke: var(--amber); }
.quote__text { font-size: 1.02rem; color: var(--text); }
.quote__by { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .95rem; }
.quote__by span { display: block; font-family: var(--font-body); font-weight: 400; color: var(--slate-2); font-size: .82rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq__q .icon { transition: transform .25s var(--ease); color: var(--teal-700); }
.faq__item.is-open .faq__q .icon { transform: rotate(45deg); }
.faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; padding: 0 22px 20px; color: var(--text-soft); line-height: 1.65; }
.faq__a-inner p { margin: 0 0 12px; }
.faq__a-inner p:last-child { margin-bottom: 0; }
.faq__a-inner ul, .faq__a-inner ol { margin: 0 0 12px 1.2em; padding: 0; }
.faq__a-inner li { margin-bottom: 6px; }
.faq__a-inner li:last-child { margin-bottom: 0; }
.faq__a-inner a { color: var(--teal-700); text-decoration: underline; }
.faq__a-inner strong { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background:
    radial-gradient(700px 300px at 85% 0%, rgba(22,194,194,.25), transparent 60%),
    linear-gradient(120deg, var(--navy-800), var(--navy-600));
  color: #fff;
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 56px 0; flex-wrap: wrap; }
.cta-band__title { font-size: clamp(1.6rem,3vw,2.2rem); color: #fff; }
.cta-band__text { color: #c2d1ea; max-width: 540px; margin-top: 8px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy-900); color: #9fb3d1; padding-top: 60px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 44px; }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__name em { color: var(--teal); }
.footer__about { margin: 16px 0; font-size: .94rem; color: #8ea3c4; }
.footer__phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1.1rem; }
.footer__phone .icon { color: var(--teal); }
.footer__offices { display: grid; gap: 14px; margin-top: 16px; }
.footer__addr { font-style: normal; font-size: .9rem; color: #8ea3c4; line-height: 1.55; }
.footer__addr-label { display: inline-flex; align-items: center; gap: 6px; color: #cdd9ee; font-family: var(--font-head); font-weight: 600; font-size: .85rem; margin-bottom: 3px; }
.footer__addr-label .icon { color: var(--teal); }
.footer__abn { margin-top: 14px; font-size: .82rem; color: #6e83a6; }
.footer__heading { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__links li { margin-bottom: 9px; }
.footer__links a { color: #9fb3d1; font-size: .92rem; transition: color .15s; }
.footer__links a:hover { color: var(--teal); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; font-size: .85rem; flex-wrap: wrap; }
.footer__legal { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer__credit { color: #8ea3c4; margin: 0; }
.footer__credit a {
  color: #c5d4ea;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(197, 212, 234, .55);
  transition: color .15s, text-decoration-color .15s;
}
.footer__credit a:hover { color: var(--teal); text-decoration-color: var(--teal); }
.footer__build {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #8ea3c4; font-size: .85rem;
  transition: border-color .15s, background .15s, color .15s;
}
.footer__build strong { color: #d5e0f0; font-weight: 700; }
.footer__build-icon { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }
.footer__build:hover {
  color: #fff;
  border-color: rgba(22,194,194,.45);
  background: rgba(22,194,194,.1);
}
.footer__build:hover .footer__build-icon { color: #fff; }

/* Floating call (mobile) */
.floating-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 58px; height: 58px;
  border-radius: 50%; background: var(--amber); color: #3a2600; display: none;
  place-items: center; box-shadow: 0 10px 26px rgba(255,176,32,.5);
  animation: pulse 2.4s infinite;
}
.floating-call .icon { width: 26px; height: 26px; }
@keyframes pulse { 0%,100% { box-shadow: 0 10px 26px rgba(255,176,32,.5); } 50% { box-shadow: 0 10px 26px rgba(255,176,32,.5), 0 0 0 12px rgba(255,176,32,0); } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
/* Sections are always visible — animating whole sections caused late reveals on mobile */
.section.reveal, .split__content.reveal, .split__media.reveal { opacity: 1; transform: none; }
@media (max-width: 860px) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) and (min-width: 861px) {
  .brand { max-width: 200px; }
  .brand__name { font-size: 1.05rem; }
  .brand__sub { font-size: .62rem; }
  .nav__link { font-size: .86rem; padding: 10px 9px; }
  .nav-call { font-size: .86rem; padding: 8px 12px; }
}

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 520px; }
  .cards, .cards--4, .quotes { grid-template-columns: repeat(2, 1fr); }
  .steps, .statband { grid-template-columns: repeat(2,1fr); }
  .areas-grid { grid-template-columns: repeat(3,1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__col--brand { grid-column: 1 / -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--0 { grid-column: span 2; grid-row: span 1; }
  .gallery__item--3 { grid-column: span 2; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .topbar { display: none; }
  .nav-toggle { display: block; }
  .floating-call { display: grid; }
  .nav {
    position: fixed; inset: 76px 0 auto 0; margin: 0; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    transform: translateY(-120%); transition: transform .3s var(--ease);
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 12px; }
  .nav__item--has-menu .nav__link { width: 100%; justify-content: space-between; }
  .nav__menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 2px 0 6px 14px;
    padding: 2px 0; display: none;
  }
  .nav__item--has-menu.is-open .nav__menu { display: block; }
  .nav__chev { transform: rotate(90deg); }
  .nav__item--has-menu.is-open .nav__chev { transform: rotate(-90deg); }
  .nav__item--has-menu::after { display: none; }
  .nav__item--cta { margin: 10px 0 4px; }
  .brand { max-width: none; }
  .nav-call {
    width: 100%; justify-content: center; padding: 13px 18px; font-size: 1rem;
    background: var(--teal); color: #04201f; border-color: var(--teal);
  }
  .nav-call .icon { color: #04201f; }
  .nav-call:hover { background: var(--teal-700); border-color: var(--teal-700); color: #fff; }
  .nav-call:hover .icon { color: #fff; }
}

@media (max-width: 560px) {
  .cards, .cards--4, .quotes, .steps, .statband, .areas-grid, .locations { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(3,1fr); }
  .section__head { margin-bottom: 36px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .btn--lg { width: 100%; }
  .hero__actions .btn { width: 100%; }
  .hero__title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .footer__bar-inner { flex-direction: column; gap: 6px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item--0, .gallery__item--3 { grid-column: span 1; grid-row: span 1; }
}

/* ==========================================================================
   Inner pages — hero, breadcrumbs, content layout
   ========================================================================== */
.page-hero {
  position: relative; color: #eaf1fb; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700) 60%, var(--navy-800));
  padding: 64px 0 72px;
}
.page-hero--media::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: center/cover no-repeat; opacity: .22;
}
.page-hero__bg { display: none; }
.page-hero--media .page-hero__bg {
  display: block; position: absolute; inset: 0; z-index: 0;
  background: center/cover no-repeat;
  mask-image: linear-gradient(90deg, transparent, #000 40%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 40%);
}
.page-hero--media::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(10,26,48,.2), rgba(10,26,48,.65));
}
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero__title { font-size: clamp(2rem, 4.5vw, 3rem); color: #fff; margin: 18px 0 14px; }
.page-hero__lead { font-size: 1.1rem; color: #b9c8e2; max-width: 600px; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.page-hero .btn--ghost { border-color: rgba(255,255,255,.4); color: #fff; }

.crumbs {
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 11px 0;
}
.crumbs__list {
  display: flex; flex-wrap: nowrap; align-items: center;
  list-style: none; margin: 0; padding: 0;
  font-size: .86rem; line-height: 1.4;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.crumbs__list::-webkit-scrollbar { display: none; }
.crumbs__item { flex: none; }
.crumbs__sep {
  flex: none; color: var(--slate-2); opacity: .45;
  padding: 0 10px; user-select: none; list-style: none;
}
.crumbs__link {
  color: var(--teal-700); font-weight: 500; white-space: nowrap;
  transition: color .15s;
}
.crumbs__link:hover { color: var(--navy-700); text-decoration: underline; }
.crumbs__current {
  color: var(--ink); font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: min(52vw, 420px); display: inline-block; vertical-align: bottom;
}

.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.content-main { min-width: 0; }
.content-sidebar { display: grid; gap: 18px; position: sticky; top: 96px; }

.prose { font-size: 1.02rem; color: var(--text); }
.prose__intro { font-size: 1.15rem; color: var(--text-soft); margin-bottom: 28px; line-height: 1.7; }
.prose h2 { font-size: 1.45rem; margin: 32px 0 12px; }
.prose p { margin-bottom: 16px; color: var(--text-soft); }
.prose a { color: var(--teal-700); text-decoration: underline; }
.prose--article h2 { margin-top: 36px; }

.checklist { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; margin: 28px 0; }
.checklist h2 { font-size: 1.2rem; margin-bottom: 14px; }
.checklist ul { display: grid; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); font-size: .98rem; }
.checklist .icon { color: var(--teal-700); margin-top: 2px; }

.sidebar-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.sidebar-card__title { font-size: 1rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.sidebar-card__text { color: var(--text-soft); font-size: .94rem; margin-bottom: 14px; }
.sidebar-card__link { display: inline-flex; align-items: center; gap: 6px; color: var(--teal-700); font-weight: 600; font-family: var(--font-head); font-size: .92rem; }
.sidebar-links { display: grid; gap: 8px; }
.sidebar-links a { color: var(--text-soft); font-size: .92rem; transition: color .15s; }
.sidebar-links a:hover { color: var(--teal-700); }

.areas-coast { margin-bottom: 48px; }
.areas-coast__title {
  display: flex; align-items: center; gap: 10px; font-size: 1.5rem;
  margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--line);
}

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card__cat {
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--teal-700);
}
.blog-card__title { font-size: 1.12rem; line-height: 1.3; }
.blog-card__title a::after { content: ""; position: absolute; inset: 0; }
.blog-card { position: relative; }
.blog-card__excerpt { color: var(--text-soft); font-size: .94rem; flex: 1; }
.blog-card__meta { display: flex; gap: 14px; font-size: .82rem; color: var(--slate-2); }
.blog-card__more { display: inline-flex; align-items: center; gap: 6px; color: var(--teal-700); font-weight: 600; font-family: var(--font-head); font-size: .9rem; margin-top: 6px; }

.article-head { max-width: 800px; }
.article-head__title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 16px 0 12px; }
.article-head__meta { display: flex; gap: 16px; color: var(--slate-2); font-size: .92rem; }
.article-cta {
  margin-top: 40px; padding: 28px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.article-cta h3 { font-size: 1.2rem; margin-bottom: 8px; }
.article-cta p { color: var(--text-soft); margin-bottom: 16px; }
.article-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info { display: grid; gap: 16px; }
.contact-info__phone { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--teal-700); display: block; margin-bottom: 6px; }
.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.contact-form__title { font-size: 1.4rem; margin-bottom: 22px; }
.form-row { margin-bottom: 16px; }
.form-label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--ink); }
.form-input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--text); background: #fff;
  transition: border-color .15s;
}
.form-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(22,194,194,.12); }
.form-textarea { resize: vertical; min-height: 120px; }
.contact-form__note { margin-top: 14px; font-size: .88rem; color: var(--slate-2); text-align: center; }
.contact-form__note a { color: var(--teal-700); font-weight: 600; }
.contact-success { text-align: center; padding: 40px 20px; }
.contact-success .icon { color: var(--teal-700); margin: 0 auto 16px; }
.contact-success h2 { font-size: 1.4rem; margin-bottom: 10px; }
.contact-success p { color: var(--text-soft); }
.contact-error {
  background: #fef2f2; border: 1px solid #fecaca; color: #991b1b;
  padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 20px;
  font-size: .95rem; line-height: 1.5;
}
.form-row--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.link-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 20px;
  list-style: none; padding: 0;
}
.link-grid a {
  color: var(--text-soft); font-size: .95rem; font-weight: 500;
  transition: color .15s, padding .15s;
}
.link-grid a:hover { color: var(--teal-700); padding-left: 4px; }

.blog-grid--compact { grid-template-columns: repeat(3, 1fr); }
.blog-grid--compact .blog-card { padding: 20px; }
.blog-grid--compact .blog-card__title { font-size: 1rem; }

.faq-group { margin-bottom: 56px; scroll-margin-top: 96px; }
.faq-group__title {
  font-size: 1.35rem; margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
}
.faq-intro { max-width: 820px; margin: 0 auto 40px; text-align: left; }
.faq-intro__lead { font-size: 1.12rem; line-height: 1.7; color: var(--text-soft); margin-bottom: 20px; }
.faq-toc {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 24px 28px; margin-bottom: 48px;
}
.faq-toc__title { font-family: var(--font-head); font-size: 1rem; font-weight: 600; margin-bottom: 14px; color: var(--ink); }
.faq-toc__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px; list-style: none; margin: 0; padding: 0; }
.faq-toc__grid a { color: var(--teal-700); font-size: .95rem; text-decoration: none; }
.faq-toc__grid a:hover { text-decoration: underline; }
.faq-symptoms {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin: 28px 0 0; padding: 0; list-style: none;
}
.faq-symptom {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px; font-size: .92rem; color: var(--text-soft); line-height: 1.5;
}
.faq-symptom strong { display: block; color: var(--ink); font-size: .95rem; margin-bottom: 4px; }
@media (max-width: 768px) {
  .faq-toc__grid { grid-template-columns: 1fr; }
  .faq-symptoms { grid-template-columns: 1fr; }
}

.process-inline { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.process-inline h2 { font-size: 1.35rem; margin-bottom: 20px; }
.steps--inline { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .link-grid { grid-template-columns: repeat(3, 1fr); }
  .steps--inline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .link-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid--compact { grid-template-columns: 1fr; }
  .steps--inline { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .content-layout, .contact-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0 56px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
