:root {
  --bg: #05080d;
  --bg-soft: #0a1018;
  --panel: #0d141e;
  --panel-light: #111b27;
  --line: rgba(255, 255, 255, 0.11);
  --line-bright: rgba(29, 169, 255, 0.35);
  --text: #f5f8fb;
  --muted: #9aa9b8;
  --blue: #08a9ff;
  --blue-light: #6fd2ff;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}
img { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 99; padding: 12px 18px; border-radius: 8px; background: var(--blue); color: #00101b; font-weight: 800; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 13, .84);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 84px; }
.brand { display: inline-flex; align-items: center; gap: 15px; min-width: 255px; text-decoration: none; }
.brand img {
  width: 82px;
  height: 56px;
  flex: none;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(8,169,255,.28));
}
.brand-text { display: grid; line-height: 1.2; }
.brand-text strong { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -.01em; }
.brand-text span { margin-top: 4px; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.nav { display: flex; gap: clamp(20px, 3vw, 38px); }
.nav a { position: relative; color: #c2ccd6; font-size: .88rem; font-weight: 700; text-decoration: none; }
.nav a::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 1px; background: var(--blue); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  background: var(--blue);
  color: #00111d;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(8,169,255,.16);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { background: #36baff; box-shadow: 0 15px 40px rgba(8,169,255,.28); transform: translateY(-2px); }
.button-small { min-height: 44px; padding-inline: 18px; font-size: .84rem; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-size: .9rem; font-weight: 800; text-decoration: none; }
.text-link span { color: var(--blue); transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.hero { position: relative; overflow: hidden; padding: 105px 0 88px; }
.hero::after { position: absolute; right: -12vw; bottom: 0; left: 47%; z-index: -1; height: 1px; background: linear-gradient(90deg, transparent, var(--blue), transparent); content: ""; opacity: .5; }
.hero-glow { position: absolute; top: -240px; right: -250px; z-index: -1; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(8,169,255,.18), transparent 66%); filter: blur(15px); }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(52px, 7vw, 92px); align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--blue-light); font-size: .74rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 1px; background: var(--blue); box-shadow: 0 0 8px var(--blue); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); }
h1 { margin-bottom: 24px; font-size: clamp(4rem, 7vw, 6.9rem); line-height: .9; letter-spacing: -.065em; }
h1 em { color: var(--blue-light); font-style: normal; font-weight: 500; }
h2 { margin-bottom: 24px; font-size: clamp(2.5rem, 4.5vw, 4.4rem); line-height: .98; letter-spacing: -.055em; }
h3 { letter-spacing: -.025em; }
.hero-summary { max-width: 620px; margin-bottom: 32px; color: #aebbc8; font-size: 1.08rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-bottom: 45px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 25px; padding-top: 23px; border-top: 1px solid var(--line); }
.trust-row span { color: #6f7f8e; font-size: .71rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-visual { position: relative; }
.hero-card { margin: 0; overflow: hidden; border: 1px solid var(--line-bright); border-radius: 3px; background: var(--panel); box-shadow: var(--shadow), 0 0 60px rgba(8,169,255,.09); transform: rotate(1.5deg); }
.hero-card img { display: block; width: 100%; aspect-ratio: 4 / 4.55; object-fit: cover; filter: contrast(1.08) saturate(.9); }
.hero-card figcaption { display: flex; align-items: center; gap: 18px; justify-content: space-between; padding: 19px 22px; }
.hero-card figcaption p { max-width: 270px; margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.5; }
.live-indicator { flex: none; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.live-indicator i { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #2cff8b; box-shadow: 0 0 10px #2cff8b; }
.hero-badge { position: absolute; top: 8%; left: -46px; display: grid; width: 116px; height: 116px; padding: 18px; border: 1px solid rgba(255,255,255,.18); background: rgba(7,13,20,.92); box-shadow: var(--shadow); }
.hero-badge strong { font-family: var(--font-display); color: var(--blue); font-size: 2rem; line-height: 1; }
.hero-badge span { align-self: end; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.section { padding: 105px 0; }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; align-items: end; margin-bottom: 48px; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading > p { max-width: 420px; margin: 0 0 6px; color: var(--muted); line-height: 1.75; }
.services-section { border-top: 1px solid var(--line); background: linear-gradient(180deg, #080d14, var(--bg)); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { padding: 16px 16px 25px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); transition: border-color .25s ease, transform .25s ease; }
.service-card:hover { border-color: var(--line-bright); transform: translateY(-6px); }
.image-wrap { position: relative; overflow: hidden; margin-bottom: 24px; }
.image-wrap img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: grayscale(.18) contrast(1.08); transition: transform .5s ease; }
.service-card:hover img { transform: scale(1.035); }
.image-wrap span { position: absolute; top: 12px; right: 12px; display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(255,255,255,.2); background: rgba(5,8,13,.82); color: var(--blue-light); font-size: .7rem; font-weight: 800; }
.service-card h3 { margin: 0 8px 10px; font-size: 1.65rem; }
.service-card > p { min-height: 78px; margin: 0 8px 18px; color: var(--muted); font-size: .91rem; line-height: 1.65; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 8px; padding: 0; list-style: none; }
.service-card li { padding: 6px 9px; border: 1px solid var(--line); color: #8293a3; font-size: .65rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

.about-section { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: .93fr 1.07fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.about-image { position: relative; }
.about-image::before { position: absolute; top: -17px; left: -17px; width: 110px; height: 110px; border-top: 1px solid var(--blue); border-left: 1px solid var(--blue); content: ""; }
.about-image img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; box-shadow: var(--shadow); filter: saturate(.75) contrast(1.05); }
.image-label { position: absolute; right: -25px; bottom: 28px; display: grid; gap: 5px; min-width: 210px; padding: 19px 22px; border-left: 2px solid var(--blue); background: rgba(6,10,16,.93); box-shadow: var(--shadow); }
.image-label span { color: var(--blue-light); font-size: .66rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.image-label strong { font-family: var(--font-display); font-size: .94rem; }
.about-copy > p:not(.eyebrow) { max-width: 610px; margin-bottom: 33px; color: var(--muted); font-size: 1rem; line-height: 1.8; }
.principles { display: grid; }
.principles > div { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 19px 0; border-top: 1px solid var(--line); }
.principles > div > strong { color: var(--blue); font-family: var(--font-display); font-size: .78rem; }
.principles span { color: var(--muted); font-size: .86rem; line-height: 1.6; }
.principles b { display: block; margin-bottom: 4px; color: var(--text); font-family: var(--font-display); font-size: 1.03rem; }

.work-section { border-top: 1px solid var(--line); }
.project-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 260px); gap: 18px; }
.project-card { position: relative; min-height: 0; margin: 0; overflow: hidden; background: var(--panel); }
.project-featured { grid-row: 1 / 3; }
.project-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(2,5,9,.95)); content: ""; }
.project-card img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); transition: transform .65s ease, filter .65s ease; }
.project-card:hover img { transform: scale(1.04); filter: saturate(1.05); }
.project-overlay { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 30px; }
.project-overlay span { color: var(--blue-light); font-size: .67rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.project-overlay h3 { max-width: 500px; margin: 8px 0 0; font-size: clamp(1.2rem, 2vw, 1.8rem); line-height: 1.15; }
.section-cta { display: flex; justify-content: center; margin-top: 34px; }

.sales-section { padding-top: 40px; }
.sales-panel { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(45px, 8vw, 100px); padding: clamp(35px, 6vw, 72px); border: 1px solid var(--line-bright); background: radial-gradient(circle at 10% 0, rgba(8,169,255,.13), transparent 38%), var(--panel); box-shadow: var(--shadow); }
.sales-intro > p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); line-height: 1.75; }
.sales-intro h2 { font-size: clamp(2.5rem, 4vw, 3.8rem); }
.sales-list article { display: grid; grid-template-columns: 43px 1fr; gap: 18px; padding: 25px 0; border-top: 1px solid var(--line); }
.sales-list article:last-child { border-bottom: 1px solid var(--line); }
.sales-list > article > span { padding-top: 4px; color: var(--blue); font-size: .72rem; font-weight: 800; }
.sales-list h3 { margin: 0 0 6px; font-size: 1.2rem; }
.sales-list p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.6; }

