/* ===== Design tokens (matched to TSC brand) ===== */
:root {
  --navy: #1d2f3d;          /* logo navy — headings, dark sections */
  --navy-700: #16242f;
  --navy-600: #294056;
  --navy-500: #35506a;
  --slate: #565f78;         /* top utility bar */
  --accent: #f6c01e;        /* TSC golden yellow */
  --accent-600: #e3aa05;
  --ink: #1c2733;
  --muted: #5b6b7d;
  --line: #e3e8ef;
  --bg: #ffffff;
  --bg-alt: #f5f8fc;
  --bg-soft: #eef3f9;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(16, 36, 56, .08), 0 1px 2px rgba(16, 36, 56, .04);
  --shadow: 0 10px 30px rgba(16, 36, 56, .10);
  --shadow-lg: 0 24px 60px rgba(16, 36, 56, .18);
  --maxw: 1160px;
  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(env(safe-area-inset-top, 0px) + 134px); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--navy); letter-spacing: -.01em; }
ul { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  padding: 12px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn:active { transform: translateY(1px); }
.btn--accent { background: var(--accent); color: var(--navy); box-shadow: 0 6px 18px rgba(246, 192, 30, .4); }
.btn--accent:hover { background: var(--accent-600); transform: translateY(-2px); }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-600); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ===== Topbar ===== */
/* Paint the iOS status-bar / notch area the same slate as the banner */
body::before {
  content: ""; position: fixed; top: 0; left: 0; right: 0;
  height: env(safe-area-inset-top, 0px); background: var(--slate);
  z-index: 100; pointer-events: none;
}
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: var(--slate); color: #e6e9f2; font-size: .85rem;
  /* clear the iOS status bar / notch so the banner isn't cut off */
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
.topbar__inner { display: flex; align-items: center; gap: 24px; min-height: 44px; }
.topbar__group { display: flex; align-items: center; gap: 24px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 15px; height: 15px; fill: var(--accent); }
.topbar__item a:hover { color: #fff; }
.topbar__social { margin-left: auto; display: flex; gap: 8px; }
.topbar__social a {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent); transition: transform .15s, background .2s;
}
.topbar__social a:hover { transform: translateY(-1px); background: #fff; }
.topbar__social svg { width: 15px; height: 15px; fill: var(--navy); }

/* ===== Header ===== */
.header {
  position: sticky; top: calc(env(safe-area-inset-top, 0px) + 44px); z-index: 50; background: rgba(255,255,255,.95);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line); transition: box-shadow .25s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; gap: 20px; height: 84px; }

.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 54px; width: auto; }

.nav { display: flex; gap: 2px; margin-left: 14px; }
.nav a {
  font-weight: 600; font-size: .94rem; color: var(--navy);
  padding: 9px 12px; border-radius: 8px; transition: background .15s, color .15s;
}
.nav a:hover, .nav a.is-active { background: var(--bg-soft); color: var(--navy-600); }

/* Dropdown nav ("Clients") */
.nav-item--has-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle {
  font-family: var(--font-body); font-weight: 600; font-size: .94rem; color: var(--navy);
  padding: 9px 12px; border-radius: 8px; background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
  transition: background .15s, color .15s;
}
.nav-dropdown-toggle svg { width: 15px; height: 15px; fill: currentColor; transition: transform .2s ease; }
.nav-item--has-dropdown:hover .nav-dropdown-toggle,
.nav-item--has-dropdown.is-open .nav-dropdown-toggle { background: var(--bg-soft); color: var(--navy-600); }
.nav-item--has-dropdown:hover .nav-dropdown-toggle svg,
.nav-item--has-dropdown.is-open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 210px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 8px; display: grid; gap: 2px; z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
/* invisible bridge so hover survives the gap between toggle and menu */
.nav-dropdown::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown,
.nav-item--has-dropdown.is-open .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  padding: 11px 14px; border-radius: 8px; font-weight: 600; font-size: .92rem;
  color: var(--navy); white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--bg-soft); color: var(--navy-600); }

