/*
Theme Name: GERA YAPI
Version: 1.0.0
Description: Clean custom corporate theme.
*/

:root {
  --navy: #00182f;
  --navy-soft: #00284d;
  --gold: #de9c57;
  --ink: #0a1828;
  --text: #384756;
  --line: #dde3e8;
  --white: #fff;
  --wrap: 1280px;
  --font: "Manrope", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-color: #24415a #edf1f3; scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #edf1f3; }
::-webkit-scrollbar-thumb { background: #24415a; border: 3px solid #edf1f3; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
body { margin: 0; color: var(--ink); background: var(--white); font: 16px/1.6 var(--font); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
h1, h2, h3, p { font-family: var(--font); }
.site-wrap { width: min(var(--wrap), calc(100% - 86px)); margin: 0 auto; }

.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 9px 13px; color: var(--navy); background: #fff; border-radius: 3px; font-size: 13px; font-weight: 800; transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.site-header { position: sticky; top: 0; z-index: 20; height: 84px; color: var(--white); background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.13); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 30px; }
.brand img { display: block; width: 170px; max-height: 62px; object-fit: contain; }
.desktop-nav { display: flex; align-items: stretch; align-self: stretch; gap: 30px; }
.desktop-nav > a, .nav-parent { position: relative; display: inline-flex; height: 100%; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .015em; text-transform: uppercase; }
.desktop-nav > a::after, .nav-parent::after { position: absolute; right: 0; bottom: 16px; left: 0; height: 2px; content: ''; background: var(--gold); opacity: 0; transform: scaleX(.45); transition: opacity .2s ease, transform .2s ease; }
.desktop-nav > a:hover, .desktop-nav > a.is-active, .nav-parent:hover, .nav-parent.is-active, .nav-dropdown:focus-within .nav-parent { color: var(--gold); }
.desktop-nav > a:hover::after, .desktop-nav > a.is-active::after, .nav-dropdown:hover .nav-parent::after, .nav-parent.is-active::after, .nav-dropdown:focus-within .nav-parent::after { opacity: 1; transform: scaleX(1); }
.nav-parent span { display: inline-block; width: auto; height: auto; margin: 0 0 0 2px; color: var(--gold); font-size: 12px; font-weight: 700; line-height: 1; transform: translateY(-1px); transition: transform .18s ease; }
.nav-dropdown { position: relative; display: flex; align-items: stretch; }
.nav-dropdown:hover .nav-parent span, .nav-dropdown:focus-within .nav-parent span { transform: translateY(-1px) rotate(180deg); }
.dropdown-menu { position: absolute; z-index: 30; top: calc(100% - 7px); left: -17px; display: grid; width: max-content; min-width: 218px; padding: 8px; color: var(--navy); background: var(--white); border: 1px solid #dce5ea; border-radius: 4px; box-shadow: 0 18px 32px rgba(0,18,36,.18); opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity .18s ease, transform .18s ease; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 11px; color: var(--navy); border-radius: 2px; font-size: 11px; font-weight: 700; letter-spacing: .01em; line-height: 1.3; }
.dropdown-menu a:hover { color: var(--navy); background: #f5f7f8; }
.language-switcher { display: inline-flex; align-items: center; gap: 2px; padding: 3px; color: var(--white); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.28); border-radius: 4px; }
.language-option { display: inline-flex; min-height: 31px; align-items: center; gap: 5px; padding: 5px 8px; border-radius: 2px; cursor: pointer; font-size: 9px; font-weight: 800; letter-spacing: .06em; line-height: 1; transition: color .18s ease, background .18s ease; }
.language-option:hover { color: var(--gold); background: rgba(255,255,255,.08); }
.language-option.is-active { color: var(--navy); background: var(--gold); }
.language-flag { position: relative; display: inline-block; width: 18px; height: 12px; flex: 0 0 18px; overflow: hidden; border-radius: 1px; box-shadow: 0 0 0 1px rgba(0,0,0,.18); }
.language-flag-tr { background: #e30a17; }
.language-flag-tr::before { position: absolute; top: 3px; left: 4px; width: 6px; height: 6px; content: ''; background: #fff; border-radius: 50%; }
.language-flag-tr::after { position: absolute; top: 3px; left: 6px; width: 6px; height: 6px; content: ''; background: #e30a17; border-radius: 50%; }
.language-flag-en { background: linear-gradient(90deg, transparent 39%, #fff 39%, #fff 61%, transparent 61%), linear-gradient(transparent 33%, #fff 33%, #fff 67%, transparent 67%), #012169; }
.language-flag-en::before, .language-flag-en::after { position: absolute; content: ''; background: #c8102e; }
.language-flag-en::before { top: 0; bottom: 0; left: 8px; width: 2px; }
.language-flag-en::after { top: 5px; right: 0; left: 0; height: 2px; }
.language-code { margin-top: 1px; }
.language-flag, .language-code { pointer-events: none; }
.button b { margin-left: 12px; font-size: 17px; }
.mobile-menu, .mobile-nav { display: none; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.hero { position: relative; min-height: 550px; overflow: hidden; color: var(--white); background: var(--navy); }
.hero-media, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(0,17,35,.97) 0%, rgba(0,17,35,.85) 35%, rgba(0,17,35,.19) 70%); }
.hero-content { position: relative; z-index: 1; display: flex; min-height: 550px; flex-direction: column; justify-content: center; width: min(var(--wrap), calc(100% - 86px)); }
.overline, .section-heading p, .projects header > p { margin: 0; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.hero h1 { margin: 6px 0 6px; font-size: clamp(44px, 4.5vw, 61px); font-weight: 800; line-height: .98; letter-spacing: .002em; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero h2 { margin: 0; font-size: clamp(29px, 3.2vw, 43px); font-weight: 500; line-height: 1.18; letter-spacing: -.045em; }
.gold-rule { display: block; width: 44px; height: 2px; margin: 25px 0 17px; background: var(--gold); }
.hero-copy { max-width: 490px; margin: 0; font-size: 14px; font-weight: 500; line-height: 1.8; }
.button-row { display: flex; gap: 18px; margin-top: 26px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 45px; padding: 11px 18px; font-size: 10px; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; }
.button-gold { color: var(--ink); background: var(--gold); }
.button-outline { color: inherit; border: 1px solid var(--gold); border-radius: 4px; }

.services, .process { padding: 49px 0 44px; }
.services { background: #f4f7f8; }
.section-heading { text-align: center; }
.section-heading h2 { margin: 4px 0 0; font-size: 28px; font-weight: 700; line-height: 1.25; letter-spacing: -.05em; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 38px; }
.service-grid article, .process-grid article { position: relative; background: #fff; border: 1px solid #dde4e7; border-top: 3px solid var(--gold); box-shadow: 0 10px 24px rgba(0,24,47,.055); }
.service-grid article { padding: 27px 25px 26px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.service-grid article:hover { transform: translateY(-5px); border-color: #d8bd86; box-shadow: 0 17px 34px rgba(0,24,47,.13); }
.service-icon, .process-icon { display: grid; width: 62px; height: 62px; place-items: center; color: var(--gold); background: #fff8e9; border: 1px solid #efd9ad; }
.service-icon svg, .process-icon svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.service-grid h3 { margin: 24px 0 10px; color: var(--navy); font-size: 18px; font-weight: 700; line-height: 1.18; letter-spacing: -.04em; }
.service-grid p { height: calc(4 * 1.75em); margin: 0; color: var(--text); font-size: 13px; font-weight: 500; line-height: 1.75; }
.service-copy-mobile { display: none; }

.projects { position: relative; overflow: hidden; padding: 86px 0 48px; color: var(--white); background: linear-gradient(118deg, #001326 0%, var(--navy) 48%, #00284d 100%); }
.projects::before { position: absolute; top: -240px; right: -180px; width: 620px; height: 620px; content: ''; background: radial-gradient(circle, rgba(222,156,87,.14), transparent 67%); pointer-events: none; }
.project-intro { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.project-intro > div > p { margin: 0; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.project-intro h2 { margin: 8px 0 0; font-size: clamp(41px, 4.1vw, 61px); font-weight: 700; line-height: 1.02; letter-spacing: -.065em; }
.project-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.project-filters button { min-height: 35px; padding: 7px 12px; color: #d9e5ee; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.25); border-radius: 2px; cursor: pointer; font: 800 10px/1 var(--font); letter-spacing: .045em; text-transform: uppercase; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.project-filters button:hover, .project-filters button.is-active { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.project-filters button span { margin-left: 5px; opacity: .72; }
.project-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 272px; gap: 18px; margin-top: 39px; }
.project-card { position: relative; isolation: isolate; overflow: hidden; min-height: 0; color: var(--white); background: #001e3b; border: 1px solid rgba(255,255,255,.2); }
.project-card::after { position: absolute; z-index: -1; inset: 0; content: ''; background: linear-gradient(180deg, rgba(0,18,36,.08) 18%, rgba(0,18,36,.9) 100%); }
.project-card-image { position: absolute; z-index: -2; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1); transition: opacity .65s ease, transform .65s ease; }
.project-card-image.is-active { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .project-card:hover .project-card-image.is-active { transform: scale(1.055); } }
.project-card-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 22px 24px; }
.project-card-top { display: grid; grid-template-columns: max-content minmax(0, 1fr); align-items: start; gap: 14px; }
.project-status { display: inline-flex; align-items: center; justify-self: start; min-height: 25px; padding: 5px 9px; border: 1px solid currentColor; border-radius: 99px; font-size: 9px; font-weight: 800; letter-spacing: .055em; line-height: 1.2; text-transform: uppercase; white-space: nowrap; }
.project-status.is-ongoing { color: var(--gold); background: rgba(0,24,47,.72); }
.project-status.is-complete { color: #dcecf1; background: rgba(0,24,47,.72); }
.project-type { display: flex; align-items: center; justify-content: flex-end; justify-self: stretch; width: 100%; min-width: 0; min-height: 25px; color: #f4f7f8; font-size: 10px; font-weight: 800; letter-spacing: .06em; line-height: 1.4; overflow-wrap: anywhere; text-align: right; text-transform: uppercase; }
.project-card-bottom h3 { display: flex; align-items: end; min-height: 26px; margin: 0 0 7px; font-size: 22px; font-weight: 700; line-height: 1.1; letter-spacing: -.045em; }
.project-scope { display: -webkit-box; max-width: 100%; margin: 0 0 10px; overflow: hidden; color: #dce8ef; font-size: 11px; font-weight: 500; letter-spacing: -.01em; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.project-meta { display: flex; gap: 15px; margin: 0; color: #e9f0f4; font-size: 11px; font-weight: 600; }
.project-meta span + span { position: relative; padding-left: 15px; }
.project-meta span + span::before { position: absolute; top: 50%; left: 0; width: 3px; height: 3px; content: ''; background: var(--gold); border-radius: 50%; transform: translateY(-50%); }
.project-archive-actions { position: relative; z-index: 1; display: flex; justify-content: center; margin: 27px 0 0; }
.project-archive-actions .button { min-width: 248px; color: var(--white); }

.project-archive-page { min-height: calc(100vh - 84px); padding: 78px 0 88px; color: var(--white); background: linear-gradient(118deg, #001326 0%, var(--navy) 48%, #00284d 100%); }
.project-archive-wrap { position: relative; }
.project-back-link { display: inline-flex; margin-bottom: 44px; color: #dce8ef; font-size: 11px; font-weight: 700; letter-spacing: .02em; }
.project-back-link:hover { color: var(--gold); }
.project-archive-heading p { margin: 0; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.project-archive-heading h1 { margin: 8px 0 0; font-size: clamp(40px, 5vw, 64px); font-weight: 700; line-height: 1.03; letter-spacing: -.065em; }
.project-archive-grid { margin-top: 44px; }

.process { background: #fff; border-top: 1px solid #eff2f4; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; gap: 16px; margin-top: 38px; text-align: center; }
.process-grid article { min-height: 194px; padding: 20px 12px 17px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.process-grid article:hover { transform: translateY(-5px); border-color: #d8bd86; box-shadow: 0 17px 34px rgba(0,24,47,.13); }
.process-icon { margin: 0 auto 14px; }
.process-grid h3 { margin: 5px 0 5px; color: var(--navy); font-size: 12px; font-weight: 800; letter-spacing: .01em; text-transform: uppercase; }
.process-grid p { height: calc(5 * 1.55em); max-width: 160px; margin: 0 auto; color: var(--text); font-size: 11px; font-weight: 500; line-height: 1.55; }

.career-section { padding: 56px 0 66px; background: #f4f7f8; }
.career-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); align-items: start; gap: 42px; }
.career-story { padding: 12px 0; }
.career-kicker { margin: 0; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .11em; }
.career-story h2 { max-width: 520px; margin: 9px 0 0; color: var(--navy); font-size: clamp(34px, 4vw, 49px); font-weight: 700; line-height: 1.08; letter-spacing: -.06em; }
.career-principles { display: grid; gap: 14px; margin-top: 34px; }
.career-principles article { padding: 18px 20px 18px 23px; background: var(--white); border: 1px solid #dce4e8; border-left: 3px solid var(--gold); box-shadow: 0 9px 20px rgba(0,24,47,.04); }
.career-principles h3 { margin: 0; color: var(--navy); font-size: 15px; font-weight: 800; line-height: 1.25; letter-spacing: -.03em; }
.career-principles p { margin: 7px 0 0; color: var(--text); font-size: 12px; font-weight: 500; line-height: 1.7; }
.career-application-form { padding: clamp(30px, 4.5vw, 52px); color: var(--navy); background: var(--white); border: 1px solid #dce4e8; border-top: 3px solid var(--gold); box-shadow: 0 16px 38px rgba(0,24,47,.08); }
.career-application-form h2 { margin: 8px 0 0; font-size: clamp(27px, 3vw, 38px); font-weight: 700; line-height: 1.1; letter-spacing: -.05em; }
.career-cv-field { display: grid; gap: 7px; margin-top: 15px; color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: .015em; }
.career-cv-field > span b { color: var(--gold); }
.career-cv-field input[type="file"] { width: 100%; min-height: 47px; padding: 7px; color: var(--text); background: #fff; border: 1px dashed #aabac4; border-radius: 2px; font: 600 12px/1.4 var(--font); }
.career-cv-field input[type="file"]::file-selector-button { padding: 7px 10px; margin-right: 10px; color: var(--navy); background: #fff8e9; border: 1px solid #efd9ad; border-radius: 2px; cursor: pointer; font: 800 10px/1 var(--font); letter-spacing: .025em; text-transform: uppercase; }
.career-cv-field small { color: #687a87; font-size: 10px; font-weight: 600; letter-spacing: 0; }
.career-privacy-note { padding: 11px 13px; margin: 17px 0 0; color: #435663; background: #f4f7f8; border-left: 3px solid var(--gold); font-size: 11px; font-weight: 600; line-height: 1.6; }

.organization-section { padding: 56px 0 66px; background: #f4f7f8; }
.organization-chart { padding: 46px 34px 36px; background: var(--white); border: 1px solid #dce4e8; border-top: 3px solid var(--gold); box-shadow: 0 16px 38px rgba(0,24,47,.07); }
.organization-lead { display: flex; width: fit-content; min-height: 50px; align-items: center; justify-content: center; padding: 12px 26px; margin: 0 auto; color: var(--white); background: var(--navy); border: 1px solid var(--navy); font-size: 14px; font-weight: 800; letter-spacing: .045em; text-align: center; text-transform: uppercase; }
.organization-link { width: 1px; height: 39px; margin: 0 auto; background: var(--gold); }
.organization-departments { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; padding-top: 35px; }
.organization-departments::before { position: absolute; top: 0; right: calc(12.5% - 9px); left: calc(12.5% - 9px); height: 1px; content: ''; background: var(--gold); }
.organization-department { position: relative; min-height: 244px; padding: 0 20px 22px; background: #f9fbfc; border: 1px solid #dce4e8; box-shadow: 0 9px 20px rgba(0,24,47,.045); }
.organization-department::before { position: absolute; top: -35px; left: 50%; width: 1px; height: 35px; content: ''; background: var(--gold); }
.organization-department h2 { display: flex; min-height: 62px; align-items: center; padding: 13px 4px; margin: 0; color: var(--navy); border-bottom: 2px solid var(--gold); font-size: 16px; font-weight: 800; line-height: 1.25; letter-spacing: -.03em; }
.organization-department ul { display: grid; gap: 10px; padding: 18px 0 0; margin: 0; list-style: none; }
.organization-department li { position: relative; padding-left: 14px; color: var(--text); font-size: 12px; font-weight: 600; line-height: 1.55; }
.organization-department li::before { position: absolute; top: .65em; left: 0; width: 5px; height: 5px; content: ''; background: var(--gold); border-radius: 50%; }

.contact-strip { padding: 26px 0; color: var(--white); background: linear-gradient(90deg, rgba(0,17,35,.96), rgba(0,17,35,.78)), var(--contact-image) center/cover; }
.contact-strip .site-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.contact-strip h2 { margin: 0; font-size: 26px; font-weight: 600; letter-spacing: -.04em; }
.contact-strip p { margin: 3px 0 0; font-size: 13px; font-weight: 500; }

.site-footer { color: var(--white); background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr)); gap: 34px; padding: 48px 0 31px; }
.footer-brand img { display: block; width: 184px; max-height: 72px; object-fit: contain; object-position: left; }
.footer-brand p { max-width: 260px; margin: 13px 0 0; color: #d5e0e9; font-size: 12px; font-weight: 500; line-height: 1.8; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; padding-top: 8px; font-size: 12px; font-weight: 500; }
.footer-grid b { margin-bottom: 7px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.footer-grid a, .footer-grid span { color: #edf3f8; }
.footer-address { margin: 4px 0 0; color: #d5e0e9; font-size: 11px; font-style: normal; font-weight: 500; line-height: 1.65; }
.footer-address span, .contact-location-copy address span { display: block; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.14); font-size: 11px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-legal a:hover { color: var(--gold); }
.footer-cookie-form { margin: 0; }
.footer-cookie-trigger { padding: 0; color: inherit; background: transparent; border: 0; cursor: pointer; font: inherit; }
.footer-cookie-trigger:hover { color: var(--gold); }

.policy-page { min-height: calc(100vh - 84px); padding: 82px 0; background: #f4f7f8; }
.policy-wrap { max-width: 900px; }
.policy-kicker { margin: 0 0 9px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .09em; }
.policy-page h1 { max-width: 700px; margin: 0 0 30px; color: var(--navy); font-size: clamp(34px, 5vw, 52px); font-weight: 800; line-height: 1.06; letter-spacing: -.055em; }
.policy-content { padding: 40px clamp(24px, 5vw, 56px); background: #fff; border: 1px solid #e0e6e9; box-shadow: 0 16px 36px rgba(0,24,47,.06); }
.policy-content > :first-child { margin-top: 0; }
.policy-content h2 { margin: 34px 0 10px; color: var(--navy); font-size: 20px; font-weight: 800; line-height: 1.3; letter-spacing: -.03em; }
.policy-content h3 { margin: 22px 0 8px; color: var(--navy); font-size: 15px; font-weight: 800; }
.policy-content p, .policy-content li { color: var(--text); font-size: 14px; font-weight: 500; line-height: 1.8; }
.policy-content ul { padding-left: 20px; }
.policy-content .policy-note { padding: 15px 17px; color: #5a451e; background: #fff8e9; border-left: 3px solid var(--gold); }

.inner-page { min-height: calc(100vh - 84px); background: #f4f7f8; }
.inner-hero { padding: 68px 0 74px; color: var(--white); background: linear-gradient(118deg, #001326 0%, var(--navy) 58%, #00284d 100%); }
.inner-hero .site-wrap { max-width: 940px; margin-left: max(calc((100% - var(--wrap)) / 2), 43px); }
.inner-kicker { margin: 0 0 10px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .11em; }
.inner-hero h1 { max-width: 830px; margin: 0; font-size: clamp(40px, 5vw, 64px); font-weight: 700; line-height: 1.04; letter-spacing: -.062em; }
.inner-hero .site-wrap > p:last-child { max-width: 700px; margin: 22px 0 0; color: #d8e4ec; font-size: 16px; font-weight: 500; line-height: 1.8; }
.inner-page-content { padding: 50px 0 58px; }
.inner-page-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(270px, .55fr); align-items: start; gap: 58px; }
.inner-page-copy { display: grid; gap: 42px; }
.inner-content-block { padding-bottom: 40px; border-bottom: 1px solid #dce4e8; }
.inner-content-block:last-child { padding-bottom: 0; border-bottom: 0; }
.inner-content-block h2 { margin: 0 0 13px; color: var(--navy); font-size: clamp(25px, 3vw, 34px); font-weight: 750; line-height: 1.15; letter-spacing: -.05em; }
.inner-content-block p { max-width: 720px; margin: 0; color: var(--text); font-size: 15px; font-weight: 500; line-height: 1.85; }
.inner-content-block p + p { margin-top: 18px; }
.inner-page-sidebar { padding: 28px 27px 27px; color: var(--white); background: var(--navy); border-top: 3px solid var(--gold); font-family: var(--font); font-kerning: normal; }
.inner-page-sidebar > p { margin: 0 0 19px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .06em; line-height: 1.3; text-transform: uppercase; }
.inner-page-sidebar ul { display: grid; gap: 14px; padding: 0; margin: 0; list-style: none; }
.inner-page-sidebar li { position: relative; padding-left: 18px; color: #dce8ef; font-size: 13px; font-weight: 500; letter-spacing: -.012em; line-height: 1.65; }
.inner-page-sidebar li::before { position: absolute; top: .62em; left: 0; width: 6px; height: 6px; content: ''; background: var(--gold); border-radius: 50%; }
.construction-bottom-banner { position: relative; height: clamp(142px, 16vw, 220px); margin-top: 46px; margin-bottom: 0; overflow: hidden; background: var(--navy); }
.construction-bottom-banner::after { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg, rgba(0,24,47,.24), transparent 55%, rgba(0,24,47,.1)); pointer-events: none; }
.construction-bottom-banner img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 57%; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.construction-bottom-banner:hover img { transform: scale(1.025); }
.inner-link-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 58px; }
.inner-link-card { position: relative; display: flex; min-height: 186px; flex-direction: column; padding: 24px; color: var(--navy); background: var(--white); border: 1px solid #dce4e8; border-top: 3px solid var(--gold); box-shadow: 0 10px 24px rgba(0,24,47,.055); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.inner-link-card:hover { border-color: #d8bd86; box-shadow: 0 17px 34px rgba(0,24,47,.13); transform: translateY(-5px); }
.inner-link-card span { padding-right: 30px; font-size: 17px; font-weight: 800; line-height: 1.2; letter-spacing: -.035em; }
.inner-link-card p { margin: 12px 0 0; color: var(--text); font-size: 12px; font-weight: 500; line-height: 1.65; }
.inner-link-card b { position: absolute; right: 22px; bottom: 19px; color: var(--gold); font-size: 20px; }
.contact-page-content { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); align-items: stretch; gap: 24px; padding: 54px 0 66px; }
.contact-page-card { padding: clamp(32px, 5vw, 58px); color: var(--white); background: linear-gradient(124deg, #001326, #00284d); border-top: 3px solid var(--gold); box-shadow: 0 16px 38px rgba(0,24,47,.14); }
.contact-page-card > p:first-child { margin: 0; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.contact-page-card h2 { max-width: 570px; margin: 8px 0 0; font-size: clamp(30px, 4vw, 46px); font-weight: 700; line-height: 1.08; letter-spacing: -.055em; }
.contact-page-card .gold-rule { margin: 23px 0 17px; }
.contact-page-card > p:last-of-type { max-width: 530px; margin: 0; color: #d8e4ec; font-size: 14px; font-weight: 500; line-height: 1.8; }
.contact-methods { display: grid; justify-items: start; gap: 10px; margin-top: 27px; }
.contact-phone { display: inline-flex; align-items: center; gap: 14px; margin-top: 27px; color: var(--gold); border-bottom: 1px solid rgba(222,156,87,.55); font-size: 23px; font-weight: 800; letter-spacing: -.03em; }
.contact-methods .contact-phone { margin-top: 0; }
.contact-phone b { font-size: 22px; }
.contact-email { color: #e6eef3; border-bottom: 1px solid rgba(230,238,243,.45); font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.contact-email:hover { color: var(--gold); border-color: var(--gold); }
.contact-location { display: grid; grid-template-columns: minmax(240px, .42fr) minmax(0, .58fr); gap: 24px; padding: 0 0 66px; }
.contact-location-copy { display: flex; min-height: 260px; flex-direction: column; justify-content: center; padding: 32px; background: #f5f7f8; border-left: 3px solid var(--gold); }
.contact-location-copy p { margin: 0 0 10px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-location-copy h2 { margin: 0; color: var(--navy); font-size: 27px; font-weight: 700; line-height: 1.14; letter-spacing: -.045em; }
.contact-location-copy address { margin: 18px 0 0; color: var(--text); font-size: 13px; font-style: normal; font-weight: 600; line-height: 1.8; }
.contact-map { min-height: 260px; overflow: hidden; background: var(--navy); box-shadow: 0 16px 38px rgba(0,24,47,.1); }
.contact-map iframe { display: block; width: 100%; height: 100%; min-height: 260px; border: 0; filter: saturate(.86) contrast(.98); }
.gera-contact-form-wrap { padding: clamp(30px, 4.5vw, 54px); color: var(--navy); background: #f5f7f8; border: 1px solid #dce4e8; border-top: 3px solid var(--gold); box-shadow: 0 16px 38px rgba(0,24,47,.08); }
.gera-contact-kicker { margin: 0; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.gera-contact-form-wrap h2 { margin: 8px 0 0; font-size: clamp(27px, 3vw, 38px); font-weight: 700; line-height: 1.1; letter-spacing: -.05em; }
.gera-contact-intro { margin: 14px 0 0; color: var(--text); font-size: 13px; font-weight: 500; line-height: 1.7; }
.gera-contact-notice { margin: 18px 0 0; padding: 11px 13px; border-left: 3px solid var(--gold); font-size: 12px; font-weight: 700; line-height: 1.55; }
.gera-contact-notice.is-success { color: #184d35; background: #e8f3eb; border-color: #2d8a5a; }
.gera-contact-notice.is-error { color: #8a2721; background: #fff0ee; border-color: #c7493e; }
.gera-contact-form { margin-top: 24px; }
.gera-contact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.gera-contact-form label { display: grid; gap: 7px; color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: .015em; }
.gera-contact-form label > span b { color: var(--gold); }
.gera-contact-form input:not([type="checkbox"]), .gera-contact-form select, .gera-contact-form textarea { width: 100%; min-height: 43px; padding: 10px 12px; color: var(--ink); background: var(--white); border: 1px solid #ced9df; border-radius: 2px; font: 500 13px/1.4 var(--font); outline: 0; transition: border-color .18s ease, box-shadow .18s ease; }
.gera-contact-form textarea { min-height: 120px; resize: vertical; }
.gera-contact-form input:not([type="checkbox"]):focus, .gera-contact-form select:focus, .gera-contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(222,156,87,.15); }
.gera-contact-message { margin-top: 15px; }
.gera-contact-consent { grid-template-columns: 18px minmax(0, 1fr); align-items: start; margin-top: 18px; color: var(--text) !important; font-size: 11px !important; font-weight: 500 !important; line-height: 1.55; }
.gera-contact-consent input { width: 15px; height: 15px; margin: 2px 0 0; accent-color: var(--gold); }
.gera-contact-consent a { color: var(--navy); border-bottom: 1px solid var(--gold); font-weight: 800; }
.gera-contact-submit { margin-top: 21px; border: 0; cursor: pointer; }
.gera-contact-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.cookie-consent { position: fixed; z-index: 90; right: 24px; bottom: 24px; left: 24px; display: flex; justify-content: center; pointer-events: none; }
.cookie-consent[hidden] { display: none; }
.cookie-card { width: min(760px, 100%); padding: 20px 25px; color: var(--navy); background: #fff; border: 1px solid #dce4e8; border-top: 3px solid var(--gold); box-shadow: 0 18px 48px rgba(0,18,36,.24); pointer-events: auto; }
.cookie-kicker { margin: 0 0 4px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.cookie-card h2 { margin: 0; color: var(--navy); font-size: 22px; font-weight: 800; line-height: 1.18; letter-spacing: -.045em; }
.cookie-card > p:not(.cookie-kicker), .cookie-setting p { margin: 6px 0 0; color: var(--text); font-size: 12px; font-weight: 500; line-height: 1.58; }
.cookie-policy-link { display: inline-flex; gap: 9px; margin-top: 10px; color: var(--navy); border-bottom: 1px solid var(--gold); font-size: 11px; font-weight: 800; }
.cookie-policy-link span { color: var(--gold); font-size: 15px; line-height: .9; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.cookie-button { flex: 1 1 145px; min-height: 40px; padding: 10px 13px; color: var(--navy); background: #fff; border: 1px solid #bdcbd4; border-radius: 2px; cursor: pointer; font: 800 10px/1 var(--font); letter-spacing: .035em; text-transform: uppercase; transition: color .18s ease, background .18s ease, border-color .18s ease; }
.cookie-button:hover, .cookie-button:focus-visible { color: var(--white); background: var(--navy); border-color: var(--navy); }
.cookie-preferences-details, .cookie-action-form { min-width: 0; flex: 1 1 145px; margin: 0; }
.cookie-preferences-details[open] { flex-basis: 100%; }
.cookie-preferences-details > summary { display: flex; align-items: center; justify-content: center; list-style: none; }
.cookie-preferences-details > summary::-webkit-details-marker { display: none; }
.cookie-action-form .cookie-button { width: 100%; }
.cookie-settings { padding-top: 16px; margin-top: 12px; border-top: 1px solid #e1e7ea; }
.cookie-settings > h2 { margin-bottom: 14px; }
.cookie-setting { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; border-top: 1px solid #e1e7ea; cursor: pointer; }
.cookie-setting b { color: var(--navy); font-size: 13px; font-weight: 800; }
.cookie-setting p { max-width: 530px; }
.cookie-setting input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.cookie-toggle { position: relative; display: inline-block; width: 40px; height: 22px; flex: 0 0 auto; background: #cbd6dc; border-radius: 99px; transition: background .18s ease; }
.cookie-toggle::after { position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; content: ''; background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,18,36,.2); transition: transform .18s ease; }
.cookie-setting input:checked + .cookie-toggle { background: var(--gold); }
.cookie-setting input:checked + .cookie-toggle::after { transform: translateX(18px); }
.cookie-setting.is-required { cursor: default; }
.cookie-setting.is-required > span { color: #687a87; font-size: 10px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }

@media (max-width: 900px) {
  .desktop-nav { gap: 18px; }
  .site-header, .header-inner { height: 67px; }
  .header-inner { position: relative; justify-content: center; }
  .brand img { width: 143px; }
  .site-header .desktop-nav { display: none; }
  .header-inner > .language-switcher { display: none; }
  .mobile-menu { position: absolute; top: 12px; right: 6px; display: block; }
  .mobile-menu-toggle { display: flex; width: 42px; height: 42px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; padding: 0; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.32); border-radius: 3px; cursor: pointer; list-style: none; }
  .mobile-menu-toggle::-webkit-details-marker { display: none; }
  .mobile-menu-toggle > span:not(.screen-reader-text) { display: block; width: 17px; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .mobile-menu[open] .mobile-menu-toggle > span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
  .mobile-menu[open] .mobile-menu-toggle > span:nth-of-type(3) { opacity: 0; }
  .mobile-menu[open] .mobile-menu-toggle > span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
  .mobile-nav { position: fixed; z-index: 19; top: 67px; right: 0; left: 0; flex-direction: column; padding: 16px 20px 22px; color: var(--white); background: #00182f; border-top: 1px solid rgba(255,255,255,.12); box-shadow: 0 16px 28px rgba(0,13,28,.24); }
  .mobile-menu[open] .mobile-nav { display: flex; }
  .mobile-nav > a { padding: 12px 3px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 13px; font-weight: 700; letter-spacing: .025em; text-transform: uppercase; }
  .mobile-nav a:hover { color: var(--gold); }
  .mobile-nav-group { border-bottom: 1px solid rgba(255,255,255,.1); }
  .mobile-nav-group summary { display: flex; align-items: center; justify-content: space-between; padding: 12px 3px; cursor: pointer; font-size: 13px; font-weight: 700; letter-spacing: .025em; list-style: none; text-transform: uppercase; }
  .mobile-nav-group summary::-webkit-details-marker { display: none; }
  .mobile-nav-group summary span { color: var(--gold); font-size: 18px; font-weight: 400; line-height: 1; transition: transform .2s ease; }
  .mobile-nav-group[open] summary span { transform: rotate(45deg); }
  .mobile-nav-group a { display: block; padding: 9px 12px; color: #d7e3eb; font-size: 11px; font-weight: 700; letter-spacing: .015em; line-height: 1.4; text-transform: uppercase; }
  .mobile-nav-group a:last-child { padding-bottom: 15px; }
  .mobile-language-switcher { display: inline-flex; align-self: flex-start; margin: 14px 0 2px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .organization-departments { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding-top: 0; }
  .organization-departments::before, .organization-department::before { display: none; }
  .organization-department { min-height: 206px; }
  .career-layout { grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr); gap: 28px; }
  .project-intro { gap: 24px; }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 248px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, minmax(0, 1fr)); gap: 30px; }
}

@media (max-width: 680px) {
  .site-wrap, .hero-content { width: calc(100% - 40px); }
  /* Keep the opening view within the hero below the fixed mobile header. */
  .hero, .hero-content { min-height: calc(100svh - 67px); }
  .hero-media { object-position: 64% center; }
  .hero-content { padding-bottom: 26px; }
  .hero h2 { font-size: 31px; }
  .button-row { gap: 10px; }
  .button { padding: 10px 12px; font-size: 9px; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-grid article { padding: 22px 17px 20px; }
  .service-icon { width: 52px; height: 52px; }
  .service-icon svg { width: 31px; height: 31px; }
  .service-grid h3 { margin-top: 20px; font-size: 17px; }
  .service-grid p { height: calc(6 * 1.75em); font-size: 12px; }
  .projects { padding: 55px 0 38px; }
  .project-intro { display: grid; grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .project-intro h2 { font-size: 42px; }
  .project-filters { width: 100%; gap: 7px; }
  .project-filters button { flex: 1 1 auto; padding-right: 8px; padding-left: 8px; font-size: 9px; }
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: 248px; gap: 12px; margin-top: 31px; }
  .projects .project-grid[data-project-filter-active="all"] .project-card:nth-child(n+4) { display: none; }
  .project-card { min-height: 248px; }
  .project-card-content { padding: 17px 18px; }
  .project-card-top { align-items: flex-start; gap: 10px; }
  .project-type { width: 100%; max-width: none; font-size: 9px; }
  .project-card-bottom h3 { margin-bottom: 6px; font-size: 23px; }
  .project-archive-actions { justify-content: flex-start; margin-top: 22px; }
  .project-archive-actions .button { min-width: 0; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 29px; }
  .process-grid article { min-height: 174px; padding: 17px 10px 14px; }
  .process-icon { width: 52px; height: 52px; margin-bottom: 12px; }
  .process-icon svg { width: 30px; height: 30px; }
  .process-grid p { font-size: 11px; }
  .career-section { padding: 38px 0 46px; }
  .career-layout { grid-template-columns: 1fr; gap: 26px; }
  .career-story { padding: 0; }
  .career-story h2 { font-size: 35px; }
  .career-principles { gap: 11px; margin-top: 25px; }
  .career-principles article { padding: 16px 17px 16px 19px; }
  .career-application-form { padding: 30px 24px; }
  .organization-section { padding: 38px 0 46px; }
  .organization-chart { padding: 30px 20px 22px; }
  .organization-lead { width: 100%; min-height: 48px; font-size: 12px; }
  .organization-link { height: 22px; }
  .organization-departments { grid-template-columns: 1fr; gap: 12px; }
  .organization-department { min-height: 0; padding: 0 18px 19px; }
  .organization-department h2 { min-height: 53px; font-size: 15px; }
  .organization-department ul { gap: 8px; padding-top: 15px; }
  .contact-strip .site-wrap { display: block; }
  .contact-strip .button { margin-top: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-legal { gap: 14px 20px; }
  .policy-page { min-height: calc(100vh - 67px); padding: 56px 0; }
  .policy-content { padding: 28px 22px; }
  .project-archive-page { min-height: calc(100vh - 67px); padding: 54px 0 64px; }
  .project-back-link { margin-bottom: 31px; }
  .project-archive-grid { margin-top: 31px; }
  .inner-page { min-height: calc(100vh - 67px); }
  .inner-hero { padding: 50px 0 55px; }
  .inner-hero .site-wrap { width: calc(100% - 40px); margin: 0 auto; }
  .inner-hero h1 { font-size: clamp(36px, 11vw, 50px); }
  .inner-hero .site-wrap > p:last-child { margin-top: 18px; font-size: 14px; }
  .inner-page-content { padding: 38px 0 44px; }
  .inner-page-grid { grid-template-columns: 1fr; gap: 31px; }
  .inner-page-copy { gap: 28px; }
  .inner-content-block { padding-bottom: 28px; }
  .inner-content-block h2 { font-size: 27px; }
  .inner-content-block p { font-size: 14px; }
  .inner-page-sidebar { padding: 24px 21px; }
  .construction-bottom-banner { height: 128px; margin-top: 31px; }
  .inner-link-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 34px; }
  .inner-link-card { min-height: 150px; padding: 21px; }
  .contact-page-content { grid-template-columns: 1fr; gap: 16px; padding: 38px 0 46px; }
  .contact-page-card { padding: 30px 24px; }
  .contact-location { grid-template-columns: 1fr; gap: 12px; padding: 0 0 46px; }
  .contact-location-copy { min-height: 0; padding: 26px 24px; }
  .contact-location-copy h2 { font-size: 25px; }
  .contact-map, .contact-map iframe { min-height: 235px; }
  .contact-phone { font-size: 20px; }
  .gera-contact-form-wrap { padding: 30px 24px; }
  .gera-contact-fields { grid-template-columns: 1fr; gap: 14px; }
  .cookie-consent { right: 12px; bottom: 12px; left: 12px; }
  .cookie-card { padding: 18px 19px; }
  .cookie-card h2 { font-size: 21px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-button { width: 100%; }
  .cookie-preferences-details, .cookie-action-form { width: 100%; }
  .cookie-setting { align-items: flex-start; }
}

@media (max-width: 520px) {
  .service-copy-desktop { display: none; }
  .service-copy-mobile { display: inline; }
}

@media (max-width: 380px) {
  .language-option { width: 29px; justify-content: center; padding: 5px 4px; }
  .language-code { display: none; }
}

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