@font-face {
  font-family: "ALTA MIRA Sans";
  src: url("assets/fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --navy: #233c55;
  --navy-deep: #172c40;
  --navy-card: #2d4e69;
  --gold: #e3c77e;
  --gold-soft: #f0dfad;
  --ivory: #f7f5ef;
  --white: #ffffff;
  --charcoal: #25292d;
  --muted: #6f767d;
  --line: rgba(35, 60, 85, .16);
  --shadow: 0 24px 60px rgba(20, 42, 61, .11);
  --radius: 2px;
  --shell: min(1180px, calc(100vw - 48px));
  --font: "Avenir Next", Avenir, "ALTA MIRA Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
main section[id] { scroll-margin-top: 84px; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  z-index: 200;
  border-radius: 2px;
}
.skip-link:focus { transform: translateY(0); }

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

.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(23,44,64,.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.brand-crest {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid rgba(227,199,126,.48);
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: .92rem; letter-spacing: .14em; }
.brand-copy small { margin-top: 5px; font-size: .65rem; color: rgba(255,255,255,.66); letter-spacing: .03em; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  text-decoration: none;
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold); }
.heritage-nav-mobile { display: none; }
.main-nav .nav-cta {
  border: 1px solid rgba(227,199,126,.6);
  padding: 10px 15px;
  color: var(--gold-soft);
}
.menu-toggle { display: none; }

/* Keep the extended executive navigation calm and balanced on compact desktops. */
@media (min-width: 981px) and (max-width: 1240px) {
  .main-nav { gap: 15px; }
  .main-nav a {
    font-size: .70rem;
    letter-spacing: .055em;
  }
  .main-nav .nav-cta { padding: 9px 11px; }
  .lang-switch { gap: 5px; }
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(23,44,64,.98), rgba(35,60,85,.98)),
    var(--navy);
  color: var(--white);
  min-height: 690px;
  display: grid;
  align-items: center;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom right, black, transparent 80%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
  z-index: -2;
}
.hero-glow-one {
  width: 540px; height: 540px;
  right: -200px; top: -180px;
  background: radial-gradient(circle, rgba(227,199,126,.16), transparent 68%);
}
.hero-glow-two {
  width: 500px; height: 500px;
  left: 30%; bottom: -340px;
  background: radial-gradient(circle, rgba(255,255,255,.07), transparent 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 88px;
  align-items: center;
  padding-block: 100px 108px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 700;
}
.eyebrow.dark { color: var(--navy-card); }
.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3.2rem, 6.4vw, 6.15rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 550;
}
.hero-lead {
  max-width: 780px;
  margin: 34px 0 0;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  color: rgba(255,255,255,.88);
  line-height: 1.55;
}
.hero-detail {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 21px;
  text-decoration: none;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--gold); color: var(--navy-deep); }
.button-primary:hover { background: var(--gold-soft); }
.button-ghost { border-color: rgba(255,255,255,.26); color: var(--white); }
.button-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.button-gold { background: var(--gold); color: var(--navy-deep); width: fit-content; }
.button-gold:hover { background: var(--gold-soft); }

.hero-signature {
  width: min(100%, 330px);
  justify-self: end;
  border-left: 1px solid rgba(227,199,126,.52);
  padding-left: 32px;
}
.crest-frame {
  width: 132px;
  padding: 8px;
  border: 1px solid rgba(227,199,126,.48);
  background: rgba(255,255,255,.025);
  margin-bottom: 28px;
}
.signature-name { margin: 0; font-size: 1.25rem; font-weight: 650; }
.signature-role { margin: 6px 0 0; color: rgba(255,255,255,.58); font-size: .82rem; }
.signature-rule { width: 54px; height: 1px; background: var(--gold); margin: 22px 0; }
.signature-claim { color: var(--gold-soft); font-size: 1rem; margin: 0; }

.section { padding-block: 105px; }
.section-soft { background: var(--ivory); }
.statement-grid {
  display: grid;
  grid-template-columns: 80px minmax(0, 850px);
  gap: 48px;
  justify-content: center;
}
.section-index { color: var(--gold); font-weight: 700; font-size: .86rem; padding-top: 8px; }
.statement h2, .section-heading h2, .split h2, .profile h2, .contact h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 550;
}
.large-copy {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.55;
  color: #33383d;
}
.principles { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 30px; color: var(--navy); font-weight: 650; }
.principles span:not(:last-child)::after { content: "·"; color: var(--gold); margin-left: 28px; }

