/* ===== Shorrock Build – brand tokens ===== */
:root {
  --ink: #111113;          /* brand black */
  --ink-2: #1c1c1f;
  --band: #2a2a2e;         /* dark grey band */
  --text: #26262a;
  --muted: #6a6a72;
  --line: #e6e6e9;
  --tint: #f6f6f7;
  --white: #ffffff;
  --accent: #e0a458;       /* warm light from the poster */
  --accent-dark: #c4863a;
  --accent-text: #a86a1f;  /* accent that reads on white */
  --radius: 10px;
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Russo One", "Montserrat", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; }
@media (max-width: 860px) {
  .svc-row { grid-template-columns: 1fr; gap: 22px; padding: 28px 0; }
  .svc-row:nth-of-type(even) .svc-media { order: 0; }
  .svc-media { aspect-ratio: 16 / 9; }
  .cta-inner { flex-direction: column; align-items: flex-start; } html { scroll-padding-top: 90px; } }
body {
  margin: 0; background: var(--white); color: var(--text);
  font-family: var(--font); font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; color: var(--ink); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 500; letter-spacing: -.01em; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1em; }
svg use { pointer-events: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem; background: var(--accent); color: var(--ink);
  border: 1.5px solid var(--accent); border-radius: 6px;
  font: 700 .82rem/1 var(--font); letter-spacing: .06em; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-small { padding: .65rem 1.1rem; font-size: .76rem; }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.7); backdrop-filter: blur(4px); }
.btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: #000; border-color: #000; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ===== Top strip ===== */
.topbar { background: var(--ink); color: #e4e4e7; font-size: .78rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; }
.topbar-item { display: inline-flex; align-items: center; gap: .45rem; text-decoration: none; font-weight: 500; }
.topbar-item svg { width: 14px; height: 14px; color: var(--accent); }
a.topbar-item:hover { color: var(--accent); }
.topbar-right { display: flex; align-items: center; gap: 1rem; }
.topbar-icon { display: inline-flex; color: #e4e4e7; }
.topbar-icon svg { width: 16px; height: 16px; }
.topbar-icon:hover { color: var(--accent); }

/* ===== Header ===== */
.site-header { background: var(--white); }
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding-top: 14px; padding-bottom: 12px; }
.header-left { justify-self: start; }
.header-right { justify-self: end; }
.brand { display: flex; color: var(--ink); }
.brand-logo { height: 84px; width: auto; aspect-ratio: 400 / 240; color: var(--ink); }
.nav-toggle { display: none; }

/* ===== Menu row ===== */
.navbar {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: box-shadow .2s;
}
.navbar.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,.06); }
.navbar-inner { display: flex; justify-content: center; flex-wrap: wrap; gap: .2rem 2rem; }
.navbar a {
  position: relative; padding: 16px 0; text-decoration: none; font-size: .82rem; font-weight: 500; color: #3a3a40;
  transition: color .2s;
}
.navbar a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--accent);
  transform: scaleX(0); transition: transform .25s;
}
.navbar a:hover, .navbar a.active { color: var(--ink); }
.navbar a.active { font-weight: 700; }
.navbar a:hover::after, .navbar a.active::after { transform: scaleX(1); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 520px; height: 72vh; max-height: 720px; display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: url("../images/hero-extension.jpg") center 60% / cover no-repeat;
  transform: scale(1.04); animation: heroZoom 16s ease-out forwards;
}
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,12,.72) 0%, rgba(10,10,12,.45) 55%, rgba(10,10,12,.25) 100%); }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-content { color: #fff; text-align: center; }
.hero h1, .page-banner h1, .hero-sub { text-wrap: balance; }
.hero-kicker { font-size: .8rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); margin: 0 0 .9rem; animation: rise .9s both; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 600; letter-spacing: -.01em; margin-bottom: .6rem; animation: rise .9s both; }
.hero-sub { font-style: italic; font-size: clamp(1rem, 2vw, 1.25rem); color: #f1f1f1; max-width: 860px; margin: 0 auto 2rem; animation: rise .9s .15s both; }
.hero-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; animation: rise .9s .3s both; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ===== Intro ===== */
.intro { padding: 80px 0 40px; text-align: center; }
.intro-inner { max-width: 900px; }
.intro h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.hl { color: var(--accent-text); }
.intro p { color: var(--muted); max-width: 760px; margin-left: auto; margin-right: auto; }
.about-eyebrow { display: inline-flex; align-items: center; gap: .8rem; margin-bottom: .8rem !important; font-size: .74rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--accent-text) !important; }
.about-eyebrow::before, .about-eyebrow::after { content: ""; width: 28px; height: 2px; background: var(--accent); }
.about h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 600; }
.about h2 .hl { white-space: nowrap; }
.about-lead { font-size: 1.08rem; color: var(--text) !important; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 860px; margin: 2.4rem auto 2rem; }
.stat {
  display: flex; flex-direction: column; align-items: center; gap: .5rem; padding: 26px 16px 24px;
  background: linear-gradient(160deg, #2c2c31, #151517); border-radius: var(--radius); color: #fff;
  border-bottom: 3px solid var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.stat-num { font-family: var(--display); font-size: clamp(2.6rem, 5vw, 3.4rem); line-height: 1; color: var(--accent); }
.stat-label { font-size: .86rem; line-height: 1.45; color: #d9d9de; }
.intro-formerly { font-size: .95rem; }
.intro-formerly strong { color: var(--ink); }
.intro-motto { font-family: var(--display); letter-spacing: .25em; color: var(--ink) !important; font-size: .9rem; margin-top: 1.4rem; }

/* ===== Service tiles ===== */
.services { padding: 30px 0 90px; }
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile {
  --img: none;
  position: relative; display: flex; align-items: center; justify-content: center; text-align: center;
  aspect-ratio: 4 / 3.4; border-radius: var(--radius); overflow: hidden; text-decoration: none; color: #fff; isolation: isolate;
  background:
    linear-gradient(rgba(10,10,12,.42), rgba(10,10,12,.55)),
    var(--img) center / cover no-repeat,
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(255,255,255,.035) 27px 29px),
    linear-gradient(160deg, #2c2c31 0%, #151517 100%);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.tile::before { content: ""; position: absolute; inset: 0; z-index: -1; background: inherit; transition: transform .6s ease; }
.tile:hover::before { transform: scale(1.06); }
.tile { flex-direction: column; }
.tile-icon { width: 58px; height: 58px; color: var(--accent); margin-bottom: -.2rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.tile-body { display: flex; flex-direction: column; align-items: center; gap: .9rem; padding: 20px; }
.tile-title { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 500; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.tile-btn {
  padding: .5rem 1rem; border: 1.5px solid rgba(255,255,255,.85); border-radius: 6px; font-size: .75rem; font-weight: 600;
  background: rgba(0,0,0,.25); transition: background .2s, color .2s;
}
.tile:hover .tile-btn { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.services-head { text-align: center; max-width: 640px; margin: 0 auto 2rem; }
.services-head p { color: var(--muted); margin: 0; }
.tiles-core { grid-template-columns: repeat(2, 1fr); }
.tile-core { aspect-ratio: 16 / 9; border: 1px solid rgba(224,164,88,.35); }
.tile-core .tile-icon { width: 64px; height: 64px; }
.tile-kicker { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: -.5rem; }
.tile-core .tile-title { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 600; }
.tile-desc { max-width: 360px; font-size: .92rem; color: #d7d7dc; margin-top: -.3rem; }
.tiles-label { text-align: center; font-weight: 500; font-size: 1.3rem; margin: 3rem 0 1.4rem; }
.tiles-projects { grid-template-columns: repeat(6, 1fr); }
.tiles-projects .tile { grid-column: span 2; }
.tiles-projects .tile:nth-child(n+4) { grid-column: span 3; aspect-ratio: 16 / 9; }
.services-more { text-align: center; margin: 2rem 0 0; color: var(--muted); }
.services-more a { color: var(--accent-text); font-weight: 700; }

/* ===== Bands ===== */
.band { padding: 80px 0; text-align: center; }
.band-dark { background: var(--band); color: #eee; }
.band-dark h2 { color: #fff; }
.band-head { max-width: 680px; margin: 0 auto 2.2rem; }
.band-head p { color: #cfcfd4; margin: 0; }
.band-more { margin-top: 2.4rem; }
.link-more { color: #fff; text-decoration: none; font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.6); padding-bottom: 4px; }
.link-more:hover { color: var(--accent); border-color: var(--accent); }
.band-accent { background: var(--accent); color: var(--ink); }
.band-accent h2 { color: var(--ink); }

/* ===== Before & after ===== */
.filter-bar { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.8rem; }
.filter-bar button {
  background: transparent; color: #d4d4d8; border: 1px solid rgba(255,255,255,.3); border-radius: 6px;
  padding: .5rem 1rem; font: 600 .74rem var(--font); cursor: pointer; transition: all .2s;
}
.filter-bar button:hover { border-color: #fff; color: #fff; }
.filter-bar button[aria-selected="true"] { background: #fff; color: var(--ink); border-color: #fff; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.project { background: var(--ink-2); border-radius: var(--radius); overflow: hidden; }
.project[hidden] { display: none; }
.ba { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; user-select: none; touch-action: pan-y; --pos: 50%; background: #222; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba .ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: #fff; pointer-events: none; }
.ba-handle::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 6 3 12l6 6M15 6l6 6-6 6' fill='none' stroke='%23111' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 22px no-repeat;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.ba-label { position: absolute; top: 12px; padding: .3rem .6rem; border-radius: 4px; background: rgba(0,0,0,.7); color: #fff; font-size: .64rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; pointer-events: none; }
.ba-label.before { left: 12px; }
.ba-label.after { right: 12px; background: var(--accent); color: var(--ink); }
.ba input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.project-body { padding: 18px 20px 20px; }
.project-body .tag { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.project-body h3 { color: #fff; font-size: 1.02rem; margin: .3rem 0 .25rem; }
.project-body p { color: #a9a9b0; margin: 0; font-size: .88rem; }

/* ===== Why choose us ===== */
.section { padding: 90px 0; }
.section-tint { background: var(--tint); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-head p { color: var(--muted); margin: 0; }
.accent-title { color: var(--accent-text); }
.section-title { text-align: center; margin-bottom: 2.2rem; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card { text-align: center; }
.why-media {
  aspect-ratio: 4 / 3.2; border-radius: var(--radius); margin-bottom: 1.4rem; display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(224,164,88,.18), transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(255,255,255,.03) 27px 29px),
    linear-gradient(160deg, #2c2c31, #141416);
  color: var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.why-media svg { width: 34%; height: auto; }
.why-card h3 { font-weight: 500; font-size: 1.2rem; }
.why-card p { color: var(--muted); font-size: .94rem; max-width: 330px; margin: 0 auto; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 860px; }
.faq-wrap h2 { margin-bottom: 1.4rem; }
.faq { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq details + details { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 56px 18px 22px; position: relative; font-weight: 500; color: var(--ink); font-size: .95rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 9px; height: 9px; margin-top: -7px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .25s, margin .25s;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq summary:hover { color: var(--accent-text); }
.faq details p { padding: 0 22px 20px; margin: 0; color: var(--muted); }

/* ===== Testimonials ===== */
.testimonials { max-width: 860px; }
.band-intro { margin: 0 auto 1.8rem; max-width: 560px; font-weight: 500; }
.quotes { position: relative; margin-bottom: 1.8rem; }
.quote { margin: 0; }
.quote[hidden] { display: none; }
.quote blockquote { margin: 0 0 .8rem; font-style: italic; font-size: clamp(1.05rem, 2.2vw, 1.3rem); line-height: 1.6; }
.quote figcaption { font-weight: 700; font-size: .9rem; display: flex; flex-direction: column; align-items: center; gap: .35rem; }
.quote-src { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; opacity: .75; }
.quote-note { font-weight: 500; font-size: .8rem; font-style: italic; padding: .2rem .7rem; border-radius: 999px; background: rgba(17,17,19,.1); }
.quote-src svg { width: 14px; height: 14px; }
.quotes { display: flex; flex-direction: column; justify-content: center; }
.band-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.band-accent .btn-outline { border-color: var(--ink); color: var(--ink); }
.band-accent .btn-outline:hover { background: var(--ink); color: #fff; }
.quote .stars { letter-spacing: .15em; margin-bottom: .6rem; }
.quote-dots { display: flex; gap: 8px; justify-content: center; margin-top: 1.2rem; }
.quote-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; padding: 0; background: rgba(17,17,19,.3); cursor: pointer; }
.quote-dots button[aria-current="true"] { background: var(--ink); }
.quotes-empty { font-style: italic; font-size: 1.1rem; margin: 0; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 2rem; }
.g-item { position: relative; aspect-ratio: 1; border-radius: 6px; overflow: hidden; border: 0; padding: 0; cursor: zoom-in; background: #1b1b1e; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.g-item:hover img { transform: scale(1.06); }
.g-empty {
  cursor: default; display: grid; place-items: center; color: rgba(224,164,88,.35);
  background: repeating-linear-gradient(0deg, transparent 0 27px, rgba(255,255,255,.03) 27px 29px), linear-gradient(160deg, #2c2c31, #151517);
}
.g-empty svg { width: 42%; height: auto; }

.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.9); display: grid; place-items: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 6px; }
.lightbox-close { position: absolute; top: 14px; right: 18px; background: none; border: 0; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; }

/* ===== Footer ===== */
.site-footer { background: var(--band); color: #d8d8dc; padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1.4fr 1fr; gap: 40px; align-items: start; }
.footer-logo { width: 190px; height: auto; aspect-ratio: 400 / 240; color: #fff; margin-bottom: 1.4rem; }
.footer-services li { margin-bottom: .35rem; font-size: .9rem; }
.footer-services a { text-decoration: none; }
.footer-services a:hover { color: var(--accent); }
.footer-links li { margin-bottom: .35rem; }
.footer-links a { text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: var(--accent); }
.footer-form { text-align: center; }
.footer-form h2 { color: #fff; font-size: 1.25rem; font-weight: 500; margin-bottom: .6rem; }
.footer-phone { display: block; font-size: 1.5rem; font-weight: 700; color: #fff; text-decoration: none; }
.footer-phone:hover, .footer-email:hover { color: var(--accent); }
.footer-or { margin: .4rem 0 .2rem; font-size: .9rem; }
.footer-email { display: inline-block; color: #fff; text-decoration: none; font-weight: 600; margin-bottom: 1.6rem; word-break: break-word; }
.quote-form { display: grid; gap: 10px; text-align: left; }
.quote-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; background: #fff; color: var(--text); border: 1px solid transparent; border-radius: 6px;
  padding: .8rem .95rem; font: 500 .95rem var(--font);
}
.quote-form select { appearance: none; -webkit-appearance: none; padding-right: 2.4rem;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%236a6a72' stroke-width='2'/%3E%3C/svg%3E") right .8rem center / 16px no-repeat; }
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(224,164,88,.35); }
.quote-form .invalid { border-color: #e5484d; box-shadow: 0 0 0 2px rgba(229,72,77,.3); }
.quote-form .btn { justify-self: center; min-width: 160px; margin-top: 4px; }
.quote-form .f { display: flex; flex-direction: column; min-width: 0; }
.field-error { margin: 5px 2px 0; font-size: .8rem; line-height: 1.4; color: #ff9c9c; }
.field-error:empty { display: none; }
.field-error button { background: none; border: 0; padding: 0; color: var(--accent); font: inherit; font-weight: 700; text-decoration: underline; cursor: pointer; }
.char-count { margin: -4px 0 0; text-align: right; font-size: .76rem; color: #a0a0a7; }
.char-count.near { color: var(--accent); }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { text-align: center; margin: 0; font-size: .9rem; min-height: 1.3em; }
.form-status.ok { color: #7ee2a8; }
.form-status.err { color: #ff8a8a; }
.footer-side { text-align: right; }
.footer-social { display: flex; gap: .8rem; justify-content: flex-end; margin-bottom: 1.6rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: background .2s, color .2s; }
.footer-social a:hover { background: var(--accent); color: var(--ink); }
.footer-social svg { width: 18px; height: 18px; }
.footer-services h4, .footer-side h4 { color: var(--accent); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .8rem; }
.footer-side li { font-size: .9rem; margin-bottom: .3rem; }
.footer-copy { margin-top: 1.6rem; font-size: .8rem; color: #a0a0a7; }

/* ===== Multi-page: page banners ===== */
.page-banner { position: relative; isolation: isolate; color: #fff; padding: 64px 0 60px; text-align: center; overflow: hidden;
  background: linear-gradient(90deg, rgba(10,10,12,.85), rgba(10,10,12,.6)), url("../images/hero-extension.jpg") center 55% / cover no-repeat; }
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 600; margin: .4rem 0 .5rem; }
.page-banner p { margin: 0 auto; max-width: 680px; color: #e6e6e9; font-size: 1.05rem; }
.crumbs { font-size: .8rem; color: #cfcfd4; display: flex; gap: .5rem; justify-content: center; }
.crumbs a { color: var(--accent); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ===== Call-to-action strip ===== */
.cta-strip { background: var(--ink); color: #fff; padding: 56px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .3rem; }
.cta-inner p { margin: 0; color: #c9c9ce; }
.cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.footer-form .btn { margin-top: .4rem; }

/* ===== Services page ===== */
.svc-jump { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 3rem; }
.svc-jump a { text-decoration: none; font-size: .8rem; font-weight: 600; padding: .5rem .95rem; border: 1px solid var(--line); border-radius: 999px; color: var(--text); transition: all .2s; }
.svc-jump a:hover { border-color: var(--accent); color: var(--accent-text); }
.svc-row { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; padding: 36px 0; border-top: 1px solid var(--line); scroll-margin-top: 80px; }
.svc-row:first-of-type { border-top: 0; }
.svc-row:nth-of-type(even) .svc-media { order: 2; }
.svc-media { aspect-ratio: 4 / 3; cursor: default; }
.svc-media .tile-icon { width: 84px; height: 84px; }
.svc-kicker { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-text); margin: 0 0 .5rem; }
.svc-text h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 600; }
.svc-text > p { color: var(--muted); }
.svc-list { margin: 0 0 1.6rem; display: grid; gap: .45rem; }
.svc-list li { position: relative; padding-left: 1.6rem; }
.svc-list li::before { content: ""; position: absolute; left: 0; top: .5em; width: 12px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }

/* ===== Reviews page ===== */
.reviews-summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; padding: 18px 22px; background: var(--tint); border-radius: var(--radius); }
.reviews-summary p { margin: 0; font-size: 1.05rem; }
.reviews-summary strong { color: var(--accent-text); }
.reviews-grid { columns: 3 300px; column-gap: 20px; }
.review-card { break-inside: avoid; margin: 0 0 20px; padding: 26px 26px 22px; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(0,0,0,.05); }
.review-card blockquote { margin: 0 0 1rem; font-style: italic; }
.review-card figcaption { display: flex; flex-direction: column; gap: .35rem; font-weight: 700; font-size: .9rem; color: var(--ink); }
.review-card .quote-src { opacity: 1; color: var(--muted); }
.review-card .quote-note { align-self: flex-start; background: var(--tint); }

/* ===== Contact page ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.contact-info h2 { font-weight: 600; }
.contact-info > p { color: var(--muted); }
.contact-list { margin: 1.6rem 0; display: grid; gap: 10px; }
.contact-list a { display: flex; align-items: center; gap: 1rem; padding: 12px 16px; text-decoration: none; font-weight: 600; color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s; word-break: break-word; }
.contact-list a:hover { border-color: var(--accent); }
.contact-list small { display: block; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.ci-icon { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(224,164,88,.15); color: var(--accent-text); }
.ci-icon svg { width: 18px; height: 18px; }
.areas-box { padding: 18px 20px; background: var(--tint); border-radius: var(--radius); }
.areas-box h3 { display: flex; align-items: center; gap: .5rem; font-size: 1rem; margin-bottom: .4rem; }
.areas-box h3 svg { width: 18px; height: 18px; color: var(--accent-text); }
.areas-box p { margin: 0; color: var(--muted); }
.contact-panel { background: var(--band); color: #eee; border-radius: var(--radius); padding: 32px; border-top: 4px solid var(--accent); }
.contact-panel h2 { color: #fff; font-size: 1.4rem; font-weight: 600; margin-bottom: 1.2rem; }

.mobile-bar { display: none; }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .navbar-inner { gap: .2rem 1.4rem; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-form { grid-column: 1 / -1; order: -1; max-width: 640px; margin: 0 auto; width: 100%; }
}
@media (max-width: 860px) {
  .topbar-mid, .topbar-email { display: none; }
  .topbar-inner { justify-content: center; }
  .header-left, .header-right { display: none; }
  .header-inner { grid-template-columns: 1fr auto; padding-top: 10px; padding-bottom: 10px; }
  .brand-logo { height: 62px; }
  .nav-toggle {
    display: block; justify-self: end; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; padding: 11px 10px;
  }
  .nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .3s, opacity .3s; }
  .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); }
  .site-header { position: sticky; top: 0; z-index: 55; box-shadow: 0 1px 0 var(--line); }
  .header-inner { height: 82px; }
  .navbar { top: 82px; border-top: 0; border-bottom: 0; background: #fff; }
  .navbar-inner.open { border-bottom: 1px solid var(--line); box-shadow: 0 12px 24px rgba(0,0,0,.08); }
  .navbar-inner { display: none; flex-direction: column; gap: 0; padding-top: 6px; padding-bottom: 14px; }
  .navbar-inner.open { display: flex; }
  .navbar a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .navbar a::after { display: none; }
  .tiles-projects { grid-template-columns: repeat(2, 1fr); }
  .tiles-projects .tile, .tiles-projects .tile:nth-child(n+4) { grid-column: auto; aspect-ratio: 4 / 3.4; }
  .tiles-projects .tile:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 7; }
  .tile-core { aspect-ratio: 4 / 3.4; }
  .why-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .hero { height: auto; min-height: 480px; padding: 60px 0; }
}
@media (max-width: 600px) {
  .page-banner { padding: 44px 0 40px; }
  .contact-panel { padding: 24px 18px; }
  .cta-actions, .cta-actions .btn { width: 100%; }
  .reviews-summary { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 16px; }
  .tiles, .tiles-core, .tiles-projects { grid-template-columns: 1fr; gap: 14px; }
  .tiles-projects .tile, .tiles-projects .tile:nth-child(n+4), .tiles-projects .tile:last-child { grid-column: auto; aspect-ratio: 16 / 10; }
  .tiles-core .tile-core { aspect-ratio: auto; min-height: 280px; }
  .tile { aspect-ratio: 16 / 10; }
  .projects-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-actions .btn { width: 100%; }
  .section, .band { padding: 64px 0; }
  .intro { padding: 56px 0 24px; }
  .about-stats { grid-template-columns: 1fr; gap: 12px; max-width: 360px; }
  .stat { flex-direction: row; justify-content: flex-start; text-align: left; gap: 1.2rem; padding: 18px 22px; }
  .stat-num { min-width: 64px; text-align: center; }
  .stat-label br { display: none; }
  .quote-form .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-side { text-align: center; }
  .footer-social { justify-content: center; }
  body { padding-bottom: 58px; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; inset: auto 0 0 0; z-index: 60;
    background: var(--ink); box-shadow: 0 -4px 16px rgba(0,0,0,.15);
  }
  .mobile-bar a {
    display: flex; align-items: center; justify-content: center; gap: .5rem; color: #fff;
    padding: 18px 0; text-decoration: none; font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  }
  .mobile-bar svg { width: 15px; height: 15px; color: var(--accent); }
  .mobile-bar a:last-child { background: var(--accent); color: var(--ink); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
