:root {
  --navy: #082331;
  --navy-deep: #041924;
  --ink: #16313d;
  --ink-soft: #52656d;
  --paper: #f6f3ec;
  --paper-warm: #ebe4d6;
  --white: #fffdf8;
  --gold: #bd914b;
  --gold-dark: #8c682f;
  --line: rgba(11, 39, 51, 0.15);
  --serif: "Bodoni 72", "Iowan Old Style", Didot, Baskerville, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --wrap: min(1480px, calc(100vw - 72px));
  --hero-axis: max(48px, 2.6vw);
  --header-height: 94px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  width: 100%;
  color: var(--navy);
  transition: background-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(251, 249, 244, 0.91);
  box-shadow: 0 1px 0 rgba(9, 35, 47, 0.1);
  backdrop-filter: blur(18px) saturate(130%);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

.header-shell {
  width: calc(100% - max(96px, 5.2vw));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.wordmark {
  display: grid;
  width: 268px;
  justify-items: center;
  flex: 0 0 auto;
  color: var(--navy);
  line-height: 1;
}

.wordmark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1;
  white-space: nowrap;
}

.wordmark .n77 {
  position: relative;
  top: -4px;
  color: inherit;
}

.brand-divider {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 8px;
  background: var(--gold);
}

.wordmark small {
  width: 100%;
  margin-top: 8px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.085em;
  text-align: center;
  white-space: nowrap;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(21px, 2.6vw, 42px);
}

.nav-dropdown {
  position: relative;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  display: grid;
  min-width: 164px;
  padding: 7px;
  border: 1px solid rgba(8, 35, 49, 0.08);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(251, 249, 244, 0.4);
  backdrop-filter: blur(6px) saturate(110%);
  box-shadow: 0 18px 45px rgba(4, 25, 36, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 170ms ease, transform 170ms ease;
}

.nav-submenu a {
  padding: 9px 11px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.035em;
  text-transform: none;
  text-align: center;
  border-radius: 5px;
}

.nav-submenu a::after {
  display: none;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--gold-dark);
  background: rgba(189, 145, 75, 0.09);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
  transform: translateY(2px) rotate(225deg);
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 17px;
  font-weight: 680;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--gold-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.header-cta {
  padding: 0 20px;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  white-space: nowrap;
}

.header-cta svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: max(760px, 100vh);
  min-height: 760px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background: #8bbbd0;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.08) saturate(1.12) contrast(1.045);
  transform: scale(1.005);
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(3, 19, 25, 0) 42%, rgba(3, 19, 25, 0.025) 70%, rgba(2, 15, 21, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: min(1050px, calc(100vw - 72px));
  margin: calc(var(--header-height) + 64px) 0 88px var(--hero-axis);
}

.hero-content::before {
  display: none;
}

.hero-script {
  position: absolute;
  z-index: 7;
  top: 126px;
  right: 2.6vw;
  width: auto;
  margin: 0;
  color: #102535;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 27px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  transform: rotate(-11deg);
  pointer-events: none;
}

.hero-script span {
  display: block;
}

@media (max-width: 1450px) {
  .hero-script {
    top: 119px;
    right: 2.8vw;
    font-size: 24px;
  }
}

@media (max-width: 1150px) {
  .hero-script {
    display: none;
  }
}

.eyebrow,
.kicker,
.panel-label {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  padding: 8px 14px 8px 0;
  color: #fffefb;
  font-size: clamp(13px, 0.9vw, 15px);
  letter-spacing: 0.16em;
  text-shadow: 0 1px 7px rgba(3, 19, 26, 0.92);
  background: linear-gradient(90deg, rgba(4, 25, 36, 0.38), rgba(4, 25, 36, 0.08) 82%, transparent);
}

.eyebrow::before {
  display: none;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.042em;
  line-height: 0.94;
}

.hero h1 {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: fit-content;
  max-width: 1000px;
  font-size: clamp(54px, 4.5vw, 76px);
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 1px 2px rgba(2, 17, 24, 0.72);
}

.hero h1::before {
  display: none;
}

.hero-title-line {
  position: relative;
  z-index: 0;
  display: inline-block;
  isolation: isolate;
}

.hero-title-line::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: attr(data-text);
  color: rgba(3, 19, 27, 0.66);
  -webkit-text-stroke: 0.1em rgba(3, 19, 27, 0.45);
  text-shadow: 0 0 7px rgba(3, 19, 27, 0.72);
  filter: blur(5.5px);
  pointer-events: none;
}

.hero h1 em,
.section h2 em {
  color: #e2bd7e;
  font-weight: 400;
}

.hero-copy {
  position: relative;
  z-index: 0;
  isolation: isolate;
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(255, 253, 248, 0.97);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.65;
  text-shadow: 0 1px 2px rgba(2, 17, 24, 0.7);
}

.hero-copy::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  content: attr(data-text);
  color: rgba(3, 19, 27, 0.74);
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  -webkit-text-stroke: 4.5px rgba(3, 19, 27, 0.56);
  text-shadow:
    0 0 5px rgba(3, 19, 27, 0.88),
    0 0 11px rgba(3, 19, 27, 0.58);
  filter: blur(5px);
  pointer-events: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px;
}