.section-heading { max-width: 830px; margin-bottom: 54px; }
.section-heading.narrow { max-width: 760px; }
.section-heading > p:last-child { color: var(--muted); max-width: 720px; font-size: 1.05rem; }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.expertise-card {
  position: relative;
  padding: 34px 30px 30px;
  min-height: 460px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform .22s ease, box-shadow .22s ease;
}
.expertise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.expertise-card.featured { background: var(--navy); color: var(--white); border-color: var(--navy); }
.card-number { font-size: .72rem; color: var(--gold); font-weight: 700; letter-spacing: .12em; }
.expertise-card h3 { font-size: 1.55rem; margin: 22px 0 8px; line-height: 1.15; color: var(--navy-deep); }
.expertise-card.featured h3 { color: var(--white); }
.card-intro { margin: 0 0 25px; color: var(--muted); }
.featured .card-intro { color: rgba(255,255,255,.58); }
.audience-note {
  width: fit-content;
  margin: -8px 0 22px;
  padding: 6px 10px;
  border: 1px solid rgba(181, 145, 65, .36);
  background: rgba(240, 223, 173, .28);
  color: #80652d;
  font-size: .67rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.expertise-card ul { margin: 0 0 30px; padding: 0; list-style: none; }
.expertise-card li { padding: 9px 0; border-top: 1px solid var(--line); font-size: .93rem; }
.featured li { border-color: rgba(255,255,255,.13); }
.text-link { margin-top: auto; text-decoration: none; color: var(--navy); font-weight: 700; font-size: .82rem; }
.featured .text-link { color: var(--gold-soft); }
.text-link span { margin-left: 5px; }

.split {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 100px;
}
.section-index-inline {
  display: block;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: 22px;
}
.split-copy > p { max-width: 700px; }
.split-copy > p:not(.large-copy) { color: var(--muted); }
.service-lines { margin-top: 42px; border-top: 1px solid var(--line); }
.service-lines div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.service-lines strong { color: var(--navy); }
.service-lines span { color: var(--muted); }

.dark-section { background: var(--navy-deep); color: var(--white); }
.dark-section h2 { color: var(--white); }
.development-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 100px;
  align-items: start;
}
.development-main h2 {
  margin: 0 0 30px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 520;
}
.development-main > p:last-child { max-width: 760px; }
.development-aside {
  border-left: 1px solid rgba(227,199,126,.52);
  padding-left: 34px;
  color: rgba(255,255,255,.7);
}

/* Einheitliche Typografie und Abstände in den vertieften Leistungsbeschreibungen */
.split-copy > .expertise-detail-copy {
  margin: 20px 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
}
#hospitality .split-copy > .expertise-detail-copy:first-child {
  margin: 0;
}
.development-main > .expertise-detail-copy,
.development-aside > .expertise-detail-copy {
  margin: 0;
  color: rgba(255,255,255,.70);
  font-size: 1.05rem;
  line-height: 1.6;
}
.development-main > .expertise-detail-copy {
  max-width: 760px;
}
.development-main > .expertise-detail-copy + .expertise-detail-copy,
.development-aside > .expertise-detail-copy + .expertise-detail-copy {
  margin-top: 20px;
}
.section-heading > .expertise-detail-copy {
  margin: 20px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.interface-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 28px; }
.interface-list span {
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 10px;
  font-size: .74rem;
  color: rgba(255,255,255,.76);
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.advisory-item {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.advisory-item > span { color: var(--gold); font-size: .72rem; font-weight: 700; }
.advisory-item h3 { color: var(--navy-deep); margin: 18px 0 8px; font-size: 1.12rem; }
.advisory-item h3 a { color: inherit; text-decoration: none; }
.advisory-item p { margin: 0; color: var(--muted); font-size: .92rem; }
.advisory-item.private-card { background: var(--ivory); }

.private-callout {
  margin-top: 54px;
  border: 1px solid var(--line);
  background: var(--ivory);
  padding: 34px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.private-callout h3 { margin: 0; color: var(--navy-deep); font-size: 1.65rem; }
.private-callout p:last-child { color: var(--muted); margin: 0; }
.legal-note {
  margin-top: 22px;
  padding: 22px 26px;
  background: #f4f5f5;
  border-left: 3px solid var(--gold);
  font-size: .88rem;
}
.legal-note strong { color: var(--navy); }
.legal-note p { margin: 7px 0 0; color: #62686e; }

.profile-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
  align-items: start;
}
.portrait-placeholder {
  min-height: 550px;
  position: relative;
  display: grid;
  place-content: center;
  text-align: center;
  background:
    linear-gradient(140deg, rgba(35,60,85,.96), rgba(45,78,105,.9)),
    var(--navy);
  color: var(--white);
  border-bottom: 7px solid var(--gold);
}
.portrait-placeholder::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(227,199,126,.28);
}
.portrait-mark {
  font-size: 5.8rem;
  line-height: 1;
  color: var(--gold-soft);
  letter-spacing: -.06em;
  font-weight: 400;
}
.portrait-placeholder p { margin: 18px 0 0; text-transform: uppercase; font-size: .72rem; letter-spacing: .17em; }
.portrait-placeholder small { color: rgba(255,255,255,.5); margin-top: 4px; }
.profile-copy > p { color: var(--muted); }
.profile-copy .large-copy { color: #33383d; }
.profile-copy blockquote {
  margin: 34px 0 0;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  color: var(--navy);
  font-size: 1.1rem;
  font-style: normal;
}

.heritage-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 31px;
  padding: 20px 22px;
  color: var(--navy-deep);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(35,60,85,.15);
  border-left: 2px solid var(--gold);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.heritage-entry:hover,
.heritage-entry:focus-visible {
  background: var(--white);
  border-color: rgba(35,60,85,.27);
  transform: translateY(-1px);
}
.heritage-entry > span:first-child { display: grid; gap: 4px; }
.heritage-entry-kicker {
  color: var(--navy-card);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .16em;
}
.heritage-entry strong {
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.heritage-entry-arrow {
  flex: 0 0 auto;
  color: #a77f2a;
  font-size: 1.15rem;
  transition: transform .2s ease;
}
.heritage-entry:hover .heritage-entry-arrow,
.heritage-entry:focus-visible .heritage-entry-arrow { transform: translateX(4px); }

.process-steps {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.process-steps li { padding: 24px 20px 10px 0; position: relative; }
.process-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 22px; top: -4px;
  width: 8px; height: 8px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}
.process-steps span { color: var(--gold); font-size: .7rem; font-weight: 700; display: block; margin-bottom: 12px; }
.process-steps strong { color: var(--navy); }
.process-steps p { font-size: .88rem; color: var(--muted); }

.footer-network {
  margin-bottom: 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.network-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.selected-network-link {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  row-gap: 8px;
  padding: 19px 22px;
  border: 1px solid rgba(227, 199, 126, .24);
  border-left: 2px solid var(--gold);
  background: linear-gradient(100deg, rgba(255, 255, 255, .035), rgba(227, 199, 126, .07));
  color: var(--white);
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}
.network-logo-slot {
  grid-row: 1 / span 2;
  display: grid;
  width: 106px;
  min-height: 56px;
  place-items: center;
}
.network-logo {
  display: block;
  object-fit: contain;
}
.network-logo--monogram { width: 52px; height: 52px; }
.network-logo--wordmark { width: 106px; height: auto; }
.network-copy {
  display: grid;
  min-width: 0;
  line-height: 1.35;
}
.network-kicker {
  margin-bottom: 4px;
  color: rgba(227, 199, 126, .82);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .17em;
}
.network-copy strong {
  color: var(--white);
  font-size: .94rem;
  font-weight: 650;
  letter-spacing: .01em;
}
.network-copy > span:last-child {
  margin-top: 2px;
  color: rgba(255, 255, 255, .58);
  font-size: .76rem;
}
.network-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-soft);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  white-space: nowrap;
  justify-self: start;
}
.network-action span:last-child {
  color: var(--gold);
  font-size: 1.05rem;
  line-height: 1;
}
.selected-network-link:hover {
  border-color: rgba(227, 199, 126, .66);
  background: linear-gradient(100deg, rgba(255, 255, 255, .055), rgba(227, 199, 126, .12));
  box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
  transform: translateY(-1px);
}
.selected-network-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}
.contact-copy h2 { color: var(--white); }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.67); }
.contact-direct { display: grid; gap: 8px; margin-top: 30px; }
.contact-direct a { color: var(--gold-soft); text-decoration: none; width: fit-content; }
.contact-form {
  background: var(--white);
  color: var(--charcoal);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; color: #454b50; font-size: .83rem; font-weight: 650; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid #d9dde0;
  border-radius: 0;
  padding: 12px 13px;
  background: #fff;
  color: var(--charcoal);
  outline: none;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--navy-card); box-shadow: 0 0 0 3px rgba(45,78,105,.08); }
