:root {
  --ink: #01040d;
  --pine: #06142b;
  --moss: #071b38;
  --midnight: #000713;
  --green: #9f8958;
  --mint: #d8c9aa;
  --amber: #473922;
  --gold: #b49a64;
  --champagne: #efe7d6;
  --gold-shadow: #332817;
  --gold-rgb: 180, 154, 100;
  --champagne-rgb: 239, 231, 214;
  --polar: #f8fbff;
  --coral: #d46a5c;
  --blue: #071f47;
  --aqua: #dceaff;
  --paper: #f8fbff;
  --soft: #edf3fb;
  --panel: #ffffff;
  --white: #f9fcff;
  --line: rgba(2, 8, 19, 0.11);
  --line-dark: rgba(255, 255, 255, 0.14);
  --muted: #586779;
  --muted-dark: rgba(255, 255, 255, 0.72);
  --shadow: 0 34px 100px rgba(1, 4, 13, 0.36);
  --shadow-soft: 0 22px 70px rgba(1, 4, 13, 0.12);
  --radius: 8px;
  --max: 1180px;
  --font-ui: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --font-signature: "Allura", "Reenie Beanie", "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--midnight);
  font-family: var(--font-ui);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 12%, rgba(var(--gold-rgb), 0.09), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(248, 251, 255, 0.08), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(var(--gold-rgb), 0.1), transparent 35%),
    linear-gradient(180deg, #000713 0%, #06142b 52%, #01040d 100%);
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

button,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(2, 8, 19, 0.16);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

button:hover,
.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #06142b, #0b2a58);
}

.button.primary:hover {
  background: linear-gradient(135deg, #091b39, #10386e);
}

.button.green {
  color: #09101c;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--champagne-rgb), 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.06) 32%, rgba(42, 33, 18, 0.18) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, rgba(30, 24, 14, 0.03) 1px 2px, transparent 2px 5px),
    linear-gradient(112deg, #e0d6bf 0%, #c4b280 24%, #987d4b 52%, #6f5831 72%, #c7b78d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(50, 39, 21, 0.32),
    inset 0 -18px 34px rgba(45, 34, 17, 0.2),
    0 18px 44px rgba(1, 4, 13, 0.28);
}

.button.green:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 32%, rgba(42, 33, 18, 0.16) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, rgba(30, 24, 14, 0.025) 1px 2px, transparent 2px 5px),
    linear-gradient(112deg, #e6ddca 0%, #cdbc8f 24%, #a18655 52%, #735c35 72%, #d0c19a 100%);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(4, 13, 28, 0.58);
  backdrop-filter: blur(18px);
}

.button.ghost {
  min-height: auto;
  padding: 0;
  color: var(--blue);
  background: transparent;
  box-shadow: none;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 8, 19, 0.78);
  backdrop-filter: blur(24px) saturate(140%);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-logo img {
  width: 156px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 760;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(var(--gold-rgb), 0.07);
  box-shadow: 0 0 26px rgba(var(--gold-rgb), 0.1);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.mobile-menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-panel {
  display: none;
}

.hero,
.page-hero {
  position: relative;
  min-height: min(92vh, 980px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--midnight);
}

.page-hero {
  min-height: min(78vh, 840px);
}

.hero::before,
.page-hero::before,
.cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 4, 13, 0.98) 0%, rgba(2, 10, 24, 0.9) 42%, rgba(4, 18, 39, 0.42) 100%),
    linear-gradient(0deg, rgba(1, 4, 13, 0.94) 0%, rgba(5, 22, 47, 0.18) 56%, rgba(1, 4, 13, 0.74) 100%),
    radial-gradient(circle at 72% 28%, rgba(var(--gold-rgb), 0.2), transparent 35%),
    radial-gradient(circle at 58% 76%, rgba(var(--champagne-rgb), 0.12), transparent 30%);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, transparent 72%, rgba(2, 8, 19, 0.42) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.016) 0 1px, transparent 1px 4px);
  opacity: 0.34;
}

.hero-bg,
.cinematic-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.hero-bg {
  transform: scale(1.03);
  filter: saturate(0.92) contrast(1.05);
}

.hero-light-show {
  --hero-scroll: 0px;
  --axis-y: 12%;
  --left-start: 10%;
  --right-start: 88%;
  --left-travel: 42vw;
  --right-travel: -34vw;
  --meet-x: 52%;
  --right-rail-x: 94%;
  --beam-left: 10%;
  --beam-width: 84%;
  --scroll-axis-left: 52%;
  --scroll-axis-width: 42%;
  --scroll-x: 52%;
  --scroll-y: 12%;
  --scroll-vertical-height: 0%;
  --scroll-rot: 0deg;
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: normal;
  transform: translateY(calc(var(--hero-scroll) * 0.08));
}

.light-point,
.light-beam,
.light-reveal,
.scroll-axis,
.scroll-vertical-track,
.scroll-vertical-axis {
  position: absolute;
  display: block;
}

.light-point {
  top: calc(var(--axis-y) - 6px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.075) 0 1px, rgba(22, 17, 10, 0.045) 1px 2px, transparent 2px 4px),
    radial-gradient(circle at 34% 28%, #f0eadb 0 9%, #d3c198 23%, #a88b55 52%, #473922 100%);
  box-shadow:
    0 0 10px rgba(var(--champagne-rgb), 0.56),
    0 0 30px rgba(var(--gold-rgb), 0.48),
    0 0 78px rgba(71, 57, 34, 0.46);
  opacity: 0.58;
}

.light-left {
  left: calc(var(--left-start) - 6px);
  animation: lightLeftTravel 13.5s cubic-bezier(0.58, 0, 0.16, 1) infinite;
}

