:root {
  --bg: #efe6d8;
  --surface: #f8f2e9;
  --surface-strong: #e6dbc9;
  --paper: #fffaf2;
  --ink: #172018;
  --ink-soft: #465046;
  --line: rgba(23, 32, 24, 0.12);
  --line-strong: rgba(23, 32, 24, 0.22);
  --accent: #c58b42;
  --accent-strong: #9f6421;
  --forest: #233328;
  --forest-deep: #0f1511;
  --dark: #111612;
  --canvas: #fffaf2;
  --mist: rgba(255, 250, 242, 0.82);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 24px 60px rgba(11, 16, 12, 0.12);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.28);
  --header-height: 96px;
  --site-width: min(1180px, calc(100vw - 40px));
  --display-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body-font: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(197, 139, 66, 0.16), transparent 32%),
    linear-gradient(180deg, #f4ecdf 0%, var(--bg) 36%, #ede3d4 100%);
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -120px;
  z-index: 60;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff8ef;
  color: var(--forest);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  top: 18px;
}

body::selection {
  background: rgba(197, 139, 66, 0.25);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(12, 17, 13, 0.82);
  border-bottom: 1px solid rgba(255, 250, 242, 0.08);
}

.site-header-inner,
.site-footer-inner,
.section,
.page-hero,
.hero-shell {
  width: var(--site-width);
  margin: 0 auto;
}

.site-header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  color: #fff8ef;
}

.logo strong,
.brand-lockup {
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.logo strong {
  font-size: 1.08rem;
}

.logo span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 248, 239, 0.72);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.desktop-nav a,
.header-phone {
  font-size: 0.93rem;
  color: rgba(255, 248, 239, 0.82);
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.header-phone:hover {
  color: #fff8ef;
}

.header-phone {
  margin-left: 16px;
  letter-spacing: 0.03em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 248, 239, 0.18);
  border-radius: 999px;
  background: transparent;
  color: #fff8ef;
}

.mobile-panel {
  display: none;
  padding: 0 20px 20px;
  background: rgba(12, 17, 13, 0.96);
  border-top: 1px solid rgba(255, 250, 242, 0.08);
}

.mobile-panel nav {
  display: grid;
  gap: 14px;
}

.mobile-panel a {
  color: rgba(255, 248, 239, 0.84);
  padding: 10px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, #d99a4b 0%, var(--accent-strong) 100%);
  color: #fff8ef;
  box-shadow: 0 18px 40px rgba(197, 139, 66, 0.3);
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 248, 239, 0.22);
  color: #fff8ef;
}

.header-actions .button-secondary {
  min-height: 46px;
  padding: 0 18px;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: 54px 0 44px;
  background:
    radial-gradient(circle at 20% 15%, rgba(197, 139, 66, 0.18), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #111613 0%, #1a251c 44%, #101411 100%);
  overflow: clip;
}

.hero::before,
.page-hero::before,
.band-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -120px 25%;
  height: 360px;
  background:
    radial-gradient(circle at center, rgba(197, 139, 66, 0.18), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 620px;
  padding: 36px 0 22px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 18px;
}

.brand-word {
  color: #fff8ef;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.9;
}

.brand-word.muted {
  color: rgba(255, 248, 239, 0.64);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  color: #fffaf2;
  font-size: clamp(2.8rem, 6.4vw, 5.5rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 14ch;
  color: var(--forest);
}

h3 {
  font-size: 1.55rem;
  color: var(--forest);
}

.lead,
.page-hero-copy .lead {
  margin: 24px 0 0;
  color: rgba(255, 248, 239, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.hero-tags li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 248, 239, 0.16);
  border-radius: 999px;
  color: rgba(255, 248, 239, 0.82);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
}

.hero-visual,
.page-hero-copy,
.section-heading,
.split-panel,
.contact-layout,
.story-layout,
.coverage-layout,
.band-layout {
  position: relative;
  z-index: 1;
}

.visual-frame {
  border-radius: 34px;
  background: rgba(255, 250, 242, 0.06);
  border: 1px solid rgba(255, 248, 239, 0.12);
  padding: 18px;
  box-shadow: var(--shadow-deep);
}

.visual-crest {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 248, 239, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  align-items: stretch;
}

.visual-photo,
.borough-card,
.service-detail,
.service-tile,
.value-block,
.process-step,
.stat-card,
.timeline-step,
.compliance-card,
.contact-panel,
.enquiry-form,
.legal-block {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.84);
  box-shadow: var(--shadow-soft);
}

.visual-photo {
  min-height: 360px;
  overflow: hidden;
  position: relative;
  background-color: #182018;
}

.visual-photo::before,
.borough-card::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 35%),
    radial-gradient(circle at 20% 20%, rgba(197, 139, 66, 0.35), transparent 30%),
    linear-gradient(160deg, rgba(12, 16, 13, 0.1), rgba(12, 16, 13, 0.62));
}