.optional { color: #8c9297; font-weight: 400; }
.checkbox { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: 10px !important; font-weight: 400 !important; }
.checkbox input { width: auto; margin-top: 5px; }
.checkbox a { color: var(--navy); }
.form-note { font-size: .75rem; color: #858b90; margin: 12px 0 0; }
.form-status { margin-top: 12px; font-size: .85rem; min-height: 1.4em; }
.form-status.is-success { color: #2f6f55; }
.form-status.is-error { color: #a13c34; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.site-footer { background: #102536; color: var(--white); padding: 48px 0 22px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr .9fr 1fr;
  gap: 40px;
  align-items: center;
}
.footer-brand { display: flex; gap: 13px; align-items: center; }
.footer-crest { width: 44px; height: 44px; object-fit: cover; border: 1px solid rgba(227,199,126,.3); }
.footer-brand div { display: grid; }
.footer-brand strong { letter-spacing: .12em; font-size: .82rem; }
.footer-brand span { color: rgba(255,255,255,.5); font-size: .68rem; }
.footer-claim { color: var(--gold-soft); text-align: center; }
.footer-links { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .75rem; }
.footer-links a:hover { color: var(--gold); }
.linkedin-link {
  width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 23px;
  border: 1px solid rgba(227,199,126,.52);
  color: var(--gold-soft);
  font-family: Arial, sans-serif;
  font-size: .74rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.04em;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.footer-links .linkedin-link:hover,
.footer-links .linkedin-link:focus-visible {
  color: var(--navy-deep);
  border-color: var(--gold);
  background: var(--gold-soft);
  outline: none;
}
.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.36);
  font-size: .68rem;
}

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.legal-page { background: var(--ivory); min-height: 100vh; }
.legal-main { padding: 72px 0 110px; }
.legal-shell { max-width: 880px; }
.legal-main h1 { font-size: clamp(2.6rem, 5vw, 4.6rem); letter-spacing: -.05em; color: var(--navy-deep); margin: 0 0 14px; }
.legal-main h2 { margin-top: 42px; color: var(--navy-deep); font-size: 1.35rem; }
.legal-main p, .legal-main li { color: #545a60; }
.legal-warning {
  border-left: 3px solid #b06b3c;
  background: #fff6ef;
  padding: 18px 20px;
  margin: 28px 0;
  color: #70472b !important;
}
.legal-main a { color: var(--navy); }

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 820px); }
  .header-inner { min-height: 72px; }
  .menu-toggle {
    display: grid;
    gap: 4px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.18);
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 1px; background: var(--white); }
  .main-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 72px;
    background: var(--navy-deep);
    padding: 22px 18px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 0; }
  .main-nav .heritage-nav-mobile {
    display: block;
    margin: -4px 0 7px;
    padding: 8px 0 8px 18px;
    color: rgba(227,199,126,.78);
    border-left: 1px solid rgba(227,199,126,.42);
    font-size: .68rem;
    letter-spacing: .07em;
  }
  .main-nav .nav-cta { margin-top: 8px; text-align: center; }
  .hero-grid, .split, .development-grid, .profile-grid, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .portrait-photo { margin-top: 0; }
  #hospitality .split { row-gap: 28px; }
  .hero { min-height: auto; }
  .hero-grid { padding-block: 82px; }
  .hero-signature { justify-self: start; width: 100%; max-width: 600px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: auto; }
  .advisory-grid { grid-template-columns: repeat(2, 1fr); }
  .private-callout { grid-template-columns: 1fr; gap: 18px; }
  .process-steps { grid-template-columns: 1fr; border-top: 0; }
  .process-steps li { border-top: 1px solid var(--line); }
  .process-steps li::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-claim { text-align: left; }
  .footer-links { justify-content: flex-start; }
  .network-links { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100vw - 28px); }
  .brand-copy small { display: none; }
  .brand-crest { width: 42px; height: 42px; }
  .section { padding-block: 76px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .hero-lead { font-size: 1.08rem; }
  .hero-signature { padding-left: 22px; }
  .statement-grid { grid-template-columns: 1fr; gap: 18px; }
  .section-index { padding-top: 0; }
  .advisory-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 20px; }
  .footer-network {
    margin-bottom: 28px;
    padding-bottom: 28px;
  }
  .selected-network-link {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    padding: 17px 16px;
  }
  .network-logo-slot { width: 82px; min-height: 48px; }
  .network-logo--monogram { width: 48px; height: 48px; }
  .network-logo--wordmark { width: 82px; height: auto; }
  .network-action {
    grid-column: 2;
    justify-self: start;
    margin-top: -5px;
  }
  .network-copy strong { font-size: .88rem; }
  .network-copy > span:last-child { font-size: .72rem; }
  .service-lines div { grid-template-columns: 1fr; gap: 5px; }
  .portrait-placeholder { min-height: 420px; }
  .footer-bottom { flex-direction: column; }
}

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