.light-right {
  left: calc(var(--right-start) - 6px);
  right: auto;
  animation: lightRightTravel 13.5s cubic-bezier(0.58, 0, 0.16, 1) infinite;
  transition: left 720ms cubic-bezier(0.2, 0.8, 0.18, 1), top 720ms cubic-bezier(0.2, 0.8, 0.18, 1), opacity 520ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.18, 1);
}

.light-beam {
  top: calc(var(--axis-y) - 1px);
  left: var(--beam-left);
  width: var(--beam-width);
  height: 2px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 9px),
    linear-gradient(90deg, transparent, rgba(var(--champagne-rgb), 0.18), rgba(var(--gold-rgb), 0.68), rgba(71, 57, 34, 0.54), transparent);
  box-shadow:
    0 0 18px rgba(var(--champagne-rgb), 0.24),
    0 0 52px rgba(var(--gold-rgb), 0.32);
  filter: blur(0.15px);
  opacity: 0.18;
  transform: scaleX(0.08);
  transform-origin: center;
  animation: beamConnect 13.5s cubic-bezier(0.58, 0, 0.16, 1) infinite;
}

.light-reveal {
  top: calc(var(--axis-y) + 4px);
  left: calc(var(--meet-x) - 220px);
  width: 440px;
  height: 210px;
  border-radius: 50%;
  background: transparent;
  opacity: 0.04;
  transform: scale(0.82);
  transform-origin: 50% 0%;
  animation: lightReveal 13.5s ease-in-out infinite;
}

.light-reveal::before,
.light-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
}

.light-reveal::before {
  border-radius: 50%;
  background:
    radial-gradient(circle 18px at 50% 0%, rgba(255, 255, 255, 0.96) 0%, rgba(var(--champagne-rgb), 0.78) 38%, transparent 74%),
    radial-gradient(ellipse 96px 42px at 50% 2%, rgba(255, 255, 255, 0.72) 0%, rgba(var(--champagne-rgb), 0.64) 30%, rgba(var(--gold-rgb), 0.3) 58%, transparent 78%),
    radial-gradient(ellipse 210px 126px at 50% 34%, rgba(var(--champagne-rgb), 0.52) 0%, rgba(var(--gold-rgb), 0.36) 34%, rgba(71, 57, 34, 0.18) 62%, transparent 80%),
    radial-gradient(ellipse 320px 152px at 50% 72%, rgba(var(--champagne-rgb), 0.26) 0%, rgba(var(--gold-rgb), 0.2) 38%, rgba(71, 57, 34, 0.14) 64%, transparent 84%);
  filter: blur(28px);
}

.light-reveal::after {
  inset: 46px 134px 34px;
  background: url("gastlink-emblem-reveal.svg") center / contain no-repeat;
  filter:
    brightness(1.32)
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.28))
    drop-shadow(0 0 34px rgba(var(--champagne-rgb), 0.62))
    drop-shadow(0 0 86px rgba(var(--gold-rgb), 0.58));
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateY(-4px) scale(0.98);
  animation: markReveal 13.5s ease-in-out infinite;
}

.scroll-axis {
  top: calc(var(--axis-y) - 0.5px);
  left: var(--scroll-axis-left);
  width: var(--scroll-axis-width);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--champagne-rgb), 0.035), rgba(var(--gold-rgb), 0.44), rgba(71, 57, 34, 0.32), transparent);
  box-shadow: 0 0 24px rgba(var(--gold-rgb), 0.22);
  opacity: 0.18;
  transition: opacity 520ms ease;
}

.scroll-vertical-track {
  top: var(--axis-y);
  left: calc(var(--right-rail-x) - 1px);
  width: 2px;
  height: 62%;
  border-radius: 999px;
  background:
    repeating-linear-gradient(180deg, rgba(var(--champagne-rgb), 0.28) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, rgba(var(--champagne-rgb), 0.18), rgba(var(--gold-rgb), 0.16), transparent);
  box-shadow: 0 0 34px rgba(var(--gold-rgb), 0.18);
  opacity: 0;
  transition: opacity 620ms ease;
}

.scroll-vertical-axis {
  top: var(--axis-y);
  left: calc(var(--right-rail-x) - 1px);
  width: 2px;
  height: var(--scroll-vertical-height);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(var(--champagne-rgb), 0.58), rgba(var(--gold-rgb), 0.44), rgba(71, 57, 34, 0.24), transparent);
  box-shadow: 0 0 28px rgba(var(--gold-rgb), 0.3);
  opacity: 0;
  transition: height 720ms cubic-bezier(0.2, 0.8, 0.18, 1), opacity 620ms ease;
}

.light-right::before {
  content: "";
  position: absolute;
  inset: -8px -13px;
  border-radius: 50%;
  border: 1px solid rgba(var(--gold-rgb), 0.46);
  border-left-color: transparent;
  border-bottom-color: rgba(var(--champagne-rgb), 0.1);
  filter: blur(0.2px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.light-right::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  width: 28px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.5));
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.hero-light-show.is-scrolling .scroll-axis,
.hero-light-show.is-scrolling .scroll-vertical-track,
.hero-light-show.is-scrolling .scroll-vertical-axis {
  opacity: 1;
}

.hero-light-show.is-scrolling {
  position: fixed;
  inset: 0;
  z-index: 12;
  transform: none;
}

.hero-light-show.is-scrolling .light-left,
.hero-light-show.is-scrolling .light-beam,
.hero-light-show.is-scrolling .light-reveal {
  animation: none;
  opacity: 0;
}

