:root {
  --ink: #11100e;
  --ink-soft: #24211d;
  --paper: #f3efe8;
  --paper-2: #e9e2d7;
  --paper-3: #ddd2c4;
  --white: #fffdf8;
  --muted: #70685e;
  --line: rgba(17, 16, 14, .18);
  --line-light: rgba(255, 253, 248, .22);
  --accent: #c5760a;
  --accent-text: #965607;
  --accent-soft: #db9a3f;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --header-h: 86px;
  --max: 1500px;
  --pad: clamp(22px, 4vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); background: var(--ink); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: var(--white); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.candidate-badge {
  position: fixed;
  z-index: 1000;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(17,16,14,.76);
  color: rgba(255,255,255,.72);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .13em;
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 900;
  inset: 0 0 auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(190px, 280px) 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px var(--pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(to bottom, rgba(7,7,6,.78), rgba(7,7,6,.32));
  transition: background .35s ease, height .35s ease, border-color .35s ease;
  backdrop-filter: blur(7px);
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(14,13,12,.92);
  border-color: rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: min(225px, 100%);
  text-decoration: none;
}
.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
}
.desktop-nav a,
.header-contact,
.footer-social a,
.footer-bottom a {
  text-decoration: none;
}
.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--accent-soft);
  transition: right .25s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.48);
  font-size: 11px;
  letter-spacing: .1em;
}
.lang-button {
  appearance: none;
  border: 0;
  min-width: 30px;
  min-height: 36px;
  padding: 7px 4px;
  background: transparent;
  color: rgba(255,255,255,.5);
  cursor: pointer;
}
.lang-button.is-active { color: var(--white); }
.header-contact {
  padding: 10px 0;
  color: var(--white);
  font-size: 12px;
  white-space: nowrap;
  border-bottom: 1px solid var(--accent-soft);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
  transition: transform .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 850;
  inset: var(--header-h) 0 auto;
  padding: 22px var(--pad) 34px;
  background: rgba(14,13,12,.97);
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: var(--white);
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 28px;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #0b0a09;
}
.hero-media,
.hero-fallback,
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-fallback,
.hero-video {
  object-fit: cover;
  object-position: 52% 50%;
}
.hero-fallback { filter: saturate(.88) contrast(1.02); }
.hero-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease;
  filter: saturate(.88) contrast(1.03);
}
.hero-video.is-ready { opacity: 1; }
.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(9,8,7,.84) 0%, rgba(9,8,7,.62) 38%, rgba(9,8,7,.18) 72%, rgba(9,8,7,.34) 100%),
    linear-gradient(0deg, rgba(9,8,7,.72) 0%, transparent 42%),
    linear-gradient(180deg, rgba(9,8,7,.36) 0%, transparent 28%);
}
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(980px, calc(100% - 2 * var(--pad)));
  height: 100%;
  padding: calc(var(--header-h) + 60px) 0 clamp(118px, 16vh, 170px) var(--pad);
}
.hero-eyebrow,
.kicker {
  margin: 0 0 22px;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-eyebrow { color: rgba(255,255,255,.72); }
.hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 126px);
  line-height: .87;
  font-weight: 400;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero-body {
  max-width: 690px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-ghost { border: 1px solid rgba(255,255,255,.52); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--white); }
.btn-detail { margin-left: 10px; color: rgba(17,16,14,.64); font-size: 10px; }
.hero-bottom {
  position: absolute;
  z-index: 4;
  left: var(--pad);
  right: var(--pad);
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.video-toggle,
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
}
.video-toggle { cursor: pointer; padding: 10px 0; }
.video-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  font-size: 9px;
}
.scroll-cue span:last-child { color: var(--accent-soft); font-size: 18px; }