/* FINAL – Logo exakt mittig ausgerichtet */
.brand-crest,
.footer-crest {
  object-fit: contain !important;
  object-position: center center !important;
}

.crest-frame {
  display: grid !important;
  place-items: center !important;
}

.crest-frame img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  object-position: center center !important;
}


/* Persönliche Expertise / ausgewählte Erfahrung */
.experience-panel {
  margin-top: 82px;
  padding-top: 52px;
  border-top: 1px solid var(--line);
}
.experience-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.experience-heading h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 550;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.experience-item {
  min-height: 290px;
  padding: 25px 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.58);
}
.experience-period {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .68rem;
  font-weight: 700;
  min-height: 34px;
}
.experience-item h4 {
  margin: 15px 0 12px;
  color: var(--navy-deep);
  font-size: 1rem;
  line-height: 1.28;
}
.experience-item p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.58;
}

@media (max-width: 1100px) {
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .experience-panel { margin-top: 58px; padding-top: 38px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-item { min-height: auto; }
}


/* Finales Executive-Portrait */
.portrait-photo {
  margin: 42px 0 0;
  min-height: 550px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 7px solid var(--gold);
}
.portrait-photo::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(227,199,126,.28);
  pointer-events: none;
}
.portrait-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 620px) {
  .portrait-photo,
  .portrait-photo img {
    min-height: 430px;
  }

  .portrait-photo { margin-top: 0; }
}


/* Finales Portrait – optimierter Zuschnitt */
.portrait-photo img {
  object-fit: cover !important;
  object-position: center 34% !important;
}

.legal-nav {
  display: flex;
  position: static;
  padding: 0;
  background: none;
}

.legal-footer.footer-bottom { margin-top: 0; }
.legal-footer a { color: inherit; }


/* HOW I WORK – klare Abgrenzung zwischen Erstkontakt und beauftragter Beratung */
.process-note {
  width: 100%;
  max-width: none;
  margin: 34px 0 0;
  padding: 18px 22px;
  border-left: 2px solid var(--gold);
  background: rgba(31, 58, 78, 0.04);
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}
.process-note strong {
  color: var(--navy);
}