.visual-photo::after,
.photo-site::after,
.photo-ductwork::after,
.photo-labour::after,
.photo-team::after,
.photo-process::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  mix-blend-mode: screen;
  opacity: 0.28;
}

.visual-photo span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  max-width: 220px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.12);
  border: 1px solid rgba(255, 248, 239, 0.18);
  color: #fffaf2;
  font-size: 0.83rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.photo-site {
  background:
    radial-gradient(circle at 70% 24%, rgba(197, 139, 66, 0.48), transparent 18%),
    linear-gradient(180deg, rgba(18, 24, 20, 0.28), rgba(18, 24, 20, 0.72)),
    linear-gradient(120deg, #4c5a49 0%, #212b23 35%, #0f1411 100%);
}

.photo-ductwork {
  background:
    radial-gradient(circle at 76% 32%, rgba(255, 212, 160, 0.28), transparent 18%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05) 0 4px,
      transparent 4px 18px
    ),
    linear-gradient(160deg, #46554a 0%, #1c261f 40%, #101411 100%);
}

.photo-labour {
  background:
    radial-gradient(circle at 18% 20%, rgba(197, 139, 66, 0.4), transparent 18%),
    linear-gradient(180deg, rgba(245, 240, 232, 0.06), rgba(15, 20, 17, 0.74)),
    linear-gradient(135deg, #5d685d 0%, #283128 42%, #121714 100%);
}

.photo-team {
  min-height: 520px;
  background:
    radial-gradient(circle at 20% 18%, rgba(197, 139, 66, 0.34), transparent 18%),
    linear-gradient(140deg, #6f786b 0%, #2a342b 42%, #111612 100%);
}

.photo-process {
  min-height: 320px;
  background:
    radial-gradient(circle at 72% 22%, rgba(197, 139, 66, 0.36), transparent 16%),
    linear-gradient(150deg, #4e594e 0%, #202923 42%, #101411 100%);
}

.visual-stat {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 248, 239, 0.14);
  color: #fff8ef;
}

.visual-stat strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.visual-stat span {
  color: rgba(255, 248, 239, 0.72);
  line-height: 1.6;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.visual-grid article {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.06);
  border: 1px solid rgba(255, 248, 239, 0.14);
  color: #fff8ef;
}

.visual-grid strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display-font);
  font-size: 1.6rem;
}

.visual-grid span {
  color: rgba(255, 248, 239, 0.72);
  line-height: 1.5;
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  padding: 110px 0 42px;
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero h1 {
  color: var(--forest);
  max-width: 11.5ch;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.page-hero .lead {
  color: var(--ink-soft);
}

/* Кнопка "secondary" на светлом фоне page-hero → тёмный текст */
.page-hero .button-secondary {
  color: var(--forest);
  border-color: rgba(23, 32, 24, 0.3);
}

.page-hero .button-secondary:hover {
  color: var(--forest-deep);
  border-color: rgba(23, 32, 24, 0.5);
}

.page-hero::after {
  border-radius: 38px;
}

.section {
  padding: 64px 0;
}

.section-dark {
  position: relative;
  width: 100%;
  padding: 72px 0;
  background:
    linear-gradient(135deg, #131915 0%, #1d271f 40%, #101411 100%);
  overflow: clip;
}

.section-dark .band-layout,
.section-dark .split-panel,
.section-dark .section-heading {
  width: var(--site-width);
  margin: 0 auto;
}

.section-soft {
  position: relative;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 20px 0;
  background: rgba(255, 250, 242, 0.36);
  border-top: 1px solid rgba(23, 32, 24, 0.08);
  border-bottom: 1px solid rgba(23, 32, 24, 0.08);
}

.section-soft > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 34px;
}

.section-heading p:last-child,
.section-heading + p {
  color: var(--ink-soft);
}

.value-grid,
.service-grid,
.process-grid,
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-grid-home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-block,
.service-tile,
.process-step,
.stat-card,
.compliance-card {
  padding: 26px;
}

.value-index,
.process-step span,
.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 1px solid rgba(197, 139, 66, 0.28);
  background: rgba(197, 139, 66, 0.1);
  color: var(--accent-strong);
  font-weight: 700;
}

.value-block p,
.service-tile p,
.process-step p,
.contact-panel p,
.story-copy p,
.split-copy p,
.legal-block p,
.service-detail p,
.timeline-step p,
.compliance-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.service-meta {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.band-layout,
.coverage-layout,
.story-layout,
.contact-layout,
.split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.band-copy h2,
.split-copy h2,
.story-copy h2,
.coverage-copy h2,
.contact-panel h2 {
  color: #fff8ef;
  max-width: 12ch;
}

.section-dark .eyebrow,
.section-dark p,
.section-dark li,
.section-dark .text-link {
  color: rgba(255, 248, 239, 0.82);
}

.section-dark .eyebrow {
  color: var(--accent);
}

.stacked-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.stacked-media .visual-photo {
  min-height: 280px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #fff8ef;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coverage-copy h2,
.story-copy h2,
.contact-panel h2 {
  color: var(--forest);
}

.coverage-list,
.accent-list,
.service-detail ul,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.coverage-list li,
.accent-list li,
.service-detail li {
  position: relative;
  padding-left: 18px;
  margin-top: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.coverage-list li::before,
.accent-list li::before,
.service-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.borough-card {
  position: relative;
  min-height: 420px;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(197, 139, 66, 0.26), transparent 22%),
    linear-gradient(150deg, #1c261d 0%, #111612 100%);
}

.borough-card span,
.borough-card strong {
  position: absolute;
  color: #fffaf2;
  z-index: 1;
}

.borough-card span:nth-child(1) {
  top: 18%;
  left: 24%;
}

.borough-card span:nth-child(2) {
  bottom: 18%;
  left: 26%;
}

.borough-card span:nth-child(3) {
  top: 42%;
  right: 18%;
}

.borough-card span:nth-child(4) {
  top: 42%;
  left: 14%;
}

.borough-card strong {
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  font-family: var(--display-font);
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-detail {
  padding: 30px;
}

.story-copy,
.coverage-copy,
.band-copy,
.split-copy {
  max-width: 560px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display-font);
  font-size: 2.3rem;
  color: var(--forest);
}

.stat-card span {
  color: var(--ink-soft);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px;
}

.timeline-step h2 {
  max-width: none;
  font-size: 2rem;
}

.contact-panel,
.enquiry-form {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a {
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 600;
}

.contact-note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
}

.enquiry-form {
  display: grid;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.enquiry-form label {
  display: grid;
  gap: 10px;
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 600;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(23, 32, 24, 0.14);
  background: var(--paper);
  color: var(--ink);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: 2px solid rgba(197, 139, 66, 0.2);
  border-color: rgba(197, 139, 66, 0.42);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 0;
  min-height: 24px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--forest);
}

.form-status.is-error {
  color: #8a2d1d;
}

.form-helper {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.legal-copy {
  display: grid;
  gap: 18px;
}

.legal-block {
  padding: 28px;
}

details.legal-block {
  cursor: pointer;
}

details.legal-block summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

details.legal-block summary::-webkit-details-marker {
  display: none;
}

details.legal-block summary::after {
  content: "+";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 1.2rem;
  color: var(--accent-strong);
  transition: transform 200ms ease;
}

details[open].legal-block summary::after {
  content: "−";
  transform: rotate(180deg);
}

details.legal-block summary h3 {
  font-size: 1.2rem;
}

details.legal-block p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* Works / Portfolio — category accordions */
.works-accordions {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.works-accordion {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.works-accordion-header {
  display: grid;
  grid-template-columns: 380px 1fr;
  cursor: pointer;
  list-style: none;
  min-height: 300px;
  align-items: stretch;
}

.works-accordion-header::-webkit-details-marker { display: none; }
.works-accordion-header::marker { display: none; }

.works-accordion-cover-wrap {
  position: relative;
  overflow: hidden;
}

.works-accordion-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.works-accordion:hover .works-accordion-cover-wrap img,
.works-accordion[open] .works-accordion-cover-wrap img {
  transform: scale(1.06);
}

.works-accordion-content {
  padding: 40px 48px;
  background: var(--dark);
  color: var(--canvas);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.works-accordion-content .eyebrow {
  color: var(--accent);
  margin: 0;
}

.works-accordion-content h2 {
  color: var(--canvas);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  margin: 0;
  line-height: 1.25;
}

.works-accordion-content > p {
  color: rgba(255, 250, 242, 0.65);
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

.works-accordion-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
  user-select: none;
}

.works-accordion-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.works-accordion-arrow::before,
.works-accordion-arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.works-accordion-arrow::before {
  width: 8px;
  height: 1.5px;
}

.works-accordion-arrow::after {
  width: 1.5px;
  height: 8px;
  transition: transform 300ms ease, opacity 300ms ease;
}

details[open] .works-accordion-arrow::after {
  transform: rotate(90deg);
  opacity: 0;
}

.close-label { display: none; }
details[open] .open-label { display: none; }
details[open] .close-label { display: inline; }

/* Photo grid inside accordion */
.works-accordion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--dark);
  padding: 3px;
  padding-top: 0;
}

.works-photo {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.works-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.works-photo:hover img {
  transform: scale(1.05);
}

@media (max-width: 860px) {
  .works-accordion-header {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .works-accordion-cover-wrap {
    height: 240px;
  }

  .works-accordion-content {
    padding: 28px 24px;
    gap: 10px;
  }

  .works-accordion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .works-accordion-cover-wrap {
    height: 200px;
  }

  .works-accordion-content {
    padding: 22px 18px;
  }

  .works-accordion-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .works-accordion-cover-wrap img,
  .works-photo img {
    transition: none;
  }

  details[open] .works-accordion-arrow::after {
    transition: none;
  }
}

.final-cta {
  padding-top: 34px;
}

.cta-panel {
  padding: 40px;
  border-radius: 36px;
  background:
    linear-gradient(150deg, #1a241d 0%, #101411 100%);
  color: #fff8ef;
  box-shadow: var(--shadow-deep);
}

.cta-panel h2 {
  color: #fff8ef;
  max-width: 12ch;
}

.cta-panel p:not(.eyebrow) {
  margin-top: 16px;
  color: rgba(255, 248, 239, 0.78);
  line-height: 1.7;
}

.site-footer {
  margin-top: 72px;
  background: #111612;
  color: rgba(255, 248, 239, 0.78);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  padding: 42px 0;
}

.footer-brand h3,
.footer-column h4 {
  color: #fff8ef;
  font-family: var(--display-font);
}

.footer-brand p,
.footer-column a,
.footer-column p,
.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 248, 239, 0.72);
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 248, 239, 0.08);
}

.footer-bottom-inner {
  width: var(--site-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.mobile-cta-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.delay-1 {
  transition-delay: 100ms;
}

.reveal.delay-2 {
  transition-delay: 180ms;
}

.reveal.delay-3 {
  transition-delay: 260ms;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.delay-1,
  .reveal.delay-2,
  .reveal.delay-3 {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button {
    transition: none;
  }
}

@media (max-width: 1100px) {
  .hero-shell,
  .band-layout,
  .coverage-layout,
  .story-layout,
  .contact-layout,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-grid-home,
  .value-grid,
  .process-grid,
  .compliance-grid,
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 56px;
  }

  .hero-copy {
    padding-top: 12px;
  }

  .page-hero {
    padding-top: 90px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 84px;
    --site-width: min(100vw - 28px, 1180px);
  }

  .desktop-nav,
  .header-phone,
  .header-actions .button-secondary {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-panel.is-open {
    display: block;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-tags {
    gap: 10px;
  }

  .visual-main,
  .form-grid,
  .stacked-media,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .visual-photo,
  .photo-team {
    min-height: 280px;
  }

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

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .contact-panel,
  .enquiry-form {
    padding: 24px;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 25;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(12, 17, 13, 0.94);
    box-shadow: var(--shadow-deep);
    backdrop-filter: blur(18px);
  }

  .mobile-cta-bar .button {
    min-height: 48px;
    padding-inline: 14px;
    font-size: 0.82rem;
  }

  body {
    padding-bottom: 100px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.3rem, 13vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .service-grid,
  .service-grid-home,
  .value-grid,
  .process-grid,
  .compliance-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-bottom-inner,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-tags li,
  .button {
    width: 100%;
    justify-content: center;
  }

  .visual-crest {
    flex-direction: column;
  }

  .borough-card {
    min-height: 320px;
  }

  .borough-card strong {
    font-size: 1.6rem;
  }

  .mobile-cta-bar {
    grid-template-columns: 1fr;
  }
}