.hero-light-show.is-scrolling .light-right {
  top: calc(var(--scroll-y) - 6px);
  left: calc(var(--scroll-x) - 6px);
  width: 12px;
  height: 12px;
  animation: none;
  opacity: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.075) 0 1px, rgba(22, 17, 10, 0.045) 1px 2px, transparent 2px 4px),
    radial-gradient(circle at 35% 30%, #f0eadb 0 9%, #d3c198 24%, #a88b55 52%, #473922 100%);
  transform: rotate(var(--scroll-rot));
  box-shadow:
    0 0 12px rgba(var(--champagne-rgb), 0.62),
    0 0 36px rgba(var(--gold-rgb), 0.5),
    0 0 86px rgba(71, 57, 34, 0.46);
}

.hero-light-show.is-scrolling .light-right::before {
  opacity: 1;
}

.hero-light-show.is-scrolling .light-right::after {
  opacity: 0.72;
}

.hero-inner,
.page-hero-inner,
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 4;
  padding: 132px 0 72px;
}

.page-hero-inner {
  padding-bottom: 84px;
}

.kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.display {
  max-width: 900px;
  font-family: var(--font-display);
  font-size: 4.85rem;
  line-height: 0.96;
  font-weight: 760;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.display span,
.accent {
  color: var(--mint);
  background: linear-gradient(135deg, #ece4d3 0%, #cdbb91 34%, #9f8958 70%, #69532e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 18px 40px rgba(1, 4, 13, 0.28);
}

.lead {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.16rem;
  font-weight: 560;
}

.lead.dark {
  color: var(--muted);
}

.hero-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 680px;
  margin-top: 18px;
}

.hero-proof-line span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(var(--champagne-rgb), 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(1, 4, 13, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-proof-line + .action-row {
  margin-top: 24px;
}

.branding-page .page-hero {
  min-height: min(80vh, 860px);
}

.branding-page .page-hero::before {
  background:
    linear-gradient(90deg, rgba(1, 4, 13, 0.98) 0%, rgba(2, 10, 24, 0.86) 38%, rgba(20, 15, 9, 0.44) 100%),
    linear-gradient(0deg, rgba(1, 4, 13, 0.92) 0%, rgba(5, 22, 47, 0.14) 56%, rgba(1, 4, 13, 0.72) 100%),
    radial-gradient(circle at 74% 30%, rgba(var(--champagne-rgb), 0.22), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(var(--gold-rgb), 0.2), transparent 36%);
}

.branding-page .page-hero::after {
  background:
    linear-gradient(180deg, transparent 0%, transparent 66%, rgba(2, 8, 19, 0.48) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(135deg, rgba(var(--champagne-rgb), 0.024) 0 1px, transparent 1px 18px);
  opacity: 0.42;
}

.branding-page .hero-bg {
  filter: saturate(0.86) contrast(1.08) sepia(0.08);
  object-position: center 42%;
}

.branding-page .section:not(.dark):not(.moss) {
  background:
    linear-gradient(90deg, rgba(71, 57, 34, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #fbfaf6 0%, #f2f5f8 100%);
  background-size: 44px 100%, auto;
}

.branding-page .section.white {
  background:
    radial-gradient(circle at 78% 8%, rgba(var(--gold-rgb), 0.12), transparent 28%),
    linear-gradient(90deg, rgba(71, 57, 34, 0.045) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #fdfbf6 0%, #eef4fa 100%);
  background-size: auto, 44px 100%, auto;
}

.branding-page .section-head {
  position: relative;
  padding-left: 28px;
}

.branding-page .section-head::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(var(--gold-rgb), 0.72), rgba(var(--gold-rgb), 0.12));
}

.branding-page .section-label {
  color: #6c542c;
  text-transform: none;
}

.branding-page .page-hero .kicker {
  color: var(--champagne);
  font-size: 0.84rem;
  text-transform: none;
}

.brand-mood-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin-top: 30px;
}

.brand-mood-line span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(var(--champagne-rgb), 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(var(--champagne-rgb), 0.12), rgba(var(--gold-rgb), 0.06)),
    rgba(1, 4, 13, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 900;
}

.brand-hero-signature {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.brand-hero-signature-mark {
  position: relative;
  color: var(--champagne);
  font-family: var(--font-signature);
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  font-weight: 400;
  line-height: 0.68;
  letter-spacing: 0;
  transform: rotate(-3deg);
  text-shadow:
    0 0 18px rgba(var(--champagne-rgb), 0.18),
    0 18px 42px rgba(1, 4, 13, 0.36);
}

.brand-hero-signature-mark::after {
  content: "";
  position: absolute;
  left: 12%;
  right: -4%;
  bottom: -8px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(var(--champagne-rgb), 0.82), rgba(var(--gold-rgb), 0.18), transparent);
  transform: rotate(1deg);
}

.brand-hero-signature-copy {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 720;
}

.brand-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: -16px 0 28px;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.16);
  border-radius: var(--radius);
  background: rgba(var(--gold-rgb), 0.16);
  box-shadow: 0 18px 52px rgba(1, 4, 13, 0.06);
}

.brand-principles span {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 16px 18px;
  color: var(--muted);
  background:
    radial-gradient(circle at 14% 0%, rgba(var(--champagne-rgb), 0.5), transparent 36%),
    rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 650;
}

.brand-principles strong {
  color: #15100a;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 760;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.section {
  padding: 108px 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(14, 85, 166, 0.06), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, var(--paper) 100%);
}

.section.white {
  background:
    radial-gradient(circle at 80% 10%, rgba(243, 215, 138, 0.12), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #eff4fa 100%);
}

.section.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 4%, rgba(183, 164, 118, 0.16), transparent 34%),
    radial-gradient(circle at 80% 78%, rgba(243, 215, 138, 0.12), transparent 30%),
    linear-gradient(180deg, #031126 0%, #01040d 100%);
}

.section.moss {
  color: var(--white);
  background:
    radial-gradient(circle at 75% 20%, rgba(183, 164, 118, 0.16), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(243, 215, 138, 0.1), transparent 28%),
    linear-gradient(135deg, #01040d 0%, #062040 100%);
}

.section-head {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-head.center {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dark .section-label,
.moss .section-label {
  color: var(--mint);
}

.section-title {
  max-width: 920px;
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1.02;
  font-weight: 720;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-head.center .section-title {
  margin-left: auto;
  margin-right: auto;
}

.section-copy {
  max-width: 680px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 560;
}

.dark .section-copy,
.moss .section-copy {
  color: var(--muted-dark);
}

.grid {
  display: grid;
  gap: 16px;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.card,
.tile,
.metric,
.quote,
.price-card,
.process-step {
  border: 1px solid rgba(1, 4, 13, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 252, 0.82)),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.card,
.tile {
  padding: 24px;
}

.card.dark,
.tile.dark {
  color: var(--white);
  border-color: var(--line-dark);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(183, 164, 118, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.card h3,
.tile h3,
.price-card h3,
.process-step h3 {
  font-size: 1.16rem;
  line-height: 1.2;
  font-weight: 800;
}

.card p,
.tile p,
.price-card p,
.process-step p {
  margin-top: 10px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.dark .card p,
.dark .tile p,
.moss .tile p,
.tile.dark p {
  color: var(--muted-dark);
}

.card-index,
.module-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--mint);
  border: 1px solid rgba(183, 164, 118, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(183, 164, 118, 0.16), transparent 58%),
    rgba(1, 4, 13, 0.86);
  box-shadow: 0 0 34px rgba(168, 148, 104, 0.16);
  font-size: 0.8rem;
  font-weight: 800;
}

.card:nth-child(2n) .card-index,
.tile:nth-child(2n) .module-icon {
  color: var(--gold);
  border-color: rgba(243, 215, 138, 0.32);
  background:
    radial-gradient(circle, rgba(243, 215, 138, 0.18), transparent 58%),
    rgba(1, 4, 13, 0.86);
}

.card:nth-child(3n) .card-index,
.tile:nth-child(3n) .module-icon {
  color: var(--aqua);
  border-color: rgba(248, 251, 255, 0.3);
  background:
    radial-gradient(circle, rgba(248, 251, 255, 0.14), transparent 58%),
    rgba(1, 4, 13, 0.86);
}

.card:nth-child(4n) .card-index,
.tile:nth-child(4n) .module-icon {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.13), transparent 58%),
    rgba(1, 4, 13, 0.86);
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.bento .tile {
  min-height: 260px;
}

.tile.media-tile {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
}

.tile.media-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.span-4 {
  grid-column: span 4;
}

.span-5 {
  grid-column: span 5;
}

.span-6 {
  grid-column: span 6;
}

.span-7 {
  grid-column: span 7;
}

.span-8 {
  grid-column: span 8;
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.media-frame:hover img,
.visual-card:hover img,
.image-link:hover img {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.04);
}

.media-frame.contain img {
  object-fit: contain;
  padding: 24px;
  background: var(--white);
}

.media-frame::before,
.visual-card::before,
.full-bleed-scene::before,
.media-tile::before,
.pricing-stage::before {
  content: "Visualisierung: finale Produktfotos folgen.";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: min(255px, calc(100% - 28px));
  padding: 8px 10px;
  border: 1px solid rgba(183, 164, 118, 0.26);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(1, 4, 13, 0.58);
  box-shadow: 0 12px 34px rgba(1, 4, 13, 0.18);
  backdrop-filter: blur(18px);
  font-size: 0.64rem;
  line-height: 1.25;
  font-weight: 800;
  pointer-events: none;
}

.visual-proof {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

.visual-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.visual-card.compact {
  min-height: 252px;
}

.visual-stack {
  display: grid;
  gap: 16px;
}

.visual-card img,
.image-link img,
.full-bleed-scene img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card::after,
.image-link::after,
.full-bleed-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(2, 8, 19, 0.16) 45%, rgba(2, 8, 19, 0.78) 100%),
    radial-gradient(circle at 72% 18%, rgba(183, 164, 118, 0.16), transparent 32%);
}

.branding-page .visual-card {
  border-color: rgba(var(--champagne-rgb), 0.18);
  box-shadow:
    0 34px 100px rgba(1, 4, 13, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.branding-page .visual-card::before,
.branding-page .media-frame::before {
  content: "Ausstellungsvisualisierung / finale Motive folgen.";
}

.branding-page .visual-card::after {
  background:
    linear-gradient(180deg, rgba(1, 4, 13, 0.08) 0%, rgba(2, 8, 19, 0.18) 42%, rgba(2, 8, 19, 0.84) 100%),
    radial-gradient(circle at 74% 18%, rgba(var(--champagne-rgb), 0.24), transparent 30%),
    repeating-linear-gradient(135deg, rgba(var(--champagne-rgb), 0.035) 0 1px, transparent 1px 16px);
}

.branding-page .visual-caption small {
  color: var(--champagne);
}

.branding-page .visual-caption h3 {
  font-family: var(--font-display);
  font-size: clamp(1.42rem, 2.4vw, 2rem);
  font-weight: 740;
}

.branding-page .visual-card.compact .visual-caption h3 {
  font-size: clamp(1.22rem, 1.9vw, 1.58rem);
}

.visual-caption,
.image-link-content,
.scene-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: var(--white);
}

.visual-caption small,
.image-link-content small,
.scene-content small,
.outcome strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-caption h3,
.image-link-content h3,
.scene-content h3 {
  font-size: 1.38rem;
  line-height: 1.12;
  font-weight: 800;
}

.visual-caption p,
.image-link-content p,
.scene-content p {
  max-width: 520px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 560;
}

.museum-note {
  position: absolute;
  top: 76px;
  left: 22px;
  z-index: 5;
  width: min(240px, calc(100% - 44px));
  color: rgba(249, 252, 255, 0.9);
  border: 1px solid rgba(var(--champagne-rgb), 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(1, 4, 13, 0.78), rgba(1, 4, 13, 0.58)),
    rgba(1, 4, 13, 0.68);
  box-shadow: 0 18px 48px rgba(1, 4, 13, 0.26);
  backdrop-filter: blur(18px) saturate(126%);
}

.museum-note summary {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.museum-note summary::-webkit-details-marker {
  display: none;
}

.museum-note summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid rgba(var(--champagne-rgb), 0.24);
  border-radius: 50%;
  color: rgba(249, 252, 255, 0.86);
  font-size: 0.88rem;
  line-height: 1;
}

.museum-note[open] summary::after {
  content: "−";
}

.museum-note p {
  margin: 0;
  padding: 0 12px 13px;
  color: rgba(249, 252, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.48;
  font-weight: 560;
}

.scene-note {
  position: relative;
  top: auto;
  left: auto;
  width: min(560px, 100%);
  margin-top: 22px;
  background:
    linear-gradient(180deg, rgba(1, 4, 13, 0.64), rgba(1, 4, 13, 0.42)),
    rgba(1, 4, 13, 0.48);
}

.scene-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.scene-points span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(221, 209, 186, 0.2);
  border-radius: 999px;
  color: rgba(249, 252, 255, 0.88);
  background: rgba(1, 4, 13, 0.42);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  font-weight: 800;
}

.image-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.image-link {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.image-link-content {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.image-link-content h3 {
  font-size: 1.18rem;
}

.full-bleed-scene {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 0;
  color: var(--white);
}

.signal-scene {
  min-height: 620px;
}

.signal-scene::after {
  background:
    linear-gradient(90deg, rgba(1, 4, 13, 0.94) 0%, rgba(2, 10, 24, 0.56) 46%, rgba(2, 10, 24, 0.2) 100%),
    linear-gradient(180deg, rgba(1, 4, 13, 0.12) 0%, rgba(1, 4, 13, 0.84) 100%),
    radial-gradient(circle at 18% 22%, rgba(183, 164, 118, 0.2), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(10, 78, 153, 0.42), transparent 38%);
}

.signal-scene img {
  object-position: center 45%;
}

.scene-content {
  width: min(var(--max), calc(100% - 40px));
  left: 50%;
  right: auto;
  bottom: 58px;
  transform: translateX(-50%);
}

.scene-content h2 {
  max-width: 780px;
  font-family: var(--font-display);
  font-size: 3.15rem;
  line-height: 1.03;
  font-weight: 720;
  letter-spacing: 0;
  text-wrap: balance;
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.outcome {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(1, 4, 13, 0.1);
  border-top: 2px solid rgba(14, 85, 166, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 252, 0.76));
  box-shadow: var(--shadow-soft);
}

.outcome strong {
  color: var(--blue);
}

.outcome span {
  display: block;
  font-size: 1.35rem;
  line-height: 1.18;
  font-weight: 800;
}

.outcome p {
  margin-top: 12px;
  color: var(--muted);
}

.dark .outcome-strip {
  border-color: transparent;
  background: transparent;
}

.dark .outcome {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  border-top-color: rgba(183, 164, 118, 0.42);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(183, 164, 118, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.dark .outcome p {
  color: var(--muted-dark);
}

.caption-strip {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  font-size: 0.8rem;
  font-weight: 800;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 54px;
  border: 1px solid rgba(189, 247, 222, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  max-width: 880px;
}

.stat {
  min-height: 104px;
  padding: 20px;
  background: rgba(4, 13, 28, 0.56);
  backdrop-filter: blur(18px);
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 800;
}

.stat span {
  display: block;
  margin-top: 7px;
  color: var(--muted-dark);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.feature-list,
.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  display: flex;
  gap: 11px;
  color: var(--muted);
  font-weight: 640;
}

.dark .feature-list li,
.moss .feature-list li,
.dark .check-list li,
.moss .check-list li {
  color: var(--muted-dark);
}

.feature-list li::before,
.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
}

.check-list li:nth-child(2n)::before {
  background: var(--amber);
}

.check-list li:nth-child(3n)::before {
  background: var(--blue);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.process-step {
  min-height: 230px;
  padding: 24px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 2px solid rgba(183, 164, 118, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.085), rgba(183, 164, 118, 0.035)),
    rgba(255, 255, 255, 0.025);
  box-shadow: none;
}

.process-step small {
  color: var(--mint);
  font-weight: 800;
}

.process-step h3 {
  margin-top: 38px;
}

.process-step p {
  color: var(--muted-dark);
}

.quote {
  padding: 34px;
}

.quote strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.92rem;
  line-height: 1.13;
  font-weight: 720;
}

.quote p {
  margin-top: 16px;
  color: var(--muted);
}

.price-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

.pricing-gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.pricing-stage,
.cost-signal,
.pricing-principle,
.step-rhythm,
.optional-note {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(1, 4, 13, 0.1);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 252, 0.76));
  box-shadow: var(--shadow-soft);
}

.pricing-stage {
  min-height: 520px;
  padding: 34px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(1, 4, 13, 0.18), rgba(1, 4, 13, 0.88)),
    url("cinematic-table.png") center/cover;
  box-shadow: var(--shadow);
}

.pricing-stage::after,
.cost-signal::after,
.pricing-principle::after,
.optional-note::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 18%, rgba(183, 164, 118, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%);
}

.pricing-stage > *,
.cost-signal > *,
.pricing-principle > *,
.optional-note > * {
  position: relative;
  z-index: 1;
}

.gallery-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-stage h3,
.cost-signal h3,
.pricing-principle h3,
.optional-note h3 {
  max-width: 660px;
  font-family: var(--font-display);
  font-size: 2.55rem;
  line-height: 1.03;
  font-weight: 720;
  letter-spacing: 0;
  text-wrap: balance;
}

.pricing-stage p,
.cost-signal p,
.pricing-principle p,
.optional-note p {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 560;
}

.scope-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.scope-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(1, 4, 13, 0.42);
  backdrop-filter: blur(16px);
  font-size: 0.86rem;
  font-weight: 700;
}

.cost-signal {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  color: var(--ink);
}

.cost-signal .price-tag {
  color: var(--ink);
}

.cost-signal p {
  color: var(--muted);
}

.signal-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  display: grid;
  gap: 3px;
  padding-top: 14px;
  border-top: 1px solid rgba(1, 4, 13, 0.1);
  color: var(--muted);
}

.signal-list strong {
  color: var(--ink);
  font-weight: 800;
}

.pricing-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pricing-principle {
  min-height: 250px;
  padding: 28px;
}

.pricing-principle .gallery-eyebrow {
  color: var(--blue);
}

.pricing-principle p,
.optional-note p {
  color: var(--muted);
}

.optional-note {
  min-height: 420px;
  padding: 34px;
}

.step-rhythm {
  display: grid;
  background: rgba(255, 255, 255, 0.72);
}

.dark-rhythm {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.075), rgba(183, 164, 118, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.step-rhythm div {
  display: grid;
  grid-template-columns: 78px minmax(140px, 0.7fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(1, 4, 13, 0.1);
}

.dark-rhythm div {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.step-rhythm div:last-child {
  border-bottom: 0;
}

.step-rhythm small {
  color: var(--blue);
  font-weight: 800;
}

.dark-rhythm small {
  color: var(--mint);
}

.step-rhythm strong {
  font-size: 1.12rem;
  font-weight: 800;
}

.dark-rhythm strong {
  color: var(--white);
}

.step-rhythm span {
  color: var(--muted);
}

.dark-rhythm span {
  color: var(--muted-dark);
}

.price-card {
  padding: 28px;
}

.price-card.featured {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 80% 8%, rgba(25, 169, 116, 0.2), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(205, 166, 77, 0.12), transparent 28%),
    linear-gradient(135deg, #020813 0%, #09213d 100%);
}

.price-card.featured p,
.price-card.featured li {
  color: var(--muted-dark);
}

.price-tag {
  margin: 22px 0 4px;
  font-family: var(--font-display);
  font-size: 2.55rem;
  line-height: 1;
  font-weight: 720;
}

.price-note {
  color: var(--muted);
  font-weight: 650;
}

.price-card.featured .price-note {
  color: rgba(255, 255, 255, 0.66);
}

.feature-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.feature-row:last-child {
  border-bottom: 0;
}

.feature-row strong {
  font-weight: 900;
}

.feature-row span {
  color: var(--muted);
}

.branding-page .feature-table {
  border-color: rgba(var(--gold-rgb), 0.2);
  background:
    radial-gradient(circle at 12% 0%, rgba(var(--champagne-rgb), 0.34), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 231, 214, 0.28));
  box-shadow: 0 18px 54px rgba(1, 4, 13, 0.08);
}

.branding-page .dark .feature-table {
  border-color: rgba(var(--champagne-rgb), 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(var(--gold-rgb), 0.045)),
    rgba(255, 255, 255, 0.025);
  box-shadow: none;
}

.branding-page .feature-row {
  grid-template-columns: minmax(142px, 0.72fr) 1.28fr;
  border-bottom-color: rgba(var(--gold-rgb), 0.14);
}

.branding-page .feature-row strong {
  color: #15100a;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 760;
}

.branding-page .dark .feature-row strong {
  color: var(--champagne);
}

.branding-page .feature-row span {
  font-weight: 580;
}

.bruen-signature {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-top: 26px;
  padding: 18px 20px 16px;
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(var(--champagne-rgb), 0.28), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 231, 214, 0.38));
  box-shadow: 0 18px 44px rgba(1, 4, 13, 0.10);
}

.bruen-signature-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.68), transparent);
  opacity: 0.72;
}