/* Experience Grid – finale Desktop-Anordnung */
@media (min-width: 1101px) {
  .experience-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (min-width: 701px) and (max-width: 1100px) {
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
}


/* HOW I WORK – finale Breitenkorrektur */
@media (min-width: 1101px) {
  .process-steps {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* Klare Grundlage – volle Breite */
.process-note {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

/* ALTA MIRA v1.4 final basis - refined hero hierarchy */
.hero h1 {
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  line-height: 1.03;
}
.hero-grid {
  padding-block: 118px 108px;
}
.hero-label {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(227,199,126,.95);
  font-weight: 600;
}
.hero-label-detail {
  margin-top: 24px;
}
.hero-lead {
  margin-top: 0;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.58;
}
.hero-detail {
  font-size: .94rem;
  line-height: 1.55;
}


/* ALTA MIRA v1.4 - competence text refinement */
.hero-detail {
  font-size: 1.05rem;
  line-height: 1.6;
}


/* ALTA MIRA v1.4 - stable hero typography */
.perspective-intro,
.hero-lead,
.hero-detail {
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.58;
}

.hero-detail {
  color: rgba(255,255,255,.88);
}


/* ALTA MIRA MASTER BASIS FINAL - hero typography lock */
.perspective-intro,
.hero-lead,
.hero-detail {
  font-size: clamp(1.08rem, 1.45vw, 1.28rem) !important;
  line-height: 1.58 !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,.88) !important;
  opacity: 1 !important;
}


/* ALTA MIRA MASTER BASIS FINAL - spacing lock */
.hero-label,
.hero-label-detail {
  margin-top: 28px !important;
  margin-bottom: 16px !important;
}

.perspective-intro,
.hero-lead,
.hero-detail {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}


/* ALTA MIRA MASTER v1.5 - ABOUT body typography lock */
.profile-copy > p,
.profile-copy .large-copy {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
  color: var(--muted) !important;
  opacity: 1 !important;
}

/* Preserve the small ABOUT eyebrow if present */
.profile-copy > .eyebrow {
  font-size: .72rem !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}


/* ALTA MIRA - integrated executive reference */
.reference-panel {
  margin-top: 54px;
  padding: 26px 0 4px;
  display: grid;
  grid-template-columns: minmax(180px, .38fr) minmax(0, 1.62fr);
  gap: 38px;
  align-items: start;
  background: transparent;
  border: 0;
}
.reference-panel + .reference-panel {
  margin-top: 22px;
  padding-top: 30px;
  border-top: 1px solid rgba(35, 60, 85, .12);
}
.reference-heading .eyebrow {
  margin-bottom: 8px;
  color: rgba(35, 60, 85, .68);
  font-size: .64rem;
  letter-spacing: .16em;
}
.reference-heading h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -.018em;
  font-weight: 550;
}
.reference-content {
  border-left: 1px solid var(--gold);
  padding-left: 32px;
}
.reference-content blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--navy);
  font-size: .84rem;
  line-height: 1.68;
  font-style: italic;
}
.reference-author {
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--navy-deep);
}
.reference-author strong {
  font-size: .9rem;
  font-weight: 700;
}
.reference-author span {
  color: var(--muted);
  font-size: .78rem;
}
@media (max-width: 820px) {
  .reference-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0 2px;
  }
  .reference-panel + .reference-panel {
    margin-top: 20px;
    padding-top: 26px;
  }
  .reference-content {
    border-left: 1px solid var(--gold);
    border-top: 0;
    padding-left: 18px;
    padding-top: 0;
  }
}
@media (max-width: 620px) {
  .reference-panel {
    margin-top: 34px;
    padding: 20px 0 0;
  }
  .reference-panel + .reference-panel {
    margin-top: 18px;
    padding-top: 22px;
  }
  .reference-heading h3 {
    font-size: 1.12rem;
    line-height: 1.22;
  }
  .reference-heading .eyebrow {
    margin-bottom: 6px;
  }
  .reference-content {
    padding-left: 15px;
  }
  .reference-content blockquote {
    font-size: .86rem;
    line-height: 1.56;
  }
  .reference-author {
    margin-top: 12px;
  }
  .reference-author strong {
    font-size: .88rem;
  }
  .reference-author span {
    font-size: .76rem;
  }
}


/* Navigation interaction fix */
.main-nav {
  position: relative;
  z-index: 300;
}
.main-nav.legal-nav {
  display: flex;
  position: static;
  inset: auto;
  padding: 0;
  background: none;
  border: 0;
}
.main-nav a {
  position: relative;
  z-index: 301;
  pointer-events: auto;
}


/* ALTA MIRA – international availability */
.contact-availability {
  margin: 18px 0 0;
  color: rgba(255,255,255,.68);
  font-size: .88rem;
  line-height: 1.5;
  letter-spacing: .01em;
}


/* ALTA MIRA – language switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 2px;
  white-space: nowrap;
}
.main-nav .lang-switch a {
  padding: 0;
  font-size: .70rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.52);
}
.main-nav .lang-switch a:hover,
.main-nav .lang-switch a:focus-visible {
  color: var(--gold);
}
.main-nav .lang-switch a.is-active {
  color: var(--gold-soft);
  font-weight: 700;
}
.lang-separator {
  color: rgba(227,199,126,.42);
  font-size: .72rem;
}
@media (max-width: 980px) {
  .lang-switch {
    margin: 12px 0 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.08);
    justify-content: flex-start;
  }
  .main-nav .lang-switch a {
    padding: 6px 0;
  }
  .main-nav {
    position: absolute;
    left: auto;
    right: 18px;
    top: 72px;
    width: min(320px, calc(100vw - 36px));
  }
}


/* ALTA MIRA – Perspektiven / Insights */
.main-nav > a.is-section-current {
  color: var(--gold-soft);
}

.editorial-page {
  background: var(--ivory);
}

