/* SWS Contracting & Management: custom SEO redesign stylesheet (charcoal + red, from their logo) */
:root {
  --ink: #1f2123;          /* charcoal near-black (brand) */
  --ink-700: #2b2e31;
  --ink-600: #3a3e43;
  --accent: #c8202e;       /* logo red */
  --accent-600: #b01b27;
  --accent-700: #971521;
  --accent-light: #e36c74; /* lighter red for icons on dark backgrounds */
  --text: #33373b;
  --muted: #6a7178;
  --line: #e6e8ea;
  --bg: #ffffff;
  --bg-soft: #f6f6f7;
  --bg-soft-2: #ecedef;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 11px;
  --shadow-sm: 0 1px 2px rgba(20,22,24,.06), 0 2px 8px rgba(20,22,24,.05);
  --shadow: 0 6px 22px rgba(20,22,24,.10);
  --shadow-lg: 0 22px 55px rgba(20,22,24,.18);
  --maxw: 1180px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--ink-700); text-decoration: none; }
h1, h2, h3 { color: var(--ink); line-height: 1.14; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.45rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.center-actions { justify-content: center; }
.mt { margin-top: 28px; }
.muted { color: var(--muted); }
.small { font-size: .92rem; }

.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0; }
.skip:focus { left: 0; }