.section-shell {
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .78fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: center;
  padding-top: clamp(90px, 12vw, 190px);
  padding-bottom: clamp(100px, 12vw, 190px);
}
.kicker { color: var(--accent-text); }
.kicker-light { color: var(--accent-soft); }
.intro h2,
.section-heading h2,
.area h2,
.contact h2,
.approach h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .99;
  text-wrap: balance;
}
.intro h2 { font-size: clamp(48px, 6vw, 90px); }
.intro-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 30px;
  margin-top: 44px;
  color: var(--muted);
  font-size: 16px;
}
.intro-text p { margin: 0; }
.fact-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.fact-pair div { display: flex; align-items: baseline; gap: 12px; }
.fact-pair strong {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  font-weight: 400;
}
.fact-pair span { max-width: 130px; color: var(--muted); font-size: 12px; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }
.intro-figure { margin: 0; align-self: stretch; }
.intro-figure img {
  width: 100%;
  height: clamp(620px, 72vw, 940px);
  object-fit: cover;
  object-position: center 54%;
}
.intro-figure figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.work {
  padding-top: clamp(90px, 10vw, 150px);
  padding-bottom: clamp(120px, 14vw, 220px);
  border-top: 1px solid var(--line);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr);
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 110px);
}
.section-heading h2 { font-size: clamp(52px, 6vw, 94px); }
.section-heading > p {
  max-width: 520px;
  justify-self: end;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  column-gap: clamp(16px, 2vw, 34px);
  row-gap: clamp(50px, 7vw, 105px);
  align-items: start;
}
.portfolio-item { margin: 0; }
.portfolio-item button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .45s ease;
}
.portfolio-item button:hover img { transform: scale(1.018); filter: saturate(1.04); }
.photo-index {
  position: absolute;
  right: 12px;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: rgba(17,16,14,.82);
  color: var(--white);
  font-size: 10px;
  letter-spacing: .08em;
  backdrop-filter: blur(8px);
}
.item-1 { grid-column: 1 / span 6; }
.item-1 button { aspect-ratio: 5 / 6; }
.item-2 { grid-column: 8 / span 5; margin-top: 110px; }
.item-2 button { aspect-ratio: 4 / 5; }
.item-3 { grid-column: 2 / span 4; }
.item-3 button { aspect-ratio: 4 / 5; }
.item-4 { grid-column: 7 / span 6; margin-top: -10px; }
.item-4 button { aspect-ratio: 5 / 6; }
.item-5 { grid-column: 1 / span 5; margin-top: 70px; }
.item-5 button { aspect-ratio: 4 / 5; }
.item-6 { grid-column: 7 / span 4; }
.item-6 button { aspect-ratio: 3 / 4; }
.item-7 { grid-column: 9 / span 4; margin-top: 80px; }
.item-7 button { aspect-ratio: 4 / 5; }
.item-8 { grid-column: 3 / span 5; margin-top: -60px; }
.item-8 button { aspect-ratio: 4 / 5; }

.services {
  padding-top: clamp(100px, 12vw, 180px);
  padding-bottom: clamp(110px, 13vw, 190px);
  border-top: 1px solid var(--line);
}
.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}
.service-list li {
  display: grid;
  grid-template-columns: 70px minmax(280px,.8fr) minmax(300px,1.2fr);
  gap: clamp(24px, 5vw, 90px);
  padding: 34px 0 36px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-no { color: var(--accent-text); font-size: 11px; letter-spacing: .15em; }
.service-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 50px);
  line-height: 1.02;
  font-weight: 400;
}
.service-list p { max-width: 650px; margin: 0; color: var(--muted); }

.approach {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.approach::before {
  content: "HD";
  position: absolute;
  right: -2vw;
  bottom: -13vw;
  color: rgba(255,255,255,.025);
  font-family: var(--serif);
  font-size: 48vw;
  line-height: .7;
  pointer-events: none;
}
.approach-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(360px,.65fr);
  gap: clamp(60px, 10vw, 160px);
  padding-top: clamp(110px, 14vw, 210px);
  padding-bottom: clamp(120px, 14vw, 220px);
}
.approach h2 { max-width: 900px; font-size: clamp(58px, 7.2vw, 112px); }
.approach-copy { align-self: end; }
.approach-copy > p { margin: 0; color: rgba(255,255,255,.64); font-size: 17px; }
.approach blockquote {
  margin: 56px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line-light);
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.05;
}