.editorial-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(23,44,64,.99), rgba(35,60,85,.98)),
    var(--navy);
}
.editorial-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom right, black, transparent 84%);
}
.editorial-glow {
  position: absolute;
  width: 580px;
  height: 580px;
  right: -210px;
  top: -250px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,199,126,.15), transparent 68%);
  pointer-events: none;
}
.editorial-hero-inner {
  max-width: 1040px;
  padding-block: 104px 100px;
}
.editorial-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.75rem);
  font-weight: 550;
  line-height: 1;
  letter-spacing: -.055em;
}
.editorial-lead {
  max-width: 790px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.1rem, 1.7vw, 1.36rem);
  line-height: 1.65;
}
.editorial-cadence {
  margin: 31px 0 0;
  color: var(--gold-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.editorial-list {
  padding-block: 92px 112px;
}
.editorial-list-heading {
  max-width: 900px;
  margin-bottom: 42px;
}
.editorial-list-heading h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -.045em;
}
.perspective-card {
  display: grid;
  grid-template-columns: minmax(260px, .64fr) minmax(0, 1.36fr);
  max-width: 1080px;
  overflow: hidden;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}

.perspective-card + .perspective-card {
  margin-top: 32px;
}
.perspective-card:hover,
.perspective-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 30px 68px rgba(20,42,61,.15);
}
.perspective-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.perspective-image {
  align-self: start;
  background: var(--navy-deep);
}
.perspective-image img {
  display: block;
  width: 100%;
  height: auto;
}
.perspective-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 64px);
}
.perspective-meta {
  margin-bottom: 19px;
  color: var(--navy-card);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.6;
  text-transform: uppercase;
}
.perspective-card-copy > strong {
  display: block;
  max-width: 680px;
  color: var(--navy-deep);
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  font-weight: 550;
  letter-spacing: -.045em;
  line-height: 1.08;
}
.perspective-excerpt {
  display: block;
  max-width: 650px;
  margin-top: 23px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}
.perspective-action {
  display: block;
  margin-top: 28px;
  color: var(--navy-deep);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.perspective-action span {
  display: inline-block;
  margin-left: 7px;
  color: #b18c37;
  transition: transform .2s ease;
}
.perspective-card:hover .perspective-action span,
.perspective-card:focus-visible .perspective-action span {
  transform: translateX(4px);
}

.article-hero {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.article-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,199,126,.18), transparent 68%);
  pointer-events: none;
}
.article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  padding-block: 76px 84px;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 50px;
  color: var(--navy-card);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}
.article-back span {
  color: #ad8730;
  font-size: 1rem;
}
.article-back:hover,
.article-back:focus-visible {
  color: var(--navy-deep);
}
.article-hero h1 {
  max-width: 940px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(3rem, 6vw, 5.7rem);
  font-weight: 550;
  letter-spacing: -.055em;
  line-height: 1;
}
.article-intro {
  max-width: 790px;
  margin: 31px 0 0;
  color: var(--navy-card);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
}
.hospitality-service-article .article-intro {
  margin-top: 20px;
}
.article-meta {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .73rem;
  font-weight: 650;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.article-meta + .article-intro {
  margin-top: 27px;
}

.article-content {
  padding-block: 94px 104px;
  background: var(--white);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(220px, 270px);
  justify-content: center;
  gap: clamp(60px, 8vw, 104px);
  align-items: start;
}
.article-copy {
  color: #33383d;
  font-size: 1.06rem;
  line-height: 1.86;
}
.article-copy p {
  margin: 0 0 27px;
}
.article-copy h2 {
  margin: 54px 0 24px;
  color: var(--navy-deep);
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.25;
}
.hospitality-service-article .article-copy h2 {
  margin-block: 48px;
}
.article-copy .article-opening {
  color: var(--navy-deep);
  font-size: inherit;
  line-height: inherit;
}
.article-copy blockquote {
  margin: 48px 0;
  padding: 4px 0 4px 31px;
  color: var(--navy-deep);
  border-left: 2px solid var(--gold);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-style: italic;
  font-weight: 450;
  line-height: 1.5;
}
.article-author {
  position: sticky;
  top: 120px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.article-author img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  margin-bottom: 27px;
  object-fit: cover;
  object-position: right 34%;
  border-bottom: 4px solid var(--gold);
}
.article-author .eyebrow {
  margin-bottom: 9px;
}
.article-author h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 1.38rem;
  font-weight: 650;
  line-height: 1.25;
}
.article-author p:not(.eyebrow) {
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.65;
}
.article-author a {
  color: var(--navy-card);
  font-size: .69rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}
.article-author a:hover,
.article-author a:focus-visible {
  color: #9a7424;
}
.article-next {
  padding-block: 50px;
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid rgba(227,199,126,.32);
}
.article-next-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.article-next p {
  max-width: 660px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .98rem;
}
.article-next a {
  flex: 0 0 auto;
  color: var(--gold-soft);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}
.article-next a:hover,
.article-next a:focus-visible {
  color: var(--white);
}
.editorial-footer {
  padding-top: 48px;
}

@media (max-width: 980px) {
  .perspective-card {
    grid-template-columns: minmax(230px, .8fr) minmax(0, 1.2fr);
  }
  .perspective-image {
    min-height: 0;
  }
  .article-layout {
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 50px;
  }
}

