:root {
  --ink: #07111f;
  --ink-2: #0c1a2c;
  --panel: #101f32;
  --paper: #f3f0e9;
  --white: #ffffff;
  --muted: #a9b3c2;
  --muted-dark: #657184;
  --gold: #d6b34f;
  --gold-bright: #f0d477;
  --line: rgba(255,255,255,.12);
  --line-dark: rgba(7,17,31,.13);
  --radius: 22px;
  --shadow: 0 24px 70px rgba(1,8,17,.2);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 999; padding: 10px 16px; color: var(--ink); background: var(--gold-bright); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; transition: background .3s ease, box-shadow .3s ease; }
.site-header.scrolled { background: rgba(7,17,31,.92); box-shadow: 0 10px 35px rgba(0,0,0,.22); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { position: relative; z-index: 102; width: 210px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 30px); color: #e8edf4; }
.main-nav > a { position: relative; font-size: .79rem; font-weight: 700; letter-spacing: .04em; }
.main-nav > a:not(.nav-cta):not(.nav-shop)::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav > a:hover::after, .main-nav > a.active::after { transform: scaleX(1); transform-origin: left; }
.main-nav .nav-shop { display: inline-flex; align-items: center; gap: 10px; padding: 12px 17px; border: 1px solid var(--gold-bright); border-radius: 999px; color: var(--ink); background: var(--gold-bright); transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.main-nav .nav-shop:hover { color: var(--ink); background: #ffe596; border-color: #ffe596; transform: translateY(-1px); }
.main-nav .nav-shop span { font-size: 1rem; line-height: 1; }
.main-nav .nav-cta { padding: 12px 18px; border: 1px solid rgba(240,212,119,.65); border-radius: 999px; color: var(--gold-bright); transition: color .25s ease, background .25s ease; }
.main-nav .nav-cta:hover { color: var(--ink); background: var(--gold-bright); }
.menu-toggle { display: none; position: relative; z-index: 102; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: white; transition: transform .25s, opacity .25s; }

.hero { position: relative; min-height: 770px; height: 100svh; display: flex; align-items: center; isolation: isolate; overflow: hidden; color: white; background: var(--ink); }
.hero-video, .hero-overlay, .hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video { z-index: -4; object-fit: cover; }
.hero-overlay { z-index: -3; background: linear-gradient(90deg, rgba(3,10,20,.96) 0%, rgba(3,10,20,.75) 49%, rgba(3,10,20,.3) 100%), linear-gradient(0deg, rgba(3,10,20,.65), transparent 50%); }
.hero-grid { z-index: -2; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, black, transparent 80%); }
.hero-content { padding-top: 76px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: var(--gold-bright); text-transform: uppercase; letter-spacing: .19em; font-size: .72rem; font-weight: 800; }
.eyebrow span { display: inline-block; width: 38px; height: 2px; background: currentColor; }
.eyebrow.dark { color: #9a7423; }
.hero h1, .section h2 { margin: 0; letter-spacing: -.045em; line-height: .99; font-weight: 760; text-wrap: balance; }
.hero h1 { max-width: 900px; font-size: clamp(3.5rem, 7.3vw, 7rem); }
.hero h1 em, .section h2 em { color: var(--gold-bright); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-lead { max-width: 670px; margin: 30px 0 0; color: #cbd4df; font-size: clamp(1.05rem, 1.7vw, 1.32rem); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 22px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-size: .86rem; font-weight: 800; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--gold-bright); }
.button-primary:hover { background: #ffe596; }
.button-ghost { color: white; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: white; background: rgba(255,255,255,.1); }
.hero-proof { display: flex; gap: 0; width: fit-content; margin-top: 66px; border-top: 1px solid var(--line); }
.hero-proof div { min-width: 170px; padding: 20px 34px 0 0; }
.hero-proof div + div { padding-left: 34px; border-left: 1px solid var(--line); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { color: var(--gold-bright); font-size: 1.22rem; }
.hero-proof span { margin-top: 3px; color: #aeb8c6; font-size: .73rem; }
.scroll-cue { position: absolute; right: max(30px, calc((100vw - 1180px)/2)); bottom: 34px; width: 30px; height: 50px; border: 1px solid rgba(255,255,255,.35); border-radius: 20px; }
.scroll-cue span { position: absolute; top: 9px; left: 50%; width: 4px; height: 8px; border-radius: 5px; background: var(--gold-bright); transform: translateX(-50%); animation: scroll-cue 1.8s infinite; }
@keyframes scroll-cue { 0% { transform: translate(-50%,0); opacity: 0; } 25% { opacity: 1; } 80% { opacity: 0; } 100% { transform: translate(-50%,20px); opacity: 0; } }

.section { padding: 120px 0; }
.section h2 { font-size: clamp(2.6rem, 5vw, 5.1rem); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr); align-items: end; gap: 70px; margin-bottom: 58px; }
.section-heading > p, .projects-heading > p { max-width: 480px; margin: 0 0 8px; color: var(--muted-dark); font-size: 1rem; }
.section h2 em { color: #9a7423; }

.solutions { background: var(--paper); }
.solution-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.solution-card { position: relative; min-height: 440px; grid-column: span 4; overflow: hidden; border-radius: var(--radius); color: white; background: var(--panel); box-shadow: var(--shadow); }
.solution-card.solution-featured { grid-column: span 8; }
.solution-card img, .sector-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.solution-card:hover img, .sector-card:hover img { transform: scale(1.055); }
.card-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,10,20,.97), rgba(3,10,20,.15) 75%); }
.solution-content { position: absolute; inset: auto 0 0; padding: 30px; }
.card-number { position: absolute; right: 26px; bottom: 22px; color: rgba(255,255,255,.13); font-family: Georgia, serif; font-size: 4.8rem; line-height: 1; }
.card-kicker, .project-card span { margin: 0 0 8px; color: var(--gold-bright); text-transform: uppercase; letter-spacing: .16em; font-size: .65rem; font-weight: 800; }
.solution-card h3 { position: relative; max-width: 480px; margin: 0; font-size: clamp(1.45rem, 2.3vw, 2.2rem); line-height: 1.08; }
.solution-card p:not(.card-kicker) { position: relative; max-width: 570px; margin: 14px 0 0; color: #bdc7d3; font-size: .9rem; }
.solution-content a { position: relative; display: inline-flex; gap: 18px; margin-top: 22px; color: var(--gold-bright); font-size: .78rem; font-weight: 800; }

.approach { color: white; background: var(--ink); }
.approach-layout, .about-layout, .contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(55px, 8vw, 110px); }
.approach-media { position: relative; min-height: 680px; }
.approach-media > img { width: 88%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.approach-media::before { content: ""; position: absolute; z-index: -1; right: 0; bottom: -28px; width: 60%; height: 70%; border: 1px solid rgba(240,212,119,.42); border-radius: var(--radius); }
.media-note { position: absolute; right: 0; bottom: 48px; padding: 22px 28px; color: var(--ink); background: var(--gold-bright); box-shadow: var(--shadow); }
.media-note strong, .media-note span { display: block; }
.media-note strong { font-size: 1rem; }
.media-note span { font-size: .75rem; }
.approach-copy h2 { font-size: clamp(2.8rem, 5vw, 5rem); }
.approach-copy h2 em, .contact h2 em, .projects h2 em { color: var(--gold-bright); }
.approach-copy .lead { margin: 28px 0 36px; color: #b8c2cf; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 55px 1fr; gap: 18px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--gold-bright); font-family: Georgia, serif; }
.process-list h3 { margin: 0; font-size: 1.05rem; }
.process-list p { margin: 3px 0 0; color: var(--muted); font-size: .85rem; }

.sectors { background: #e8e4dc; }
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.sector-card { position: relative; min-height: 500px; overflow: hidden; color: white; border-radius: 18px; background: var(--ink); }
.sector-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,10,20,.92), transparent 75%); }
.sector-card span, .sector-card h3 { position: absolute; z-index: 2; left: 24px; }
.sector-card span { top: 22px; color: var(--gold-bright); font-family: Georgia, serif; }
.sector-card h3 { bottom: 24px; margin: 0; font-size: 1.42rem; line-height: 1.1; }

.projects { color: white; background: var(--ink-2); }
.projects-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 55px; }
.projects-heading > p { color: var(--muted); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.project-card img { width: 100%; aspect-ratio: 1.2; object-fit: cover; transition: transform .5s; }
.project-card:hover img { transform: scale(1.04); }
.project-card > div { padding: 25px; }
.project-card h3 { margin: 7px 0 8px; font-size: 1.35rem; }
.project-card p { margin: 0; color: var(--muted); font-size: .86rem; }

.about { background: var(--paper); }
.about-copy > p:not(.eyebrow) { max-width: 600px; margin: 28px 0 38px; color: var(--muted-dark); }
.values { border-top: 1px solid var(--line-dark); }
.values div { display: grid; grid-template-columns: 190px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.values strong { font-size: .88rem; }
.values span { color: var(--muted-dark); font-size: .82rem; }
.about-image { position: relative; min-height: 640px; }
.about-image > img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.about-badge { position: absolute; right: -18px; bottom: 30px; width: 185px; padding: 25px; color: var(--ink); background: var(--gold-bright); box-shadow: var(--shadow); }
.about-badge span, .about-badge strong, .about-badge small { display: block; }
.about-badge span { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; }
.about-badge strong { margin: 3px 0; font-family: Georgia, serif; font-size: 2.5rem; }
.about-badge small { line-height: 1.35; }

.partners { padding: 42px 0; background: white; border-block: 1px solid var(--line-dark); }
.partners .container { display: grid; grid-template-columns: 240px 1fr; align-items: center; gap: 50px; }
.partners p { margin: 0; color: var(--muted-dark); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.partner-list { display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; gap: 32px; }
.partner-list img { width: 100%; max-height: 48px; object-fit: contain; filter: grayscale(1); opacity: .68; transition: filter .2s, opacity .2s; }
.partner-list img:hover { filter: grayscale(0); opacity: 1; }

.contact { color: white; background: var(--ink); overflow: hidden; }
.contact-copy { align-self: start; padding-top: 30px; }
.contact-copy > p:not(.eyebrow) { margin: 28px 0 44px; color: var(--muted); font-size: 1.05rem; }
.contact-details { border-top: 1px solid var(--line); }
.contact-details > * { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-details span { color: var(--muted); font-size: .76rem; }
.contact-details strong { font-size: .87rem; }
.contact-details a:hover strong { color: var(--gold-bright); }
.contact-form { padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow); }
.form-heading { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-heading span { font-weight: 800; }
.form-heading strong { color: var(--gold-bright); font-size: .72rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label { display: block; }
.form-grid label > span { display: block; margin-bottom: 7px; color: #c9d1dc; font-size: .72rem; font-weight: 700; }
.form-full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; padding: 13px 14px; color: white; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; outline: 0; background: rgba(4,12,23,.55); transition: border .2s, box-shadow .2s; }
.form-grid select { appearance: auto; }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214,179,79,.13); }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: #7d8999; }
.honey { position: absolute !important; left: -9999px !important; }
.form-submit { width: 100%; margin-top: 24px; border: 0; }
.form-submit[disabled] { opacity: .65; cursor: wait; }
.form-note { margin: 13px 0 0; color: #7f8c9d; font-size: .67rem; text-align: center; }
.form-status { display: none; margin-top: 16px; padding: 12px 14px; border-radius: 8px; font-size: .82rem; }
.form-status.success { display: block; color: #d9f9e4; background: rgba(41,158,84,.2); }
.form-status.error { display: block; color: #ffe0df; background: rgba(204,63,57,.2); }

.site-footer { color: #aab5c4; background: #030914; }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 55px; padding: 75px 0 55px; }
.footer-brand img { width: 190px; height: auto; object-fit: contain; }
.footer-brand p { max-width: 310px; margin: 23px 0 0; font-size: .82rem; }
.footer-main h2 { margin: 8px 0 22px; color: white; text-transform: uppercase; letter-spacing: .12em; font-size: .73rem; }
.footer-main > div:not(.footer-brand) a, .footer-main > div:not(.footer-brand) span { display: block; margin: 10px 0; font-size: .78rem; }
.footer-main a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0 30px; border-top: 1px solid rgba(255,255,255,.08); font-size: .7rem; }

/* Pages intérieures */
.inner-page { background: var(--paper); }
.inner-page .site-header { background: rgba(7,17,31,.94); }
.page-hero { position: relative; min-height: 600px; display: flex; align-items: end; isolation: isolate; overflow: hidden; color: white; background: var(--ink); }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -3; background-image: var(--page-image); background-position: center; background-size: cover; transform: scale(1.015); }
.page-hero-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(3,10,20,.97), rgba(3,10,20,.68) 55%, rgba(3,10,20,.35)), linear-gradient(0deg, rgba(3,10,20,.86), transparent 70%); }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 72px 72px; }
.page-hero-content { padding-top: 175px; padding-bottom: 72px; }
.page-hero h1 { max-width: 970px; margin: 0; font-size: clamp(3.2rem, 7vw, 6.7rem); font-weight: 760; letter-spacing: -.05em; line-height: .96; text-wrap: balance; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 70px; color: #afbac8; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.breadcrumbs a:hover { color: var(--gold-bright); }
.breadcrumbs strong { color: white; font-weight: 700; }
.page-hero .eyebrow { margin-bottom: 18px; }

.page-listing { background: var(--paper); }
.page-intro { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(260px,.55fr); align-items: end; gap: 60px; margin-bottom: 60px; }
.page-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -34px; }
.page-intro h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
.page-intro > p:last-child { margin: 0 0 8px; color: var(--muted-dark); }
.page-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.page-card { overflow: hidden; border-radius: var(--radius); background: var(--ink); box-shadow: var(--shadow); }
.page-card > a { position: relative; display: block; min-height: 500px; overflow: hidden; color: white; }
.page-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.page-card > a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,10,20,.98), rgba(3,10,20,.1) 76%); }
.page-card:hover img { transform: scale(1.055); }
.page-card-number { position: absolute; z-index: 2; top: 22px; right: 24px; color: var(--gold-bright); font-family: Georgia, serif; }
.page-card > a > div { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 28px; }
.page-card h2 { margin: 0; font-size: 1.6rem; line-height: 1.08; letter-spacing: -.025em; }
.page-card p { min-height: 48px; margin: 12px 0 22px; color: #b8c2ce; font-size: .85rem; }
.page-card strong { display: inline-flex; gap: 18px; color: var(--gold-bright); font-size: .75rem; }
.page-card i { font-style: normal; }

.detail-page { background: var(--paper); }
.detail-layout { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(340px,.65fr); align-items: start; gap: clamp(55px,8vw,110px); }
.detail-copy h2 { max-width: 760px; font-size: clamp(2.6rem,5vw,5rem); }
.detail-lead { max-width: 760px; margin: 32px 0 20px; color: #4e5a6a; font-size: 1.14rem; }
.detail-copy > p:not(.eyebrow):not(.detail-lead) { color: var(--muted-dark); }
.detail-features { display: grid; grid-template-columns: 1fr 1fr; margin-top: 50px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.detail-features > div { min-height: 190px; padding: 25px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.detail-features span { color: #9a7423; font-family: Georgia, serif; font-size: .78rem; }
.detail-features h3 { margin: 25px 0 6px; font-size: 1rem; }
.detail-features p { margin: 0; color: var(--muted-dark); font-size: .82rem; }
.detail-aside { position: sticky; top: 120px; }
.detail-aside > img { width: 100%; min-height: 560px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.detail-aside-card { position: relative; width: calc(100% - 35px); margin: -75px auto 0; padding: 28px; color: var(--ink); background: var(--gold-bright); box-shadow: var(--shadow); }
.detail-aside-card span, .detail-aside-card strong { display: block; }
.detail-aside-card span { margin-bottom: 7px; font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; }
.detail-aside-card strong { line-height: 1.4; }
.detail-cta { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 105px; padding: 45px; color: white; border-radius: var(--radius); background: var(--ink); }
.detail-cta span { color: var(--gold-bright); font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; }
.detail-cta h2 { margin-top: 6px; font-size: clamp(1.7rem,3vw,3rem); }
.detail-cta .button { flex: 0 0 auto; }
.article-page .detail-copy { max-width: 820px; }
.article-page .detail-lead { font-family: Georgia, serif; font-size: 1.4rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 0 0 28px; color: #657183; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.article-meta span { position: relative; }
.article-meta span + span::before { content: ""; position: absolute; top: 50%; left: -12px; width: 3px; height: 3px; border-radius: 50%; background: #aa822a; }
.answer-box { margin: 30px 0 24px; padding: 24px 26px; border-left: 4px solid var(--gold); background: #fff; box-shadow: 0 14px 34px rgba(7,17,31,.08); }
.answer-box strong { display: block; margin-bottom: 8px; color: #8d6b20; font-size: .7rem; text-transform: uppercase; letter-spacing: .13em; }
.answer-box p { margin: 0; color: #3f4b5b; font-size: 1.05rem; line-height: 1.75; }
.article-sections { margin-top: 58px; }
.article-sections section { padding: 34px 0; border-top: 1px solid var(--line-dark); }
.article-sections h2 { margin: 0 0 14px; font-size: clamp(1.7rem,3vw,2.55rem); line-height: 1.12; }
.article-sections p { margin: 0; color: var(--muted-dark); line-height: 1.8; }
.faq-section { display: grid; grid-template-columns: minmax(260px,.7fr) minmax(0,1.3fr); gap: clamp(45px,8vw,100px); padding-top: 100px; }
.faq-heading h2, .related-section h2 { margin-top: 12px; font-size: clamp(2.1rem,4vw,4rem); }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-list details { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 23px 0; cursor: pointer; list-style: none; color: var(--ink); font-weight: 750; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: #9a7423; font-family: Georgia, serif; font-size: 1.4rem; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -5px 45px 24px 0; color: var(--muted-dark); line-height: 1.75; }
.related-section { padding-top: 105px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 34px; }
.related-grid a { display: flex; min-height: 210px; flex-direction: column; padding: 25px; color: white; background: var(--ink); transition: transform .2s ease, background .2s ease; }
.related-grid a:hover { transform: translateY(-4px); background: #10223a; }
.related-grid span { color: var(--gold-bright); font-size: .67rem; text-transform: uppercase; letter-spacing: .11em; }
.related-grid strong { margin: 18px 0 auto; font-size: 1.12rem; line-height: 1.35; }
.related-grid i { margin-top: 20px; color: #d8bf75; font-size: .75rem; font-style: normal; }
.service-areas { background: #eef1f4; }
.area-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.area-card { position: relative; min-height: 430px; display: flex; justify-content: end; flex-direction: column; overflow: hidden; padding: 28px; color: white; isolation: isolate; box-shadow: var(--shadow); }
.area-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg,rgba(3,10,20,.98),rgba(3,10,20,.12) 76%); }
.area-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.area-card:hover img { transform: scale(1.055); }
.area-card span { color: var(--gold-bright); font-size: .66rem; text-transform: uppercase; letter-spacing: .13em; }
.area-card h3 { margin: 8px 0 5px; font-size: 2rem; }
.area-card p { margin: 0 0 18px; color: #c1cad5; font-size: .82rem; }
.area-card strong { color: var(--gold-bright); font-size: .74rem; }
.detail-contact { padding-top: 100px; }

@media (max-width: 980px) {
  .page-hero { min-height: 540px; }
  .page-hero-content { padding-top: 145px; }
  .breadcrumbs { margin-bottom: 45px; }
  .page-intro { grid-template-columns: 1fr; gap: 24px; }
  .page-intro .eyebrow { grid-column: auto; margin-bottom: -4px; }
  .page-card-grid { grid-template-columns: 1fr 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-aside { position: relative; top: 0; order: -1; }
  .detail-aside > img { min-height: 500px; }
  .faq-section { grid-template-columns: 1fr; gap: 30px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .area-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .page-hero { min-height: 500px; }
  .page-hero-content { padding-top: 125px; padding-bottom: 50px; }
  .page-hero h1 { font-size: clamp(2.7rem,14vw,4.4rem); }
  .breadcrumbs { margin-bottom: 34px; }
  .page-card-grid { grid-template-columns: 1fr; }
  .page-card > a { min-height: 420px; }
  .detail-features { grid-template-columns: 1fr; }
  .detail-features > div { min-height: 150px; }
  .detail-aside > img { min-height: 390px; }
  .detail-cta { align-items: stretch; flex-direction: column; padding: 30px; }
  .article-meta { align-items: flex-start; flex-direction: column; gap: 7px; }
  .article-meta span + span::before { display: none; }
  .answer-box { padding: 20px; }
  .faq-section, .related-section { padding-top: 75px; }
  .related-grid, .area-grid { grid-template-columns: 1fr; }
  .area-card, .area-card:last-child { min-height: 380px; grid-column: auto; }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 24px; padding: 90px max(30px, 9vw); visibility: hidden; opacity: 0; background: rgba(3,9,20,.98); transition: opacity .25s, visibility .25s; }
  .main-nav.open { visibility: visible; opacity: 1; }
  .main-nav > a { font-size: clamp(1.3rem, 5vw, 2rem); }
  .main-nav .nav-shop { margin-top: 10px; font-size: 1rem; }
  .main-nav .nav-cta { margin-top: -10px; font-size: 1rem; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .solution-card { grid-column: span 6; }
  .solution-card.solution-featured { grid-column: span 12; }
  .approach-layout, .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .approach-media { min-height: 600px; }
  .approach-media > img { width: 94%; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .sector-card { min-height: 400px; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .project-card:last-child { grid-column: 1 / -1; }
  .projects-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
  .about-image { min-height: 580px; order: -1; }
  .partners .container { grid-template-columns: 1fr; gap: 25px; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 76px; }
  .brand { width: 170px; }
  .hero { min-height: 720px; }
  .hero-content { padding-top: 66px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 4.7rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-proof { width: 100%; margin-top: 44px; }
  .hero-proof div { min-width: 0; flex: 1; padding: 15px 10px 0 0; }
  .hero-proof div + div { padding-left: 10px; }
  .hero-proof strong { font-size: .95rem; }
  .hero-proof span { font-size: .6rem; line-height: 1.25; }
  .scroll-cue { display: none; }
  .section { padding: 84px 0; }
  .section h2 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .solution-grid { display: block; }
  .solution-card { min-height: 420px; margin-top: 14px; }
  .approach-media { min-height: 480px; }
  .media-note { right: 0; bottom: 24px; padding: 18px; }
  .sector-grid, .project-grid { grid-template-columns: 1fr; }
  .sector-card { min-height: 360px; }
  .project-card:last-child { grid-column: auto; }
  .values div { grid-template-columns: 1fr; gap: 4px; }
  .about-image { min-height: 470px; }
  .about-badge { right: 8px; width: 165px; }
  .partner-list { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .form-heading { flex-direction: column; }
  .contact-details > * { grid-template-columns: 95px 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
}

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