:root {
    --ink: #071525;
    --ink-2: #0b2035;
    --black: #05080c;
    --gold: #d6a52f;
    --gold-light: #f0c85c;
    --cream: #f7f3ea;
    --paper: #fffdfa;
    --text: #28303a;
    --muted: #68717d;
    --line: #ded8cb;
    --shadow: 0 24px 70px rgba(7, 21, 37, .12);
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, 'Segoe UI', Arial, sans-serif;
    --container: min(1180px, calc(100% - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3 { margin: 0 0 .7em; color: var(--ink); font-family: var(--serif); font-weight: 500; line-height: 1.08; }
h1 { font-size: clamp(3rem, 7vw, 6.6rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); letter-spacing: -.025em; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.1em; }
em { color: var(--gold-light); font-style: normal; }
.container { width: var(--container); margin-inline: auto; }
.narrow { max-width: 850px; }
.section { padding: clamp(74px, 9vw, 128px) 0; }
.section-soft { background: var(--cream); }
.section-dark { position: relative; overflow: hidden; background: var(--ink); color: #dbe2e8; }
.section-dark::before { position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(214,165,47,.12), transparent 30%), linear-gradient(120deg, transparent 50%, rgba(255,255,255,.025) 50%); content: ''; pointer-events: none; }
.section-dark h2, .section-dark h3 { color: white; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 12px 18px; transform: translateY(-150%); background: white; color: var(--ink); border: 2px solid var(--gold); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }

.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; color: #b37c09; font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::after { width: 45px; height: 1px; background: var(--gold); content: ''; }
.lead { max-width: 680px; color: #d8e0e6; font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.65; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 20px; padding: 13px 23px; border: 1px solid transparent; border-radius: 2px; font-size: .85rem; font-weight: 800; letter-spacing: .01em; transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #111; box-shadow: 0 10px 25px rgba(214,165,47,.18); }
.button-gold:hover { background: var(--gold-light); }
.button-outline { border-color: rgba(255,255,255,.55); color: white; }
.button-outline:hover { border-color: var(--gold); background: rgba(214,165,47,.1); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 16px; padding-bottom: 4px; border-bottom: 1px solid var(--gold); color: var(--ink); font-weight: 800; }
.section-dark .text-link, .dark .text-link { color: white; }

.site-header { position: sticky; z-index: 100; top: 0; background: rgba(4,10,17,.96); border-bottom: 1px solid rgba(214,165,47,.3); backdrop-filter: blur(16px); }
.nav-shell { display: flex; min-height: 88px; align-items: center; gap: 24px; }
.brand { flex: 0 0 210px; }
.brand img { width: 178px; }
.primary-nav { display: flex; align-items: center; gap: clamp(15px, 2vw, 30px); margin-left: auto; color: #f3f5f7; font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.primary-nav > a, .nav-group > button { position: relative; padding: 31px 0; border: 0; background: none; cursor: pointer; }
.primary-nav > a::after, .nav-group > button::after { position: absolute; right: 0; bottom: 23px; left: 0; height: 2px; transform: scaleX(0); background: var(--gold); content: ''; transition: transform .25s ease; }
.primary-nav > a:hover::after, .primary-nav > a[aria-current='page']::after, .nav-group:hover > button::after { transform: scaleX(1); }
.nav-group { position: relative; }
.nav-dropdown { position: absolute; top: calc(100% - 9px); left: -22px; width: 290px; padding: 10px; transform: translateY(8px); visibility: hidden; opacity: 0; background: #0c1926; border: 1px solid rgba(214,165,47,.35); box-shadow: var(--shadow); transition: .2s ease; }
.nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown, .nav-group.open .nav-dropdown { transform: none; visibility: visible; opacity: 1; }
.nav-dropdown a { display: block; padding: 10px 12px; color: #dce3e8; font-size: .77rem; line-height: 1.4; text-transform: none; }
.nav-dropdown a:hover, .nav-dropdown a.section-current { background: rgba(214,165,47,.12); color: var(--gold-light); }
.nav-cta { flex: 0 0 auto; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid rgba(255,255,255,.3); background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: white; }

.home-hero { position: relative; overflow: hidden; min-height: calc(100vh - 88px); background: #061321; color: white; }
.home-hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,12,21,1) 0%, rgba(3,12,21,.86) 42%, rgba(3,12,21,.22) 75%), radial-gradient(circle at 68% 65%, rgba(214,165,47,.22), transparent 26%); content: ''; z-index: 1; }
.home-hero-grid { position: relative; display: grid; min-height: calc(100vh - 135px); grid-template-columns: 55% 45%; align-items: center; z-index: 2; }
.hero-copy { position: relative; z-index: 2; padding: 70px 0 90px; }
.hero-copy .eyebrow { color: var(--gold-light); }
.hero-copy .eyebrow::after { display: none; }
.hero-copy .eyebrow span { width: 30px; height: 1px; background: var(--gold); }
.hero-copy h1 { color: white; }
.hero-queen { position: absolute; z-index: -1; top: 0; right: -8vw; bottom: 0; width: 68%; background: url('../images/chess-queen-hero.webp') center 42% / cover no-repeat; filter: saturate(.45) contrast(1.08); }
.hero-queen::after { position: absolute; inset: 0; background: linear-gradient(90deg, #061321 0%, transparent 42%), linear-gradient(0deg, #061321 0%, transparent 25%); content: ''; }
.hero-rule { position: relative; z-index: 3; display: grid; width: var(--container); min-height: 47px; margin-inline: auto; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(214,165,47,.35); color: #c8d0d7; font-size: .65rem; font-weight: 800; letter-spacing: .17em; text-align: center; text-transform: uppercase; }
.hero-rule span { padding: 16px; border-right: 1px solid rgba(255,255,255,.12); }

.page-hero { position: relative; overflow: hidden; min-height: 490px; display: flex; align-items: center; background: var(--black); color: white; }
.page-hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,7,11,.98) 0%, rgba(3,7,11,.85) 47%, rgba(3,7,11,.22) 100%), url('../images/chess-queen-hero.webp') 83% 45% / 56% auto no-repeat; content: ''; filter: saturate(.55); }
.page-hero::after { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); content: ''; }
.page-hero-inner { position: relative; z-index: 1; padding: 80px 0; }
.page-hero h1 { max-width: 850px; color: white; font-size: clamp(3.4rem, 6.5vw, 6rem); }
.page-hero .lead { max-width: 610px; }
.breadcrumbs { display: flex; gap: 10px; margin-bottom: 48px; color: #adb6bf; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.breadcrumbs a { color: var(--gold-light); }
.about-hero::before { background-image: linear-gradient(90deg, rgba(3,7,11,.98) 0%, rgba(3,7,11,.82) 47%, rgba(3,7,11,.18) 100%), url('../images/consulting-collaboration.webp'); background-position: center, 85% 48%; background-size: auto, 58% auto; }
.services-hero::before { background-image: linear-gradient(90deg, rgba(3,7,11,.98) 0%, rgba(3,7,11,.8) 47%, rgba(3,7,11,.18) 100%), url('../images/business-partnership.webp'); }
.approach-hero::before { background-image: linear-gradient(90deg, rgba(3,7,11,.98) 0%, rgba(3,7,11,.8) 47%, rgba(3,7,11,.22) 100%), url('../images/approach-system.webp'); }
.contact-hero::before { background: linear-gradient(90deg, #03070b 0%, rgba(3,7,11,.78) 55%, rgba(3,7,11,.12)), radial-gradient(circle at 78% 48%, rgba(214,165,47,.38), transparent 12%), repeating-linear-gradient(90deg, transparent 0 110px, rgba(214,165,47,.07) 111px 112px), #070707; }

.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered .eyebrow::before { width: 45px; height: 1px; background: var(--gold); content: ''; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }
.section-heading.light h2 { color: white; }
.section-heading.light > p:last-child { color: #c6d0d8; }
.split-heading { display: flex; max-width: none; align-items: end; justify-content: space-between; gap: 30px; }
.split-heading > div { max-width: 700px; }
.split-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(45px, 8vw, 110px); }
.align-center { align-items: center; }
.prose { font-size: 1.08rem; }
.prose p { max-width: 660px; }

.story-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(50px, 8vw, 110px); }
.story-copy { max-width: 620px; }
.story-copy > p:not(.eyebrow) { font-size: 1.03rem; }
.image-frame { position: relative; min-height: 520px; }
.image-frame::before { position: absolute; z-index: -1; top: -16px; right: -16px; width: 35%; height: 35%; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); content: ''; }
.image-frame img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; box-shadow: var(--shadow); }
.story-image img { object-position: 50% 48%; }
.landscape { min-height: 440px; }
.landscape img { min-height: 440px; object-position: center 20%; }
.queen-crop img { object-position: center 43%; filter: contrast(1.06); }

.service-card-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.service-card { position: relative; min-height: 370px; padding: 34px 28px 30px; overflow: hidden; background: white; border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.service-card::after { position: absolute; right: -25px; bottom: -45px; color: rgba(214,165,47,.07); font-family: var(--serif); font-size: 12rem; line-height: 1; content: '♛'; }
.service-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow); }
.service-card .card-number { margin-bottom: 70px; color: var(--gold); font-family: var(--serif); font-size: 1.55rem; }
.service-card h3 { min-height: 58px; font-size: 1.45rem; }
.service-card p { position: relative; z-index: 1; color: var(--muted); font-size: .88rem; }
.service-card a { position: absolute; z-index: 2; right: 28px; bottom: 27px; left: 28px; display: flex; justify-content: space-between; color: var(--ink); font-size: .78rem; font-weight: 800; text-transform: uppercase; }

.why-section { background: var(--ink); color: #d5dee5; }
.why-section h2 { color: white; }
.why-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(50px, 8vw, 100px); }
.mini-grid { display: grid; margin-top: 38px; grid-template-columns: 1fr 1fr; gap: 26px; }
.mini-grid div { padding-left: 18px; border-left: 1px solid var(--gold); }
.mini-grid strong, .mini-grid span { display: block; }
.mini-grid strong { margin-bottom: 6px; color: white; font-family: var(--serif); font-size: 1.15rem; }
.mini-grid span { color: #aeb9c2; font-size: .83rem; line-height: 1.5; }
.dark-frame::before { z-index: 0; }
.dark-frame img { position: relative; }

.approach-grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(214,165,47,.35); }
.approach-grid article { position: relative; padding: 45px 38px; background: #0b1c2d; }
.approach-grid span { display: block; margin-bottom: 65px; color: var(--gold-light); font-family: var(--serif); font-size: 1.7rem; }
.approach-grid p { color: #b9c4cd; }
.center-action { margin-top: 42px; text-align: center; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.value-card { min-height: 260px; padding: 34px; background: white; border: 1px solid var(--line); }
.value-1 { --value-color: #d4af37; }
.value-2 { --value-color: #d66b42; }
.value-3 { --value-color: #4f9d69; }
.value-4 { --value-color: #478dcc; }
.value-5 { --value-color: #7557a8; }
.value-6 { --value-color: #b14869; }
.value-line { display: block; width: 50px; height: 4px; margin-bottom: 55px; background: var(--value-color); box-shadow: 16px 0 0 color-mix(in srgb, var(--value-color) 70%, white), 32px 0 0 color-mix(in srgb, var(--value-color) 38%, white); }
.value-card p { color: var(--muted); font-size: .9rem; }

.logo-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.logo-tile { display: grid; min-height: 132px; place-items: center; padding: 20px; background: white; border: 1px solid var(--line); }
.logo-tile img { max-height: 92px; object-fit: contain; }
.client-note, .client-disclaimer { max-width: 850px; margin: 26px auto 0; color: var(--muted); font-size: .75rem; text-align: center; }

.two-panel-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(214,165,47,.45); }
.feature-panel { padding: clamp(38px, 5vw, 70px); background: #071525; }
.feature-panel-light { background: white; color: var(--text); }
.feature-panel-light h2, .feature-panel-light h3 { color: var(--ink); }
.check-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { position: absolute; top: .15em; left: 0; display: grid; width: 20px; height: 20px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); content: '✓'; font-size: .7rem; }
.location-grid { display: grid; max-width: 880px; margin: auto; grid-template-columns: 1fr 1fr; gap: 18px; }
.location-grid article { padding: 40px; background: var(--ink); color: #cbd5dc; border-top: 4px solid var(--gold); }
.location-grid article > span { color: var(--gold); font-family: var(--serif); font-size: 2.7rem; }
.location-grid h3 { margin-top: 25px; color: white; }

.service-showcase { background: var(--paper); }
.service-band { padding: 85px 0; }
.service-band.dark { background: var(--ink); color: #c4ced6; }
.service-band-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(50px, 9vw, 120px); }
.service-band:nth-child(even) .service-visual { order: 2; }
.service-band.dark h2 { color: white; }
.service-visual { position: relative; display: grid; min-height: 390px; place-items: center; overflow: hidden; background: linear-gradient(135deg, #f0eadc, #fff); border: 1px solid var(--line); }
.dark .service-visual { background: #050a10; border-color: rgba(214,165,47,.35); }
.service-visual > span { position: absolute; top: 25px; left: 30px; color: var(--gold); font-family: var(--serif); font-size: 1.6rem; }
.service-glyph { display: grid; width: 155px; height: 155px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: var(--serif); font-size: 5rem; box-shadow: 0 0 0 25px rgba(214,165,47,.06), 0 0 0 55px rgba(214,165,47,.03); }
.compact-list { columns: 2; column-gap: 30px; margin: 26px 0 30px; padding: 0; list-style: none; }
.compact-list li { margin-bottom: 8px; padding-left: 18px; break-inside: avoid; font-size: .88rem; }
.compact-list li::before { margin-left: -18px; color: var(--gold); content: '•'; }

.service-intro { border-bottom: 1px solid var(--line); }
.editorial-grid { display: grid; grid-template-columns: .35fr 1.15fr .75fr; align-items: start; gap: 45px; }
.number-mark { color: var(--gold); font-family: var(--serif); font-size: clamp(4rem, 8vw, 7rem); line-height: .8; }
.editorial-grid article p { font-size: 1.05rem; }
.gold-card { padding: 34px; background: var(--cream); border-top: 4px solid var(--gold); box-shadow: var(--shadow); }
.gold-card p { color: var(--muted); font-size: .9rem; }

.approach-detail-grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(214,165,47,.35); }
.approach-detail-grid article { min-height: 460px; padding: 42px; background: #0a1b2b; }
.approach-detail-grid article > span { display: block; margin-bottom: 75px; color: var(--gold); font-family: var(--serif); font-size: 3rem; }
.approach-detail-grid p:last-child { color: #b8c3cc; }
.process-line { display: grid; margin: 70px 0 0; padding: 0; grid-template-columns: repeat(5,1fr); list-style: none; }
.process-line li { position: relative; padding: 0 20px; text-align: center; }
.process-line li::before { position: absolute; top: 24px; right: 50%; left: -50%; height: 1px; background: var(--gold); content: ''; }
.process-line li:first-child::before { display: none; }
.process-line span { position: relative; z-index: 1; display: grid; width: 50px; height: 50px; margin: 0 auto 22px; place-items: center; background: var(--ink); border-radius: 50%; color: var(--gold-light); font-family: var(--serif); }
.process-line strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 1.08rem; line-height: 1.25; }
.process-line p { margin-top: 8px; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.sustainability-band { background: linear-gradient(115deg, #d6a52f, #f1c95d); color: #14191e; }
.sustainability-band .eyebrow { color: #18202a; }

.client-logo-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.client-logo-grid figure { margin: 0; padding: 18px; background: white; border: 1px solid var(--line); transition: .25s ease; }
.client-logo-grid figure:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow); }
.client-logo-grid img { width: 100%; height: 130px; object-fit: contain; }
.client-logo-grid figcaption { min-height: 38px; margin-top: 12px; color: var(--muted); font-size: .72rem; line-height: 1.35; text-align: center; }

.contact-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 75px; }
.contact-form-wrap h2, .contact-details h2 { font-size: 2.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: .78rem; font-weight: 800; }
.field label span, .consent label span { color: #a66d00; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 15px; background: #fff; border: 1px solid #cfc8ba; border-radius: 0; color: var(--text); transition: border .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: 0; box-shadow: 0 0 0 3px rgba(214,165,47,.18); }
.field small, .standalone-error { display: block; margin-top: 5px; color: #a12828; font-size: .75rem; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 24px; }
.consent input { margin-top: 6px; }
.consent label { font-size: .8rem; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-alert { margin: 0 0 25px; padding: 15px 18px; border-left: 4px solid; }
.form-alert.success { background: #e8f5ec; border-color: #2c8149; color: #225f38; }
.form-alert.error { background: #fff0f0; border-color: #a12828; color: #7c2020; }
.contact-details { padding: 40px; background: var(--ink); color: #c1ccd4; }
.contact-details h2, .contact-details h3 { color: white; }
.contact-details article { display: grid; margin-top: 35px; grid-template-columns: 45px 1fr; gap: 18px; }
.contact-details article > span { display: grid; width: 45px; height: 45px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: var(--serif); }
.contact-details h3 { margin-bottom: 7px; font-size: 1.15rem; }
.contact-details address { margin-bottom: 10px; font-style: normal; font-size: .85rem; }
.contact-details a { color: var(--gold-light); font-size: .84rem; }
.email-card { margin-top: 35px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.15); }
.email-card small, .email-card a { display: block; }
.email-card small { color: #8997a2; text-transform: uppercase; }
.email-card a { margin-top: 5px; font-size: 1rem; }

.legal-content .policy-date { padding-bottom: 25px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
.legal-content h2 { margin-top: 1.8em; font-size: 1.75rem; }
.legal-content a { color: #8a5e00; text-decoration: underline; }
.not-found { display: flex; min-height: 680px; align-items: center; overflow: hidden; background: var(--ink); color: #cbd5dc; }
.not-found-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; }
.not-found h1 { color: white; }
.not-found p { max-width: 600px; }
.queen-outline { color: rgba(214,165,47,.18); font-family: var(--serif); font-size: min(40vw, 26rem); line-height: 1; text-align: center; text-shadow: 0 0 80px rgba(214,165,47,.1); }

.final-cta { position: relative; overflow: hidden; padding: 50px 0; background: #05080c; color: white; border-top: 1px solid rgba(214,165,47,.35); }
.final-cta::after { position: absolute; right: 5%; bottom: -110px; color: rgba(214,165,47,.1); font-size: 13rem; content: '♛'; }
.final-cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.final-cta h2 { max-width: 740px; margin-bottom: 0; color: white; font-size: clamp(2rem, 3.5vw, 3.25rem); }
.site-footer { padding: 70px 0 22px; background: #07111c; color: #aeb8c1; border-top: 1px solid rgba(214,165,47,.25); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .65fr 1fr 1fr; gap: 45px; }
.footer-brand img { width: 190px; margin-bottom: 22px; }
.footer-brand p { max-width: 330px; }
.site-footer h2 { color: var(--gold-light); font-family: var(--sans); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.site-footer p, .site-footer address, .site-footer a { font-size: .78rem; }
.site-footer a:hover { color: var(--gold-light); }
.site-footer address { margin-bottom: 11px; font-style: normal; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 7px; }
.footer-bottom { display: flex; margin-top: 50px; padding-top: 20px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.11); }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 20px; }

@media (max-width: 1080px) {
    .nav-cta { display: none; }
    .primary-nav { gap: 20px; }
    .service-card-grid { grid-template-columns: 1fr 1fr; }
    .service-card { min-height: 330px; }
    .service-card .card-number { margin-bottom: 38px; }
    .client-logo-grid, .logo-row { grid-template-columns: repeat(3,1fr); }
    .footer-grid { grid-template-columns: 1.2fr .8fr 1fr; }
    .footer-grid > div:last-child { grid-column: 3; }
}

@media (max-width: 820px) {
    :root { --container: min(100% - 32px, 720px); }
    .nav-shell { min-height: 76px; }
    .brand { flex-basis: auto; margin-right: auto; }
    .brand img { width: 160px; }
    .menu-toggle { display: block; }
    .primary-nav { position: absolute; top: 76px; right: 0; left: 0; display: none; max-height: calc(100vh - 76px); padding: 16px; overflow: auto; background: #07111c; border-bottom: 1px solid var(--gold); }
    .primary-nav.open { display: block; }
    .primary-nav > a, .nav-group > button { display: block; width: 100%; padding: 14px 10px; text-align: left; }
    .primary-nav > a::after, .nav-group > button::after { display: none; }
    .nav-dropdown { position: static; display: none; width: auto; padding-left: 18px; transform: none; visibility: visible; opacity: 1; border: 0; box-shadow: none; }
    .nav-group.open .nav-dropdown { display: block; }
    .home-hero-grid { min-height: 710px; grid-template-columns: 1fr; }
    .hero-copy { padding: 80px 0 210px; }
    .hero-queen { right: -20%; width: 115%; opacity: .58; }
    .home-hero::before { background: linear-gradient(180deg, #061321 0%, rgba(6,19,33,.82) 58%, #061321 100%); }
    .hero-rule { grid-template-columns: 1fr 1fr; }
    .story-grid, .why-grid, .split-grid, .service-band-grid, .editorial-grid, .contact-grid, .not-found-grid { grid-template-columns: 1fr; }
    .reverse-mobile .story-copy { order: 2; }
    .story-grid, .why-grid { gap: 45px; }
    .image-frame, .image-frame img { min-height: 420px; }
    .value-grid { grid-template-columns: 1fr 1fr; }
    .approach-grid, .approach-detail-grid { grid-template-columns: 1fr; }
    .approach-grid article { min-height: 280px; }
    .approach-grid span, .approach-detail-grid article > span { margin-bottom: 28px; }
    .two-panel-grid { grid-template-columns: 1fr; }
    .service-band:nth-child(even) .service-visual { order: 0; }
    .service-visual { min-height: 330px; }
    .process-line { grid-template-columns: 1fr; gap: 18px; }
    .process-line li { display: grid; grid-template-columns: 52px 1fr; gap: 15px; text-align: left; }
    .process-line li::before { top: -20px; right: auto; bottom: 45px; left: 25px; width: 1px; height: auto; }
    .process-line span { grid-row: 1 / 3; margin: 0; }
    .process-line p { margin: 3px 0 20px; }
    .client-logo-grid, .logo-row { grid-template-columns: 1fr 1fr; }
    .contact-details { padding: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
    h1 { font-size: 3.35rem; }
    .section { padding: 70px 0; }
    .page-hero { min-height: 470px; }
    .page-hero h1 { font-size: 3.2rem; }
    .breadcrumbs { margin-bottom: 30px; }
    .button-row .button { width: 100%; }
    .hero-copy { padding-top: 55px; }
    .hero-rule { width: 100%; }
    .service-card-grid, .value-grid, .location-grid, .form-row, .client-logo-grid, .logo-row { grid-template-columns: 1fr; }
    .mini-grid { grid-template-columns: 1fr; }
    .split-heading, .final-cta-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
    .service-band { padding: 65px 0; }
    .compact-list { columns: 1; }
    .editorial-grid { gap: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:last-child { grid-column: auto; }
    .client-logo-grid img { height: 110px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
