:root {
  --paper: #f4f1ea;
  --paper-deep: #ebe6dc;
  --white: #fffdf8;
  --ink: #181c1e;
  --navy: #102635;
  --navy-light: #17384e;
  --steel: #71808a;
  --line: rgba(24, 28, 30, .18);
  --orange: #e45a2a;
  --orange-bright: #f36b32;
  --font-sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
::selection { background: var(--orange); color: #fff; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 18px;
  left: 20px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--orange);
  color: #fff;
  transform: translateY(-150%);
  transition: transform .16s ease;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: min(calc(100% - 112px), 1328px); margin-inline: auto; }

.site-header {
  position: sticky;
  top: -34px;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(16, 38, 53, .1);
}
.utility-bar {
  height: 34px;
  background: var(--navy);
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.utility-bar__inner, .utility-links { display: flex; align-items: center; }
.utility-bar__inner { justify-content: space-between; height: 100%; }
.utility-links { gap: 34px; }
.utility-links a { transition: color .16s ease; }
.utility-links a:hover { color: #fff; }

.main-nav { position: relative; background: rgba(244, 241, 234, .96); backdrop-filter: blur(16px); }
.main-nav__inner { display: flex; align-items: center; justify-content: space-between; min-height: 94px; }
.wordmark { display: inline-flex; align-items: center; flex: 0 0 auto; }
.wordmark img { display: block; width: 172px; height: auto; }
.nav-panel, .nav-links { display: flex; align-items: center; }
.nav-panel { gap: 34px; }
.nav-links { gap: clamp(22px, 2.6vw, 42px); }
.nav-links a {
  position: relative;
  padding-block: 10px;
  font-size: 14px;
  font-weight: 650;
}
.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .16s ease;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}
.nav-cta:hover { border-color: var(--ink); background: var(--ink); transform: translateY(-1px); }
.menu-button { display: none; }

.hero { position: relative; overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  min-height: 604px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  padding: 72px 54px 72px 0;
  animation: hero-copy .56s both ease-out;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 34px;
  color: var(--steel);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow > span { width: 50px; height: 2px; flex: 0 0 auto; background: var(--orange); }
.eyebrow--light { color: rgba(255, 255, 255, .58); }
.hero h1, .section-heading h2, .corporate__content h2, .process-intro h2, .contact-heading h2, .legal-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.05em;
}
.hero h1 { font-size: clamp(58px, 5.35vw, 82px); line-height: .95; }
.hero__rule { width: min(100%, 500px); height: 1px; margin: 34px 0 25px; background: var(--line); }
.hero__lead { max-width: 530px; margin: 0; color: var(--steel); font-size: 17px; line-height: 1.7; }
.hero__actions { display: flex; align-items: center; gap: 34px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 56px;
  border: 0;
  border-radius: 0;
  padding: 0 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: color .16s ease, background .16s ease, transform .16s ease;
}
.button--primary { background: var(--navy); color: #fff; }
.button--primary:hover { background: var(--ink); transform: translateY(-1px); }
.button--orange { width: 100%; background: var(--orange); color: #fff; }
.button--orange:hover { background: var(--orange-bright); transform: translateY(-1px); }
.phone-link {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 15px 0 9px;
  border-bottom: 1px solid var(--navy);
  font-size: 13px;
}
.phone-link strong { font-size: 15px; }
.hero__visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
  margin: 0;
  isolation: isolate;
  animation: hero-image .8s both ease-out;
}
.hero__visual > img {
  position: absolute;
  inset: 28px 0 0 30px;
  z-index: 2;
  width: calc(100% - 30px);
  height: calc(100% - 28px);
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08) brightness(.95);
}
.hero__navy-plane { position: absolute; inset: 0 auto 0 0; z-index: 1; width: 128px; background: var(--navy); }
.hero__corner {
  position: absolute;
  top: 62px;
  right: 16px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-top: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
}
.hero__visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  padding: 14px 18px;
  background: rgba(16, 38, 53, .92);
  color: #fff;
  line-height: 1.35;
}
.hero__visual figcaption span { color: rgba(255, 255, 255, .58); font-size: 9px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.hero__visual figcaption strong { font-size: 13px; }
.trust-strip { background: var(--navy); color: #fff; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 100px; }
.trust-strip__grid span { position: relative; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 650; }
.trust-strip__grid span:not(:last-child)::after { content: ""; position: absolute; right: 0; width: 1px; height: 26px; background: rgba(255, 255, 255, .18); }
.trust-strip__grid span::before { content: ""; width: 5px; height: 5px; margin-right: 14px; background: var(--orange); }

.section { padding-block: 128px; }
.services, .gallery-section { background: var(--white); }
.section-heading { margin-bottom: 56px; }
.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .65fr);
  align-items: end;
  gap: 80px;
}
.section-heading .eyebrow, .corporate__content .eyebrow, .contact-heading .eyebrow { margin-bottom: 22px; }
.section-heading h2, .corporate__content h2, .process-intro h2, .contact-heading h2 { font-size: clamp(48px, 4.4vw, 68px); line-height: .98; }
.section-heading > p, .contact-heading > p { margin: 0 0 4px; color: var(--steel); font-size: 16px; line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.service-card { grid-column: span 5; overflow: hidden; border: 1px solid rgba(16, 38, 53, .14); background: var(--paper); }
.service-card--wide { grid-column: span 7; }
.service-card__media { height: 310px; overflow: hidden; background: var(--navy); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) contrast(1.04); transition: transform .7s cubic-bezier(.2,.75,.2,1), filter .3s ease; }
.service-card:hover .service-card__media img { transform: scale(1.035); filter: saturate(.85) contrast(1.04); }
.service-card__body { display: grid; grid-template-columns: 52px 1fr; gap: 26px; padding: 34px; }
.service-card__number { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.service-card h3 { margin: -5px 0 10px; font-family: var(--font-display); font-size: 34px; font-weight: 400; letter-spacing: -.025em; line-height: 1; }
.service-card p { margin: 0; color: var(--steel); font-size: 14px; line-height: 1.75; }
.service-card--emergency { border-color: var(--navy); background: var(--navy); color: #fff; }
.service-card--emergency .service-card__media img { filter: grayscale(1) contrast(1.08) brightness(.72); }
.service-card--emergency p { color: rgba(255, 255, 255, .62); }

.process-section { padding-block: 126px; background: var(--navy); color: #fff; }
.process-layout { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: 11vw; }
.process-intro { align-self: start; position: sticky; top: 120px; }
.process-intro .eyebrow { margin-bottom: 28px; }
.process-intro > p:not(.eyebrow) { max-width: 450px; margin: 30px 0; color: rgba(255, 255, 255, .58); }
.text-link { display: inline-flex; align-items: center; gap: 24px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; }
.text-link--light { color: #fff; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, .18); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 34px; padding: 30px 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.process-list > li > span { padding-top: 6px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.process-list h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 30px; font-weight: 400; line-height: 1.1; }
.process-list p { max-width: 560px; margin: 0; color: rgba(255, 255, 255, .57); font-size: 14px; }

.corporate { background: var(--paper); }
.corporate__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); align-items: center; gap: 9vw; }
.corporate__visual { position: relative; min-height: 650px; }
.corporate__visual::before { content: ""; position: absolute; inset: 54px 44px 54px 0; background: var(--navy); }
.corporate__image-main { position: absolute; top: 0; left: 34px; z-index: 1; width: calc(100% - 34px); height: 480px; object-fit: cover; filter: grayscale(1) contrast(1.06); }
.corporate__image-detail { position: absolute; right: 0; bottom: 0; z-index: 2; width: 48%; height: 250px; border: 12px solid var(--paper); object-fit: cover; filter: saturate(.45); }
.corporate__label { position: absolute; left: 0; bottom: 52px; z-index: 3; display: grid; gap: 3px; width: 220px; padding: 22px 24px; background: var(--orange); color: #fff; }
.corporate__label strong { font-family: var(--font-display); font-size: 24px; font-weight: 400; }
.corporate__label span { font-size: 10px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.corporate__lead { margin: 30px 0 38px; color: var(--steel); font-size: 16px; line-height: 1.8; }
.principles { border-top: 1px solid var(--line); }
.principles article { display: grid; grid-template-columns: 45px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.principles article > span { padding-top: 4px; color: var(--orange); font-size: 10px; font-weight: 800; }
.principles h3 { margin: 0 0 5px; font-size: 15px; font-weight: 800; }
.principles p { margin: 0; color: var(--steel); font-size: 13px; }

.gallery-filters { display: flex; gap: 10px; margin: -18px 0 30px; overflow-x: auto; scrollbar-width: none; }
.gallery-filters::-webkit-scrollbar { display: none; }
.gallery-filters button { flex: 0 0 auto; border: 1px solid rgba(16, 38, 53, .18); border-radius: 0; padding: 10px 16px; background: transparent; color: var(--steel); cursor: pointer; font-size: 12px; font-weight: 700; transition: background .16s ease, border-color .16s ease, color .16s ease; }
.gallery-filters button:hover, .gallery-filters button.is-active { border-color: var(--navy); background: var(--navy); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-flow: dense; grid-auto-rows: 240px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border: 0; padding: 0; background: var(--navy); cursor: zoom-in; }
.gallery-item--portrait { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) contrast(1.04); transition: transform .65s cubic-bezier(.2,.75,.2,1), filter .25s ease; }
.gallery-item__overlay { position: absolute; inset: auto 0 0; display: flex; align-items: center; justify-content: space-between; padding: 46px 20px 18px; background: linear-gradient(transparent, rgba(8, 20, 29, .9)); color: #fff; text-align: left; }
.gallery-item__overlay strong { font-size: 13px; }
.gallery-item__overlay i { font-style: normal; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(.9) contrast(1.04); }

.contact-section { padding-block: 126px; background: var(--navy); color: #fff; }
.contact-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .65fr); align-items: end; gap: 80px; margin-bottom: 58px; }
.contact-heading > p { color: rgba(255, 255, 255, .58); }
.contact-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 24px; }
.locations { display: grid; gap: 16px; }
.location-card, .direct-panel { border: 1px solid rgba(255, 255, 255, .17); background: rgba(255, 255, 255, .035); }
.location-card { padding: 28px; }
.location-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.location-card__top > span { color: var(--orange); font-size: 10px; font-weight: 800; }
.location-card__top a { display: flex; gap: 12px; color: rgba(255, 255, 255, .65); font-size: 11px; font-weight: 700; transition: color .16s ease; }
.location-card__top a:hover { color: #fff; }
.location-card h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 34px; font-weight: 400; line-height: 1; }
.location-card > p { max-width: 520px; min-height: 50px; margin: 0 0 20px; color: rgba(255, 255, 255, .55); font-size: 12px; }
.location-card dl { margin: 0; border-top: 1px solid rgba(255, 255, 255, .12); }
.location-card dl > div { display: flex; justify-content: space-between; gap: 24px; padding-top: 11px; }
.location-card dt { color: rgba(255, 255, 255, .48); font-size: 11px; }
.location-card dd { margin: 0; font-size: 12px; font-weight: 700; }
.direct-contact { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; background: var(--orange); color: #fff; }
.direct-contact p { margin: 0; font-size: 12px; font-weight: 700; }
.direct-contact a { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 800; }

.direct-panel { padding: 38px; background: var(--white); color: var(--ink); }
.direct-panel__head > span { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.direct-panel__head h3 { max-width: 560px; margin: 9px 0 10px; font-family: var(--font-display); font-size: 39px; font-weight: 400; letter-spacing: -.025em; line-height: 1.05; }
.direct-panel__head p { max-width: 590px; margin: 0; color: var(--steel); font-size: 12px; }
.direct-channels { display: grid; gap: 10px; margin-top: 27px; }
.direct-channel { position: relative; display: grid; grid-template-columns: minmax(145px, .75fr) minmax(170px, 1fr); align-items: center; gap: 6px 24px; min-height: 88px; padding: 17px 54px 17px 19px; border: 1px solid rgba(16, 38, 53, .14); transition: border-color .16s ease, background .16s ease, transform .16s ease; }
.direct-channel:hover { border-color: var(--orange); background: rgba(228, 90, 42, .045); transform: translateY(-1px); }
.direct-channel > span { grid-row: span 2; color: var(--steel); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.direct-channel strong { font-size: 16px; line-height: 1.25; }
.direct-channel small { color: var(--steel); font-size: 10px; line-height: 1.4; }
.direct-channel > a { display: block; width: fit-content; max-width: 100%; }
.direct-channel > a::after { content: "↗"; position: absolute; top: 50%; right: 20px; color: var(--orange); font-size: 18px; transform: translateY(-50%); }
.direct-channel--email strong { overflow-wrap: anywhere; font-size: 14px; }
.privacy-note { margin-top: 18px; padding: 18px 20px; border-left: 3px solid var(--orange); background: var(--paper); }
.privacy-note strong { font-size: 11px; }
.privacy-note p { margin: 6px 0 10px; color: var(--steel); font-size: 10px; line-height: 1.6; }
.privacy-note a { display: inline-flex; gap: 10px; border-bottom: 1px solid rgba(16, 38, 53, .32); font-size: 10px; font-weight: 800; }

.site-footer { padding: 72px 0 22px; background: #091824; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .55fr .85fr auto; gap: 70px; padding-bottom: 64px; }
.footer-brand img { width: 230px; height: auto; filter: invert(1); }
.footer-brand p { max-width: 360px; margin: 20px 0 0; color: rgba(255, 255, 255, .48); font-size: 13px; }
.footer-grid h2 { margin: 0 0 18px; color: rgba(255, 255, 255, .42); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) a { display: block; margin-top: 9px; color: rgba(255, 255, 255, .78); font-size: 12px; transition: color .16s ease; }
.footer-grid > div:not(.footer-brand) a:hover { color: #fff; }
.footer-top { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, .22); font-size: 22px; transition: border-color .16s ease, background .16s ease; }
.footer-top:hover { border-color: var(--orange); background: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .38); font-size: 10px; }
.mobile-call { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 68px;
  background: rgba(4, 12, 18, .94);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__close { position: absolute; top: 24px; right: 28px; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, .3); background: transparent; color: #fff; cursor: pointer; font-size: 30px; }
.lightbox figure { max-width: min(1200px, 90vw); max-height: 82vh; margin: 0; }
.lightbox img { width: auto; max-width: 100%; max-height: 76vh; margin: auto; object-fit: contain; }
.lightbox figcaption { margin-top: 12px; color: rgba(255, 255, 255, .7); font-size: 12px; text-align: center; }

/* Yasal ve sonuç sayfaları */
.simple-page { min-height: 100vh; background: var(--paper); }
.simple-nav { border-bottom: 1px solid var(--line); background: var(--paper); }
.simple-nav__inner { display: flex; align-items: center; justify-content: space-between; min-height: 96px; }
.simple-back { display: flex; align-items: center; gap: 16px; font-size: 13px; font-weight: 700; }
.legal-hero { padding: 100px 0 72px; background: var(--navy); color: #fff; }
.legal-hero .eyebrow { margin-bottom: 22px; }
.legal-hero h1 { font-size: clamp(58px, 6vw, 86px); line-height: .95; }
.legal-hero .lead { max-width: 680px; margin: 28px 0 0; color: rgba(255, 255, 255, .58); }
.legal-content { display: grid; grid-template-columns: 250px minmax(0, 780px); gap: 9vw; padding-block: 100px; }
.legal-aside { align-self: start; position: sticky; top: 40px; padding-top: 16px; border-top: 2px solid var(--orange); }
.legal-aside strong { display: block; font-size: 13px; }
.legal-aside span, .legal-aside a { display: block; margin-top: 9px; color: var(--steel); font-size: 11px; }
.legal-copy section { padding: 0 0 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.legal-copy h2 { margin: 0 0 12px; font-family: var(--font-display); font-size: 33px; font-weight: 400; line-height: 1.1; }
.legal-copy p, .legal-copy li { color: #56626a; font-size: 14px; line-height: 1.85; }
.legal-copy ul { margin: 10px 0 0; padding-left: 20px; }
.legal-copy a { border-bottom: 1px solid currentColor; color: var(--navy); }
.result-page { display: grid; min-height: 100vh; grid-template-rows: auto 1fr auto; }
.result-panel { display: grid; place-items: center; padding: 90px 20px; background: var(--navy); color: #fff; text-align: center; }
.result-panel__inner { max-width: 680px; }
.result-mark { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 28px; border: 1px solid rgba(255,255,255,.3); color: var(--orange); font-size: 30px; }
.result-panel h1 { margin: 0; font-family: var(--font-display); font-size: clamp(54px, 7vw, 84px); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
.result-panel p { max-width: 560px; margin: 24px auto 34px; color: rgba(255,255,255,.58); }
.result-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.button--outline { border: 1px solid rgba(255,255,255,.35); background: transparent; color: #fff; }
.button--outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }

@keyframes hero-copy { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-image { from { opacity: 0; transform: scale(1.012); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 1100px) {
  .shell { width: min(calc(100% - 64px), 1328px); }
  .nav-panel { gap: 22px; }
  .nav-links { gap: 20px; }
  .hero__grid { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); min-height: 560px; }
  .hero__content { padding-right: 34px; }
  .hero h1 { font-size: clamp(52px, 6.2vw, 68px); }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .service-card__media { height: 270px; }
  .corporate__grid { gap: 6vw; }
  .corporate__visual { min-height: 590px; }
  .footer-grid { grid-template-columns: 1.3fr .6fr 1fr auto; gap: 36px; }
}

@media (max-width: 900px) {
  .site-header { top: 0; }
  .utility-bar { display: none; }
  .main-nav__inner { min-height: 80px; }
  .menu-button { position: relative; z-index: 2; display: grid; gap: 7px; width: 44px; height: 44px; place-content: center; border: 0; background: transparent; cursor: pointer; }
  .menu-button span { display: block; width: 23px; height: 2px; background: var(--navy); transition: transform .18s ease; }
  .menu-button.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-button.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .nav-panel { position: absolute; top: 100%; right: 0; left: 0; display: grid; gap: 24px; padding: 26px 32px 32px; border-top: 1px solid var(--line); background: var(--paper); box-shadow: 0 20px 40px rgba(16,38,53,.12); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .18s ease, transform .18s ease; }
  .nav-panel.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links { align-items: stretch; flex-direction: column; gap: 0; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-cta { min-height: 52px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { max-width: 680px; padding: 72px 0 58px; }
  .hero__visual { min-height: 480px; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; padding-block: 16px; }
  .trust-strip__grid span { min-height: 54px; justify-content: flex-start; padding-left: 20px; }
  .trust-strip__grid span:nth-child(2)::after { display: none; }
  .section-heading--split, .contact-heading, .process-layout, .corporate__grid, .contact-layout { grid-template-columns: 1fr; }
  .section-heading--split, .contact-heading { gap: 28px; }
  .service-card, .service-card--wide { grid-column: span 6; }
  .process-layout { gap: 64px; }
  .process-intro { position: static; }
  .corporate__visual { width: min(100%, 650px); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { gap: 34px; }
  .locations { grid-template-columns: 1fr 1fr; }
  .direct-contact { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.2fr .8fr 1fr auto; }
  .legal-content { grid-template-columns: 1fr; gap: 50px; }
  .legal-aside { position: static; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 74px; }
  body { padding-bottom: 62px; }
  .shell { width: min(calc(100% - 36px), 1328px); }
  .wordmark img { width: 146px; }
  .hero__content { padding: 58px 0 48px; }
  .eyebrow { gap: 12px; margin-bottom: 24px; font-size: 9px; letter-spacing: .12em; }
  .eyebrow > span { width: 30px; }
  .hero h1 { font-size: clamp(49px, 16vw, 66px); }
  .hero__lead { font-size: 15px; }
  .hero__actions { width: 100%; }
  .button--primary, .phone-link { width: 100%; }
  .phone-link { justify-content: center; }
  .hero__visual { min-height: 340px; }
  .hero__visual > img { inset: 18px 0 0 18px; width: calc(100% - 18px); height: calc(100% - 18px); }
  .hero__navy-plane { width: 70px; }
  .hero__corner { top: 38px; right: 12px; width: 28px; height: 28px; }
  .hero__visual figcaption { right: 10px; bottom: 10px; }
  .trust-strip__grid span { padding-left: 8px; font-size: 11px; }
  .trust-strip__grid span::before { margin-right: 8px; }
  .section, .process-section, .contact-section { padding-block: 86px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .corporate__content h2, .process-intro h2, .contact-heading h2 { font-size: clamp(43px, 13vw, 58px); }
  .service-grid { gap: 16px; }
  .service-card, .service-card--wide { grid-column: 1 / -1; }
  .service-card__media { height: 230px; }
  .service-card__body { grid-template-columns: 36px 1fr; gap: 12px; padding: 24px 20px; }
  .process-list li { grid-template-columns: 38px 1fr; gap: 16px; }
  .corporate__visual { min-height: 470px; }
  .corporate__image-main { left: 18px; width: calc(100% - 18px); height: 350px; }
  .corporate__image-detail { width: 54%; height: 175px; border-width: 8px; }
  .corporate__label { bottom: 18px; width: 190px; padding: 17px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .gallery-item--portrait { grid-row: span 1; }
  .locations { grid-template-columns: 1fr; }
  .direct-contact { align-items: flex-start; flex-direction: column; gap: 6px; }
  .direct-panel { padding: 26px 20px; }
  .direct-panel__head h3 { font-size: 34px; }
  .direct-channel { grid-template-columns: 1fr; gap: 4px; padding: 16px 48px 16px 16px; }
  .direct-channel > span { grid-row: auto; }
  .footer-grid { position: relative; grid-template-columns: 1fr 1fr; gap: 42px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-top { position: absolute; right: 0; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 4px; }
  .mobile-call { position: fixed; right: 0; bottom: 0; left: 0; z-index: 49; display: flex; align-items: center; justify-content: space-between; min-height: 62px; padding: 0 18px; background: var(--orange); color: #fff; box-shadow: 0 -10px 30px rgba(16,38,53,.18); }
  .mobile-call span { font-size: 11px; font-weight: 700; }
  .mobile-call strong { font-size: 14px; }
  .lightbox { padding: 60px 14px; }
  .simple-nav__inner { min-height: 80px; }
  .legal-hero { padding: 76px 0 58px; }
  .legal-hero h1 { font-size: 54px; }
  .legal-content { padding-block: 72px; }
}

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