.button {
  padding: 0 25px;
}

.button-gold {
  color: #11252d;
  background: #d9b36e;
}

.button-gold:hover,
.button-gold:focus-visible {
  color: var(--white);
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.hero-next {
  position: absolute;
  bottom: 0;
  left: var(--hero-axis);
  display: flex;
  height: 70px;
  align-items: center;
  gap: 17px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-next svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.section {
  position: relative;
  overflow: hidden;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.strategy {
  padding: 24px 0 82px;
  background: var(--paper);
}

#leistungen,
#kontakt {
  scroll-margin-top: var(--header-height);
}

#ueber-mich {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section-orbit {
  position: absolute;
  top: -290px;
  right: -300px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(25, 57, 68, 0.07);
  border-radius: 50%;
}

.section-orbit::before,
.section-orbit::after {
  position: absolute;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.section-orbit::before {
  inset: 95px;
}

.section-orbit::after {
  inset: 190px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.82fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
}

.kicker {
  color: var(--gold-dark);
}

.section-intro .kicker {
  margin-bottom: 14px;
}

.section h2 {
  max-width: 780px;
  color: var(--navy);
  font-size: clamp(46px, 4.2vw, 64px);
}

.section h2 em {
  display: inline-block;
  color: var(--gold-dark);
}

.intro-copy {
  padding-bottom: 5px;
  border-top: 1px solid var(--line);
}

.intro-copy p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.intro-copy p:first-child {
  color: var(--ink);
  font-size: 17px;
}

.strategy-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.31fr) minmax(0, 0.69fr);
  margin-top: 20px;
  overflow: hidden;
  border-radius: 3px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 34px 85px rgba(7, 31, 43, 0.17);
}

.service-tabs {
  display: grid;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-deep);
}

.service-tab {
  position: relative;
  display: grid;
  min-height: 120px;
  grid-template-columns: 40px 1fr;
  align-content: center;
  gap: 5px 13px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  padding: 18px 27px;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  text-align: left;
  transition: color 200ms ease, background-color 200ms ease;
}

.service-tab:last-child {
  border-bottom: 0;
}

.service-tab::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 220ms ease;
}

.service-tab span {
  grid-row: 1 / span 2;
  padding-top: 5px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 20px;
}

.service-tab strong {
  color: inherit;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.service-tab small {
  font-size: 15px;
  line-height: 1.45;
}

.service-tab:hover,
.service-tab:focus-visible,
.service-tab.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
}

.service-tab.active::before {
  transform: scaleY(1);
}

.service-panel {
  display: grid;
  min-height: 360px;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.8fr);
  gap: clamp(30px, 3.4vw, 56px);
  align-items: center;
  padding: clamp(27px, 3vw, 43px);
  outline: 0;
}

.service-panel.is-changing > * {
  opacity: 0;
  transform: translateY(7px);
}

.service-panel > * {
  transition: opacity 140ms ease, transform 140ms ease;
}

.panel-label {
  margin-bottom: 19px;
  color: var(--gold);
}

.panel-copy h3 {
  max-width: 590px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 2.45vw, 42px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.panel-copy > p:not(.panel-label) {
  max-width: 600px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.71);
  line-height: 1.7;
}

.service-points {
  display: grid;
  gap: 11px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.service-points li {
  position: relative;
  padding-left: 23px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
}

.service-points li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.service-cases {
  display: grid;
  gap: 8px;
}

.service-cases > p {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-cases article {
  padding: 10px 14px;
  border-left: 2px solid rgba(217, 179, 110, 0.72);
  background: rgba(255, 255, 255, 0.055);
}

.service-cases strong,
.service-cases span {
  display: block;
}

.service-cases strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.18;
}

.service-cases span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.55;
}

.about-strip {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(190px, 0.38fr) minmax(360px, 0.88fr);
  gap: clamp(38px, 5vw, 78px);
  margin-top: 80px;
  padding: clamp(42px, 5vw, 68px);
  border-left: 3px solid var(--gold);
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 24px 70px rgba(8, 35, 49, 0.08);
  align-items: center;
}

.about-heading {
  align-self: start;
  padding-top: 23px;
}

