/* ==========================================================================
   Dodi Metalwork — shared stylesheet
   Design system carried over from the Claude Design redesign
   ========================================================================== */

:root {
  --bg: #F5F4F0;
  --fg: #0A0A0A;
  --muted: #6B6B63;
  --line: #D9D6CC;
  --card: #EFECDF;
  --dark: #0A0A0A;
  --dark-2: #050505;
  --dark-line: #2A2A28;
  --on-dark: #F5F4F0;
  --on-dark-muted: #9A9A93;
  --accent: #2F6FB5;
  --max: 1320px;
  --pad: 40px;
  --display: 'Inter Tight', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-feature-settings: 'ss01','cv11';
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
::selection { background: var(--accent); color: var(--bg); }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font-family: inherit; }

/* Layout */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { border-bottom: 1px solid var(--line); }
.section--lg { padding: 120px 0; }
.eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 12px; }
h1, h2, h3, h4 { font-family: var(--display); margin: 0; text-wrap: balance; }
p { margin: 0; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(10,10,10,0.08); }
.site-header__inner {
  max-width: var(--max); margin: 0 auto; padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--fg); }
.brand__logo { height: 46px; width: auto; }
.nav { display: flex; gap: 36px; font-size: 14px; font-weight: 500; }
.nav a { text-decoration: none; opacity: 0.85; position: relative; padding: 4px 0; transition: opacity 0.2s, color 0.2s; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav a:hover { opacity: 1; color: var(--accent); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { opacity: 1; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { color: var(--muted); font-size: 13px; text-decoration: none; font-variant-numeric: tabular-nums; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; font-size: 13px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer; line-height: 1;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid { background: var(--fg); color: var(--bg); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--ghost { border: 1px solid var(--line); color: var(--fg); background: transparent; }
.btn--ghost-on-dark { border: 1px solid rgba(245,244,240,0.4); color: var(--on-dark); background: transparent; }
.btn--ghost-on-dark:hover { border-color: var(--on-dark); }
.btn--lg { padding: 16px 28px; font-size: 14px; }

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); cursor: pointer;
  width: 42px; height: 42px; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--fg); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; border-top: 1px solid var(--line); background: var(--bg);
  flex-direction: column; padding: 8px var(--pad) 24px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { text-decoration: none; padding: 14px 0; font-size: 16px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: none; }

/* ==========================================================================
   Hero (home)
   ========================================================================== */
.hero { position: relative; height: 760px; overflow: hidden; border-bottom: 1px solid var(--line); background: #000; }
.hero__media { position: absolute; inset: -8% 0; will-change: transform; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero__video.is-playing { opacity: 0.5; }
.hero__video.is-playing.is-dimmed { opacity: 0; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.75) 100%); }
.hero__content { position: absolute; inset: 0; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad) 80px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--on-dark); }
.hero__eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; display: inline-flex; align-items: center; gap: 12px; color: #FFFFFF; font-weight: 600; }
.hero h1 { font-weight: 600; font-size: 92px; line-height: 0.95; letter-spacing: -3px; max-width: 1100px; }
.hero__footer { margin-top: 40px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.hero__lede { max-width: 480px; font-size: 16px; line-height: 1.5; opacity: 0.9; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__ticker { position: absolute; top: 24px; right: var(--pad); color: var(--on-dark); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.7; font-variant-numeric: tabular-nums; }

/* staged hero entrance */
.hero .stagger { opacity: 0; transform: translateY(28px); animation: rise 0.9s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero .stagger--1 { animation-delay: 0.15s; }
.hero .stagger--2 { animation-delay: 0.30s; }
.hero .stagger--3 { animation-delay: 0.50s; }
.hero .stagger--4 { animation-delay: 0.65s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* Page hero (inner pages) */
.page-hero { position: relative; background: var(--dark); color: var(--on-dark); overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.7)); }
.page-hero__content { position: relative; max-width: var(--max); margin: 0 auto; padding: 120px var(--pad) 72px; }
.page-hero__eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; opacity: 0.9; }
.page-hero h1 { font-weight: 600; font-size: 64px; letter-spacing: -2px; line-height: 1; max-width: 900px; }
.page-hero__lede { margin-top: 24px; max-width: 560px; font-size: 16px; line-height: 1.6; opacity: 0.85; }

/* ==========================================================================
   Accreditations marquee
   ========================================================================== */
.creds { background: #fff; }
.creds__inner { max-width: var(--max); margin: 0 auto; padding: 28px var(--pad); display: grid; grid-template-columns: 200px 1fr; align-items: center; gap: 40px; }
.creds__label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.creds__viewport { position: relative; overflow: hidden; min-width: 0; max-width: 100%; mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); }
.creds__track { display: flex; gap: 72px; align-items: center; width: max-content; animation: cred-slide 32s linear infinite; }
.creds__viewport:hover .creds__track { animation-play-state: paused; }
.cred { flex: none; height: 64px; min-width: 200px; display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--muted); opacity: 0.85; transition: opacity 0.2s, color 0.2s; }
.cred:hover { opacity: 1; color: var(--fg); }
.cred__icon { width: 44px; height: 44px; flex: none; }
.cred__img { height: 52px; width: auto; flex: none; }
.cred__text { display: flex; flex-direction: column; gap: 2px; line-height: 1.15; }
.cred__name { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: -0.2px; color: var(--fg); }
.cred__sub { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
@keyframes cred-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   Section building blocks
   ========================================================================== */
.about-grid, .services-head, .process-head { display: grid; grid-template-columns: 200px 1fr; gap: 80px; }
.section-title { font-weight: 500; font-size: 56px; line-height: 1.05; letter-spacing: -1.5px; max-width: 980px; }
.about__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 80px; }
.about__sub { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; font-weight: 600; }
.about__body { font-size: 16px; line-height: 1.6; color: var(--muted); }

/* Stats */
.stats { background: var(--card); }
.stats .wrap { padding: 60px var(--pad); display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat { border-left: 1px solid var(--line); padding-left: 24px; }
.stat__num { font-family: var(--display); font-weight: 500; font-size: 64px; letter-spacing: -2px; line-height: 1; font-variant-numeric: tabular-nums; }
.stat__label { font-size: 13px; color: var(--muted); margin-top: 12px; line-height: 1.4; }

/* Services */
.services-head { margin-bottom: 80px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); padding: 40px 32px; min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; background: var(--bg); transition: background 0.25s ease; }
.service:hover { background: var(--card); }
.service__num { font-size: 12px; color: var(--accent); font-variant-numeric: tabular-nums; margin-bottom: 24px; font-weight: 600; letter-spacing: 1px; }
.service__title { font-weight: 600; font-size: 24px; letter-spacing: -0.5px; margin-bottom: 14px; }
.service__desc { font-size: 14px; line-height: 1.55; color: var(--muted); }

/* Work / dark section */
.work { background: var(--dark-2); color: var(--on-dark); }
.work .wrap { padding: 120px var(--pad); }
.work__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 72px; gap: 40px; flex-wrap: wrap; }
.work__eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 24px; }
.work h2 { font-weight: 500; font-size: 64px; letter-spacing: -2px; line-height: 1; max-width: 900px; }
.grid12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.tile { position: relative; overflow: hidden; }
.tile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.tile:hover .tile__img { transform: scale(1.045); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%); pointer-events: none; }
.tile__num { position: absolute; top: 20px; left: 24px; z-index: 2; font-size: 11px; letter-spacing: 1.5px; color: var(--on-dark); opacity: 0.75; font-variant-numeric: tabular-nums; }
.tile__caption { position: absolute; left: 24px; bottom: 24px; z-index: 2; color: var(--on-dark); display: flex; flex-direction: column; gap: 4px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.tile__caption span:first-child { opacity: 0.7; }
.tile__title { font-size: 18px; letter-spacing: -0.3px; text-transform: none; font-weight: 600; }
.work__cta { display: flex; justify-content: center; margin-top: 64px; }
.work__cta a { color: var(--on-dark); border: 1px solid var(--dark-line); padding: 16px 32px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.work__cta a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Process */
.process-head { margin-bottom: 64px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step { border-top: 1px solid var(--fg); padding-top: 24px; }
.step__num { font-size: 13px; color: var(--accent); font-variant-numeric: tabular-nums; margin-bottom: 20px; font-weight: 600; }
.step__title { font-weight: 600; font-size: 22px; letter-spacing: -0.4px; margin-bottom: 12px; }
.step__desc { font-size: 14px; line-height: 1.55; color: var(--muted); }

/* Quote / contact block */
.quote { background: var(--card); }
.quote .wrap { padding: 120px var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.quote h2 { font-weight: 500; font-size: 60px; letter-spacing: -2px; line-height: 1; margin-bottom: 32px; }
.quote__lede { font-size: 16px; line-height: 1.6; color: var(--muted); margin-bottom: 40px; max-width: 460px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; font-size: 16px; }
.contact-row { display: flex; gap: 16px; align-items: center; }
.contact-row--top { align-items: flex-start; }
.contact-row__label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); width: 64px; flex: none; }
.contact-row__label--top { padding-top: 4px; }
.contact-row__value { color: var(--fg); text-decoration: none; font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.4px; }
.contact-row__value--num { font-variant-numeric: tabular-nums; }
.contact-address { font-size: 15px; line-height: 1.5; }

/* Form */
.form { display: grid; }
.form label { border-top: 1px solid var(--line); padding: 20px 0; display: grid; grid-template-columns: 140px 1fr; align-items: center; gap: 16px; }
.form label.is-textarea { align-items: flex-start; border-bottom: 1px solid var(--line); }
.form label.is-textarea .form__label { padding-top: 4px; }
.form label.is-consent { grid-template-columns: auto 1fr; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.form__label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.form input, .form select, .form textarea { background: transparent; border: none; outline: none; color: var(--fg); font-size: 17px; padding: 0; width: 100%; }
.form input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); }
.form textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.form__submit { margin-top: 32px; background: var(--fg); color: var(--bg); padding: 20px 28px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; letter-spacing: 0.5px; display: inline-flex; align-items: center; justify-content: space-between; transition: background 0.2s ease; }
.form__submit:hover { background: var(--accent); }
.form__submit:disabled { opacity: 0.55; cursor: progress; }
.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status { margin-top: 24px; padding: 16px 20px; font-size: 14px; line-height: 1.5; border-left: 2px solid var(--line); background: var(--card); color: var(--fg); }
.form__status.is-pending { color: var(--muted); }
.form__status.is-success { border-left-color: var(--accent); }
.form__status.is-error { border-left-color: #B3431F; }
.form label.has-error { border-top-color: #B3431F; }
.form label.has-error .form__label { color: #B3431F; }

/* ==========================================================================
   About page
   ========================================================================== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); padding: 40px 32px; background: var(--bg); transition: background 0.25s ease; }
.value:hover { background: var(--card); }
.value__icon { color: var(--accent); margin-bottom: 24px; }
.value__icon svg { width: 32px; height: 32px; }
.value__title { font-family: var(--display); font-weight: 600; font-size: 20px; letter-spacing: -0.4px; margin-bottom: 12px; }
.value__desc { font-size: 14px; line-height: 1.55; color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split__img { position: relative; overflow: hidden; }
.split__img img { width: 100%; height: 520px; object-fit: cover; }
.creds-badges { margin-top: 40px; background: #fff; padding: 24px 32px; display: inline-block; border: 1px solid var(--line); }
.creds-badges img { max-height: 88px; width: auto; }

/* ==========================================================================
   Gallery page
   ========================================================================== */
.gallery-section { padding: 80px 0 120px; }
.masonry { columns: 3; column-gap: 16px; }
.masonry__item { break-inside: avoid; margin-bottom: 16px; position: relative; overflow: hidden; cursor: zoom-in; background: var(--card); }
.masonry__item img { width: 100%; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.4s; }
.masonry__item:hover img { transform: scale(1.035); }
.masonry__item::after { content: ""; position: absolute; inset: 0; background: rgba(10,10,10,0); transition: background 0.3s; pointer-events: none; }
.masonry__item:hover::after { background: rgba(10,10,10,0.15); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(5,5,5,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__img { max-width: 88vw; max-height: 86vh; object-fit: contain; transform: scale(0.96); transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); }
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__btn {
  position: absolute; background: none; border: 1px solid rgba(245,244,240,0.3); color: var(--on-dark);
  width: 52px; height: 52px; font-size: 20px; cursor: pointer; display: grid; place-items: center;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox__btn:hover { background: var(--accent); border-color: var(--accent); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: var(--on-dark-muted); font-size: 12px; letter-spacing: 2px; font-variant-numeric: tabular-nums; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 80px; }
.contact-card { border: 1px solid var(--line); padding: 36px 32px; background: var(--bg); transition: background 0.25s; }
.contact-card:hover { background: var(--card); }
.contact-card__label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.contact-card__value { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.4px; text-decoration: none; display: block; }
.contact-card__sub { font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.map-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; }
.map-link:hover { text-decoration: underline; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { background: var(--dark-2); color: var(--on-dark); }
.cta-band .wrap { padding: 100px var(--pad); display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-weight: 500; font-size: 52px; letter-spacing: -1.5px; line-height: 1.05; max-width: 700px; }
.cta-band__sub { margin-top: 16px; color: var(--on-dark-muted); font-size: 16px; max-width: 520px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--dark); color: var(--on-dark); padding: 80px var(--pad) 40px; }
.site-footer .inner { max-width: var(--max); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--dark-line); }
.footer-brand { margin-bottom: 28px; }
.footer-brand img { height: 52px; width: auto; filter: invert(1); opacity: 0.95; }
.footer-tag { font-size: 16px; line-height: 1.55; opacity: 0.7; max-width: 380px; }
.footer-col__title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.5; margin-bottom: 20px; }
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-list a { text-decoration: none; opacity: 0.85; transition: opacity 0.2s, color 0.2s; }
.footer-list a:hover { opacity: 1; color: var(--accent); }
.footer-address { opacity: 0.7; line-height: 1.5; margin-top: 8px; }
.footer-bar { padding-top: 32px; display: flex; justify-content: space-between; font-size: 12px; opacity: 0.5; flex-wrap: wrap; gap: 16px; }

/* ==========================================================================
   Scroll-reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); transition-delay: var(--reveal-delay, 0s); }
.reveal--left { transform: translateX(-32px); }
.reveal--right { transform: translateX(32px); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal--left, .reveal--right { opacity: 1; transform: none; transition: none; }
  .hero .stagger { opacity: 1; transform: none; animation: none; }
  .creds__track { animation: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .creds__inner { grid-template-columns: 1fr; gap: 16px; }
  .hero { height: 620px; }
  .hero h1 { font-size: 54px; letter-spacing: -1.5px; }
  .page-hero h1 { font-size: 44px; letter-spacing: -1px; }
  .page-hero__content { padding: 88px var(--pad) 56px; }
  .section-title, .work h2, .quote h2, .cta-band h2 { font-size: 40px; letter-spacing: -1px; }
  .stat__num { font-size: 44px; }
  .about-grid, .services-head, .process-head, .quote .wrap, .footer-grid, .about__cols, .work__head, .split { grid-template-columns: 1fr; gap: 32px; }
  .split__img img { height: 360px; }
  .services-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .stats .wrap, .process-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .grid12 .tile { grid-column: span 12 !important; height: 320px !important; }
  .form label { grid-template-columns: 1fr; gap: 4px; }
  .form label.is-consent { grid-template-columns: auto 1fr; }
  .masonry { columns: 2; }
  .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  :root { --pad: 20px; }
  .hero h1 { font-size: 42px; }
  .page-hero h1 { font-size: 36px; }
  .section--lg { padding: 72px 0; }
  .services-grid, .values-grid, .stats .wrap, .process-grid { grid-template-columns: 1fr; }
  .header-phone { display: none; }
  .masonry { columns: 1; }
  .brand__logo { height: 38px; }
}
