@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/bricolage-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/bricolage-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/poppins-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/poppins-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #ffffff;
  --panel: #f3f4f3;
  --panel-strong: #eceeed;
  --text: #191d21;
  --muted: #626a70;
  --line: #dfe3e5;
  --accent: #6f8fbd;
  --accent-soft: #e5edf8;
  --danger: #bb3c3c;
  --header-h: 82px;
  --gutter: clamp(18px, 3vw, 48px);
  --display: "Bricolage Grotesque", Arial, sans-serif;
  --body: "Poppins", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
}
body:not([data-page="impressum"]):not([data-page="datenschutz"]) .legal-section,
body[data-page="home"] .project-index,
body:not([data-page="home"]) .front-showcase,
body:not([data-page="home"]) .fit-section,
body[data-page="reels"] .hero,
body[data-page="reels"] .photo-section,
body[data-page="reels"] .about-section,
body[data-page="fotos"] .hero,
body[data-page="fotos"] .project-index,
body[data-page="fotos"] .about-section,
body[data-page="about"] .hero,
body[data-page="about"] .project-index,
body[data-page="about"] .photo-section,
body[data-page="kontakt"] .hero,
body[data-page="kontakt"] .project-index,
body[data-page="kontakt"] .photo-section,
body[data-page="kontakt"] .about-section,
body[data-page="impressum"] .hero,
body[data-page="impressum"] .project-index,
body[data-page="impressum"] .photo-section,
body[data-page="impressum"] .about-section,
body[data-page="impressum"] .site-footer,
body[data-page="datenschutz"] .hero,
body[data-page="datenschutz"] .project-index,
body[data-page="datenschutz"] .photo-section,
body[data-page="datenschutz"] .about-section,
body[data-page="datenschutz"] .site-footer,
body[data-page="impressum"] .legal-panel--privacy,
body[data-page="datenschutz"] .legal-panel--imprint {
  display: none;
}
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
svg { display: block; }
#top { scroll-margin-top: calc(var(--header-h) + 16px); }
#top:focus { outline: none; }