.bruen-signature-mark {
  position: relative;
  display: block;
  color: #15100a;
  font-family: var(--font-signature);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.86;
  letter-spacing: 0;
  transform: rotate(-2deg);
  text-shadow: 0 10px 24px rgba(1, 4, 13, 0.10);
}

.bruen-signature-mark::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 2%;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.84), rgba(var(--gold-rgb), 0.22), transparent);
  transform: rotate(1deg);
}

.bruen-signature-copy {
  display: block;
  margin-top: 12px;
  color: rgba(1, 4, 13, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.branding-page .bruen-signature {
  padding: 20px 24px 18px;
  border-color: rgba(var(--gold-rgb), 0.3);
  background:
    radial-gradient(circle at 16% 0%, rgba(var(--champagne-rgb), 0.42), transparent 36%),
    repeating-linear-gradient(135deg, rgba(71, 57, 34, 0.035) 0 1px, transparent 1px 14px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(236, 226, 205, 0.5));
  box-shadow:
    0 18px 54px rgba(1, 4, 13, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.branding-page .bruen-signature-mark {
  font-size: clamp(3.6rem, 6vw, 5.4rem);
  font-weight: 400;
  line-height: 0.7;
  color: #0f0b07;
}

.branding-page .bruen-signature-copy {
  color: rgba(1, 4, 13, 0.62);
}

.gold-thread-cta {
  --thread-x: 94%;
  --thread-y: 12%;
  --thread-rail: 18vh;
  --thread-rot: 0deg;
  position: fixed;
  top: var(--thread-y);
  left: calc(var(--thread-x) - 18px);
  z-index: 44;
  width: 36px;
  height: 36px;
  color: var(--champagne);
  opacity: 0;
  transform: translateY(-50%) scale(0.82);
  transition: opacity 260ms ease, transform 260ms ease, top 720ms cubic-bezier(0.2, 0.8, 0.18, 1), left 720ms cubic-bezier(0.2, 0.8, 0.18, 1);
  pointer-events: auto;
}

.gold-thread-cta:hover,
.gold-thread-cta:focus-visible,
.thread-cta-ready .gold-thread-cta {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.gold-thread-cta:focus-visible {
  outline: 2px solid rgba(var(--champagne-rgb), 0.56);
  outline-offset: 8px;
}

body.nav-open .gold-thread-cta {
  opacity: 0;
  pointer-events: none;
}

.gold-thread-rail {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 2px;
  height: var(--thread-rail);
  border-radius: 999px;
  background:
    repeating-linear-gradient(180deg, rgba(var(--champagne-rgb), 0.28) 0 1px, transparent 1px 11px),
    linear-gradient(180deg, transparent, rgba(var(--gold-rgb), 0.32), rgba(71, 57, 34, 0.18), transparent);
  box-shadow: 0 0 30px rgba(var(--gold-rgb), 0.2);
  transform: translateY(-6px);
  opacity: 0.7;
}

.gold-thread-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.075) 0 1px, rgba(22, 17, 10, 0.045) 1px 2px, transparent 2px 4px),
    radial-gradient(circle at 34% 28%, #f0eadb 0 9%, #d3c198 24%, #a88b55 52%, #473922 100%);
  box-shadow:
    0 0 12px rgba(var(--champagne-rgb), 0.62),
    0 0 36px rgba(var(--gold-rgb), 0.5),
    0 0 86px rgba(71, 57, 34, 0.46);
  transform: translate(-50%, -50%) rotate(var(--thread-rot));
  transition: width 220ms ease, height 220ms ease, box-shadow 220ms ease;
}

.gold-thread-orb::before {
  content: "";
  position: absolute;
  inset: -8px -13px;
  border-radius: 50%;
  border: 1px solid rgba(var(--gold-rgb), 0.46);
  border-left-color: transparent;
  border-bottom-color: rgba(var(--champagne-rgb), 0.1);
  filter: blur(0.2px);
}

.gold-thread-orb::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  width: 28px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.5));
  transform: translateY(-50%);
  opacity: 0.72;
}