.about-strip .kicker {
  margin-bottom: 18px;
}

.about-strip h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(38px, 3.5vw, 54px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.about-strip h3 em {
  color: var(--gold-dark);
  font-weight: 400;
}

.about-copy {
  align-self: center;
  border-top: 1px solid var(--line);
}

.about-copy p {
  margin: 23px 0 25px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.about-copy p + p {
  margin-top: 0;
}

.about-copy strong {
  color: var(--ink);
  font-weight: 650;
}

.about-portrait {
  position: relative;
  align-self: center;
  aspect-ratio: 356 / 413;
  margin: 0;
  overflow: hidden;
  background: var(--paper-warm);
  box-shadow: 14px 16px 0 rgba(189, 145, 75, 0.13);
}

.about-portrait::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(8, 35, 49, 0.12);
  content: "";
  pointer-events: none;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact {
  color: var(--white);
  background: var(--navy-deep);
}

.contact::before {
  position: absolute;
  top: 0;
  right: -8vw;
  width: 58vw;
  height: 100%;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  min-height: calc(100svh - 138px);
  gap: clamp(70px, 8vw, 125px);
  align-items: center;
  padding-top: clamp(70px, 8vh, 96px);
  padding-bottom: clamp(70px, 8vh, 96px);
}

.kicker-light {
  color: var(--gold);
}

.contact h2 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(48px, 4.2vw, 68px);
}

.contact-copy > p:not(.kicker) {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.62;
}

.contact-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 23px;
}