.skip-link {
  position: fixed;
  left: var(--gutter);
  top: 12px;
  z-index: 200;
  border-radius: 999px;
  background: var(--text);
  color: white;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  transform: translateY(-160%);
  transition: transform .18s ease;
}
.skip-link:focus-visible { transform: translateY(0); outline: 2px solid var(--accent); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(25, 29, 33, .08);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 7px 24px rgba(25, 29, 33, .055);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; }
.brand img { width: 34px; height: 34px; object-fit: contain; }
.brand-name { display: grid; font-family: var(--display); font-size: 19px; font-weight: 600; line-height: .82; letter-spacing: -.04em; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 3vw, 42px); }
.site-nav a, .inquiry-trigger {
  border: 0;
  background: none;
  padding: 9px 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
}
.site-nav a { position: relative; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 1px; background: var(--text); transition: right .24s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a[aria-current="page"]::after { right: 0; }
.site-nav a:focus-visible {
  border-radius: 999px;
  outline: 2px solid var(--accent);
  outline-offset: 8px;
}
.inquiry-trigger { justify-self: end; border: 1px solid var(--line); border-radius: 999px; padding: 10px 15px; background: var(--bg); }
.inquiry-trigger:hover, .inquiry-trigger:focus-visible { border-color: var(--text); }
.inquiry-trigger[aria-current="page"] { border-color: var(--accent); background: var(--accent-soft); }

.hero { padding: clamp(24px, 4vw, 52px) var(--gutter) 0; }
body[data-page="home"] .hero {
  min-height: clamp(560px, 78svh, 760px);
  display: flex;
  align-items: center;
  padding-bottom: clamp(24px, 4vw, 52px);
}
body[data-page="home"] .hero-panel { width: 100%; }
.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 0;
  background-color: transparent;
  background-image: none;
  background-position: center;
  padding: clamp(34px, 5vw, 62px) 0 clamp(34px, 4vw, 56px);
  text-align: center;
}
.hero-panel::after { display: none; }
.hero-kicker, .section-label {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-kicker {
  border: 1px solid rgba(25, 29, 33, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .66);
  padding: 8px 14px;
  color: var(--text);
}
.hero h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  max-width: 1180px;
  font-family: var(--display);
  font-size: clamp(78px, 10.5vw, 166px);
  font-weight: 600;
  line-height: .86;
  letter-spacing: -.065em;
}
.hero-photo {
  position: relative;
  top: .1em;
  display: inline-flex;
  width: 1.08em;
  height: 1.16em;
  margin: 0 .08em;
  overflow: hidden;
  border: 5px solid white;
  border-radius: .16em;
  background: white;
  padding: 0;
  box-shadow: 0 14px 35px rgba(25, 29, 33, .18);
  transform: rotate(4deg);
  cursor: pointer;
  vertical-align: -.11em;
  transition: transform .3s ease;
}
.hero-photo:hover, .hero-photo:focus-visible { transform: rotate(0deg) scale(1.05); outline: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo--portrait { cursor: default; }
.hero-photo--portrait:hover { transform: rotate(4deg); }
.hero-photo--portrait img { object-position: center; filter: brightness(1.16) contrast(1.04) saturate(1.03); }
.hero-copy { position: relative; z-index: 1; max-width: 760px; margin: 0; color: var(--muted); font-size: clamp(18px, 1.7vw, 23px); line-height: 1.55; }

.hero-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; margin-top: 28px; }
.hero-cta { display: inline-flex; align-items: center; gap: 10px; border: none; border-radius: 999px; background: var(--accent); color: #fff; font-family: var(--display); font-size: 18px; font-weight: 600; padding: 16px 28px; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.hero-cta svg { width: 16px; height: 16px; fill: currentColor; }
.hero-cta:hover, .hero-cta:focus-visible { transform: translateY(-2px); background: #5778a8; outline: none; }
.hero-link { display: inline-flex; align-items: center; gap: 7px; color: var(--text); font-weight: 500; font-size: 17px; text-decoration: none; padding: 15px 8px; border-bottom: 1px solid transparent; }
.hero-link svg { width: 18px; height: 18px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.hero-link:hover svg, .hero-link:focus-visible svg { transform: translateY(3px); }

.landing-routing {
  width: min(760px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px clamp(22px, 4vw, 38px);
  margin: clamp(28px, 4vw, 46px) auto 0;
  padding-top: clamp(18px, 3vw, 28px);
  border-top: 1px solid var(--line);
  background: transparent;
  text-align: center;
}
.landing-route {
  position: relative;
  display: inline-grid;
  gap: 4px;
  min-width: 150px;
  min-height: 0;
  background: transparent;
  padding: 0 2px 10px;
  transition: color .2s ease, transform .2s ease;
}
.landing-route::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transition: opacity .2s ease, left .2s ease, right .2s ease;
}
.landing-route + .landing-route { border-left: 0; }
.landing-route:hover, .landing-route:focus-visible { color: var(--accent); transform: translateY(-2px); outline: none; }
.landing-route:hover::after, .landing-route:focus-visible::after { left: 8%; right: 8%; opacity: .45; }
.landing-route--priority { background: transparent; }
.landing-route span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.landing-route--priority span { color: var(--accent); }
.landing-route strong {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.045em;
}
.landing-route small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.proof-strip {
  width: min(1020px, 100%);
  display: grid;
  grid-template-columns: minmax(220px, .46fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 58px);
  align-items: stretch;
  margin: clamp(28px, 4vw, 44px) auto 0;
  border: 1px solid rgba(25, 29, 33, .08);
  border-radius: 28px;
  background: rgba(243, 244, 243, .72);
  padding: clamp(18px, 2.6vw, 28px);
  text-align: left;
}
.proof-strip__lead {
  display: grid;
  align-content: center;
  gap: 8px;
}
.proof-strip__lead span,
.proof-strip__facts dt {
  color: var(--accent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.proof-strip__lead strong {
  max-width: 340px;
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.05em;
}
.proof-strip__facts {
  display: grid;
  grid-template-columns: .8fr 1.25fr 1fr;
  gap: 0;
  margin: 0;
}
.proof-strip__facts div {
  display: grid;
  align-content: center;
  gap: 7px;
  min-width: 0;
  padding: 0 clamp(14px, 2vw, 28px);
  border-left: 1px solid rgba(25, 29, 33, .1);
}
.proof-strip__facts dt,
.proof-strip__facts dd {
  margin: 0;
}
.proof-strip__facts dd {
  color: var(--text);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 500;
  line-height: 1.45;
}

.front-showcase {
  margin: 0 var(--gutter) clamp(28px, 4vw, 54px);
  border-top: 1px solid var(--line);
  padding: clamp(50px, 7vw, 104px) 0 clamp(44px, 6vw, 82px);
}
.front-showcase__intro {
  max-width: 1140px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, .42fr);
  gap: 18px clamp(32px, 6vw, 86px);
  align-items: end;
  margin: 0 auto clamp(32px, 4.5vw, 58px);
}
.front-showcase__intro .section-label { grid-column: 1 / -1; }
.front-showcase__intro h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.9vw, 86px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.062em;
}
.front-showcase__intro p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.front-showcase__cta {
  grid-column: 2;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}
.front-showcase__layout {
  max-width: 1140px;
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
  margin: 0 auto;
}
.front-feature-card {
  display: grid;
  grid-template-columns: minmax(190px, .72fr) minmax(0, .58fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: end;
}
.front-feature-card__media,
.front-mini-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--panel-strong);
  background-position: center;
  background-size: cover;
}
.front-feature-card__media {
  aspect-ratio: 4 / 5.15;
  border-radius: 30px;
}
.front-feature-card__media img,
.front-mini-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.002);
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.front-feature-card:hover img,
.front-mini-card:hover img { transform: scale(1.028); }
.front-feature-card__copy {
  display: grid;
  gap: 12px;
  padding-bottom: clamp(8px, 2vw, 24px);
}
.front-feature-card__copy > span,
.front-showcase__note p,
.front-mini-card small {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.front-feature-card__copy strong {
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.058em;
}
.front-feature-card__copy small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.front-showcase__stack {
  display: grid;
  grid-template-rows: auto auto;
  gap: clamp(18px, 2.4vw, 28px);
  align-content: start;
}
.front-showcase__note {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
  background: var(--panel);
  padding: clamp(24px, 3.5vw, 42px);
}
.front-showcase__note strong {
  max-width: 620px;
  margin: 18px 0 32px;
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 60px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.055em;
}
.front-showcase__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.front-showcase__tabs a {
  display: grid;
  gap: 4px;
  padding: 15px 12px 0 0;
  transition: color .2s ease, transform .2s ease;
}
.front-showcase__tabs a + a { border-left: 1px solid var(--line); padding-left: 14px; }
.front-showcase__tabs a:hover,
.front-showcase__tabs a:focus-visible {
  color: var(--accent);
  transform: translateY(-2px);
  outline: none;
}
.front-showcase__tabs span {
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.045em;
}
.front-showcase__tabs small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}
.front-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.front-mini-card {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.front-mini-card__media {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
}
.front-mini-card strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.045em;
}
.front-mini-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}
.front-feature-card:focus-visible,
.front-mini-card:focus-visible,
.front-showcase__cta:focus-visible {
  border-radius: 28px;
  outline: 2px solid var(--accent);
  outline-offset: 7px;
}