.gold-thread-cta:hover .gold-thread-orb,
.gold-thread-cta:focus-visible .gold-thread-orb {
  width: 16px;
  height: 16px;
  box-shadow:
    0 0 16px rgba(var(--champagne-rgb), 0.78),
    0 0 48px rgba(var(--gold-rgb), 0.62),
    0 0 116px rgba(71, 57, 34, 0.54);
}

.gold-thread-label {
  position: absolute;
  top: 50%;
  right: 32px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(var(--champagne-rgb), 0.2);
  border-radius: 999px;
  color: rgba(249, 252, 255, 0.88);
  background: rgba(1, 4, 13, 0.58);
  backdrop-filter: blur(16px);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateY(-50%) translateX(8px);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
  white-space: nowrap;
}

.gold-thread-cta:hover .gold-thread-label,
.gold-thread-cta:focus-visible .gold-thread-label {
  opacity: 1;
  transform: translateY(-50%);
}

.footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.7);
  background: var(--midnight);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  font-weight: 650;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-note {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.35;
}

@keyframes lightLeftTravel {
  0%,
  100% {
    opacity: 0.58;
    transform: translate3d(0, 0, 0) scale(0.88);
  }
  12% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.06);
  }
  48%,
  62% {
    opacity: 0.96;
    transform: translate3d(var(--left-travel), 0, 0) scale(0.82);
  }
  78% {
    opacity: 0.42;
    transform: translate3d(var(--left-travel), 0, 0) scale(0.66);
  }
}