.contact-promises span {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.contact-promises span::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 8px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.contact-person {
  display: grid;
  gap: 2px;
  width: fit-content;
  margin: 35px 0 0;
}

.contact-person small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-person strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.direct-contact {
  display: grid;
  gap: 4px;
  margin-top: 8px;
}

.direct-contact a {
  width: fit-content;
  color: var(--white);
}

.direct-contact small,
.direct-contact strong {
  display: block;
}

.direct-contact small {
  margin-bottom: 2px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.direct-contact strong {
  font-size: 15px;
  font-weight: 600;
}

.direct-contact a:hover strong,
.direct-contact a:focus-visible strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  padding: clamp(21px, 2vw, 28px);
  color: var(--navy);
  background: var(--paper);
  box-shadow: 22px 25px 0 rgba(255, 255, 255, 0.035);
}

.form-head {
  display: flex;
  margin-bottom: 9px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-head span {
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.contact-form label {
  display: grid;
  gap: 3px;
  margin-top: 7px;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.065em;
}

.contact-form label > small {
  margin-left: 3px;
  color: var(--ink-soft);
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(8, 35, 49, 0.3);
  border-radius: 0;
  padding: 5px 2px;
  outline: 0;
  color: var(--navy);
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 1px 0 var(--gold-dark);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-submit {
  width: 100%;
  margin-top: 12px;
}

.field-hint {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.form-note,
.form-status {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.form-status:not(:empty) {
  color: var(--gold-dark);
  font-weight: 700;
}

.form-status.is-success {
  color: #3f6d42;
}

.form-status.is-error {
  color: #8e362f;
}

.form-status a {
  text-decoration: underline;
}

.privacy-check {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  gap: 9px !important;
  color: var(--ink-soft);
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold-dark);
}

.legal-inline,
.footer-meta a {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer {
  color: var(--white);
  background: var(--navy-deep);
}

.footer-inner {
  display: grid;
  min-height: 138px;
  grid-template-columns: 0.8fr 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}

.footer-mark strong,
.footer-mark small {
  display: block;
}

.footer-mark {
  display: grid;
  width: 232px;
  justify-items: center;
  line-height: 1;
}

.footer-mark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.footer-mark .brand-divider {
  height: 1.5px;
  margin-top: 8px;
}

.footer-mark small {
  width: 100%;
  margin-top: 8px;
  color: var(--white);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-align: center;
}

.footer-inner p,
.footer-inner .footer-meta {
  color: rgba(255, 255, 255, 0.47);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.footer-inner .footer-meta {
  display: grid;
  justify-items: end;
  gap: 5px;
  text-align: right;
}

.footer-meta nav {
  display: flex;
  gap: 15px;
}

.footer-meta a {
  color: var(--gold);
  font-size: 12px;
}

/* Eigenständige Inhaltsseiten */
.inner-page {
  background: var(--paper);
}

.inner-page main {
  padding-top: var(--header-height);
}

.inner-page .footer-inner {
  min-height: 82px;
}

.service-page,
.about-page {
  min-height: calc(100svh - var(--header-height) - 82px);
}

.service-overview,
.profile-section {
  min-height: calc(100svh - var(--header-height) - 82px);
}

.service-overview {
  display: grid;
  align-items: center;
  padding: clamp(28px, 4vh, 48px) 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(189, 145, 75, 0.16), transparent 28%),
    linear-gradient(135deg, #eee7da, var(--paper) 55%);
}

.service-overview-inner {
  display: grid;
  --service-columns: minmax(0, 1fr) minmax(500px, 0.95fr);
  --service-gap: clamp(44px, 4.8vw, 72px);
  gap: clamp(15px, 1.8vh, 22px);
}

.service-page-intro {
  display: grid;
  grid-template-columns: var(--service-columns);
  align-items: start;
  gap: var(--service-gap);
}

.service-type {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: clamp(12px, 0.82vw, 14px);
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-page-intro h1,
.profile-heading h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(46px, 4.2vw, 68px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.service-page-intro h1 em,
.profile-heading h1 em {
  color: var(--gold-dark);
  font-weight: 400;
}

.service-page-intro .page-lead {
  margin-top: 32px;
  padding: 15px 0 0;
  border-top: 2px solid var(--gold);
  border-left: 0;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.55;
}

.service-page-content {
  display: grid;
  grid-template-columns: var(--service-columns);
  align-items: start;
  gap: var(--service-gap);
}

.service-page-content .detail-copy {
  align-self: start;
}

.service-page-content .detail-copy .kicker {
  margin-bottom: 8px;
}

.service-page-content .detail-copy h2 {
  margin: 0 0 15px;
  font-size: clamp(32px, 2.8vw, 46px);
  line-height: 1;
}

.service-page-content .detail-copy > p:not(.kicker) {
  margin-bottom: 12px;
  line-height: 1.55;
}

.service-page-content .service-points-dark {
  gap: 7px;
  margin-top: 14px;
}

.service-page-cta {
  min-height: 46px;
  margin-top: 19px;
}

.service-page-content .case-stack {
  display: grid;
  align-content: start;
  padding: 19px 27px 17px;
  box-shadow: 16px 18px 0 rgba(8, 35, 49, 0.07);
}

.case-heading {
  display: grid;
  gap: 8px;
  margin: 0 0 7px;
}

.case-heading b {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(30px, 2.4vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.case-heading small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
}

.service-page-content .case-stack article {
  gap: 4px;
  padding: 10px 0;
}

.service-page-content .case-stack strong {
  font-size: 19px;
}

.service-page-content .case-stack span {
  font-size: 13px;
  line-height: 1.35;
}

.inner-page .site-header {
  color: var(--navy);
}

.inner-page .main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 10vw, 150px) 0 clamp(88px, 9vw, 135px);
  background:
    radial-gradient(circle at 82% 22%, rgba(189, 145, 75, 0.18), transparent 31%),
    linear-gradient(135deg, #eee7da, var(--paper) 62%);
}

.page-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -22vw;
  width: min(620px, 48vw);
  aspect-ratio: 1;
  border: 1px solid rgba(189, 145, 75, 0.26);
  border-radius: 50%;
  content: "";
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: clamp(54px, 8vw, 140px);
}

.page-hero h1,
.legal-page h1 {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(52px, 6.4vw, 96px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.page-hero h1 em,
.legal-page h1 em {
  color: var(--gold-dark);
  font-weight: 400;
}

.page-lead {
  max-width: 620px;
  margin: 0;
  padding-left: 28px;
  border-left: 2px solid var(--gold);
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.65;
}

.page-hero-short {
  padding-bottom: clamp(72px, 7vw, 105px);
}

.detail-section,
.profile-section,
.legal-page {
  padding: clamp(78px, 9vw, 138px) 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
  gap: clamp(58px, 9vw, 145px);
  align-items: start;
}

.detail-copy h2,
.profile-copy h2 {
  margin: 18px 0 30px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(42px, 4.3vw, 69px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.detail-copy > p:not(.kicker),
.profile-copy > p:not(.kicker) {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.78;
}

.service-points-dark {
  margin-top: 34px;
  color: var(--ink);
}

.service-points-dark li {
  border-color: var(--line);
  color: var(--ink);
}

.service-points-dark li::before {
  color: var(--gold-dark);
}

.case-stack {
  padding: clamp(30px, 4vw, 52px);
  color: var(--white);
  background: var(--navy);
  box-shadow: 22px 25px 0 rgba(8, 35, 49, 0.07);
}

.case-stack .panel-label {
  margin: 0 0 16px;
  color: var(--gold);
}

.case-stack article {
  display: grid;
  gap: 8px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.case-stack strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
}

.case-stack span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.6;
}

.page-cta {
  color: var(--white);
  background: var(--navy-deep);
}

.page-cta .wrap {
  display: flex;
  min-height: 245px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.page-cta h2 {
  max-width: 800px;
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(37px, 4vw, 61px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.profile-section {
  display: grid;
  align-items: center;
  padding: clamp(30px, 4vh, 52px) 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(189, 145, 75, 0.16), transparent 28%),
    linear-gradient(135deg, #eee7da, var(--paper) 55%);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(210px, 0.55fr) minmax(430px, 1.16fr);
  align-items: center;
  gap: clamp(38px, 5vw, 76px);
}

.profile-heading .kicker {
  margin-bottom: 12px;
}

.profile-heading h1 {
  font-size: clamp(42px, 3.7vw, 60px);
}

.profile-grid .about-portrait {
  width: min(100%, 300px);
  margin: 0 auto;
}

.profile-grid .about-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 356 / 413;
  object-fit: cover;
}

.profile-copy strong {
  color: var(--ink);
}

.profile-copy .kicker {
  margin-bottom: 9px;
}

.profile-copy {
  margin-top: 16px;
}

.profile-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(31px, 2.65vw, 43px);
}

.profile-copy > p:not(.kicker) {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.55;
}

.contact-page {
  min-height: calc(100svh - var(--header-height) - 82px);
  display: grid;
  align-items: center;
}

.contact-page .contact-grid {
  min-height: 0;
  align-items: stretch;
  padding-top: clamp(30px, 4vh, 48px);
  padding-bottom: clamp(30px, 4vh, 48px);
}

.contact-page .contact-copy {
  display: flex;
  flex-direction: column;
}

.contact-page .contact-person {
  margin-top: auto;
  padding-top: 30px;
}

.contact-page .direct-contact {
  gap: 2px;
  margin-top: 6px;
}

.contact-page h1 {
  margin: 13px 0 25px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(48px, 4.2vw, 68px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.contact-page h1 em {
  color: var(--gold);
  font-weight: 400;
}

.legal-page {
  min-height: calc(100svh - var(--header-height));
  background: linear-gradient(135deg, #eee7da, var(--paper) 48%);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  column-gap: clamp(50px, 9vw, 150px);
}

.legal-layout > .kicker {
  grid-column: 1;
}

.legal-layout > h1 {
  grid-column: 1;
  align-self: start;
}

.legal-layout > article {
  grid-column: 2;
  grid-row: 1 / span 3;
  max-width: 820px;
}

.legal-layout h2 {
  margin: 36px 0 11px;
  color: var(--navy);
  font-size: 21px;
}

.legal-layout h2:first-child {
  margin-top: 0;
}

.legal-layout p {
  margin: 0 0 17px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-layout a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-date {
  margin-top: 44px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

@media (max-width: 900px) {
  .service-overview-inner {
    --service-columns: 1fr;
  }

  .service-page-intro,
  .service-page-content,
  .page-hero-grid,
  .detail-grid,
  .profile-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-grid,
  .detail-grid,
  .profile-grid {
    gap: 45px;
  }

  .profile-copy {
    margin-top: 0;
  }

  .service-page,
  .about-page,
  .service-overview,
  .profile-section,
  .contact-page {
    min-height: auto;
  }

  .service-overview,
  .profile-section {
    padding: 68px 0;
  }

  .service-page-content .case-stack {
    margin-top: 8px;
  }

  .page-lead {
    max-width: 700px;
  }

  .profile-grid .about-portrait {
    width: min(72vw, 400px);
  }

  .legal-layout > .kicker,
  .legal-layout > h1,
  .legal-layout > article {
    grid-column: 1;
    grid-row: auto;
  }

  .legal-layout > article {
    margin-top: 50px;
  }
}

@media (max-width: 680px) {
  .page-hero {
    padding-top: 67px;
    padding-bottom: 72px;
  }

  .page-hero-grid {
    gap: 34px;
  }

  .page-lead {
    padding-left: 20px;
    font-size: 17px;
  }

  .detail-section,
  .profile-section,
  .legal-page {
    padding: 68px 0;
  }

  .service-overview {
    padding: 58px 0 68px;
  }

  .service-overview-inner {
    gap: 42px;
  }

  .service-page-intro {
    gap: 28px;
  }

  .service-page-intro h1,
  .profile-heading h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .service-page-content {
    gap: 40px;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-stack {
    width: calc(100% + 18px);
    margin-left: -9px;
    padding: 29px 25px;
  }

  .page-cta .wrap {
    min-height: 290px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
  }

  .page-cta .button {
    width: 100%;
  }

  .contact-page .contact-grid {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .contact-page .contact-copy {
    display: block;
  }

  .contact-page .contact-person {
    margin-top: 35px;
    padding-top: 0;
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .reveal-delay-1 {
  transition-delay: 90ms;
}

.js .reveal-delay-2 {
  transition-delay: 180ms;
}

.js .reveal-delay-3 {
  transition-delay: 270ms;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .hero-script.reveal {
  transform: translateY(22px) rotate(-11deg);
}

.js .hero-script.reveal.is-visible {
  transform: translateY(0) rotate(-11deg);
}

.legal-dialog {
  width: min(760px, calc(100vw - 32px));
  max-height: min(84vh, 900px);
  border: 0;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 34px 110px rgba(2, 15, 21, 0.42);
}

.legal-dialog::backdrop {
  background: rgba(2, 15, 21, 0.72);
  backdrop-filter: blur(6px);
}

.legal-dialog-inner {
  position: relative;
  padding: clamp(32px, 6vw, 66px);
}

.dialog-close {
  position: sticky;
  z-index: 2;
  top: 0;
  float: right;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(246, 243, 236, 0.94);
  font-size: 27px;
  line-height: 1;
}

.legal-dialog h2 {
  margin: 0 0 38px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(45px, 7vw, 68px);
  font-weight: 400;
  line-height: 1;
}

.legal-dialog h3 {
  margin: 31px 0 8px;
  color: var(--navy);
  font-size: 17px;
}

.legal-dialog p {
  margin: 0 0 15px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.legal-dialog a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-review-note {
  margin-top: 34px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px !important;
}

/* Private review prototype: customer-oriented process architecture */
.process-concept-page {
  background: #f4f0e8;
}

.process-concept-page .header-shell {
  grid-template-columns: auto 1fr;
}

.process-back {
  justify-self: end;
  padding: 10px 0;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.process-intro {
  padding: calc(var(--header-height) + 76px) 0 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(211, 177, 112, 0.2), transparent 30%),
    linear-gradient(135deg, #062330, #0d3a4a);
}

.process-intro-grid {
  display: grid;
  grid-template-columns: minmax(500px, 1.05fr) minmax(380px, 0.75fr);
  align-items: end;
  gap: 88px;
}

.process-intro .kicker {
  color: #e1bd7a;
}

.process-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 5vw, 82px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.process-intro h1 em {
  color: #e1bd7a;
  font-weight: 400;
}

.process-intro-copy {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.process-intro-copy > p:first-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
}

.process-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 25px 0 0;
  color: #e1bd7a;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-map {
  padding: 54px 0 100px;
}

.phase-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 42px;
}

.phase-rail::before {
  position: absolute;
  top: 26px;
  left: 7%;
  right: 7%;
  height: 1px;
  content: "";
  background: rgba(8, 35, 49, 0.18);
}

.phase-rail a {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 0 14px;
  text-align: center;
}

.phase-rail span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  place-items: center;
  color: #f8f4eb;
  border: 7px solid #f4f0e8;
  border-radius: 50%;
  background: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: background 180ms ease, transform 180ms ease;
}

.phase-rail a:hover span,
.phase-rail a:focus-visible span {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.phase-rail strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.phase-rail small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.4;
}

.phase-details {
  display: grid;
  gap: 13px;
}

.phase-detail {
  overflow: hidden;
  border: 1px solid rgba(8, 35, 49, 0.13);
  border-radius: 4px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 14px 42px rgba(8, 35, 49, 0.045);
}

.phase-detail[open] {
  border-color: rgba(140, 104, 47, 0.34);
  background: #fffdf8;
  box-shadow: 0 20px 55px rgba(8, 35, 49, 0.075);
}

.phase-detail summary {
  display: grid;
  grid-template-columns: 66px 1fr 28px;
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
  list-style: none;
  cursor: pointer;
}

.phase-detail summary::-webkit-details-marker {
  display: none;
}

.phase-number {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 32px;
  text-align: center;
}

.phase-detail summary b {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
}

.phase-detail summary small {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 14px;
}

.phase-detail summary i {
  position: relative;
  width: 22px;
  height: 22px;
}

.phase-detail summary i::before,
.phase-detail summary i::after {
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--gold-dark);
  transition: transform 180ms ease;
}

.phase-detail summary i::after {
  transform: rotate(90deg);
}

.phase-detail[open] summary i::after {
  transform: rotate(0);
}

.phase-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(250px, 0.72fr);
  gap: 0;
  margin: 0 28px;
  padding: 4px 0 28px 88px;
  border-top: 1px solid rgba(8, 35, 49, 0.1);
}

.phase-detail-body article,
.phase-detail-body aside {
  padding: 28px 30px 5px;
  border-left: 1px solid rgba(8, 35, 49, 0.1);
}

.phase-detail-body h2 {
  margin: 0 0 15px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.phase-detail-body p,
.phase-detail-body li {
  color: #4e626b;
  font-size: 14px;
  line-height: 1.65;
}

.phase-detail-body p {
  margin: 0;
}

.phase-detail-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.phase-detail-body li {
  position: relative;
  padding: 5px 0 5px 19px;
}

.phase-detail-body li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
}

.phase-detail-body aside p + .detail-tag {
  margin-top: 20px;
}

.detail-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 8px;
  border-radius: 2px;
  color: var(--navy);
  background: #eee6d7;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.detail-tag.result {
  color: #fffdf8;
  background: var(--navy);
}

.detail-tag.live {
  color: #fffdf8;
  background: #356353;
}

.detail-tag.optional {
  background: #e8ecec;
}

.process-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-deep);
}

.process-footer .wrap {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.process-footer p,
.process-footer a {
  margin: 0;
  font-size: 12px;
}

.process-footer strong,
.process-footer span {
  display: block;
}

.process-footer strong {
  margin-bottom: 5px;
  color: #fffdf8;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.process-footer a {
  color: #e1bd7a;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 1000px) {
  .process-intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-intro-copy {
    max-width: 720px;
  }

  .phase-rail {
    overflow-x: auto;
    grid-template-columns: repeat(5, 170px);
    justify-content: start;
    padding-bottom: 12px;
  }

  .phase-rail::before {
    right: auto;
    width: 700px;
  }

  .phase-detail-body {
    grid-template-columns: 1fr 1fr;
  }

  .phase-detail-body aside {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
    align-items: start;
    gap: 10px 14px;
  }

  .phase-detail-body aside p + .detail-tag {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .process-concept-page .wordmark {
    width: 170px;
  }

  .process-back {
    font-size: 10px;
  }

  .process-intro {
    padding-top: calc(var(--header-height) + 48px);
  }

  .process-intro h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .process-intro-copy {
    padding-left: 20px;
  }

  .phase-detail summary {
    grid-template-columns: 42px 1fr 22px;
    gap: 12px;
    padding: 20px 17px;
  }

  .phase-number {
    font-size: 24px;
  }

  .phase-detail summary b {
    font-size: 23px;
  }

  .phase-detail-body {
    grid-template-columns: 1fr;
    margin: 0 17px;
    padding: 0 0 22px;
  }

  .phase-detail-body article,
  .phase-detail-body aside {
    padding: 22px 16px 3px;
    border-left: 0;
    border-top: 1px solid rgba(8, 35, 49, 0.08);
  }

  .phase-detail-body aside {
    grid-column: auto;
    display: block;
  }

  .phase-detail-body aside p + .detail-tag {
    margin-top: 18px;
  }

  .process-footer .wrap {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
  }
}

:focus-visible {
  outline: 2px solid #e0b76d;
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  :root {
    --wrap: min(100% - 56px, 1060px);
    --header-height: 84px;
  }

  .wordmark {
    width: 224px;
  }

  .wordmark strong {
    font-size: 23px;
  }

  .wordmark small {
    font-size: 9.3px;
    letter-spacing: 0.04em;
  }

  .brand-divider {
    margin-top: 8px;
  }

  .header-shell {
    width: var(--wrap);
    gap: 22px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 15px;
  }

  .hero-content {
    width: min(760px, calc(100vw - 56px));
    margin-left: 28px;
  }

  .hero-next {
    left: 28px;
  }

  .hero-script {
    display: none;
  }

  .section-intro {
    gap: 70px;
  }

  .strategy-stage {
    grid-template-columns: 240px 1fr;
  }

  .service-tab {
    padding: 23px;
  }

  .service-panel {
    grid-template-columns: 1fr;
  }

  .service-cases {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-cases > p {
    grid-column: 1 / -1;
  }

  .contact-grid {
    gap: 65px;
  }

  .about-strip {
    grid-template-columns: minmax(250px, 0.8fr) minmax(170px, 0.45fr) minmax(300px, 1fr);
    gap: 30px;
    padding: 40px;
  }

  .service-overview-inner {
    --service-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    --service-gap: 44px;
  }
}

@media (max-width: 900px) {
  .service-overview-inner {
    --service-columns: 1fr;
  }
}

@media (max-width: 960px) and (min-width: 821px) {
  .header-cta {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --wrap: calc(100% - 38px);
    --header-height: 76px;
  }

  .site-header {
    background: rgba(251, 249, 244, 0.9);
    box-shadow: 0 1px 0 rgba(9, 35, 47, 0.08);
    backdrop-filter: blur(18px) saturate(130%);
  }

  .site-header::before {
    display: none;
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
  }

  .wordmark {
    width: 192px;
    justify-items: center;
  }

  .wordmark strong {
    font-size: 20px;
  }

  .wordmark small {
    font-size: 8.3px;
    letter-spacing: 0.012em;
  }

  .wordmark .brand-divider {
    margin-top: 7px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    grid-column: 3;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 0;
    padding: 0;
    color: var(--navy);
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 0;
    padding: 100px max(30px, calc((100vw - 660px) / 2));
    background: rgba(246, 243, 236, 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    border-bottom: 1px solid var(--line);
    padding: 17px 0;
    font-family: var(--serif);
    font-size: clamp(34px, 9vw, 52px);
    font-weight: 400;
    letter-spacing: -0.025em;
    text-transform: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-primary {
    justify-content: space-between;
  }

  .nav-chevron {
    margin-right: 6px;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 3px 0 11px 25px;
    border-bottom: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu a {
    border: 0;
    padding: 8px 0;
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 650;
    letter-spacing: 0.04em;
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    transform: none;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    height: auto;
    min-height: max(690px, 100svh);
    align-items: end;
  }

  .hero-image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 74% center;
    filter: brightness(1.055) saturate(1.08) contrast(1.03);
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(2, 17, 24, 0.01) 12%, rgba(3, 20, 28, 0.08) 48%, rgba(3, 20, 28, 0.52) 100%);
  }

  .hero-content {
    width: var(--wrap);
    margin: calc(var(--header-height) + 65px) auto 86px;
  }

  .hero h1::before {
    inset: -20px -24px -20px -25px;
  }

  .hero-copy::before {
    inset: 0;
  }

  .hero h1 {
    font-size: clamp(45px, 11.8vw, 70px);
  }

  .hero-copy {
    max-width: 620px;
    font-size: 16px;
  }

  .hero-next {
    left: 19px;
    height: 60px;
  }

  .strategy {
    padding: 48px 0 88px;
  }

  .section-intro,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 48px;
  }

  .section h2,
  .contact h2 {
    font-size: clamp(49px, 12vw, 75px);
  }

  .contact h2,
  .contact-page h1 {
    font-size: clamp(43px, 10.8vw, 60px);
  }

  .intro-copy {
    max-width: 620px;
  }

  .strategy-stage {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .service-tabs {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    scrollbar-width: none;
  }

  .service-tabs::-webkit-scrollbar {
    display: none;
  }

  .service-tab {
    min-width: 205px;
    min-height: 114px;
    grid-template-columns: 31px 1fr;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 0;
    padding: 21px;
  }

  .service-tab::before {
    inset: auto 0 0;
    width: auto;
    height: 3px;
    transform: scaleX(0);
  }

  .service-tab.active::before {
    transform: scaleX(1);
  }

  .service-tab strong {
    font-size: 23px;
  }

  .service-panel {
    min-height: 450px;
    padding: 52px clamp(25px, 7vw, 56px);
  }

  .service-cases {
    grid-template-columns: 1fr;
  }

  .about-strip {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 70px;
    padding: 40px clamp(27px, 7vw, 50px);
  }

  .about-copy {
    grid-column: auto;
  }

  .about-heading,
  .about-portrait,
  .about-copy {
    justify-self: stretch;
  }

  .about-heading {
    padding-top: 0;
  }

  .contact-grid {
    gap: 65px;
    padding-top: 80px;
    padding-bottom: 85px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 40px 0;
  }

  .footer-inner p {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --wrap: calc(100% - 34px);
  }

  .wordmark {
    width: 178px;
  }

  .wordmark strong {
    font-size: 18px;
  }

  .wordmark small {
    font-size: 7.7px;
    letter-spacing: 0;
  }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero-content {
    margin-bottom: 72px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .eyebrow::before {
    width: 25px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.8vw, 50px);
    line-height: 0.96;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions {
    display: block;
    margin-top: 29px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-next {
    display: none;
  }

  .section h2,
  .contact h2 {
    font-size: clamp(45px, 13.5vw, 61px);
  }

  .contact h2,
  .contact-page h1 {
    font-size: clamp(39px, 11.6vw, 52px);
  }

  .section-intro {
    gap: 38px;
  }

  .intro-copy p:first-child {
    font-size: 17px;
  }

  .strategy-stage {
    width: calc(100% + 34px);
    margin-left: -17px;
    border-radius: 0;
  }

  .service-tab {
    min-width: 185px;
  }

  .service-panel {
    min-height: 510px;
  }

  .panel-copy h3 {
    font-size: 40px;
  }

  .contact-grid {
    padding-top: 73px;
  }

  .contact-form {
    width: calc(100% + 10px);
    margin-left: -5px;
    padding: 28px 23px;
  }

  .form-head {
    align-items: start;
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-inner .footer-meta {
    justify-items: start;
    text-align: left;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