.fit-section {
  margin: 0 var(--gutter) clamp(30px, 4vw, 58px);
  border-top: 1px solid var(--line);
  padding: clamp(46px, 6vw, 86px) 0 clamp(44px, 5vw, 72px);
}
.fit-section__intro {
  max-width: 1100px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .45fr);
  gap: 14px clamp(34px, 6vw, 88px);
  align-items: end;
  margin: 0 auto clamp(30px, 4vw, 48px);
}
.fit-section__intro .section-label { grid-column: 1 / -1; }
.fit-section__intro h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.7vw, 82px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.062em;
}
.fit-section__intro p:not(.section-label) {
  max-width: 460px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.fit-card-grid {
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  margin: 0 auto;
}
.fit-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 230px;
  border-top: 1px solid rgba(25, 29, 33, .14);
  padding-top: 18px;
}
.fit-card span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
}
.fit-card h3 {
  max-width: 260px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.1vw, 46px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.055em;
}
.fit-card p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.fit-section__line {
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin: clamp(32px, 4.5vw, 54px) auto 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.fit-section__line span { max-width: 620px; }
.fit-section__line a {
  flex: 0 0 auto;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  font-weight: 500;
}

.project-index {
  margin: clamp(34px, 5vw, 70px) var(--gutter) 28px;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: var(--bg);
  padding: clamp(52px, 7vw, 86px) 0 clamp(58px, 7vw, 90px);
}
.section-intro {
  max-width: 1100px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .45fr);
  gap: 14px clamp(34px, 6vw, 88px);
  align-items: end;
  margin: 0 auto clamp(30px, 4vw, 46px);
}
.section-intro h2, .about-section h2 {
  margin: 18px 0 24px;
  font-family: var(--display);
  font-size: clamp(48px, 6.8vw, 96px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.06em;
}
.section-intro .section-label { grid-column: 1; }
.section-intro h2 { grid-column: 1; max-width: 760px; margin: 0; font-size: clamp(40px, 5vw, 70px); }
.section-intro > p:last-child { grid-column: 2; max-width: 440px; margin: 0 0 5px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.priority-marker {
  grid-column: 2;
  grid-row: 1;
  width: fit-content;
  margin: 0;
  border-bottom: 1px solid rgba(111, 143, 189, .45);
  background: transparent;
  padding: 0 0 4px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.project-grid {
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  margin: 0 auto;
}
.project-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  border: 0;
  background: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
}
.media-frame { position: relative; display: block; aspect-ratio: 4 / 4.85; overflow: hidden; border-radius: 18px; background-color: var(--panel-strong); background-position: center; background-size: cover; }
.media-frame img { width: 100%; height: 100%; display: block; object-fit: cover; transform: scale(1.002); transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.project-card:hover .media-frame img { transform: scale(1.025); }
.project-card--vertical .media-frame {
  display: block;
  background: var(--panel-strong);
}
.project-card--vertical .media-frame img {
  width: 100%;
  max-width: none;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}
.project-card--vertical:hover .media-frame img { transform: scale(1.025); }
.project-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 8px; border-radius: 30px; }
.project-label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 12px;
  align-items: center;
  padding: 14px 2px 0;
}
.project-label__category { color: var(--accent); font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.project-label__main { display: grid; }
.project-label__main strong { font-family: var(--display); font-size: clamp(22px, 2vw, 30px); font-weight: 600; line-height: 1; letter-spacing: -.045em; }
.project-label__main > span { margin-top: 7px; color: var(--muted); font-size: 12px; font-weight: 500; }
.project-label__main small { max-width: 640px; margin-top: 13px; color: var(--muted); font-size: 14px; font-weight: 400; line-height: 1.55; }
.project-label__role { color: var(--muted); font-size: 11px; text-align: right; text-transform: uppercase; letter-spacing: .05em; }
.project-label__arrow { width: 26px; height: 26px; fill: none; stroke: var(--text); stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.project-card:hover .project-label__arrow { transform: translate(3px, -3px); }
.empty-state { max-width: 1100px; margin: 0 auto; color: var(--muted); }
.more-projects { max-width: 1100px; margin: clamp(48px, 5.4vw, 76px) auto 0; border-top: 1px solid var(--line); padding-top: clamp(28px, 4vw, 42px); }
.archive-intro { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px 24px; align-items: end; margin-bottom: 30px; }
.archive-intro > p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.archive-intro h3 { margin: 0; font-family: var(--display); font-size: clamp(32px, 4.3vw, 54px); font-weight: 600; line-height: .94; letter-spacing: -.055em; }
.archive-intro span { color: var(--muted); font-size: 12px; font-weight: 500; white-space: nowrap; }
.archive-nav {
  --archive-progress: 0;
  position: sticky;
  top: calc(var(--header-h) + 10px);
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 clamp(30px, 4vw, 48px);
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  padding: 8px 8px 12px;
  box-shadow: 0 16px 38px rgba(25, 29, 33, .06);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.archive-nav::before,
.archive-nav::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  pointer-events: none;
}
.archive-nav::after {
  right: 12px;
  background: rgba(25, 29, 33, .08);
}
.archive-nav::before {
  z-index: 1;
  width: calc(100% - 24px);
  background: linear-gradient(90deg, rgba(111, 143, 189, .34), var(--accent));
  transform: scaleX(var(--archive-progress));
  transform-origin: left center;
  transition: transform .14s linear;
}
.archive-nav a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  padding: 10px 14px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.archive-nav a:hover,
.archive-nav a:focus-visible,
.archive-nav a[aria-current="location"] {
  border-color: rgba(119, 153, 202, .52);
  background: #fff;
  transform: translateY(-1px);
  outline: none;
}
.archive-nav a[aria-current="location"] {
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(119, 153, 202, .18);
}
.archive-nav span {
  font-size: 12px;
  font-weight: 500;
}
.archive-nav small {
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}
.more-projects [data-more-projects-list] { display: grid; gap: clamp(36px, 5vw, 64px); }
.archive-outro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-top: clamp(42px, 6vw, 78px);
  border-top: 1px solid var(--line);
  padding-top: clamp(24px, 4vw, 42px);
}
.archive-outro > div:first-child > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.archive-outro h3 {
  max-width: 620px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.055em;
}
.archive-outro__copy {
  display: grid;
  gap: 20px;
}
.archive-outro__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.archive-outro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.archive-outro__actions a {
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}
.archive-group { display: grid; gap: 20px; scroll-margin-top: calc(var(--header-h) + 22px); }
.archive-group__head { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 20px; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.archive-group__head h4 { margin: 0; font-family: var(--display); font-size: clamp(24px, 3vw, 36px); font-weight: 600; line-height: 1; letter-spacing: -.045em; }
.archive-group__head p { max-width: 520px; margin: 9px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.archive-group__head span { color: var(--muted); font-size: 12px; white-space: nowrap; }
.archive-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(14px, 1.6vw, 20px); }
.archive-card { display: grid; gap: 8px; min-width: 0; }
.archive-card__media { position: relative; display: block; aspect-ratio: 4 / 4.9; overflow: hidden; border-radius: 14px; background-color: var(--panel-strong); background-position: center; background-size: cover; }
.archive-card__media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.archive-card:hover .archive-card__media img { transform: scale(1.035); }
.archive-card__duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  padding: 4px 7px;
  color: var(--text);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .02em;
  box-shadow: 0 6px 18px rgba(25, 29, 33, .12);
  backdrop-filter: blur(10px);
}
.archive-card__body { display: grid; gap: 5px; }
.archive-card__body strong { font-family: var(--display); font-size: clamp(16px, 1.25vw, 20px); font-weight: 600; line-height: 1.05; letter-spacing: -.035em; }
.archive-card__body span { color: var(--muted); font-size: 11px; line-height: 1.45; }
.archive-card:hover strong, .archive-card:focus-visible strong { color: var(--accent); }
.archive-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; border-radius: 18px; }

.photo-section {
  margin: 0 var(--gutter) 26px;
  border-radius: 34px;
  background: #fff;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
}
.photo-intro {
  max-width: 1100px;
  margin: 0 auto clamp(32px, 4.5vw, 56px);
}
.photo-intro h2 {
  max-width: 820px;
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.06em;
}
.photo-intro p:last-child {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.photo-grid {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: clamp(16px, 2vw, 28px);
  margin: 0 auto;
  align-items: start;
}
.photo-card {
  display: grid;
  gap: 14px;
}
.photo-card--1 { margin-top: clamp(22px, 4vw, 64px); }
.photo-card--2 img { aspect-ratio: 4 / 5; }
.photo-card--3 { margin-top: clamp(48px, 8vw, 120px); }
.photo-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5.4;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  background: var(--panel);
}
.photo-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(23px, 2.3vw, 34px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.045em;
}
.photo-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.photo-instagram {
  width: fit-content;
  display: block;
  margin: clamp(34px, 4vw, 54px) auto 0;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  font-weight: 500;
}

.about-section {
  margin: 0 var(--gutter) 26px;
  border-radius: 34px;
  background: var(--panel);
  padding: clamp(58px, 8vw, 120px);
}
.about-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .7fr); gap: clamp(48px, 8vw, 130px); align-items: end; }
.about-section h2 { margin-bottom: 0; }
.about-copy p { margin: 0 0 1.4em; color: var(--muted); font-size: clamp(17px, 1.55vw, 21px); line-height: 1.7; }
.about-copy p:last-child { margin-bottom: 0; }
.about-method {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  margin-top: clamp(56px, 8vw, 92px);
}
.about-method__head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(260px, .42fr);
  gap: 18px clamp(34px, 6vw, 88px);
  align-items: end;
}
.about-method__head .section-label { grid-column: 1 / -1; }
.about-method__head h3 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.058em;
}
.about-method__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
}
.about-method__grid article {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(25, 29, 33, .14);
  padding-top: 18px;
}
.about-method__grid span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
}
.about-method__grid h4 {
  max-width: 260px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.05em;
}
.about-method__grid p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.skills-list { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 86px; border-top: 1px solid var(--line); }
.skills-list span { padding: 18px 0 0; font-size: 12px; font-weight: 500; }