.process {
  padding-top: clamp(105px, 12vw, 180px);
  padding-bottom: clamp(120px, 13vw, 190px);
}
.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}
.process-list li {
  min-height: 310px;
  padding: 24px 28px 24px 0;
  border-right: 1px solid var(--line);
}
.process-list li + li { padding-left: 28px; }
.process-list li:last-child { border-right: 0; }
.process-list span { color: var(--accent-text); font-size: 11px; letter-spacing: .15em; }
.process-list h3 {
  margin: 64px 0 18px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
  font-weight: 400;
}
.process-list p { margin: 0; color: var(--muted); font-size: 14px; }

.area {
  display: grid;
  grid-template-columns: minmax(430px,.78fr) minmax(0,1.22fr);
  min-height: 720px;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.area-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px) var(--pad);
}
.area h2 { font-size: clamp(50px, 5.7vw, 88px); }
.area-copy > p:not(.kicker) { max-width: 620px; margin: 35px 0 0; color: var(--muted); }
.area-cities { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 35px; }
.area-cities span { padding-bottom: 3px; border-bottom: 1px solid rgba(17,16,14,.45); font-size: 12px; letter-spacing: .05em; }
.text-link {
  display: inline-flex;
  gap: 12px;
  width: fit-content;
  margin-top: 44px;
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--accent);
}
.map-wrap {
  position: relative;
  min-height: 720px;
  background: #d7d0c6;
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 720px; border: 0; filter: grayscale(.84) sepia(.12) contrast(.92); }
.map-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 20px;
  background: rgba(17,16,14,.88);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.map-label strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.map-label span { color: rgba(255,255,255,.65); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.contact {
  padding-top: clamp(110px, 13vw, 190px);
  padding-bottom: clamp(120px, 14vw, 210px);
}
.contact-intro { max-width: 1050px; }
.contact h2 { font-size: clamp(64px, 8vw, 126px); }
.contact-intro > p:last-child { max-width: 680px; margin: 34px 0 0; color: var(--muted); font-size: 18px; }
.contact-actions {
  margin-top: clamp(70px, 8vw, 120px);
  border-top: 1px solid var(--ink);
}
.contact-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 100px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding .2s ease, background .2s ease;
}
.contact-row:hover { padding-inline: 15px; background: rgba(197,118,10,.06); }
.contact-row > span:first-child { color: var(--accent-text); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.contact-row strong { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 52px); font-weight: 400; }
.contact-row > span:last-child { font-size: 24px; }
.contact-details {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 35px;
  margin-top: 50px;
}
.contact-details div { display: flex; flex-direction: column; gap: 7px; }
.contact-details span { color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.contact-details a { width: fit-content; color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.contact-details strong { font-weight: 500; }

.site-footer {
  padding: 70px var(--pad) 34px;
  background: var(--ink);
  color: var(--white);
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(230px, 420px) 1fr;
  gap: 80px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding-bottom: 70px;
}
.footer-brand img { width: min(390px, 100%); }
.footer-social {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: end;
  gap: 22px 32px;
  align-items: end;
}
.footer-social > span { color: rgba(255,255,255,.38); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-social a { display: flex; flex-direction: column; font-size: 13px; }
.footer-social small { color: rgba(255,255,255,.45); font-size: 9px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.48);
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.58); }

.mobile-contact { display: none; }

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(8,8,7,.97);
  color: var(--white);
  overflow: hidden;
}
.lightbox::backdrop { background: rgba(0,0,0,.92); }
.lightbox figure {
  position: absolute;
  inset: 65px 85px 45px;
  display: grid;
  place-items: center;
  margin: 0;
}
.lightbox img { max-width: 100%; max-height: calc(100vh - 140px); object-fit: contain; }
.lightbox figcaption { position: absolute; left: 0; bottom: 0; color: rgba(255,255,255,.55); font-size: 11px; }
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.lightbox-close { top: 18px; right: 24px; width: 48px; height: 48px; font-size: 38px; font-weight: 200; }
.lightbox-nav { top: 50%; width: 60px; height: 60px; transform: translateY(-50%); font-size: 28px; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-count { position: absolute; right: 26px; bottom: 16px; margin: 0; color: rgba(255,255,255,.55); font-size: 11px; letter-spacing: .12em; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 4px; }

@media (min-width: 1700px) {
  .hero-content { width: 1150px; }
  .hero-fallback, .hero-video { object-position: 50% 48%; }
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 220px 1fr auto; }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 10px; }
  .header-contact { display: none; }
  .intro { grid-template-columns: 1fr .8fr; gap: 55px; }
  .intro-text { grid-template-columns: 1fr; }
  .service-list li { grid-template-columns: 50px minmax(240px,.9fr) 1.1fr; gap: 35px; }
  .approach-inner { grid-template-columns: 1fr .68fr; gap: 60px; }
  .footer-social { grid-template-columns: repeat(2, auto); }
}