@keyframes lightRightTravel {
  0%,
  100% {
    opacity: 0.56;
    transform: translate3d(0, 0, 0) scale(0.88);
  }
  15% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.06);
  }
  48%,
  62% {
    opacity: 0.94;
    transform: translate3d(var(--right-travel), 0, 0) scale(0.82);
  }
  78% {
    opacity: 0.4;
    transform: translate3d(var(--right-travel), 0, 0) scale(0.66);
  }
}

@keyframes beamConnect {
  0%,
  15%,
  100% {
    opacity: 0.18;
    transform: scaleX(0.12);
  }
  34% {
    opacity: 0.86;
    transform: scaleX(0.72);
  }
  50%,
  62% {
    opacity: 1;
    transform: scaleX(1);
  }
  82% {
    opacity: 0.24;
    transform: scaleX(0.2);
  }
}

@keyframes lightReveal {
  0%,
  28%,
  100% {
    opacity: 0.03;
    transform: scaleX(0.18) scaleY(0.08);
  }
  43% {
    opacity: 0.46;
    transform: scaleX(0.58) scaleY(0.34);
  }
  50%,
  64% {
    opacity: 0.94;
    transform: scaleX(1.02) scaleY(1.06);
  }
  82% {
    opacity: 0.08;
    transform: scaleX(0.88) scaleY(0.9);
  }
}