.site-footer { padding: 0 var(--gutter) var(--gutter); }
.contact-panel { min-height: 68svh; display: flex; flex-direction: column; justify-content: space-between; border-radius: 34px; background: var(--accent-soft); padding: clamp(44px, 7vw, 96px); }
.contact-title { margin: 40px 0; font-family: var(--display); font-size: clamp(54px, 8.7vw, 132px); font-weight: 600; line-height: .86; letter-spacing: -.065em; }
.contact-brief {
  max-width: 960px;
  display: grid;
  grid-template-columns: minmax(140px, .28fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 56px);
  margin: 0 0 clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(25, 29, 33, .12);
  border-bottom: 1px solid rgba(25, 29, 33, .12);
  padding: 18px 0;
}
.contact-brief p {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-brief ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-brief li {
  position: relative;
  margin: 0;
  padding-left: 16px;
  color: var(--text);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.55;
}
.contact-brief li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
}
.contact-process {
  max-width: 960px;
  display: grid;
  grid-template-columns: minmax(140px, .28fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 56px);
  margin: 0 0 clamp(28px, 4vw, 44px);
}
.contact-process p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.contact-process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-process li {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--text);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.55;
}
.contact-process span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
}
.contact-mail { width: fit-content; border-bottom: 2px solid currentColor; font-family: var(--display); font-size: clamp(30px, 4.3vw, 64px); font-weight: 400; line-height: 1.1; letter-spacing: -.04em; }
.footer-meta { display: flex; justify-content: space-between; gap: 20px; margin-top: 72px; color: var(--muted); font-size: 12px; }
.footer-legal { display: inline-flex; gap: 14px; }
.footer-legal a:hover,
.footer-legal a:focus-visible { color: var(--text); outline: none; }