@media (max-width: 940px) {
  :root { --header-h: 74px; }
  .site-header { grid-template-columns: minmax(165px, 220px) 1fr; gap: 15px; }
  .desktop-nav { display: none; }
  .header-actions { justify-self: end; }
  .menu-toggle { display: block; }
  .hero-content { width: calc(100% - 2 * var(--pad)); padding-bottom: 145px; }
  .hero h1 { font-size: clamp(58px, 12vw, 102px); }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9,8,7,.8), rgba(9,8,7,.2)),
      linear-gradient(0deg, rgba(9,8,7,.78), rgba(9,8,7,.05) 55%),
      linear-gradient(180deg, rgba(9,8,7,.4), transparent 30%);
  }
  .intro { grid-template-columns: 1fr; }
  .intro-copy { max-width: 820px; }
  .intro-text { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .intro-figure { width: min(80%, 720px); margin-left: auto; }
  .intro-figure img { height: auto; aspect-ratio: 3/4; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .section-heading > p { justify-self: start; }
  .portfolio-grid { column-gap: 18px; row-gap: 55px; }
  .item-1 { grid-column: 1 / span 7; }
  .item-2 { grid-column: 8 / span 5; margin-top: 80px; }
  .item-3 { grid-column: 1 / span 5; }
  .item-4 { grid-column: 6 / span 7; }
  .item-5 { grid-column: 1 / span 6; margin-top: 20px; }
  .item-6 { grid-column: 7 / span 6; }
  .item-7 { grid-column: 8 / span 5; margin-top: 20px; }
  .item-8 { grid-column: 1 / span 7; margin-top: -60px; }
  .service-list li { grid-template-columns: 45px 1fr; gap: 18px 24px; }
  .service-list p { grid-column: 2; }
  .approach-inner { grid-template-columns: 1fr; }
  .approach-copy { max-width: 700px; }
  .process-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-list li:nth-child(2) { border-right: 0; }
  .process-list li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .area { grid-template-columns: 1fr; }
  .area-copy { padding-block: 100px; }
  .map-wrap, .map-wrap iframe { min-height: 520px; }
  .contact-details { grid-template-columns: 1.2fr 1fr; }
  .contact-details div:last-child { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr; gap: 50px; }
  .footer-social { justify-content: start; }
}

@media (max-width: 680px) {
  :root { --pad: 20px; --header-h: 70px; }
  body { padding-bottom: 66px; }
  .candidate-badge { right: 8px; bottom: 74px; font-size: 8px; }
  .site-header { padding: 8px var(--pad); grid-template-columns: 150px 1fr; }
  .brand { width: 145px; }
  .language-switch { gap: 5px; }
  .lang-button { font-size: 10px; }
  .menu-toggle { width: 40px; height: 40px; }
  .header-actions { gap: 9px; }
  .mobile-menu { top: var(--header-h); }
  .hero { min-height: 700px; height: 100svh; }
  .hero-fallback, .hero-video { object-position: center 50%; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(9,8,7,.88) 0%, rgba(9,8,7,.42) 53%, rgba(9,8,7,.32) 100%),
      linear-gradient(90deg, rgba(9,8,7,.28), rgba(9,8,7,.06));
  }
  .hero-content {
    width: calc(100% - 2 * var(--pad));
    padding: calc(var(--header-h) + 50px) 0 142px var(--pad);
  }
  .hero-eyebrow { max-width: 320px; margin-bottom: 16px; font-size: 9px; }
  .hero h1 { max-width: 500px; font-size: clamp(53px, 17vw, 80px); line-height: .9; }
  .hero-body { margin-top: 22px; font-size: 16px; line-height: 1.48; }
  .hero-ctas { display: grid; grid-template-columns: 1fr; width: min(100%, 360px); margin-top: 26px; }
  .btn { min-height: 50px; }
  .btn-detail { display: none; }
  .hero-bottom { left: var(--pad); right: var(--pad); bottom: 82px; }
  .scroll-cue { display: none; }
  .video-toggle { font-size: 9px; }
  .intro { padding-top: 80px; padding-bottom: 100px; gap: 55px; }
  .intro h2 { font-size: clamp(46px, 13vw, 68px); }
  .intro-text { grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
  .fact-pair { margin-top: 34px; }
  .fact-pair div { flex-direction: column; align-items: flex-start; gap: 5px; }
  .fact-pair strong { font-size: 48px; }
  .intro-figure { width: 100%; }
  .section-heading { margin-bottom: 54px; }
  .section-heading h2 { font-size: clamp(46px, 13vw, 68px); }
  .portfolio-grid { display: block; }
  .portfolio-item { width: 100%; margin: 0 0 28px; }
  .portfolio-item:nth-child(even) { width: 86%; margin-left: auto; }
  .portfolio-item:nth-child(3n) { width: 92%; }
  .portfolio-item button { aspect-ratio: 4 / 5 !important; }
  .work { padding-top: 82px; padding-bottom: 100px; }
  .services { padding-top: 85px; padding-bottom: 100px; }
  .service-list li { grid-template-columns: 34px 1fr; padding: 26px 0 30px; }
  .service-list h3 { font-size: 32px; }
  .service-list p { font-size: 14px; }
  .approach-inner { padding-top: 88px; padding-bottom: 105px; }
  .approach h2 { font-size: clamp(52px, 14vw, 76px); }
  .approach-copy > p { font-size: 15px; }
  .approach blockquote { margin-top: 38px; font-size: 34px; }
  .process { padding-top: 88px; padding-bottom: 100px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li,
  .process-list li + li { min-height: 0; padding: 24px 0 34px; border-right: 0; border-top: 0; border-bottom: 1px solid var(--line); }
  .process-list h3 { margin-top: 30px; }
  .area-copy { padding: 82px var(--pad); }
  .area h2 { font-size: clamp(46px, 13vw, 68px); }
  .map-wrap, .map-wrap iframe { min-height: 430px; }
  .map-label { left: 16px; bottom: 16px; }
  .contact { padding-top: 88px; padding-bottom: 105px; }
  .contact h2 { font-size: clamp(56px, 15vw, 84px); }
  .contact-actions { margin-top: 55px; }
  .contact-row { grid-template-columns: 70px 1fr auto; min-height: 84px; gap: 10px; }
  .contact-row strong { font-size: clamp(18px, 5vw, 26px); overflow-wrap: anywhere; }
  .contact-details { grid-template-columns: 1fr; gap: 26px; }
  .contact-details div:last-child { grid-column: auto; }
  .site-footer { padding-top: 55px; padding-bottom: 30px; }
  .footer-top { padding-bottom: 52px; }
  .footer-brand img { width: 280px; }
  .footer-social { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-social > span { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .mobile-contact {
    position: fixed;
    z-index: 950;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 66px;
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(14,13,12,.96);
    color: var(--white);
    border-top: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
  }
  .mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-right: 1px solid rgba(255,255,255,.1);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .mobile-contact a:last-child { border-right: 0; }
  .lightbox figure { inset: 58px 18px 58px; }
  .lightbox-nav { top: auto; bottom: 8px; transform: none; width: 52px; height: 44px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-count { right: 50%; transform: translateX(50%); bottom: 20px; }
  .lightbox figcaption { display: none; }
}

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


/* Candidate 04 — deep mobile/desktop QA refinements */
a, button { touch-action: manipulation; }
.site-header,
.candidate-badge,
.photo-index,
.map-label,
.mobile-contact { -webkit-backdrop-filter: inherit; }
.desktop-nav a { padding: 12px 0; }
.lang-button { min-height: 44px; }
.header-contact { min-height: 44px; }
.btn-detail-light { color: rgba(255,255,255,.66); }
.text-link { min-height: 44px; align-items: center; margin-top: 36px; }
.contact-details a { min-height: 36px; display: inline-flex; align-items: center; }
.footer-social a { min-height: 44px; justify-content: center; }
.footer-bottom a { min-height: 44px; display: inline-flex; align-items: center; }
.footer-brand img { height: auto; }
.area-copy > p:not(.kicker) { color: #675f56; }
.footer-social > span { color: rgba(255,255,255,.52); }
.mobile-menu { max-height: calc(100svh - var(--header-h)); overflow-y: auto; overscroll-behavior: contain; }
body.menu-open { overflow: hidden; }

@media (max-width: 940px) {
  .site-header.is-scrolled { height: var(--header-h); }
}

@media (max-width: 680px) {
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  .site-header {
    padding-left: max(var(--pad), env(safe-area-inset-left));
    padding-right: max(var(--pad), env(safe-area-inset-right));
  }
  .candidate-badge { top: calc(var(--header-h) + 8px); bottom: auto; max-width: calc(100vw - 16px); }
  .lang-button { min-width: 34px; min-height: 44px; padding: 8px 3px; }
  .menu-toggle { width: 44px; height: 44px; }
  .mobile-contact {
    opacity: 0;
    transform: translateY(calc(100% + env(safe-area-inset-bottom)));
    pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
  }
  .mobile-contact.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .contact-details a { min-height: 44px; }
  .footer-social a { padding-block: 7px; }
  .footer-bottom a { padding-block: 8px; }
}

@media (max-width: 360px) {
  :root { --pad: 18px; }
  .site-header { grid-template-columns: 132px 1fr; }
  .brand { width: 128px; }
  .header-actions { gap: 4px; }
  .language-switch { gap: 2px; }
  .lang-button { min-width: 32px; }
  .hero h1 { font-size: clamp(48px, 15.5vw, 58px); line-height: .91; }
  .hero-body { font-size: 15px; }
  .contact-row {
    grid-template-columns: minmax(0,1fr) auto;
    gap: 3px 10px;
    min-height: 92px;
    padding-block: 14px;
  }
  .contact-row > span:first-child { grid-column: 1 / -1; }
  .contact-row strong { grid-column: 1; font-size: clamp(18px, 5.1vw, 22px); }
  .contact-row > span:last-child { grid-column: 2; grid-row: 2; }
  .contact-row[href^="mailto:"] strong { font-size: 17px; letter-spacing: -.02em; }
}

@media (max-width: 360px) and (max-height: 700px) {
  .hero-content { padding-bottom: 90px; }
  .hero-eyebrow { margin-bottom: 12px; font-size: 8px; }
  .hero-body { margin-top: 16px; line-height: 1.42; }
  .hero-ctas { margin-top: 18px; }
  .hero-bottom { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-contact { transition: none; }
}


/* Candidate 05 — final mobile audit refinements */
.footer-social small { color: rgba(255,255,255,.62); }
.footer-bottom { color: rgba(255,255,255,.60); }
@media (max-width: 680px) and (max-height: 620px) {
  .hero-content { padding-bottom: 96px; }
}

/* Candidate 06 — premium mobile refinement */
/* Make the supplied black-background logo visually integrate with dark surfaces without a visible rectangle. */
.brand img,
.footer-brand img {
  mix-blend-mode: screen;
  background: transparent;
}

/* Hero: let the real project video lead. */
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8,7,6,.58) 0%, rgba(8,7,6,.28) 38%, rgba(8,7,6,.06) 72%, rgba(8,7,6,.16) 100%),
    linear-gradient(0deg, rgba(8,7,6,.56) 0%, rgba(8,7,6,.06) 44%),
    linear-gradient(180deg, rgba(8,7,6,.22) 0%, transparent 24%);
}
.hero-content {
  width: min(760px, calc(100% - 2 * var(--pad)));
  padding-bottom: clamp(120px, 15vh, 155px);
}
.hero-eyebrow {
  margin-bottom: 16px;
  color: rgba(255,255,255,.76);
  letter-spacing: .22em;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 6.3vw, 96px);
  line-height: .92;
}
.hero-body {
  max-width: 590px;
  margin-top: 22px;
  font-size: clamp(16px, 1.15vw, 19px);
  color: rgba(255,255,255,.76);
}
.hero-ctas {
  margin-top: 24px;
}
.hero-primary {
  min-height: 46px;
  width: fit-content;
  gap: 18px;
  padding-inline: 20px;
  background: rgba(255,253,248,.94);
  font-size: 11px;
}
.video-toggle { opacity: .82; }
.candidate-badge {
  opacity: .55;
  padding: 5px 7px;
  font-size: 8px;
  border-color: rgba(255,255,255,.16);
  background: rgba(17,16,14,.42);
}

/* Regional map: warmer, quieter, and intentionally scoped to Tampa/Gulf Coast. */
.map-wrap iframe {
  filter: grayscale(.65) sepia(.08) contrast(.94) saturate(.72);
}
.map-label {
  max-width: calc(100% - 56px);
}
.map-label strong { font-size: 18px; }
.map-label span { line-height: 1.45; }

/* Footer social links all use the same structure and hierarchy. */
.footer-social {
  display: block;
  justify-self: end;
  min-width: min(100%, 520px);
}
.footer-social > span {
  display: block;
  margin-bottom: 18px;
}
.footer-social-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-social-links a:last-child { border-right: 0; }
.footer-social-links a span { color: var(--accent-soft); }

@media (max-width: 940px) {
  .footer-social { justify-self: start; width: 100%; }
}

@media (max-width: 680px) {
  .candidate-badge { display: none; }
  .site-header {
    background: linear-gradient(to bottom, rgba(10,9,8,.66), rgba(10,9,8,.10));
    border-bottom-color: rgba(255,255,255,.10);
    backdrop-filter: blur(4px);
  }
  .site-header.is-scrolled {
    background: rgba(14,13,12,.94);
    backdrop-filter: blur(18px);
  }
  .brand { width: 132px; }
  .hero { min-height: 620px; }
  .hero-fallback,
  .hero-video { object-position: 53% 48%; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8,7,6,.64) 0%, rgba(8,7,6,.10) 48%, rgba(8,7,6,.18) 100%),
      linear-gradient(90deg, rgba(8,7,6,.26), rgba(8,7,6,.02) 72%);
  }
  .hero-content {
    justify-content: flex-end;
    width: calc(100% - 2 * var(--pad));
    padding: calc(var(--header-h) + 28px) 0 124px var(--pad);
  }
  .hero-eyebrow {
    max-width: none;
    margin-bottom: 12px;
    font-size: 8px;
    letter-spacing: .20em;
  }
  .hero h1 {
    max-width: 330px;
    font-size: clamp(42px, 12.8vw, 58px);
    line-height: .94;
    letter-spacing: -.035em;
  }
  .hero-body { display: none; }
  .hero-ctas {
    width: auto;
    margin-top: 18px;
  }
  .hero-primary {
    min-height: 44px;
    width: fit-content;
    max-width: 100%;
    padding: 0 16px;
    font-size: 9px;
    letter-spacing: .095em;
  }
  .hero-bottom { bottom: 78px; }
  .video-toggle {
    padding: 6px 0;
    font-size: 8px;
  }
  .video-icon { width: 25px; height: 25px; }

  .map-wrap,
  .map-wrap iframe { min-height: 390px; }
  .map-label {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 13px 15px;
  }
  .map-label strong { font-size: 17px; }
  .map-label span { font-size: 9px; }

  .footer-brand img { width: min(310px, 86vw); }
  .footer-social-links {
    grid-template-columns: 1fr;
  }
  .footer-social-links a {
    min-height: 54px;
    padding-inline: 2px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }
  .footer-social-links a:last-child { border-bottom: 0; }
}

@media (max-width: 360px) {
  .brand { width: 120px; }
  .hero h1 { font-size: 43px; }
  .hero-content { padding-bottom: 116px; }
  .hero-primary { font-size: 8.5px; }
}


/* Candidate 07 — live-device corrections */

/* Transparent header derivative. Footer keeps the original supplied asset. */
.brand img {
  mix-blend-mode: normal;
  background: transparent;
}
.footer-brand img {
  mix-blend-mode: screen;
}

/* Smaller mobile hero title so the project video remains the visual lead. */
@media (max-width: 680px) {
  .hero h1 {
    max-width: 290px;
    font-size: clamp(34px, 9.6vw, 43px);
    line-height: .96;
    letter-spacing: -.028em;
  }
  .hero-content {
    padding-bottom: 118px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    max-width: 260px;
    font-size: 35px;
  }
  .hero-content {
    padding-bottom: 112px;
  }
}


/* Candidate 08 — unified primary phone contact */
.contact-phone { cursor: default; }
.contact-phone:hover { padding-inline: 0; background: transparent; }
.contact-row-actions { display: inline-flex; align-items: center; gap: 10px; }
.contact-row-actions a {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  padding: 10px 15px; border: 1px solid var(--line); color: var(--ink); text-decoration: none;
  font-size: 10px; letter-spacing: .11em; text-transform: uppercase; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.contact-row-actions a:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
@media (max-width: 680px) {
  .contact-phone { grid-template-columns: 76px 1fr; grid-template-areas: "label number" "actions actions"; padding: 18px 0 20px; }
  .contact-phone > span:first-child { grid-area: label; }
  .contact-phone > strong { grid-area: number; }
  .contact-row-actions { grid-area: actions; padding-left: 86px; }
  .contact-row-actions a { flex: 1; }
}


/* Candidate 09 — portrait-source hero quality treatment */
.candidate-badge { display: none !important; }
.hero-ambient { display: none; }

@media (min-width: 941px) {
  .hero-media {
    background: #0b0a09;
  }
  .hero-ambient {
    display: block;
    position: absolute;
    z-index: 0;
    inset: -7%;
    width: 114%;
    height: 114%;
    object-fit: cover;
    object-position: 50% 48%;
    filter: blur(30px) saturate(.68) brightness(.48);
    transform: scale(1.04);
    opacity: .9;
  }
  .hero-fallback,
  .hero-video {
    inset: 0 clamp(52px, 6vw, 132px) 0 auto;
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center center;
    filter: saturate(.94) contrast(1.02);
    box-shadow: -28px 0 70px rgba(0,0,0,.28), 28px 0 70px rgba(0,0,0,.28);
  }
  .hero-fallback { z-index: 1; }
  .hero-video { z-index: 2; }
  .hero-overlay {
    z-index: 3;
    background:
      linear-gradient(90deg, rgba(8,7,6,.92) 0%, rgba(8,7,6,.78) 30%, rgba(8,7,6,.36) 50%, rgba(8,7,6,.06) 70%, rgba(8,7,6,.18) 100%),
      linear-gradient(0deg, rgba(8,7,6,.62) 0%, transparent 38%),
      linear-gradient(180deg, rgba(8,7,6,.28) 0%, transparent 26%);
  }
  .hero-content {
    z-index: 4;
    width: min(760px, 48vw);
  }
  .hero h1 {
    max-width: 720px;
    font-size: clamp(58px, 5.4vw, 102px);
  }
  .hero-body { max-width: 610px; }
  .hero-bottom { z-index: 5; }
}


/* Candidate 10 — desktop full-bleed hero; mobile Candidate 09 is intentionally unchanged */
@media (min-width: 941px) {
  .hero-media { background: #0b0a09; }
  .hero-ambient { display: none !important; }
  .hero-fallback, .hero-video {
    inset: 0; width: 100%; height: 100%; max-width: none;
    object-fit: cover; object-position: 50% 50%; box-shadow: none;
    filter: saturate(.94) contrast(1.02);
  }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8,7,6,.86) 0%, rgba(8,7,6,.62) 30%, rgba(8,7,6,.18) 58%, rgba(8,7,6,.08) 76%, rgba(8,7,6,.18) 100%),
      linear-gradient(0deg, rgba(8,7,6,.58) 0%, transparent 38%),
      linear-gradient(180deg, rgba(8,7,6,.24) 0%, transparent 26%);
  }
}