@media (max-width: 760px) {
  .editorial-hero-inner {
    padding-block: 76px 78px;
  }
  .editorial-list {
    padding-block: 70px 82px;
  }
  .perspective-card {
    grid-template-columns: 1fr;
  }
  .perspective-image {
    min-height: 0;
    aspect-ratio: auto;
  }
  .perspective-image img {
    object-position: center 31%;
  }
  .perspective-card-copy {
    padding: 34px 28px 38px;
  }
  .article-hero-inner {
    padding-block: 52px 62px;
  }
  .article-back {
    margin-bottom: 37px;
  }
  .article-content {
    padding-block: 66px 74px;
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }
  .article-copy {
    font-size: 1rem;
    line-height: 1.78;
  }
  .article-copy .article-opening {
    font-size: inherit;
  }
  .article-author {
    position: static;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    column-gap: 25px;
    align-items: start;
  }
  .article-author img {
    grid-row: 1 / 5;
    margin: 0;
  }
  .article-author .eyebrow {
    align-self: end;
  }
  .article-next-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .editorial-hero h1,
  .article-hero h1 {
    font-size: clamp(2.5rem, 13.5vw, 3.35rem);
  }
  .perspective-card-copy > strong {
    font-size: 2rem;
  }
  .article-copy blockquote {
    margin-block: 38px;
    padding-left: 21px;
  }
  .hospitality-service-article .article-copy h2 {
    margin-block: 38px;
  }
  .article-author {
    grid-template-columns: 96px minmax(0, 1fr);
    column-gap: 19px;
  }
}


/* ALTA MIRA – Heritage / Herkunft */
.heritage-page { background: var(--ivory); }

.heritage-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(23,44,64,.99), rgba(35,60,85,.98)),
    var(--navy);
}
.heritage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom right, black, transparent 84%);
}
.heritage-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -180px;
  top: -240px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,199,126,.16), transparent 68%);
  pointer-events: none;
}
.heritage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: clamp(70px, 10vw, 132px);
  align-items: center;
  padding-block: 98px 108px;
}
.heritage-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 50px;
  color: rgba(255,255,255,.66);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}
.heritage-back span { color: var(--gold); font-size: 1rem; }
.heritage-back:hover,
.heritage-back:focus-visible { color: var(--white); }
.heritage-hero h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(3rem, 5.9vw, 5.55rem);
  font-weight: 550;
  letter-spacing: -.055em;
  line-height: 1.01;
}
.heritage-hero-copy > p:last-child {
  max-width: 760px;
  margin: 31px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.12rem, 1.7vw, 1.36rem);
  line-height: 1.64;
}
.heritage-emblem {
  justify-self: end;
  width: min(100%, 315px);
  padding: 35px 30px 31px;
  border: 1px solid rgba(227,199,126,.4);
  background: rgba(255,255,255,.025);
  text-align: center;
}
.heritage-emblem img {
  width: 178px;
  height: 178px;
  margin: 0 auto 28px;
  object-fit: contain;
}
.heritage-emblem span,
.heritage-emblem strong { display: block; }
.heritage-emblem span {
  color: rgba(255,255,255,.58);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.55;
}
.heritage-emblem strong {
  margin-top: 8px;
  color: var(--gold-soft);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .11em;
}

.heritage-story { padding-block: 108px 112px; background: var(--white); }
.heritage-story-grid {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(65px, 9vw, 112px);
  align-items: start;
}
.heritage-story-heading { position: sticky; top: 124px; }
.heritage-story-heading h2,
.heritage-photo-archive h2,
.heritage-timeline-heading h2,
.heritage-present h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 550;
  letter-spacing: -.045em;
  line-height: 1.08;
}
.heritage-copy {
  color: #3e4449;
  font-size: 1.06rem;
  line-height: 1.86;
}
.heritage-copy p { margin: 0 0 27px; }
.heritage-copy .heritage-opening { color: var(--navy-deep); }
.heritage-copy blockquote {
  margin: 46px 0 0;
  padding: 5px 0 5px 29px;
  color: var(--navy-deep);
  border-left: 2px solid var(--gold);
  font-size: clamp(1.3rem, 2vw, 1.62rem);
  font-style: italic;
  font-weight: 450;
  line-height: 1.5;
}

.heritage-document {
  padding: 0 0 112px;
  background: var(--white);
}
.heritage-document-figure {
  max-width: 1040px;
  margin: 0 auto;
}
.heritage-document-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.23fr);
  gap: clamp(14px, 2vw, 20px);
  align-items: end;
}
.heritage-document-pair img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(23,44,64,.12);
  box-shadow: 0 16px 36px rgba(23,44,64,.08);
}
.heritage-document-figure figcaption {
  display: grid;
  grid-template-columns: minmax(270px, .46fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  margin-top: 23px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}
.heritage-archive-sign {
  display: flex;
  min-height: 154px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-align: center;
}
.heritage-archive-sign-mark {
  display: grid;
  width: 90px;
  height: 118px;
  place-items: center;
}
.heritage-archive-sign-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.heritage-archive-sign small {
  display: block;
  margin-top: -5px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 450;
  line-height: 1.45;
}
.heritage-document-figure figcaption span {
  color: #8a6925;
  font-size: .67rem;
  font-weight: 750;
  letter-spacing: .13em;
  line-height: 1.55;
}
.heritage-document-figure figcaption p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.7;
}
.heritage-document-figure figcaption cite { font-style: italic; }