.legal-section {
  min-height: calc(100svh - var(--header-h));
  padding: calc(var(--header-h) + clamp(36px, 7vw, 92px)) var(--gutter) clamp(60px, 9vw, 130px);
}
.legal-panel {
  max-width: 1120px;
  margin: 0 auto;
}
.legal-panel h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 10vw, 132px);
  font-weight: 600;
  line-height: .86;
  letter-spacing: -.07em;
}
.legal-lede {
  max-width: 740px;
  margin: 30px 0 52px;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.65;
}
.legal-list {
  display: grid;
  grid-template-columns: minmax(160px, .24fr) minmax(0, 1fr);
  gap: 14px clamp(22px, 4vw, 52px);
  max-width: 840px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.legal-list dt,
.legal-copy h2 {
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.legal-list dd { margin: 0; color: var(--muted); line-height: 1.7; }
.legal-list a,
.legal-copy a { border-bottom: 1px solid currentColor; color: var(--text); }
.legal-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 62px);
  max-width: 1080px;
}
.legal-copy section { border-top: 1px solid var(--line); padding-top: 18px; }
.legal-copy section:first-child { grid-column: 1 / -1; max-width: 700px; }
.legal-copy h2 { margin: 0 0 12px; }
.legal-copy p { margin: 0; color: var(--muted); font-size: clamp(16px, 1.25vw, 19px); line-height: 1.75; }
.legal-note {
  max-width: 760px;
  margin: 44px 0 0;
  border-radius: 22px;
  background: var(--panel);
  padding: 18px 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.not-found-section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 72px);
  background: var(--bg);
}
.not-found-section .brand { margin-bottom: clamp(42px, 8vw, 110px); }
.not-found-section h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 126px);
  font-weight: 600;
  line-height: .86;
  letter-spacing: -.07em;
}
.not-found-section > p:not(.section-label) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.65;
}
.not-found-section .hero-cta { width: fit-content; margin-top: 8px; }