.icon { width: 22px; height: 22px; flex: none; }
.icon-sm { width: 17px; height: 17px; flex: none; vertical-align: -3px; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font: inherit; font-weight: 700; cursor: pointer;
  border: 1.5px solid transparent; border-radius: 999px;
  padding: 12px 22px; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn .icon { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(200,32,46,.30); }
.btn-accent:hover { background: var(--accent-600); box-shadow: 0 12px 26px rgba(200,32,46,.40); }
.btn-outline { background: transparent; color: var(--ink); border-color: #cdd0d3; }
.btn-outline:hover { border-color: var(--ink); background: var(--bg-soft); }
.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.18); }
.btn-sm { padding: 10px 17px; font-size: .92rem; }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; font-weight: 700;
  color: var(--accent-700); margin-bottom: 14px;
}
.eyebrow--light { color: #f0a7ac; }

/* ── Header ───────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.93); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 16px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; flex: none; }
.brand-logo { width: 46px; height: auto; flex: none; }
.brand-text { white-space: nowrap; }
.brand-text strong { color: var(--accent); font-weight: 800; }
.nav-desktop { display: flex; gap: 2px; margin-left: auto; align-items: center; }
.nav-desktop a { padding: 8px 11px; border-radius: 9px; color: var(--ink-700); font-weight: 600; font-size: .94rem; white-space: nowrap; transition: background .15s, color .15s; }
.nav-desktop a:hover { background: var(--bg-soft); color: var(--ink); }
.nav-desktop a[aria-current="page"] { color: var(--accent); }
.header-cta { display: flex; align-items: center; gap: 14px; flex: none; }
.phone-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--ink); font-size: .94rem; white-space: nowrap; }
.phone-link .icon { color: var(--accent); }
.phone-link:hover { color: var(--accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 11px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); 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); }
.nav-mobile { display: none; flex-direction: column; gap: 4px; padding: 14px 22px 22px; border-bottom: 1px solid var(--line); background: #fff; }
.nav-mobile a { padding: 13px 12px; border-radius: 10px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--bg-soft-2); }
.nav-mobile a:last-of-type { border: 0; }
.nav-mobile .btn { margin-top: 8px; }
.phone-link--mobile { justify-content: center; padding: 12px; background: var(--bg-soft); border-radius: 10px; margin-top: 6px; }
body.nav-open .nav-mobile { display: flex; }

/* ── Hero ─────────────────────────────────────────────── */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--ink); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .ph { width: 100%; height: 100%; border-radius: 0; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(24,26,28,.96) 0%, rgba(24,26,28,.86) 45%, rgba(24,26,28,.58) 100%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.35fr .9fr; gap: 44px; align-items: center; padding: 84px 22px 92px; }
.hero h1 { color: #fff; }
.hero-sub { font-size: 1.18rem; color: #dadcde; max-width: 40ch; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-trust { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .95rem; color: #edeeef; }
.hero-trust .icon { color: var(--accent-light); }
.hero-card { background: rgba(255,255,255,.98); color: var(--text); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-lg); }
.hero-card-rating { display: flex; flex-direction: column; gap: 4px; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.hero-card-rating strong { font-size: 1.3rem; color: var(--ink); line-height: 1.2; }
.hero-card-rating span { color: var(--muted); font-size: .9rem; }
.hero-card-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--accent-700); }
.hero-card-eyebrow svg { color: var(--accent); }
.hero-card-list { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.hero-card-list li { display: flex; align-items: flex-start; gap: 9px; font-size: .94rem; color: var(--ink-700); }
.hero-card-list svg { color: var(--accent); flex: 0 0 auto; margin-top: 1px; }

/* ── Sections ─────────────────────────────────────────── */
.section { padding: 76px 0; }
.section--alt { background: var(--bg-soft); }
.section--dark { background: var(--ink); color: #fff; }
.section--dark h2 { color: #fff; }
.section-head { max-width: 660px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; margin: 0; }
.section--dark .section-head p { color: #c4ccd3; }

/* ── Credentials bar (real, replaces fabricated stats) ── */
.creds-bar { background: var(--ink); color: #fff; }
.creds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 30px 22px; }
.cred { display: flex; gap: 13px; align-items: flex-start; color: #fff; text-decoration: none; }
.cred-icon { color: var(--accent-light); flex: 0 0 auto; }
.cred-icon .icon { width: 26px; height: 26px; }
.cred-body { display: flex; flex-direction: column; gap: 3px; }
.cred-title { font-size: 1rem; line-height: 1.25; }
.cred-text { color: #c4cace; font-size: .87rem; line-height: 1.45; }
@media (max-width: 760px) { .creds-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .creds-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ── Cards / grids ────────────────────────────────────── */
.cards { display: grid; gap: 20px; }
.services-cards { grid-template-columns: repeat(3, 1fr); }
.values-cards { grid-template-columns: repeat(4, 1fr); }
.areas-cards { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 13px; background: linear-gradient(135deg, #fde7e8, #f8ccce); color: var(--accent-700); margin-bottom: 16px; }
.card-icon .icon { width: 25px; height: 25px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .97rem; margin-bottom: 14px; }
.card-link { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--accent-700); font-size: .92rem; }
.card-link .icon { width: 16px; height: 16px; transition: transform .2s; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #dadcdf; }
a.card:hover .card-link .icon { transform: translateX(4px); }
.service-card.is-active { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,32,46,.16); }

/* ── Split sections ───────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split-media .ph { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; }
.pillars { display: grid; gap: 18px; margin-top: 22px; }
.pillar { display: flex; gap: 14px; }
.pillar-icon { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--bg-soft-2); color: var(--accent-700); display: inline-flex; align-items: center; justify-content: center; }
.pillar h3 { margin-bottom: 3px; font-size: 1.08rem; }
.pillar p { margin: 0; color: var(--muted); font-size: .96rem; }

/* ── Steps ────────────────────────────────────────────── */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; padding-top: 8px; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 800; font-size: 1.2rem; margin-bottom: 14px; box-shadow: 0 6px 16px rgba(200,32,46,.35); }
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .96rem; margin: 0; }
.section--dark .step h3 { color: #fff; }
.section--dark .step p { color: #c4ccd3; }

/* ── Gallery ──────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: #fff; transition: transform .2s, box-shadow .2s; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item .ph { aspect-ratio: 4/3; }
.gallery-item figcaption { padding: 14px 16px; }
.gallery-item figcaption strong { display: block; color: var(--ink); }
.gallery-item figcaption span { color: var(--muted); font-size: .88rem; }

/* ── Reviews ──────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review-quote { display: inline-flex; color: var(--accent); margin-bottom: 8px; }
.review-quote .icon { width: 28px; height: 28px; }
.review-card blockquote { margin: 0; font-size: 1.02rem; color: var(--ink-700); line-height: 1.6; flex: 1; }
.review-card figcaption { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.review-card figcaption strong { display: block; color: var(--ink); }
.review-card figcaption span { color: var(--muted); font-size: .88rem; }

/* ── Area chips ───────────────────────────────────────── */
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-chip { display: inline-flex; align-items: center; gap: 7px; padding: 10px 17px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: .95rem; color: var(--ink-700); box-shadow: var(--shadow-sm); transition: transform .15s, border-color .15s, color .15s; }
.area-chip:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent-700); }
.area-chip .icon { color: var(--accent); }

/* ── Page hero (inner pages) ──────────────────────────── */
.page-hero { background: linear-gradient(180deg, var(--bg-soft), #fff); padding: 56px 0 40px; }
.page-hero--area { background: linear-gradient(180deg, var(--bg-soft-2), #fff); }
.page-hero--tight { padding: 48px 0 22px; }
.lede { font-size: 1.18rem; color: var(--muted); max-width: 60ch; margin-inline: auto; }
.page-hero:not(.center) .lede { margin-inline: 0; }
.service-hero { padding: 50px 0 20px; }
.service-hero .lede { margin-inline: 0; }

/* ── Crumbs ───────────────────────────────────────────── */
.crumbs { background: #fff; border-bottom: 1px solid var(--line); font-size: .86rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 11px 0; color: var(--muted); }
.crumbs li:not(:last-child)::after { content: "›"; margin-left: 8px; color: #b7bbc0; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent-700); }
.crumbs li[aria-current] { color: var(--ink); font-weight: 600; }

/* ── Service detail lists / side card ─────────────────── */
.check-list, .side-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 1.02rem; }
.check-list .icon { color: var(--accent); margin-top: 3px; }
.side-card { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg); align-self: start; position: sticky; top: 96px; }
.side-card h3 { color: #fff; margin-bottom: 16px; }
.side-list { margin-bottom: 22px; }
.side-list li { display: flex; gap: 10px; align-items: center; color: #e3e6e9; font-size: .98rem; }
.side-list .icon { color: var(--accent-light); }
.side-phone { display: block; text-align: center; margin-top: 12px; color: #c4cace; font-size: .92rem; }
.side-phone:hover { color: #fff; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { width: 20px; height: 20px; color: var(--accent); transform: rotate(90deg); transition: transform .2s; flex: none; }
.faq-item[open] .faq-chevron { transform: rotate(-90deg); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { margin: 0; color: var(--muted); }

/* ── CTA band ─────────────────────────────────────────── */
.cta-band { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.cta-band-art { position: absolute; inset: 0; opacity: .20; }
.cta-band-art .ph { width: 100%; height: 100%; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, var(--ink) 32%, rgba(31,33,35,.68)); }
.cta-band-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 54px 22px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: #d2d6d9; margin: 0; max-width: 48ch; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── Contact ──────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 40px; align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 6px; font-weight: 600; color: var(--ink); font-size: .92rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; font-weight: 400; color: var(--text); padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 11px; background: var(--bg-soft); transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,32,46,.16); background: #fff; }
.contact-form textarea { resize: vertical; }
/* form-note: icon + prose wrapped as TWO flex children (text+link stay in one <span>) */
.form-note { font-size: .85rem; color: var(--muted); margin: 0; display: flex; gap: 8px; align-items: flex-start; }
.form-note-icon { color: var(--accent); display: inline-flex; margin-top: 2px; flex: none; }
.form-note a { color: var(--accent-700); font-weight: 700; }
.contact-side { display: grid; gap: 20px; }
.contact-card { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg); }
.contact-card h2, .contact-card h3 { color: #fff; }
.contact-card h3 { margin: 22px 0 10px; font-size: 1rem; }
.contact-big-phone { display: inline-flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.contact-big-phone .icon { color: var(--accent-light); width: 26px; height: 26px; }
.contact-line { color: #d3d7da; font-size: .96rem; margin: 6px 0; display: flex; gap: 8px; align-items: flex-start; }
.contact-line .icon { color: var(--accent-light); flex: none; margin-top: 2px; }
.contact-card .area-chips { justify-content: flex-start; }
.contact-card .area-chip { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: #e3e6e9; box-shadow: none; }
.contact-card .area-chip:hover { border-color: var(--accent-light); color: #fff; }

/* ── Footer ───────────────────────────────────────────── */
.site-footer { background: #16181a; color: #b3b8bd; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 36px; padding-bottom: 44px; }
.brand--footer { color: #fff; font-size: 1.3rem; margin-bottom: 14px; }
.footer-logo-chip { background: #fff; border-radius: 9px; padding: 5px 8px; display: inline-flex; align-items: center; }
.footer-logo-chip .brand-logo { width: 42px; }
.footer-tag { color: #9aa1a8; max-width: 32ch; }
.footer-phone { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 800; font-size: 1.2rem; margin: 6px 0 10px; }
.footer-phone .icon { color: var(--accent-light); }
.footer-area { color: #868e96; font-size: .9rem; margin-bottom: 8px; }
.footer-lic { display: flex; align-items: flex-start; gap: 7px; color: #9aa1a8; font-size: .86rem; }
.footer-lic .icon { color: var(--accent-light); flex: none; margin-top: 2px; }
.footer-col h3 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: #b3b8bd; font-size: .94rem; }
.footer-col a:hover { color: var(--accent-light); }
.footer-contact ul li { display: flex; gap: 8px; align-items: flex-start; color: #b3b8bd; font-size: .94rem; }
.footer-contact .icon { color: var(--accent-light); flex: none; margin-top: 2px; }
.footer-contact .btn { margin-top: 16px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px 22px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 0; }
.footer-bottom p { margin: 0; font-size: .86rem; color: #767e86; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: #9aa1a8; font-size: .86rem; }
.footer-links a:hover { color: var(--accent-light); }

/* ── Mobile call bar ──────────────────────────────────── */
.mobile-callbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--accent); color: #fff; font-weight: 800; text-align: center; padding: 15px; align-items: center; justify-content: center; gap: 9px; box-shadow: 0 -4px 18px rgba(0,0,0,.16); }
.mobile-callbar .icon { width: 20px; height: 20px; }

/* ── Image tiles (render-safe; real photos fill these) ── */
.ph { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--ink-700), var(--ink)); }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph--hero { background: linear-gradient(120deg, #2b2e31, #1a1c1e 70%); }
.ph--gallery, .ph--band { width: 100%; height: 100%; }

/* ── Responsive ───────────────────────────────────────── */
/* Nav collapses to hamburger before it ever gets cramped */
@media (max-width: 1180px) {
  .nav-desktop, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { margin-left: auto; }
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; padding: 60px 22px 70px; }
  .hero-card { display: none; }
  .services-cards, .values-cards { grid-template-columns: repeat(2, 1fr); }
  .areas-cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split-media { order: -1; }
  .service-hero .split-media { order: 0; }
  .side-card { position: static; }
  .gallery-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .header-cta { display: none; }
  .nav-toggle { margin-left: auto; }
  .services-cards, .values-cards, .areas-cards, .gallery-grid, .reviews-grid, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .mobile-callbar { display: flex; }
  body { padding-bottom: 56px; }
  .cta-band-inner { padding: 40px 22px; }
  .section { padding: 56px 0; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
