:root {
  --ink: #07111f;
  --ink-soft: #10243d;
  --blue: #1e70f0;
  --blue-bright: #3c8cff;
  --mist: #edf3fb;
  --paper: #f8fafc;
  --white: #ffffff;
  --muted: #5f6f82;
  --line: #dbe4ef;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(4, 22, 44, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Segoe UI Variable", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 112px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000;
  transform: translateY(-150%); background: var(--white); padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 17, 31, 0.94);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 132px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.site-header .brand {
  position: relative; width: 176px; height: 128px; overflow: hidden;
}
.site-header .brand img {
  position: absolute; top: -24px; left: 0; display: block;
  width: 176px; height: 176px; max-width: none; object-fit: contain;
}
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a:not(.button) {
  color: #d8e4f2; text-decoration: none; font-size: 0.91rem; font-weight: 650;
}
.site-nav > a:not(.button):hover { color: var(--white); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: white; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 23px; border-radius: 8px;
  color: white; background: var(--blue); text-decoration: none;
  font-size: 0.94rem; font-weight: 760; letter-spacing: 0.01em;
  box-shadow: 0 12px 32px rgba(30,112,240,0.25);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 16px 35px rgba(30,112,240,0.32); }
.button-small { min-height: 42px; padding: 0 18px; }
.button-white { background: var(--white); color: var(--ink); box-shadow: none; }
.button-white:hover { background: #eaf2ff; color: var(--ink); }
.text-link { text-decoration: none; font-weight: 780; color: var(--ink); }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link.light { color: white; }

.hero {
  position: relative; overflow: hidden; color: white;
  background:
    linear-gradient(90deg, rgba(4,13,24,.97) 0%, rgba(4,13,24,.89) 39%, rgba(4,13,24,.53) 70%, rgba(4,13,24,.35) 100%),
    linear-gradient(180deg, rgba(7,17,31,.1), rgba(7,17,31,.62)),
    url("/hero-construction.jpg") center / cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: auto -10% -45% 32%; height: 520px;
  border: 1px solid rgba(255,255,255,.09); border-radius: 50%; transform: rotate(-8deg);
}
.hero-grid {
  position: relative; z-index: 1; min-height: 720px; padding: 100px 0 108px;
  display: grid; grid-template-columns: minmax(0, 1.36fr) minmax(340px, .64fr);
  gap: 82px; align-items: center;
}
.eyebrow {
  margin: 0 0 18px; color: var(--blue-bright); font-size: .76rem; line-height: 1;
  font-weight: 850; letter-spacing: .18em; text-transform: uppercase;
}
.hero h1, .section h2, .contact-panel h2 {
  margin: 0; font-family: "DM Serif Display", Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.025em;
}
.hero h1 { max-width: 790px; font-size: clamp(3.55rem, 6.5vw, 6.25rem); line-height: .96; }
.hero h1 span { color: #86b9ff; }
.hero-intro {
  max-width: 720px; margin: 30px 0 0; color: #c7d5e6;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.72;
}
.hero-actions { display: flex; gap: 28px; align-items: center; margin-top: 36px; }
.hero .text-link { color: white; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 15px 28px; list-style: none; padding: 0; margin: 42px 0 0;
  color: #b7c6d8; font-size: .86rem; font-weight: 650;
}
.hero-points li { position: relative; padding-left: 16px; }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: 6px; height: 6px;
  border-radius: 50%; background: var(--blue-bright);
}
.hero-card {
  position: relative; align-self: center; padding: 40px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); box-shadow: 0 28px 80px rgba(0,0,0,.2);
  backdrop-filter: blur(16px);
}
.card-topline { position: absolute; top: -1px; left: 38px; width: 76px; height: 4px; border-radius: 4px; background: var(--blue-bright); }
.card-kicker { margin: 0 0 12px; color: #9eb2c9; font-size: .84rem; font-weight: 750; }
.hero-card h2 { margin: 0 0 15px; font-family: "DM Serif Display", Georgia, serif; font-size: 2.7rem; font-weight: 400; }
.hero-card > p:not(.card-kicker) { color: #c6d3e3; line-height: 1.65; }
.response-block { margin: 28px 0; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.response-label { display: block; margin-bottom: 7px; color: #88a0ba; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.response-block strong { display: block; line-height: 1.45; }
.hero-card > a { color: #91c1ff; font-size: .91rem; font-weight: 780; text-decoration: none; overflow-wrap: anywhere; }

.trust-strip { border-bottom: 1px solid var(--line); background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid > div { padding: 27px 24px; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { margin-bottom: 6px; font-size: .9rem; }
.trust-grid span { color: var(--muted); font-size: .78rem; line-height: 1.45; }

.visual-story { padding: 92px 0 30px; background: white; }
.visual-story-grid { display: grid; grid-template-columns: 1.22fr .78fr; gap: 20px; }
.visual-story figure { margin: 0; overflow: hidden; border-radius: 18px; }
.visual-story img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .7s ease; }
.visual-story figure:hover img { transform: scale(1.025); }
.visual-main { position: relative; min-height: 690px; box-shadow: var(--shadow); }
.visual-main::after {
  content: ""; position: absolute; inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(5,15,27,.92));
}
.visual-main figcaption {
  position: absolute; z-index: 2; left: 38px; right: 38px; bottom: 34px;
  max-width: 600px; color: #e2ebf6; font-size: .91rem; line-height: 1.65;
}
.visual-main figcaption span {
  display: block; margin-bottom: 8px; color: white;
  font-family: "DM Serif Display", Georgia, serif; font-size: 2rem; line-height: 1;
}
.visual-side { display: grid; grid-template-rows: 1fr auto; gap: 20px; }
.visual-secondary { min-height: 360px; }
.visual-note { padding: 42px; border-radius: 18px; color: white; background: var(--ink); }
.visual-note h2 {
  margin: 0; font-family: "DM Serif Display", Georgia, serif; font-size: 2.35rem; font-weight: 400; line-height: 1.08;
}
.visual-note > p:last-child { margin: 20px 0 0; color: #aebdd0; font-size: .9rem; line-height: 1.7; }

.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: end; margin-bottom: 52px; }
.section-heading h2, .process h2, .about h2 { font-size: clamp(2.55rem, 4.6vw, 4.2rem); line-height: 1.03; }
.section-heading > p, .process-intro > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.service-card {
  min-height: 285px; padding: 30px; background: white; border: 1px solid var(--line); border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: #b7cff0; box-shadow: var(--shadow); }
.service-number { display: block; color: var(--blue); font-size: .76rem; font-weight: 850; letter-spacing: .12em; }
.service-card h3 { margin: 58px 0 14px; font-family: "DM Serif Display", Georgia, serif; font-size: 1.52rem; font-weight: 400; }
.service-card p { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.68; }

.process { color: white; background: var(--ink); }
.process-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
.process-intro { position: sticky; top: 130px; }
.process-intro > p:not(.eyebrow) { color: #aebdd0; margin: 26px 0 30px; }
.steps { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,.14); }
.steps li { display: grid; grid-template-columns: 54px 1fr; gap: 24px; padding: 35px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.steps li > span {
  display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(125,181,255,.5);
  border-radius: 50%; color: #8bc0ff; font-size: .85rem; font-weight: 800;
}
.steps h3 { margin: 0 0 8px; font-family: "DM Serif Display", Georgia, serif; font-size: 1.5rem; font-weight: 400; }
.steps p { margin: 0; color: #aebdd0; line-height: 1.7; }

.experience { background: #eef4fb; }
.experience-brief {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: center;
  padding: 52px; border: 1px solid var(--navy-line); border-radius: 20px;
  background: var(--navy-card);
}
.experience-brief h2 {
  margin: 0; color: white; font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.5rem, 4.6vw, 4.2rem); line-height: 1.03; font-weight: 400;
}
.experience-brief > div:last-child p { margin: 0 0 28px; color: var(--navy-copy); line-height: 1.75; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-card {
  min-height: 330px; padding: 34px; display: flex; flex-direction: column;
  border-radius: 15px; background: white; box-shadow: 0 16px 45px rgba(4,22,44,.06);
}
.case-type { margin: 0; color: var(--blue); font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.case-card h3 { margin: auto 0 16px; font-family: "DM Serif Display", Georgia, serif; font-size: 1.65rem; line-height: 1.2; font-weight: 400; }
.case-card > p:last-child { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.confidentiality-note { margin: 25px 0 0; color: #78899b; font-size: .78rem; }

.about { background: white; }
.about-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 95px; align-items: center; }
.about-mark {
  position: relative; min-height: 480px; display: grid; place-items: center;
  overflow: hidden; border-radius: var(--radius);
  background: linear-gradient(155deg, #06111f, #123356);
}
.about-mark::before {
  content: ""; position: absolute; z-index: 1; inset: 0;
  background: linear-gradient(180deg, rgba(5,15,28,0) 52%, rgba(5,15,28,.88) 100%);
}
.about-mark img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.about-mark figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 25px; color: white; }
.about-mark figcaption strong, .about-mark figcaption span { display: block; }
.about-mark figcaption strong { font-size: 1.05rem; }
.about-mark figcaption span { margin-top: 4px; color: #dbe8f7; font-size: .82rem; }
.about-copy .lead { margin: 28px 0 18px; color: #263c55; font-size: 1.15rem; line-height: 1.75; }
.about-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); line-height: 1.75; }
.founder-profile {
  margin-top: 30px; padding: 20px 22px; display: flex; gap: 18px; align-items: center;
  border: 1px solid rgba(173, 202, 236, .16); border-radius: 16px; background: rgba(255,255,255,.045);
}
.rics-personal-logo {
  flex: 0 0 auto;
  width: 115px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.founder-profile strong, .founder-profile span { display: block; }
.founder-profile strong { color: var(--white); font-size: 1rem; }
.founder-profile span { margin-top: 4px; color: var(--navy-copy); font-size: .82rem; line-height: 1.5; }
.founder-profile .rics-membership {
  margin-top: 10px;
  padding: 8px 11px;
  width: fit-content;
  color: #dbe8f7;
  border-left: 3px solid var(--accent);
  background: rgba(255,255,255,.055);
}
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-button {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  color: white; border: 1px solid rgba(255,255,255,.18); text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,.18); transition: transform .2s ease, filter .2s ease;
}
.social-button:hover { color: white; filter: brightness(1.1); transform: translateY(-2px); }
.social-button:focus-visible { outline: 3px solid white; outline-offset: 3px; }
.social-linkedin { border-radius: 7px; background: #0a66c2; font-family: Arial, sans-serif; font-size: 1.05rem; font-weight: 800; letter-spacing: -.04em; }
.social-facebook { border-radius: 50%; background: #1877f2; font-family: Arial, sans-serif; font-size: 1.55rem; font-weight: 800; line-height: 1; }
.social-instagram { border-radius: 10px; background: radial-gradient(circle at 31% 108%, #fdf497 0 14%, #fd5949 38%, #d6249f 64%, #285aeb 100%); }
.instagram-glyph {
  position: relative; width: 19px; height: 19px; display: block;
  border: 2px solid white; border-radius: 6px;
}
.instagram-glyph::before {
  content: ""; position: absolute; inset: 4px; border: 2px solid white; border-radius: 50%;
}
.instagram-glyph::after {
  content: ""; position: absolute; top: 2px; right: 2px; width: 3px; height: 3px; border-radius: 50%; background: white;
}
.footer-socials { margin-top: 14px; }
.footer-socials .social-button { width: 34px; height: 34px; }

.contact-section { padding: 0 0 72px; background: white; }
.contact-panel {
  padding: 62px 68px; display: grid; grid-template-columns: minmax(0, .78fr) minmax(420px, 1.22fr); gap: 62px; align-items: center;
  color: white; border-radius: var(--radius);
  background: linear-gradient(125deg, #1363d5, #2581fa);
  box-shadow: 0 24px 60px rgba(30,112,240,.24);
}
.contact-panel .eyebrow { color: #d5e8ff; }
.contact-panel h2 { font-size: clamp(2.7rem, 5vw, 4.4rem); }
.contact-panel p:not(.eyebrow) { max-width: 670px; margin: 20px 0 0; color: #e3efff; line-height: 1.7; }
.email-link { color: white; font-size: .83rem; font-weight: 700; text-decoration: none; overflow-wrap: anywhere; }
.contact-alternative { font-size: .84rem; }
.contact-alternative .email-link { text-decoration: underline; text-underline-offset: 3px; }
.hero-contact-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.hero-contact-links a { overflow-wrap: anywhere; }
.hero-card > .hero-assurance { margin: 20px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: #aebfd2; font-size: .78rem; line-height: 1.55; }
.contact-direct { display: grid; gap: 8px; margin-top: 24px; color: #e3efff; font-size: .86rem; }
.contact-direct a { color: white; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.fee-note { margin-top: 34px; padding: 22px 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(255,255,255,.055); }
.fee-note strong { color: white; }
.fee-note p { margin: 8px 0 0; color: #a9bdd3; font-size: .83rem; line-height: 1.65; }
.enquiry-form { position: relative; padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(4,17,34,.34); }
.enquiry-form > label, .form-row label { display: grid; gap: 8px; }
.enquiry-form label > span { color: #f3f7fc; font-size: .76rem; font-weight: 750; }
.enquiry-form label small { color: #aac4e2; font-size: .67rem; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.enquiry-form > label:not(.form-consent) { margin-bottom: 16px; }
.enquiry-form input:not([type="checkbox"]), .enquiry-form textarea {
  width: 100%; border: 1px solid rgba(255,255,255,.22); border-radius: 9px; padding: 12px 13px;
  color: var(--ink); background: #f9fbfe; font: inherit; font-size: .88rem;
}
.enquiry-form textarea { min-height: 128px; resize: vertical; }
.enquiry-form input:focus, .enquiry-form textarea:focus { outline: 3px solid rgba(134,185,255,.45); border-color: #86b9ff; }
.form-consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; margin: 3px 0 20px; }
.form-consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--blue); }
.form-consent span { color: #d7e5f4 !important; font-size: .72rem !important; font-weight: 500 !important; line-height: 1.5; }
.enquiry-form .button { width: 100%; border: 0; cursor: pointer; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 16px 0 0 !important; padding: 12px 14px; border-radius: 9px; color: #eaf5ff !important; background: rgba(255,255,255,.1); font-size: .8rem; }

.site-footer { color: #c6d4e5; background: var(--ink); }
.footer-main { min-height: 210px; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 50px; align-items: center; }
.footer-brand img { width: 175px; height: auto; }
.footer-main strong { color: white; font-size: .86rem; }
.footer-main p { margin: 8px 0 0; color: #8499b1; font-size: .83rem; }
.footer-main a { text-decoration: none; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: #71879e; font-size: .75rem; }
.privacy-button { padding: 5px 0; color: #9eb0c3; background: none; border: 0; cursor: pointer; text-decoration: underline; }
.privacy-dialog { width: min(620px, calc(100% - 32px)); padding: 38px; border: 0; border-radius: 16px; color: var(--ink); box-shadow: var(--shadow); }
.privacy-dialog::backdrop { background: rgba(2,10,20,.78); }
.privacy-dialog h2 { margin: 0; font-family: "DM Serif Display", Georgia, serif; font-size: 2.2rem; font-weight: 400; }
.privacy-dialog p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.dialog-close { position: absolute; right: 18px; top: 15px; border: 0; background: none; color: var(--muted); font-size: 1.9rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(16px); 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; }
  .button, .service-card { transition: none; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 80px 0; }
  .hero-card { max-width: 650px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:first-child { padding-left: 24px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .visual-story-grid { grid-template-columns: 1fr; }
  .visual-main { min-height: 520px; }
  .visual-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .visual-secondary { min-height: 360px; }
  .process-grid { grid-template-columns: 1fr; gap: 55px; }
  .process-intro { position: static; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card { min-height: 260px; }
  .about-grid { gap: 55px; }
  .contact-panel { grid-template-columns: 1fr; gap: 36px; }
  .contact-action { align-items: flex-start; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 32px, 1180px); }
  .section { padding: 78px 0; }
  .nav-wrap { min-height: 96px; }
  .site-header .brand { width: 128px; height: 94px; }
  .site-header .brand img { top: -17px; width: 128px; height: 128px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 96px; display: none;
    padding: 24px; align-items: stretch; flex-direction: column; gap: 20px;
    background: #07111f; border-top: 1px solid rgba(255,255,255,.1);
  }
  .site-nav.is-open { display: flex; }
  .hero-grid { min-height: auto; padding: 62px 0 72px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-points { flex-direction: column; gap: 12px; }
  .hero-card { padding: 32px 26px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px 0 !important; }
  .trust-grid > div:last-child { border-bottom: 0; }
  .visual-story { padding-top: 52px; }
  .visual-main { min-height: 430px; }
  .visual-main figcaption { left: 24px; right: 24px; bottom: 24px; }
  .visual-side { grid-template-columns: 1fr; }
  .visual-note { padding: 34px 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-mark { min-height: 340px; }
  .founder-profile { align-items: flex-start; flex-direction: column; }
  .contact-section { padding-bottom: 32px; }
  .contact-panel { width: 100%; border-radius: 0; padding: 54px 24px; }
  .enquiry-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 55px 0; }
  .footer-bottom { gap: 20px; align-items: flex-start; flex-direction: column; padding: 22px 0; }
}

/* Projects and developments draft */
.draft-ribbon { color: #dce9f7; background: #10233b; border-bottom: 1px solid rgba(255,255,255,.12); }
.draft-ribbon .shell { min-height: 38px; display: flex; align-items: center; gap: 12px; font-size: .73rem; }
.draft-ribbon strong { color: white; letter-spacing: .06em; text-transform: uppercase; }
.draft-ribbon span { color: #9eb1c7; }
.projects-hero { color: white; background: linear-gradient(135deg, #06101d 0%, #0a1d33 67%, #123b70 100%); }
.projects-hero-grid { min-height: 610px; padding: 94px 0 102px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: center; }
.projects-hero h1 { margin: 0; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(3.6rem, 6.6vw, 6.4rem); line-height: .95; font-weight: 400; letter-spacing: -.035em; }
.projects-hero h1 span { color: #86b9ff; }
.projects-hero-copy > p:last-child { max-width: 720px; margin: 30px 0 0; color: #c7d5e6; font-size: 1.15rem; line-height: 1.75; }
.projects-hero-note { padding: 38px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.06); box-shadow: 0 28px 80px rgba(0,0,0,.2); }
.projects-hero-note h2 { margin: 0 0 18px; font-family: "DM Serif Display", Georgia, serif; font-size: 2.35rem; line-height: 1.08; font-weight: 400; }
.projects-hero-note > p:last-child { margin-bottom: 0; color: #bdcce0; line-height: 1.7; }
.projects-section { background: #f7f9fc; }
.featured-project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.project-feature { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: 0 18px 48px rgba(7,17,31,.07); }
.project-feature-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr .9fr; }
.project-image { min-height: 320px; margin: 0; overflow: hidden; background: #dfe6ef; }
.project-feature-wide .project-image { min-height: 520px; }
.project-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .6s ease; }
.project-feature:hover .project-image img { transform: scale(1.025); }
.drawing-image { background: white; }
.drawing-image img { object-fit: contain; padding: 18px; }
.project-content { padding: 35px 36px 39px; }
.project-feature-wide .project-content { display: flex; flex-direction: column; justify-content: center; padding: 48px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.project-meta span { padding: 7px 10px; border-radius: 999px; color: #315278; background: #eef4fb; font-size: .66rem; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
.project-content h3, .career-copy h3, .project-strip h3, .ledger-list h3 { margin: 0; color: var(--ink); font-family: "DM Serif Display", Georgia, serif; font-weight: 400; }
.project-content h3 { font-size: 2.1rem; }
.project-content > p { color: var(--muted); line-height: 1.7; }
.project-services { margin: 24px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.project-services li { position: relative; margin: 9px 0; padding-left: 18px; color: #3d536c; font-size: .86rem; font-weight: 650; }
.project-services li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.project-strip { margin-top: 28px; padding: 34px 38px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; color: white; border-radius: 18px; background: var(--ink); }
.project-strip .eyebrow { margin-bottom: 10px; }
.project-strip h3 { color: white; font-size: 1.75rem; }
.project-strip > p { margin: 0; color: #b9c9da; line-height: 1.7; }
.career-projects { background: white; }
.career-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.career-card { display: grid; grid-template-rows: 330px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fbfcfe; }
.career-card-wide { grid-column: 1 / -1; grid-template-columns: .95fr 1.05fr; grid-template-rows: none; }
.career-card-image-right { grid-template-columns: 1.05fr .95fr; }
.career-card-image-right figure { grid-column: 2; grid-row: 1; }
.career-card-image-right .career-copy { grid-column: 1; grid-row: 1; }
.career-card figure { min-height: 0; margin: 0; overflow: hidden; background: #dce4ee; }
.career-card figure img { width: 100%; height: 100%; display: block; object-fit: cover; }
.career-card:first-child figure img { object-position: center 35%; }
.career-card-wide figure { min-height: 480px; }
.career-copy { padding: 36px; }
.career-card-wide .career-copy { display: flex; flex-direction: column; justify-content: center; padding: 52px; }
.career-copy h3 { font-size: 2.15rem; line-height: 1.05; }
.career-copy > p { color: var(--muted); line-height: 1.7; }
.role-note { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); font-size: .88rem; }
.role-note strong { color: var(--ink); }
.source-link { display: inline-flex; gap: 8px; margin-top: 6px; color: var(--blue-dark); font-size: .8rem; font-weight: 800; text-decoration: none; }
.image-credit { display: block; margin-top: 12px; color: #71839a; font-size: .68rem; text-decoration: none; }
.source-links { display: flex; flex-wrap: wrap; gap: 18px; }
.crossrail-feature-section { background: white; }
.projects-page main section[id] { scroll-margin-top: 155px; }
.crossrail-showcase { padding: 28px; display: grid; grid-template-columns: 400px minmax(0, 1fr); gap: 50px; align-items: center; border-radius: 22px; background: #07111f; box-shadow: 0 24px 65px rgba(7,17,31,.16); }
.crossrail-mini-gallery { display: grid; grid-template-columns: .8fr 1.2fr; grid-template-rows: 130px 130px 150px; gap: 10px; }
.crossrail-mini-gallery figure { position: relative; min-height: 0; margin: 0; overflow: hidden; border-radius: 11px; background: #1a2a3e; }
.crossrail-mini-gallery img { width: 100%; height: 100%; display: block; object-fit: cover; }
.crossrail-mini-gallery .station-section-image { grid-column: 1; grid-row: 1 / span 2; background: #e9edf3; }
.crossrail-mini-gallery .station-section-image img { object-fit: cover; }
.crossrail-mini-gallery .canary-exterior-image { grid-column: 2; grid-row: 1; }
.crossrail-mini-gallery .canary-garden-image { grid-column: 2; grid-row: 2; }
.crossrail-mini-gallery .liverpool-platform-image { grid-column: 1 / -1; grid-row: 3; }
.crossrail-mini-gallery figcaption { position: absolute; left: 8px; right: 8px; bottom: 8px; padding: 7px 9px; color: white; border-radius: 7px; background: rgba(5,13,24,.8); backdrop-filter: blur(8px); font-size: .61rem; font-weight: 750; }
.crossrail-copy { padding: 25px 38px 25px 0; }
.crossrail-copy h3 { margin: 0; color: white; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(2.5rem, 4vw, 4.25rem); line-height: 1.02; font-weight: 400; }
.crossrail-copy > p { color: #b9c9da; line-height: 1.72; }
.crossrail-copy .role-note { border-color: rgba(255,255,255,.14); }
.crossrail-copy .role-note strong { color: white; }
.crossrail-copy .source-link { color: #8fc2ff; }
.qehb-feature-section { background: #f4f7fb; }
.qehb-showcase { display: grid; grid-template-columns: 1.2fr .8fr; gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: 0 24px 65px rgba(7,17,31,.1); }
.qehb-gallery { min-height: 610px; padding: 16px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); grid-template-rows: 1.6fr 1fr; gap: 12px; background: #07111f; }
.qehb-gallery figure { min-height: 0; margin: 0; overflow: hidden; border-radius: 11px; background: #dce4ee; }
.qehb-gallery-main { grid-column: 1 / -1; }
.qehb-gallery img { width: 100%; height: 100%; display: block; object-fit: cover; }
.qehb-gallery figure:last-child img { object-position: center 35%; }
.qehb-copy { padding: 54px 48px; display: flex; flex-direction: column; justify-content: center; }
.qehb-copy h3 { margin: 0; color: var(--ink); font-family: "DM Serif Display", Georgia, serif; font-size: clamp(2.4rem, 3.5vw, 3.8rem); line-height: 1.02; font-weight: 400; }
.qehb-copy > p { color: var(--muted); line-height: 1.72; }
.contracts-section { color: white; background: linear-gradient(135deg, #07111f 0%, #0d2746 100%); }
.contracts-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: end; margin-bottom: 58px; }
.contracts-heading h2 { margin: 0; color: white; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(3rem, 4.8vw, 5.1rem); line-height: .98; font-weight: 400; }
.contracts-heading > p { margin: 0; color: #a8bdd3; line-height: 1.75; }
.contracts-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.contract-card { min-height: 380px; padding: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.055); }
.contract-card > span { color: #74aeff; font-size: .68rem; font-weight: 850; letter-spacing: .12em; }
.contract-card h3 { margin: 18px 0 14px; color: white; font-family: "DM Serif Display", Georgia, serif; font-size: 2rem; font-weight: 400; }
.contract-card p { color: #a8bdd3; line-height: 1.68; }
.contract-card ul { margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.12); list-style: none; }
.contract-card li { position: relative; margin: 9px 0; padding-left: 18px; color: #d8e6f5; font-size: .82rem; }
.contract-card li::before { content: ""; position: absolute; left: 0; top: .58em; width: 6px; height: 6px; border-radius: 50%; background: #68a7ff; }
.about-ljs-section { color: white; background: linear-gradient(135deg, #07111f 0%, #0b213c 100%); }
.about-ljs-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.about-ljs-intro h2 { margin: 0; color: white; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(3rem, 4.8vw, 5.2rem); line-height: .98; font-weight: 400; }
.about-ljs-intro .lead { margin-top: 28px; color: #d6e4f4; font-size: 1.15rem; line-height: 1.7; }
.about-ljs-intro p:not(.eyebrow):not(.lead) { color: #9eb1c7; line-height: 1.75; }
.about-ljs-benefits { display: grid; grid-template-columns: 1fr; gap: 14px; }
.about-ljs-benefits article { min-height: 0; padding: 26px 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.055); }
.about-ljs-benefits span { color: #74aeff; font-size: .68rem; font-weight: 850; letter-spacing: .12em; }
.about-ljs-benefits h3 { margin: 20px 0 12px; color: white; font-size: 1.12rem; line-height: 1.35; }
.about-ljs-benefits p { margin: 0; color: #9eb1c7; font-size: .84rem; line-height: 1.65; }
.project-ledger { color: white; background: #07111f; }
.project-ledger-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 95px; align-items: start; }
.ledger-intro { position: sticky; top: 175px; }
.ledger-intro h2 { color: white; font-size: clamp(2.8rem, 4.2vw, 4.5rem); line-height: 1; }
.ledger-intro > p:last-child { color: #93a6bd; line-height: 1.7; }
.ledger-list { border-top: 1px solid rgba(255,255,255,.13); }
.ledger-list article { padding: 23px 0; display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; border-bottom: 1px solid rgba(255,255,255,.13); }
.ledger-list h3 { color: white; font-family: "Manrope", sans-serif; font-size: .98rem; font-weight: 750; }
.ledger-list p { margin: 0; color: #91a5bd; font-size: .8rem; line-height: 1.55; }
.review-panel-section { padding: 32px 0; background: #f7f9fc; }
.review-panel { min-height: 330px; padding: 65px 70px; display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; color: white; border-radius: 22px; background: linear-gradient(120deg, #0a57c9, #1478ef); }
.review-panel h2 { margin: 0; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(2.4rem, 4vw, 4.2rem); line-height: 1; font-weight: 400; }
.review-panel p:not(.eyebrow) { max-width: 760px; color: #dceaff; line-height: 1.7; }

@media (max-width: 980px) {
  .projects-hero-grid { grid-template-columns: 1fr; gap: 44px; min-height: auto; padding: 80px 0; }
  .projects-hero-note { max-width: 720px; }
  .project-feature-wide, .career-card-wide, .career-card-image-right { grid-template-columns: 1fr; }
  .career-card-image-right figure, .career-card-image-right .career-copy { grid-column: auto; grid-row: auto; }
  .project-feature-wide .project-image, .career-card-wide figure { min-height: 430px; }
  .project-ledger-grid { grid-template-columns: 1fr; gap: 45px; }
  .about-ljs-grid { grid-template-columns: 1fr; gap: 55px; }
  .ledger-intro { position: static; }
  .review-panel { grid-template-columns: 1fr; gap: 35px; }
  .crossrail-showcase { grid-template-columns: 350px minmax(0, 1fr); gap: 34px; }
  .crossrail-copy { padding-right: 20px; }
  .qehb-showcase { grid-template-columns: 1fr; }
  .qehb-gallery { min-height: 540px; }
  .contracts-heading { grid-template-columns: 1fr; gap: 30px; }
  .experience-brief { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 760px) {
  .draft-ribbon .shell { min-height: 50px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 2px; }
  .projects-hero h1 { font-size: clamp(3.2rem, 16vw, 4.5rem); }
  .projects-hero-note { padding: 30px 25px; }
  .featured-project-grid, .career-grid { grid-template-columns: 1fr; }
  .project-feature-wide { grid-column: auto; }
  .project-feature-wide .project-image, .project-image, .career-card figure, .career-card-wide figure { min-height: 300px; }
  .project-feature-wide .project-content, .project-content, .career-copy, .career-card-wide .career-copy { padding: 30px 26px; }
  .project-strip { grid-template-columns: 1fr; gap: 18px; padding: 30px 26px; }
  .career-card-wide { grid-column: auto; }
  .crossrail-showcase { grid-template-columns: 1fr; gap: 28px; padding: 20px; }
  .crossrail-copy { padding: 8px 6px 18px; }
  .crossrail-mini-gallery { grid-template-rows: 115px 115px 130px; }
  .about-ljs-benefits { grid-template-columns: 1fr; }
  .qehb-gallery { min-height: 430px; padding: 10px; grid-template-rows: 1.35fr .85fr; gap: 8px; }
  .qehb-copy { padding: 36px 26px; }
  .contracts-grid { grid-template-columns: 1fr; }
  .contract-card { min-height: 0; padding: 30px 26px; }
  .about-ljs-benefits article { min-height: 0; }
  .ledger-list article { grid-template-columns: 1fr; gap: 7px; }
  .review-panel { width: 100%; padding: 48px 25px; border-radius: 0; }
  .experience-brief { padding: 34px 28px; }
}

/* Unified dark-navy presentation */
:root {
  --navy-page: #07111f;
  --navy-section: #09182a;
  --navy-card: #10243d;
  --navy-card-soft: #132b48;
  --navy-line: rgba(173, 202, 236, .16);
  --navy-copy: #b8c9dc;
  --navy-copy-strong: #dce8f5;
}

body,
.trust-strip,
.visual-story,
.services,
.experience,
.about,
.contact-section,
.projects-section,
.career-projects,
.crossrail-feature-section,
.qehb-feature-section,
.review-panel-section {
  color: var(--white);
  background: var(--navy-page);
}

.visual-story,
.experience,
.about,
.career-projects,
.qehb-feature-section {
  background: var(--navy-section);
}

.trust-strip { border-color: var(--navy-line); }
.trust-grid > div { border-color: var(--navy-line); }
.trust-grid strong,
.section-heading h2,
.about h2,
.project-content h3,
.career-copy h3,
.qehb-copy h3,
.role-note strong {
  color: var(--white);
}

.trust-grid span,
.section-heading > p,
.service-card p,
.case-card > p:last-child,
.about-copy > p:not(.eyebrow):not(.lead),
.project-content > p,
.career-copy > p,
.qehb-copy > p {
  color: var(--navy-copy);
}

.about-copy .lead { color: var(--navy-copy-strong); }
.confidentiality-note,
.image-credit { color: #8fa5be; }

.service-card,
.case-card,
.project-feature,
.career-card,
.qehb-showcase {
  color: var(--white);
  border-color: var(--navy-line);
  background: var(--navy-card);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .18);
}

.service-card:hover {
  border-color: rgba(109, 169, 247, .55);
  background: var(--navy-card-soft);
  box-shadow: 0 26px 65px rgba(0, 0, 0, .28);
}

.project-services,
.role-note { border-color: var(--navy-line); }
.project-services li { color: #c8d8e8; }

.project-meta span {
  color: #bcd9ff;
  background: rgba(54, 126, 220, .18);
  border: 1px solid rgba(116, 174, 255, .14);
}

.project-image,
.career-card figure,
.qehb-gallery figure { background: #14263c; }

.drawing-image { background: #e9eef5; }

.crossrail-showcase,
.project-strip,
.process,
.contracts-section,
.about-ljs-section,
.project-ledger,
.site-footer {
  background: var(--navy-page);
}

.contracts-section,
.about-ljs-section {
  background: linear-gradient(135deg, #07111f 0%, #0b213c 100%);
}

.contact-section { padding-top: 32px; }
.contact-panel,
.review-panel {
  border: 1px solid rgba(151, 194, 248, .16);
  background: linear-gradient(125deg, #123b70, #155fbf);
  box-shadow: 0 24px 65px rgba(0, 0, 0, .25);
}

.text-link { color: var(--white); }

.privacy-dialog {
  color: var(--white);
  border: 1px solid var(--navy-line);
  background: var(--navy-card);
}
.privacy-dialog p:not(.eyebrow),
.dialog-close { color: var(--navy-copy); }

@media (max-width: 760px) {
  .trust-grid > div { border-color: var(--navy-line); }
}