.project-noscript {
  min-height: 100svh;
  padding: clamp(24px, 5vw, 68px) var(--gutter) clamp(54px, 8vw, 120px);
  background: var(--bg);
}
.project-noscript .brand { margin-bottom: clamp(42px, 8vw, 96px); }
.project-noscript h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 600;
  line-height: .86;
  letter-spacing: -.07em;
}
.project-noscript__summary {
  max-width: 680px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.58;
}
.project-noscript__poster {
  display: block;
  width: min(520px, 100%);
  max-height: 78svh;
  margin: 0 0 40px;
  object-fit: cover;
  border-radius: 30px;
  background: var(--panel);
}
.project-noscript__facts {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 10px 28px;
  max-width: 680px;
  margin: 0 0 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.project-noscript__facts dt {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.project-noscript__facts dd { margin: 0; }
.project-noscript__copy {
  max-width: 700px;
  margin-bottom: 32px;
  color: var(--muted);
  line-height: 1.7;
}
.project-noscript__copy h2 {
  margin: 28px 0 8px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.project-noscript__cta {
  display: grid;
  gap: 14px;
  max-width: 700px;
  margin: 0 0 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.project-noscript__cta p {
  margin: 0;
  color: var(--muted);
}

.project-view { position: fixed; inset: 0; z-index: 100; overflow: auto; background: var(--bg); }
.project-view:focus { outline: none; }
.project-view__bar { position: sticky; top: 0; z-index: 2; height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 var(--gutter); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(16px); font-size: 12px; font-weight: 500; }
.project-view__bar [data-project-bar-label] { flex: 1 1 auto; min-width: 0; overflow: hidden; color: var(--muted); text-overflow: ellipsis; white-space: nowrap; }
.project-view__hint { flex: 0 0 auto; color: rgba(98, 106, 112, .72); font-size: 11px; letter-spacing: .02em; white-space: nowrap; }
.project-view__bar button { border: 0; background: none; cursor: pointer; padding: 8px 0; }
.project-detail { padding: 42px var(--gutter) 110px; }
.detail-hero { max-width: 1120px; display: grid; gap: clamp(26px, 5vw, 72px); margin: 0 auto; }
.detail-hero--vertical { grid-template-columns: minmax(260px, 390px) minmax(0, 1fr); align-items: end; }
.detail-hero--wide { grid-template-columns: 1fr; }
.detail-intro { min-width: 0; margin: 0; }
.detail-hero--wide .detail-intro { max-width: 760px; }
.detail-intro > p:first-child { margin: 0 0 16px; color: var(--accent); font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.detail-intro h2 { max-width: 760px; margin: 0; font-family: var(--display); font-size: clamp(48px, 7vw, 106px); font-weight: 600; line-height: .9; letter-spacing: -.065em; }
.detail-intro > p:last-child { max-width: 620px; margin: 22px 0 0; color: var(--muted); font-size: clamp(17px, 1.45vw, 21px); line-height: 1.58; }
.detail-media { width: 100%; aspect-ratio: 16 / 9; margin: 0; overflow: hidden; border-radius: 30px; background: var(--panel); }
.detail-media--vertical { aspect-ratio: 9 / 16; }
.detail-media img, .detail-media iframe, .detail-media video { width: 100%; height: 100%; border: 0; object-fit: cover; }
.detail-media video { display: block; background: var(--panel); }
.detail-video-cover { position: relative; width: 100%; height: 100%; display: block; overflow: hidden; border: 0; background: var(--panel); padding: 0; cursor: pointer; }
.detail-video-cover::after { content: ""; position: absolute; inset: 0; background: rgba(25, 29, 33, .08); transition: background .25s ease; }
.detail-video-cover:hover::after { background: rgba(25, 29, 33, .14); }
.detail-video-cover > span { position: absolute; z-index: 1; left: 50%; top: 50%; display: inline-flex; align-items: center; gap: 9px; border-radius: 999px; background: white; padding: 13px 18px; font-size: 12px; font-weight: 500; transform: translate(-50%, -50%); }
.detail-video-cover svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linejoin: round; }
.detail-body { max-width: 1120px; display: grid; grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr); gap: clamp(34px, 6vw, 86px); margin: 0 auto; padding: 62px 0 0; }
.detail-facts dl { position: sticky; top: 100px; display: grid; grid-template-columns: auto 1fr; gap: 8px 20px; margin: 0; font-size: 12px; }
.detail-facts dt { color: var(--muted); }
.detail-facts dd { margin: 0; }
.detail-fact-link { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.detail-copy { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px; }
.detail-copy h3 { margin: 0 0 14px; color: var(--accent); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.detail-copy p { margin: 0; font-size: clamp(17px, 1.55vw, 22px); line-height: 1.55; letter-spacing: -.015em; }
.detail-output { display: grid; gap: 8px; }
.detail-output span + span { color: var(--muted); font-size: .82em; }
.detail-cta {
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 58px);
  align-items: center;
  margin: clamp(46px, 6vw, 74px) auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(22px, 3vw, 34px) 0;
}
.detail-cta div {
  display: grid;
  gap: 8px;
}
.detail-cta span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.detail-cta strong {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.05em;
}
.detail-cta p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.detail-cta a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.detail-project-nav { max-width: 1120px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 72px auto 0; border-top: 1px solid var(--line); padding-top: 18px; }
.detail-project-nav--solo { max-width: 760px; grid-template-columns: 1fr; }
.detail-project-nav a { display: grid; gap: 5px; border-radius: 18px; padding: 18px; background: var(--panel); transition: background .2s ease, transform .2s ease; }
.detail-project-nav a:hover, .detail-project-nav a:focus-visible { background: var(--accent-soft); transform: translateY(-2px); outline: none; }
.detail-project-nav span { color: var(--muted); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.detail-project-nav strong { font-family: var(--display); font-size: clamp(24px, 2.7vw, 38px); font-weight: 600; line-height: 1; letter-spacing: -.045em; }

.brand:focus-visible,
.inquiry-trigger:focus-visible,
.hero-cta:focus-visible,
.hero-link:focus-visible,
.project-view__bar button:focus-visible,
.detail-video-cover:focus-visible,
.archive-outro__actions a:focus-visible,
.detail-fact-link:focus-visible,
.detail-cta a:focus-visible,
.detail-project-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
.hero-cta:focus-visible,
.detail-video-cover:focus-visible,
.archive-outro__actions a:focus-visible,
.detail-fact-link:focus-visible,
.detail-cta a:focus-visible,
.detail-project-nav a:focus-visible {
  box-shadow: 0 0 0 5px rgba(111, 143, 189, .18);
}

[hidden] { display: none !important; }
body.overlay-open { overflow: hidden; }

@media (max-width: 900px) {
  :root { --header-h: 116px; }
  .site-header {
    height: var(--header-h);
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-content: center;
    gap: 8px 18px;
    padding-top: 10px;
    padding-bottom: 8px;
  }
  .brand { grid-column: 1; grid-row: 1; }
  .inquiry-trigger { grid-column: 2; grid-row: 1; }
  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding: 0 2px 2px;
    margin: 0 -2px;
    scrollbar-width: none;
  }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { flex: 0 0 auto; }
  .hero h1 { font-size: clamp(72px, 14vw, 124px); }
  .landing-routing { justify-content: center; }
  .landing-route + .landing-route { border-left: 0; border-top: 0; }
  .proof-strip {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
  .proof-strip__lead strong { max-width: 620px; }
  .proof-strip__facts {
    border-top: 1px solid rgba(25, 29, 33, .1);
    padding-top: 18px;
  }
  .proof-strip__facts div:first-child {
    border-left: 0;
    padding-left: 0;
  }
  .front-showcase__intro,
  .front-showcase__layout,
  .front-feature-card {
    grid-template-columns: 1fr;
  }
  .front-showcase__cta { grid-column: 1; }
  .front-feature-card {
    max-width: 720px;
    margin: 0 auto;
  }
  .front-feature-card__media { max-width: 520px; }
  .front-showcase__stack { grid-template-rows: auto; }
  .fit-section__intro {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .fit-section__intro h2,
  .fit-section__intro p:not(.section-label) {
    grid-column: 1;
  }
  .fit-section__intro p:not(.section-label) {
    max-width: 680px;
    margin: 0;
  }
  .fit-card {
    min-height: auto;
  }
  .section-intro { grid-template-columns: 1fr; align-items: start; }
  .section-intro h2,
  .section-intro > p:last-child,
  .priority-marker { grid-column: 1; grid-row: auto; }
  .section-intro > p:last-child { max-width: 680px; margin: 0; }
  .project-label { grid-template-columns: minmax(0, 1fr) 28px; gap: 14px; }
  .archive-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .photo-card--1,
  .photo-card--3 { margin-top: 0; }
  .photo-card--3 {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
  }
  .about-grid { grid-template-columns: 1fr; }
  .about-copy { max-width: 700px; }
  .about-method__head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .about-method__head h3 {
    max-width: 760px;
  }
  .skills-list { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
}

@media (max-width: 620px) {
  :root { --header-h: 114px; --gutter: 16px; }
  .brand img { width: 30px; height: 30px; }
  .brand-name { font-size: 17px; }
  .inquiry-trigger { font-size: 10px; padding: 9px 12px; }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 11px; padding: 6px 0; }
  .hero { padding-top: 14px; }
  body[data-page="home"] .hero { min-height: auto; }
  .hero-panel { padding: 24px 0 42px; }
  .hero-kicker { max-width: 100%; font-size: 11px; letter-spacing: .075em; line-height: 1.35; }
  .hero h1 { margin: 22px 0 20px; font-size: clamp(60px, 16.8vw, 78px); line-height: .86; }
  .hero-title-line { display: block; }
  .hero-title-lock { display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; }
  .hero-photo { width: 1.15em; height: 1.22em; margin: 0 .08em; border-width: 3px; vertical-align: -.1em; box-shadow: 0 10px 28px rgba(25, 29, 33, .18); }
  .hero-copy { max-width: 340px; font-size: 16px; line-height: 1.6; }
  .hero-actions { margin-top: 24px; }
  .hero-cta { font-size: 17px; padding: 15px 25px; }
  .hero-link { font-size: 16px; }
  .landing-routing { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin-top: 22px; padding-top: 12px; text-align: center; }
  .landing-route { min-width: 0; min-height: 0; padding: 11px 5px 10px; }
  .landing-route::after { display: none; }
  .landing-route + .landing-route { border-top: 0; border-left: 0; }
  .landing-route:nth-child(even) { border-left: 1px solid var(--line); }
  .landing-route:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .landing-route span { font-size: 9px; }
  .landing-route strong { font-size: clamp(16px, 4.4vw, 18px); }
  .landing-route small { display: none; }
  .proof-strip {
    margin-top: 18px;
    border-radius: 22px;
    padding: 18px;
  }
  .proof-strip__lead {
    gap: 6px;
  }
  .proof-strip__lead strong {
    max-width: none;
    font-size: clamp(23px, 7vw, 31px);
  }
  .proof-strip__facts {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 16px;
  }
  .proof-strip__facts div,
  .proof-strip__facts div:first-child {
    border-left: 0;
    border-top: 1px solid rgba(25, 29, 33, .08);
    padding: 13px 0 0;
  }
  .proof-strip__facts div:first-child {
    border-top: 0;
    padding-top: 0;
  }
  .front-showcase { margin: 0 16px 12px; padding: 38px 0 44px; }
  .front-showcase__intro { display: block; margin-bottom: 26px; }
  .front-showcase__intro h2 { margin-top: 12px; font-size: clamp(36px, 10.5vw, 52px); }
  .front-showcase__intro p:not(.section-label) { margin-top: 16px; font-size: 15px; line-height: 1.6; }
  .front-showcase__cta { display: inline-flex; margin-top: 18px; }
  .front-feature-card { gap: 18px; }
  .front-feature-card__media { max-width: none; border-radius: 22px; }
  .front-feature-card__copy { padding-bottom: 0; }
  .front-feature-card__copy strong { font-size: clamp(34px, 10vw, 46px); }
  .front-showcase__note { min-height: auto; border-radius: 24px; padding: 24px 18px; }
  .front-showcase__note strong { margin: 14px 0 24px; font-size: clamp(30px, 9vw, 42px); }
  .front-showcase__tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
  .front-showcase__tabs a { padding: 13px 10px 0 0; }
  .front-showcase__tabs a + a { border-left: 0; padding-left: 0; }
  .front-showcase__tabs a:nth-child(even) { border-left: 1px solid var(--line); padding-left: 12px; }
  .front-showcase__tabs a:nth-child(n + 3) { margin-top: 13px; }
  .front-mini-grid { gap: 14px; }
  .front-mini-card__media { border-radius: 18px; }
  .front-mini-card strong { font-size: clamp(21px, 6vw, 28px); }
  .fit-section { margin: 0 16px 12px; padding: 38px 0 46px; }
  .fit-section__intro { display: block; margin-bottom: 28px; }
  .fit-section__intro h2 { margin-top: 12px; font-size: clamp(36px, 10.5vw, 52px); }
  .fit-section__intro p:not(.section-label) { margin-top: 16px; font-size: 15px; line-height: 1.6; }
  .fit-card-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .fit-card h3 { max-width: none; font-size: clamp(30px, 9vw, 42px); }
  .fit-card p { max-width: none; }
  .fit-section__line {
    display: grid;
    gap: 14px;
    margin-top: 34px;
  }
  .project-index { margin: 28px 16px 12px; padding: 38px 0 48px; }
  .project-index .section-label { display: none; }
  .priority-marker { margin-top: 0; }
  .section-intro { display: block; margin-bottom: 30px; }
  .section-intro h2, .about-section h2 { font-size: clamp(38px, 11vw, 54px); }
  .section-intro h2 { margin-top: 0; font-size: clamp(34px, 10vw, 46px); line-height: .95; }
  .section-intro > p:last-child { max-width: none; margin-top: 14px; font-size: 16px; line-height: 1.5; }
  .project-grid { grid-template-columns: 1fr; gap: 32px; max-width: 360px; }
  .archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-card { margin-bottom: 0; }
  .media-frame { aspect-ratio: 4 / 5; border-radius: 22px; }
  .project-card--vertical .media-frame { aspect-ratio: 4 / 5; }
  .project-card--vertical .media-frame img { width: 100%; max-width: none; height: 100%; border-radius: 0; box-shadow: none; }
  .project-label { grid-template-columns: 1fr 28px; gap: 12px; padding-top: 14px; }
  .project-label__category { grid-column: 1; }
  .project-label__main { grid-column: 1; }
  .project-label__main strong { font-size: 28px; }
  .project-label__role { grid-column: 1; text-align: left; }
  .project-label__arrow { grid-column: 2; grid-row: 1 / span 3; }
  .more-projects { margin-top: 42px; }
  .archive-intro { grid-template-columns: 1fr; margin-bottom: 26px; }
  .archive-intro h3 { font-size: clamp(32px, 10vw, 44px); }
  .archive-intro span { white-space: normal; }
  .archive-nav { position: static; display: grid; gap: 8px; margin: 0 0 30px; border-radius: 0; background: transparent; padding: 0; box-shadow: none; backdrop-filter: none; }
  .archive-nav::before, .archive-nav::after { display: none; }
  .archive-nav a { justify-content: space-between; border-radius: 16px; padding: 12px 14px; }
  .archive-outro { grid-template-columns: 1fr; gap: 20px; margin-top: 42px; }
  .archive-outro h3 { font-size: clamp(32px, 10vw, 44px); }
  .archive-group__head { grid-template-columns: 1fr; align-items: flex-start; gap: 8px; }
  .archive-group__head p { max-width: none; }
  .archive-grid { gap: 18px 12px; }
  .archive-card__media { border-radius: 14px; }
  .archive-card__body strong { font-size: 20px; }
  .photo-section { margin: 0 12px 12px; border-radius: 24px; padding: 48px 18px 54px; }
  .photo-intro h2 { font-size: clamp(34px, 10vw, 48px); }
  .photo-grid { grid-template-columns: 1fr; gap: 30px; max-width: 360px; }
  .photo-card--3 { grid-column: auto; max-width: none; }
  .photo-card img { border-radius: 20px; }
  .about-section { margin: 0 12px 12px; border-radius: 24px; padding: 56px 22px; }
  .about-grid { gap: 36px; }
  .about-method {
    margin-top: 46px;
    gap: 26px;
  }
  .about-method__head { display: block; }
  .about-method__head h3 {
    margin-top: 12px;
    font-size: clamp(34px, 10vw, 48px);
  }
  .about-method__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .about-method__grid h4,
  .about-method__grid p {
    max-width: none;
  }
  .skills-list { margin-top: 52px; }
  .site-footer { padding: 0 12px 12px; }
  .contact-panel { min-height: 72svh; border-radius: 24px; padding: 50px 22px 28px; }
  .contact-title { margin: 32px 0; font-size: clamp(52px, 16vw, 78px); }
  .contact-brief {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }
  .contact-brief ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-brief li {
    font-size: 14px;
  }
  .contact-process {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }
  .contact-process ol {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-process li {
    font-size: 14px;
  }
  .contact-mail { font-size: clamp(25px, 7.6vw, 38px); }
  .footer-meta { display: grid; margin-top: 52px; }
  .footer-legal { display: flex; flex-wrap: wrap; gap: 12px; }
  .legal-section { padding: calc(var(--header-h) + 34px) 18px 72px; }
  .legal-panel h1 { font-size: clamp(48px, 14vw, 78px); }
  .legal-lede { margin: 22px 0 38px; font-size: 16px; line-height: 1.65; }
  .legal-list { grid-template-columns: 1fr; gap: 6px; }
  .legal-list dt { margin-top: 14px; }
  .legal-list dt:first-child { margin-top: 0; }
  .legal-copy { grid-template-columns: 1fr; gap: 28px; }
  .legal-copy section:first-child { grid-column: auto; }
  .legal-note { margin-top: 34px; border-radius: 18px; padding: 16px; }
  .detail-hero,
  .detail-hero--vertical,
  .detail-hero--wide { grid-template-columns: 1fr; gap: 24px; }
  .detail-intro h2 { font-size: clamp(46px, 13vw, 72px); }
  .detail-media { aspect-ratio: 16 / 9; border-radius: 22px; }
  .detail-media--vertical { aspect-ratio: 9 / 16; max-width: min(430px, 100%); }
  .project-view__hint { display: none; }
  .detail-body { grid-template-columns: 1fr; padding-top: 38px; }
  .detail-facts dl { position: static; }
  .detail-copy { grid-template-columns: 1fr; }
  .detail-copy section:first-child { grid-column: auto; }
  .detail-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 42px;
  }
  .detail-cta a {
    white-space: normal;
  }
  .detail-project-nav { grid-template-columns: 1fr; margin-top: 48px; }
}

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