.header__cta { margin-left: auto; }

.nav-toggle {
  display: none; margin-left: auto; width: 46px; height: 46px; background: none;
  border: 1px solid var(--line); border-radius: 10px; cursor: pointer; padding: 0;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .25s; }
.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: #fff; overflow: hidden; isolation: isolate; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background: url("assets/public-2.webp") center/cover no-repeat;
  transform: scale(1.04);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, rgba(22,36,47,.96) 0%, rgba(29,47,61,.9) 45%, rgba(29,47,61,.62) 100%);
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.12fr .88fr;
  gap: 54px; align-items: center; padding: 80px 22px 92px;
}
.eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow--light { color: var(--accent); }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; margin: 14px 0 18px; }
.hero__lead { font-size: 1.12rem; color: #dbe6f1; max-width: 34ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.hero__trust { display: grid; gap: 10px; }
.hero__trust li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: #eaf1f9; font-size: .96rem; }
.hero__trust svg { width: 20px; height: 20px; fill: var(--accent); flex-shrink: 0; }

.hero__card { background: #fff; color: var(--ink); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-lg); }
.hero__card-title { font-size: 1.5rem; }
.hero__card-sub { color: var(--muted); font-size: .92rem; margin: 6px 0 20px; }

/* ===== Forms ===== */
.quote-form { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { font-size: .82rem; font-weight: 600; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .96rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .15s, box-shadow .15s; width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(246,192,30,.25);
}
.field input.invalid, .field select.invalid { border-color: #d9534f; box-shadow: 0 0 0 3px rgba(217,83,79,.12); }
.form-note { font-size: .9rem; min-height: 1.2em; }
.form-note.success { color: #1c8a4d; font-weight: 600; }
.form-note.error { color: #d9534f; font-weight: 600; }

/* ===== Trust strip ===== */
.strip { background: var(--navy); }
.strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip__item {
  text-align: center; padding: 26px 14px; color: #fff;
  border-right: 1px solid rgba(255,255,255,.10);
}
.strip__item:last-child { border-right: none; }
.strip__num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.85rem; color: var(--accent); }
.strip__label { display: block; font-size: .88rem; color: #c2d0e0; margin-top: 4px; }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin: 12px 0 14px; }
.section-sub { color: var(--muted); font-size: 1.05rem; }

/* ===== About ===== */
.about__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 54px; align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }
.about__badge {
  position: absolute; right: -14px; bottom: -22px; background: var(--accent); color: var(--navy);
  border-radius: 14px; padding: 16px 22px; text-align: center; box-shadow: var(--shadow);
}
.about__badge-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; line-height: 1; }
.about__badge-label { display: block; font-size: .78rem; font-weight: 600; margin-top: 4px; }
.about__text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 12px 0 16px; }
.about__text > p { color: var(--muted); font-size: 1.04rem; margin-bottom: 26px; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-card {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; transition: transform .2s, box-shadow .2s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card__icon {
  width: 52px; height: 52px; margin-bottom: 14px; border-radius: 13px;
  display: grid; place-items: center; background: var(--navy);
}
.value-card__icon svg { width: 26px; height: 26px; fill: var(--accent); }
.value-card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: .96rem; }

/* ===== Services ===== */
.services { background: var(--bg-alt); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative; scroll-margin-top: 130px;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #cdd9e8; }
.service-card__icon {
  width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center;
  background: var(--bg-soft); margin-bottom: 18px;
}
.service-card__icon svg { width: 27px; height: 27px; fill: var(--navy-600); }
.service-card h3 { font-size: 1.22rem; margin-bottom: 9px; }
.service-card p { color: var(--muted); font-size: .98rem; }
.service-card--accent { background: linear-gradient(150deg, var(--navy), var(--navy-600)); border-color: transparent; }
.service-card--accent h3 { color: #fff; }
.service-card--accent p { color: #d7e3f2; }
.service-card--accent .service-card__icon { background: rgba(246,192,30,.18); }
.service-card--accent .service-card__icon svg { fill: var(--accent); }
.service-card__link { display: inline-block; margin-top: 14px; color: var(--accent); font-weight: 700; font-family: var(--font-head); }
.service-card__link:hover { text-decoration: underline; }

/* ===== Gallery ===== */
.gallery__grid {
  display: grid; grid-template-columns: 2fr 1fr; grid-auto-rows: 200px; gap: 16px;
}
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
/* Pull these two up so the crew's faces are in frame */
.gallery__item img[src*="public-1"],
.gallery__item img[src*="public-4"] { object-position: center 28%; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--wide { grid-column: 1; grid-row: span 2; }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 12px;
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  background: linear-gradient(transparent, rgba(22,36,47,.85));
}

/* ===== Split (residential/commercial) ===== */
.split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.split__card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--bg); scroll-margin-top: 130px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.split__media { height: 230px; overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
#commercial .split__media img { object-position: center 68%; }
.split__body { padding: 32px 34px 36px; }
.split__body h2 { font-size: 1.55rem; margin: 10px 0 14px; }
.split__body > p { color: var(--muted); margin-bottom: 20px; }
.checklist { display: grid; gap: 11px; margin-bottom: 26px; }
.checklist li { position: relative; padding-left: 30px; color: var(--ink); font-weight: 500; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px;
  background: var(--accent); color: var(--navy); border-radius: 50%; display: grid; place-items: center;
  font-size: .72rem; font-weight: 800;
}

/* ===== Testimonials ===== */
.testimonials { background: var(--bg-soft); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card {
  background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
}
.stars { color: var(--accent); letter-spacing: 2px; font-size: 1.05rem; }
.quote-card blockquote { font-size: 1.02rem; color: var(--ink); font-style: italic; flex: 1; }
.quote-card figcaption { display: flex; align-items: center; gap: 13px; }
.quote-card figcaption img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.quote-card figcaption > span { display: flex; flex-direction: column; }
.quote-card figcaption strong { color: var(--navy); font-family: var(--font-head); }
.quote-card figcaption > span > span { color: var(--muted); font-size: .88rem; }

/* ===== Credentials ===== */
.credentials { padding: 56px 0; background: var(--navy); }
.credentials__inner { text-align: center; }
.credentials h2 { color: #fff; font-size: 1.7rem; margin-bottom: 24px; }
.credentials__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.credentials__list li {
  background: rgba(255,255,255,.07); border: 1px solid rgba(246,192,30,.35);
  color: #eaf1f9; padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: .95rem;
}

/* ===== Contact ===== */
.contact { background: linear-gradient(160deg, var(--navy), var(--navy-600)); color: #fff; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 12px 0 14px; }
.contact__lead { color: #d7e3f2; margin-bottom: 28px; max-width: 42ch; }
.contact__list { display: grid; gap: 20px; }
.contact__list li { display: flex; gap: 15px; align-items: flex-start; }
.contact__list svg { width: 22px; height: 22px; fill: var(--accent); flex-shrink: 0; margin-top: 3px; }
.contact__list span:first-child { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: #a9bdd4; }
.contact__list a, .contact__list address, .contact__hours { color: #fff; font-style: normal; font-weight: 500; }
.contact__list a:hover { color: var(--accent); }
.contact__form-wrap { background: #fff; border-radius: 18px; padding: 30px; box-shadow: var(--shadow-lg); }
.quote-form--contact label { color: var(--navy); }

/* ===== Footer ===== */
.footer { background: var(--navy-700); color: #aebfd4; font-size: .94rem; }
.footer__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding: 60px 22px 44px;
}
.footer__logo { height: 52px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer__col--brand p { color: #93a6bf; max-width: 32ch; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a:hover { color: var(--accent); }
.footer__creds li { color: #93a6bf; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); transition: background .2s, transform .2s;
}
.footer__social a:hover { background: var(--accent); transform: translateY(-2px); }
.footer__social a:hover svg { fill: var(--navy); }
.footer__social svg { width: 19px; height: 19px; fill: #fff; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; }
.footer__bar p { text-align: center; color: #7e93af; font-size: .88rem; }

/* ===== Floating call button (mobile) ===== */
.fab {
  position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); z-index: 60; display: none;
  width: 58px; height: 58px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 10px 26px rgba(246,192,30,.55); place-items: center;
  animation: pulse 2.2s infinite;
}
.fab svg { width: 26px; height: 26px; fill: var(--navy); }
@keyframes pulse {
  0% { box-shadow: 0 10px 26px rgba(246,192,30,.5), 0 0 0 0 rgba(246,192,30,.5); }
  70% { box-shadow: 0 10px 26px rgba(246,192,30,.5), 0 0 0 16px rgba(246,192,30,0); }
  100% { box-shadow: 0 10px 26px rgba(246,192,30,.5), 0 0 0 0 rgba(246,192,30,0); }
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; }
  .hero__lead { max-width: 50ch; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__media { max-width: 520px; }
  .services__grid, .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 860px) {
  .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: calc(env(safe-area-inset-top, 0px) + 128px) 0 auto 0; flex-direction: column; gap: 0; margin: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 10px 22px 18px; transform: translateY(-150%); transition: transform .3s ease;
    max-height: calc(100vh - env(safe-area-inset-top, 0px) - 128px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 14px 6px; border-radius: 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a:last-child { border-bottom: none; }
  /* Dropdown becomes an inline accordion on mobile */
  .nav-item--has-dropdown { display: block; }
  .nav-dropdown-toggle {
    width: 100%; justify-content: space-between; padding: 14px 6px; font-size: 1.05rem;
    border-bottom: 1px solid var(--line); border-radius: 0;
  }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0; min-width: 0; z-index: auto;
    background: var(--bg-soft); max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav-item--has-dropdown.is-open .nav-dropdown { max-height: 360px; }
  .nav-dropdown a { padding: 13px 26px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .fab { display: grid; }
  .split__grid, .contact__grid { grid-template-columns: 1fr; }
  .topbar__item--hide-sm { display: none; }
}

@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .services__grid, .testimonials__grid { grid-template-columns: 1fr; }
  .strip__inner { grid-template-columns: 1fr 1fr; }
  .strip__item:nth-child(2) { border-right: none; }
  .strip__item:nth-child(1), .strip__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
  .about__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 1; }
  .brand__logo { height: 42px; }
}

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

/* ===== Service detail pages ===== */
.subhero { color: #fff; background: linear-gradient(160deg, var(--navy), var(--navy-600)); }
.subhero__inner { padding: 38px 0 54px; }
.breadcrumb { font-size: .85rem; color: #a9bdd4; margin-bottom: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #6f86a3; }
.subhero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 14px; }
.subhero__lead { color: #d7e3f2; font-size: 1.1rem; max-width: 56ch; margin-bottom: 24px; }
.subhero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.svc-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.svc-main h2 { font-size: 1.55rem; margin: 0 0 16px; }
.svc-main h2:not(:first-child) { margin-top: 42px; }
.svc-main p { color: var(--muted); margin-bottom: 16px; }
.svc-main .checklist { margin-bottom: 8px; }
.svc-aside { position: sticky; top: 110px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: var(--shadow); }
.svc-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.svc-card .muted { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }

.faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary { font-family: var(--font-head); font-weight: 700; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--muted); margin: 12px 0 0; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cdd9e8; }
.related-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.related-card p { color: var(--muted); font-size: .92rem; }
.related-card span { display: inline-block; margin-top: 10px; color: var(--accent); font-weight: 700; font-family: var(--font-head); font-size: .9rem; }

.service-card__link.as-block { margin-top: auto; }

@media (max-width: 900px) {
  .svc-layout { grid-template-columns: 1fr; gap: 32px; }
  .svc-aside { position: static; }
  .related-grid { grid-template-columns: 1fr; }
}