.contact-section { padding-bottom: 80px; }
.contact-panel { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 7vw, 90px); align-items: start; padding-top: 90px; border-top: 1px solid var(--line); }
.contact-copy { position: sticky; top: 120px; }
.contact-copy h2 { font-size: clamp(2.8rem, 4.3vw, 4.2rem); }
.contact-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}
.contact-methods a {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--panel);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.contact-methods a:hover {
  border-color: var(--line-bright);
  transform: translateX(4px);
}
.contact-methods span {
  color: var(--blue-light);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-methods strong {
  font-family: var(--font-display);
  font-size: .92rem;
}
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
.contact-form label { display: grid; gap: 9px; color: #bcc8d3; font-size: .76rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.full-width { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: 0;
  background: var(--panel);
  color: var(--text);
  padding: 16px 17px;
  font-size: .93rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form select { appearance: auto; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(8,169,255,.1); }
.contact-form textarea { min-height: 145px; resize: vertical; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.form-footer p { max-width: 290px; margin: 0; color: #6f7f8f; font-size: .72rem; line-height: 1.6; }
.form-footer p a { color: var(--blue-light); }
.form-footer .form-success { color: #8be2b1; }
.form-footer .form-error { color: #ff9b9b; }
.form-footer .button { flex: none; }
.form-footer .button:disabled { cursor: wait; opacity: .72; transform: none; }

.site-footer { border-top: 1px solid var(--line); background: #030509; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 125px; }
.footer-inner > p { margin: 0; color: #6e7c89; font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.footer-inner .brand { min-width: auto; }
.footer-inner .brand img { width: 74px; height: 50px; }
.footer-contact {
  display: flex;
  gap: 18px;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.footer-contact a {
  color: #8b9aa7;
  text-decoration: none;
}
.footer-contact a:hover { color: var(--blue-light); }

.nav-active { color: var(--text) !important; }
.nav-active::after { transform: scaleX(1) !important; }

/* Recent projects */
.projects-page { background: #05080d; }
.projects-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 0;
  background: linear-gradient(180deg, #070d15 0%, var(--bg) 78%);
}
.projects-hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(8,169,255,.22), transparent);
  content: "";
}
.projects-hero-glow {
  position: absolute;
  top: -360px;
  right: -260px;
  width: 850px;
  height: 850px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,169,255,.17), transparent 66%);
  pointer-events: none;
}
.projects-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(45px, 8vw, 110px);
  align-items: end;
  margin-bottom: 72px;
}
.projects-hero h1 {
  margin: 0;
  font-size: clamp(4.5rem, 9vw, 8.4rem);
}
.projects-intro { padding-bottom: 8px; }
.projects-intro > p {
  max-width: 520px;
  margin-bottom: 34px;
  color: #aebbc8;
  font-size: 1.08rem;
  line-height: 1.8;
}
.project-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.project-facts span {
  color: #738391;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.45;
  text-transform: uppercase;
}
.project-facts b {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-light);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -.03em;
}
.projects-hero-still {
  position: relative;
  height: clamp(380px, 48vw, 610px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: 0;
}
.projects-hero-still::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,6,10,.04), rgba(3,6,10,.82));
  content: "";
}
.projects-hero-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.projects-hero-caption {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.projects-hero-caption span {
  color: var(--blue-light);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.projects-hero-caption strong {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
}
.project-stories { border-top: 1px solid var(--line); }
.project-story {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: clamp(55px, 10vw, 140px);
  align-items: center;
  min-height: 850px;
  padding-top: 110px;
  padding-bottom: 110px;
  border-bottom: 1px solid var(--line);
}
.project-story-reverse { grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr); }
.project-story-reverse .project-film { grid-column: 2; }
.project-story-reverse .project-story-copy { grid-column: 1; grid-row: 1; }
.project-film {
  position: relative;
  width: min(100%, 440px);
  justify-self: center;
  padding: 10px;
  border: 1px solid var(--line-bright);
  background: #080d14;
  box-shadow: 0 32px 90px rgba(0,0,0,.5), 0 0 60px rgba(8,169,255,.07);
}
.project-film::before {
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: -1;
  width: 92px;
  height: 92px;
  border-top: 1px solid var(--blue);
  border-left: 1px solid var(--blue);
  content: "";
}
.project-film video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: #000;
  object-fit: cover;
}
.film-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 9px 11px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(4,8,13,.86);
  color: #c4d0db;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .11em;
  pointer-events: none;
  text-transform: uppercase;
}
.project-story-copy { max-width: 620px; }
.story-number {
  margin-bottom: 20px;
  color: var(--blue-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.project-story-copy h2 {
  max-width: 9.5ch;
  margin-bottom: 28px;
  font-size: clamp(3rem, 5vw, 5.1rem);
}
.project-story-copy > p:not(.story-number) {
  max-width: 580px;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}
.project-scope { margin: 0; border-top: 1px solid var(--line); }
.project-scope div {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.project-scope dt {
  color: #6f8090;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-scope dd {
  margin: 0;
  color: #c8d2db;
  font-size: .86rem;
  font-weight: 600;
}
.notts-hero-image img { object-position: center 46%; }
.notts-case-study {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(255,255,255,.045) 50%, transparent 50.05%),
    var(--bg);
}
.notts-case-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 10vw, 145px);
  align-items: start;
}
.notts-case-heading {
  position: sticky;
  top: 130px;
}
.notts-case-heading h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.2rem, 5.4vw, 5.5rem);
}
.notts-case-copy > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}
.notts-case-copy .notts-lead {
  margin-bottom: 28px;
  color: #dce5ed;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.45;
  letter-spacing: -.025em;
}
.notts-lead strong { color: var(--blue-light); font-weight: 600; }
.notts-scope { margin-top: 42px; }
.notts-scope div { grid-template-columns: 155px 1fr; }
.bingham-case-study {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
  background: #080d14;
}
.bingham-case-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 10vw, 145px);
  align-items: center;
}
.bingham-visual {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  background: #0b141f;
  box-shadow: var(--shadow);
}
.bingham-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3,7,12,.9));
  content: "";
}
.bingham-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.bingham-visual figcaption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.bingham-visual figcaption span {
  color: var(--blue-light);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.bingham-visual figcaption strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.bingham-title {
  max-width: 10ch;
  margin-bottom: 30px;
  font-size: clamp(3rem, 4.8vw, 4.8rem);
}
.projects-cta { background: radial-gradient(circle at 10% 15%, rgba(8,169,255,.13), transparent 34%), var(--panel); }
.projects-cta-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: end;
}
.projects-cta h2 { margin: 0; }
.projects-cta-inner > div:last-child > p {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.8;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .hero { padding-top: 70px; }
  .hero-grid, .about-grid, .sales-panel, .contact-panel { grid-template-columns: 1fr; }
  .hero-grid { gap: 70px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { max-width: 650px; margin-inline: auto; }
  .hero-card img { aspect-ratio: 16 / 13; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { display: grid; grid-template-columns: .72fr 1fr; column-gap: 24px; align-items: start; }
  .service-card .image-wrap { grid-row: 1 / 4; margin: 0; }
  .service-card > p { min-height: auto; }
  .about-grid { gap: 65px; }
  .about-image { max-width: 620px; }
  .about-image img { aspect-ratio: 4 / 3; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 300px; }
  .project-featured { grid-column: 1 / 3; grid-row: 1; }
  .contact-copy { position: static; max-width: 640px; }
  .projects-hero { padding-top: 75px; }
  .projects-hero-grid, .projects-cta-inner { grid-template-columns: 1fr; }
  .projects-hero-grid { align-items: start; gap: 35px; }
  .projects-intro { max-width: 700px; }
  .project-story, .project-story-reverse {
    grid-template-columns: .86fr 1.14fr;
    gap: 55px;
    min-height: 760px;
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .project-story-reverse .project-film { grid-column: 1; }
  .project-story-reverse .project-story-copy { grid-column: 2; }
  .notts-case-grid { grid-template-columns: .8fr 1.2fr; gap: 65px; }
  .bingham-case-grid { grid-template-columns: .85fr 1.15fr; gap: 65px; }
  .bingham-visual { min-height: 0; }
}

@media (max-width: 680px) {
  .container { width: min(1180px, calc(100% - 28px)); }
  .header-inner { min-height: 74px; }
  .brand { min-width: 0; gap: 9px; }
  .brand img { width: 58px; height: 40px; }
  .brand-text strong { font-size: .9rem; }
  .brand-text span { display: none; }
  .header-inner .button { min-height: 40px; padding-inline: 13px; font-size: .76rem; }
  .hero { padding: 60px 0 70px; }
  h1 { font-size: clamp(3.25rem, 16vw, 5.2rem); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; min-height: 42px; }
  .hero-card { transform: none; }
  .hero-card figcaption { align-items: flex-start; flex-direction: column; }
  .hero-badge { top: -35px; left: auto; right: -5px; width: 96px; height: 96px; padding: 13px; }
  .hero-badge strong { font-size: 1.55rem; }
  .section { padding: 76px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
  .service-card { display: block; padding: 13px 13px 24px; }
  .service-card .image-wrap { margin-bottom: 23px; }
  .service-card > p { min-height: auto; }
  .about-image::before { display: none; }
  .image-label { right: 12px; bottom: 12px; }
  .project-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .project-featured { grid-column: auto; }
  .project-card, .project-featured { height: 320px; grid-row: auto; }
  .project-overlay { padding: 23px; }
  .sales-section { padding-top: 10px; }
  .sales-panel { padding: 30px 22px; }
  .contact-panel { padding-top: 65px; }
  .contact-form { grid-template-columns: 1fr; }
  .full-width { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .footer-inner { align-items: flex-start; flex-direction: column; padding: 34px 0; }
  .footer-contact { display: grid; gap: 8px; }
  .projects-hero { padding-top: 55px; }
  .projects-hero::before { display: none; }
  .projects-hero h1 { font-size: clamp(3.8rem, 19vw, 5.4rem); }
  .projects-hero-grid { margin-bottom: 45px; }
  .project-facts { gap: 10px; }
  .project-facts b { font-size: 1.05rem; }
  .projects-hero-still { width: 100%; height: 380px; border-right: 0; border-left: 0; }
  .projects-hero-caption { right: 18px; bottom: 18px; left: 18px; align-items: flex-start; flex-direction: column; }
  .project-story, .project-story-reverse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: 0;
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .project-story-reverse .project-film,
  .project-story-reverse .project-story-copy { grid-column: 1; }
  .project-story-reverse .project-film { grid-row: 1; }
  .project-story-reverse .project-story-copy { grid-row: 2; }
  .project-film { width: min(100%, 390px); }
  .project-story-copy h2 { max-width: 11ch; font-size: clamp(2.8rem, 13vw, 4rem); }
  .project-scope div { grid-template-columns: 105px 1fr; }
  .notts-case-study { padding: 76px 0; background: var(--bg); }
  .notts-case-grid { grid-template-columns: 1fr; gap: 42px; }
  .notts-case-heading { position: static; }
  .notts-case-heading h2 { max-width: 10ch; font-size: clamp(2.8rem, 13vw, 4rem); }
  .notts-scope div { grid-template-columns: 120px 1fr; }
  .bingham-case-study { padding: 76px 0; }
  .bingham-case-grid { grid-template-columns: 1fr; gap: 54px; }
  .bingham-visual { min-height: 0; }
  .bingham-visual figcaption { right: 18px; bottom: 17px; left: 18px; align-items: flex-start; flex-direction: column; gap: 6px; }
  .bingham-title { font-size: clamp(2.8rem, 13vw, 4rem); }
  .projects-cta-inner { gap: 32px; }
}