@keyframes markReveal {
  0%,
  42%,
  100% {
    opacity: 0;
    transform: translateY(-4px) scale(0.9);
  }
  48% {
    opacity: 0.28;
    transform: translateY(-6px) scale(0.98);
  }
  55%,
  66% {
    opacity: 0.92;
    transform: translateY(-4px) scale(1.05);
  }
  78% {
    opacity: 0.08;
    transform: translateY(-2px) scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .light-point,
  .light-beam,
  .light-reveal,
  .light-reveal::after {
    animation: none;
  }

  .light-beam {
    opacity: 0.34;
    transform: scaleX(0.86);
  }
}

@media (max-width: 980px) {
  .display {
    font-size: 3.25rem;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: inline-flex;
  }

  .nav-status {
    display: none;
  }

  .mobile-panel {
    position: fixed;
    inset: 72px 0 auto;
    z-index: 45;
    display: grid;
    gap: 2px;
    padding: 14px 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(6, 17, 31, 0.96);
    backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body.nav-open .mobile-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-panel a {
    padding: 14px 0;
    color: var(--white);
    font-weight: 800;
  }

  .split,
  .split.reverse,
  .grid.two,
  .grid.three,
  .grid.four,
  .price-grid,
  .visual-proof,
  .outcome-strip,
  .pricing-gallery,
  .pricing-principles {
    grid-template-columns: 1fr;
  }

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

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

  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8 {
    grid-column: auto;
  }

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

  .process-step {
    min-height: 190px;
  }

  .visual-card {
    min-height: 440px;
  }

  .image-link {
    min-height: 300px;
  }

  .pricing-stage,
  .cost-signal {
    min-height: 420px;
  }

  .brand-principles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav,
  .hero-inner,
  .page-hero-inner,
  .container,
  .footer-inner {
    width: calc(100vw - 32px);
    max-width: 358px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .nav {
    height: 64px;
  }

  .mobile-panel {
    inset: 64px 0 auto;
  }

  .nav-logo img {
    width: 136px;
  }

  .nav-actions .button {
    display: none;
  }

  .gold-thread-cta {
    left: calc(var(--thread-x) - 16px);
    width: 32px;
    height: 32px;
  }

  .gold-thread-rail {
    left: 15px;
  }

  .gold-thread-orb {
    width: 12px;
    height: 12px;
  }

  .gold-thread-label {
    right: 36px;
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.62rem;
  }

  .hero {
    min-height: min(88vh, 840px);
  }

  .hero-light-show {
    --axis-y: 8.7%;
    --left-start: 8%;
    --right-start: 92%;
    --left-travel: 44vw;
    --right-travel: -40vw;
    --right-rail-x: 95%;
    --beam-left: 8%;
    --beam-width: 87%;
    --scroll-axis-left: 52%;
    --scroll-axis-width: 43%;
    --scroll-y: 8.7%;
  }

  .light-beam {
    transform: scaleX(0.08);
  }

  .light-reveal {
    top: calc(var(--axis-y) + 16px);
    left: calc(var(--meet-x) - 126px);
    width: 252px;
    height: 126px;
  }

  .light-reveal::after {
    inset: 32px 72px 22px;
  }

  .page-hero {
    min-height: min(72vh, 740px);
  }

  .hero-inner,
  .page-hero-inner {
    padding: 104px 0 46px;
  }

  .display {
    max-width: 10ch;
    font-size: 2.35rem;
    line-height: 1;
  }

  .branding-page .display {
    max-width: 12ch;
    font-size: 2.18rem;
  }

  .lead {
    max-width: 100%;
    font-size: 1.02rem;
  }

  .hero-proof-line {
    gap: 7px;
  }

  .hero-proof-line span {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.66rem;
  }

  .brand-mood-line {
    gap: 8px;
    margin-top: 22px;
  }

  .brand-mood-line span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .brand-hero-signature {
    gap: 8px;
    margin-top: 20px;
  }

  .brand-hero-signature-mark {
    font-size: 3.7rem;
  }

  .brand-hero-signature-copy {
    max-width: 280px;
    font-size: 0.76rem;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .branding-page .section-head {
    padding-left: 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .brand-principles {
    margin: -10px 0 22px;
  }

  .brand-principles span {
    min-height: 68px;
    padding: 14px;
  }

  .visual-proof,
  .visual-stack,
  .image-link-grid,
  .pricing-gallery,
  .pricing-principles {
    gap: 12px;
  }

  .visual-card,
  .full-bleed-scene {
    min-height: 420px;
  }

  .visual-card.compact,
  .image-link {
    min-height: 260px;
  }

  .visual-caption,
  .image-link-content {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .museum-note {
    top: 72px;
    left: 16px;
    width: min(260px, calc(100% - 32px));
  }

  .scene-note {
    top: auto;
    left: auto;
    width: 100%;
  }

  .visual-caption h3,
  .scene-content h2 {
    font-size: 1.48rem;
    line-height: 1.08;
  }

  .scene-content {
    width: calc(100vw - 32px);
    max-width: 358px;
    bottom: 36px;
  }

  .image-link-grid {
    grid-template-columns: 1fr;
  }

  .pricing-stage,
  .cost-signal,
  .pricing-principle,
  .optional-note {
    min-height: auto;
    padding: 22px;
  }

  .pricing-stage h3,
  .cost-signal h3,
  .pricing-principle h3,
  .optional-note h3 {
    font-size: 2rem;
  }

  .scope-points span {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .step-rhythm div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px;
  }

  .action-row .button,
  .button.mobile-wide {
    width: 100%;
  }

  .stat-row {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .card,
  .tile,
  .price-card,
  .quote {
    padding: 20px;
  }

  .media-frame {
    min-height: 300px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .branding-page .feature-row {
    padding: 16px;
  }

  .branding-page .bruen-signature {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-note {
    max-width: 100%;
  }

  .media-frame::before,
  .visual-card::before,
  .full-bleed-scene::before,
  .media-tile::before,
  .pricing-stage::before {
    top: 12px;
    right: 12px;
    width: min(218px, calc(100% - 24px));
    font-size: 0.58rem;
  }
}