.heritage-photo-archive {
  padding-block: 102px 110px;
  background: var(--ivory);
}
.heritage-photo-archive-intro {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(58px, 8vw, 104px);
  align-items: end;
  margin-bottom: 48px;
  padding-top: 17px;
  border-top: 2px solid var(--gold);
}
.heritage-photo-archive-intro > div { padding-top: 32px; }
.heritage-photo-archive-copy {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}
.heritage-photo-archive-copy p { margin: 0 0 18px; }
.heritage-photo-archive-copy p:last-child { margin-bottom: 0; }
.heritage-photo-gallery {
  max-width: 1040px;
  margin: 0 auto;
}
.heritage-photo-gallery figure { margin: 0; }
.heritage-photo-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(23,44,64,.12);
  box-shadow: 0 16px 36px rgba(23,44,64,.08);
}
.heritage-photo-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
  margin-top: clamp(16px, 2.2vw, 24px);
}
.heritage-photo-gallery figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.55;
}
.heritage-photo-source {
  margin: 28px 0 0;
  padding-top: 17px;
  color: #8a6925;
  border-top: 1px solid var(--line);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.55;
  text-transform: uppercase;
}

.heritage-timeline {
  padding-block: 82px 88px;
  color: var(--white);
  background: var(--navy-deep);
}
.heritage-timeline-heading { max-width: 850px; }
.heritage-timeline-heading h2 { color: var(--white); }
.heritage-moments {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(227,199,126,.42);
}
.heritage-moments li {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 245px;
  padding: 28px 20px 10px 0;
}
.heritage-moments li:not(:last-child) { border-right: 1px solid rgba(255,255,255,.1); }
.heritage-moments li:not(:first-child) { padding-left: 20px; }
.heritage-moments span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .13em;
}
.heritage-moments strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
}
.heritage-moments p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.6);
  font-size: .84rem;
  line-height: 1.72;
}

.heritage-present { padding-block: 106px 112px; background: var(--ivory); }
.heritage-present-panel {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: clamp(65px, 9vw, 112px);
  padding-top: 17px;
  border-top: 2px solid var(--gold);
}
.heritage-present-panel > div { padding-top: 39px; }
.heritage-present-copy {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}
.heritage-present-copy p { margin: 0 0 23px; }
.heritage-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 35px;
}
.heritage-text-link {
  color: var(--navy-card);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}
.heritage-text-link span { color: #a77f2a; margin-left: 6px; }
.heritage-text-link:hover,
.heritage-text-link:focus-visible { color: var(--navy-deep); }

.heritage-source-note { padding-block: 34px; background: #eef0ee; border-top: 1px solid var(--line); }
.heritage-source-note .shell {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
}
.heritage-source-note strong {
  color: var(--navy-deep);
  font-size: .67rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.heritage-source-note p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.65; }

@media (max-width: 980px) {
  .heritage-hero-grid,
  .heritage-story-grid,
  .heritage-present-panel { grid-template-columns: 1fr; }
  .heritage-hero-grid { gap: 62px; }
  .heritage-emblem { justify-self: start; }
  .heritage-story-heading { position: static; }
  .heritage-photo-archive-intro { grid-template-columns: 1fr; gap: 14px; }
  .heritage-moments {
    grid-template-columns: repeat(6, 220px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }
  .heritage-moments li { grid-column: auto; min-height: 245px; }
}

@media (max-width: 620px) {
  .heritage-entry { padding: 17px 18px; }
  .heritage-entry strong { font-size: .9rem; }
  .heritage-hero-grid { padding-block: 67px 76px; }
  .heritage-back { margin-bottom: 37px; }
  .heritage-emblem { width: 100%; }
  .heritage-story { padding-block: 76px 82px; }
  .heritage-story-grid { gap: 42px; }
  .heritage-copy { font-size: 1rem; line-height: 1.78; }
  .heritage-copy blockquote { margin-top: 38px; padding-left: 21px; }
  .heritage-document { padding-bottom: 82px; }
  .heritage-document-pair { grid-template-columns: 1fr; gap: 16px; }
  .heritage-document-figure figcaption { grid-template-columns: 1fr; gap: 9px; }
  .heritage-archive-sign { margin-bottom: 14px; }
  .heritage-photo-archive { padding-block: 74px 80px; }
  .heritage-photo-archive-intro { margin-bottom: 38px; }
  .heritage-photo-archive-intro > div { padding-top: 24px; }
  .heritage-photo-secondary { grid-template-columns: 1fr; gap: 24px; margin-top: 24px; }
  .heritage-photo-source { margin-top: 24px; }
  .heritage-timeline { padding-block: 74px 82px; }
  .heritage-moments {
    grid-template-columns: repeat(6, 220px);
    margin-top: 42px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }
  .heritage-moments li {
    grid-column: auto !important;
    min-height: 245px;
    padding: 28px 20px 24px 0 !important;
    border-top: 0;
    border-right: 1px solid rgba(255,255,255,.1) !important;
  }
  .heritage-moments li:not(:first-child) { padding-left: 20px !important; }
  .heritage-moments li:last-child { border-right: 0 !important; }
  .heritage-moments span { margin-bottom: 18px; }
  .heritage-present { padding-block: 74px 80px; }
  .heritage-present-panel { gap: 18px; }
  .heritage-present-panel > div { padding-top: 28px; }
  .heritage-source-note .shell { grid-template-columns: 1fr; gap: 8px; }
}
