:root {
  --bg: #060307;
  --bg-soft: #0d0910;
  --surface: #0c0910;
  --surface-strong: #120d16;
  --surface-light: rgba(255, 255, 255, 0.04);
  --text: #f5f0f6;
  --muted: #b9afbe;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #f59d0c;
  --accent-strong: #ffbe56;
  --accent-blue: #4c60ff;
  --accent-magenta: #bc1d77;
  --warm: #ffd79a;
  --page-background:
    linear-gradient(180deg, #040406 0%, #07080b 42%, #0a0b0f 100%);
  --header-bg: rgba(0, 0, 0, 0.95);
  --header-border: rgba(255, 255, 255, 0.08);
  --header-panel-bg: rgba(8, 5, 10, 0.98);
  --switch-bg: rgba(255, 255, 255, 0.04);
  --switch-active: linear-gradient(135deg, rgba(109, 181, 255, 0.18), rgba(255, 255, 255, 0.08));
  --menu-button-bg: rgba(255, 255, 255, 0.04);
  --rail-bg: rgba(0, 0, 0, 0.64);
  --rail-color: #fff;
  --card-soft: rgba(255, 255, 255, 0.02);
  --showcase-fill: rgba(10, 10, 12, 0.96);
  --icon-bg: rgba(245, 157, 12, 0.1);
  --shadow: none;
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 2.4rem));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page-background);
  color: var(--text);
  font-family: "Sora", sans-serif;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  transition:
    background 240ms ease,
    color 240ms ease;
}

body.is-loading,
body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

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

.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;
}

.site-shell {
  position: relative;
  overflow: clip;
}

body.is-loading .site-header,
body.is-loading .social-rail {
  opacity: 0;
}

body.is-ready .site-header {
  animation: headerSlideIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-ready .hero-intro {
  animation: heroContentIn 1.02s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

body.is-ready .social-rail {
  animation: socialDockIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.46s both;
}

.ambient {
  position: fixed;
  inset: auto;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: -1;
}

.ambient-a {
  top: -8rem;
  left: -10rem;
  background: rgba(188, 29, 119, 0.1);
}

.ambient-b {
  right: -10rem;
  bottom: 8rem;
  background: rgba(76, 96, 255, 0.08);
}

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

.section {
  position: relative;
  padding: 5.8rem 0;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.1), transparent 18%),
    radial-gradient(circle at 18% 18%, rgba(188, 29, 119, 0.18), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(76, 96, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #040205 0%, #060307 45%, #09040a 100%);
  transition:
    opacity 700ms ease,
    visibility 700ms ease;
}

.site-loader::before,
.site-loader::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(48px);
}

.site-loader::before {
  width: 18rem;
  height: 18rem;
  background: rgba(245, 157, 12, 0.14);
  animation: loaderAura 4.6s ease-in-out infinite;
}

.site-loader::after {
  width: 30rem;
  height: 30rem;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0.5;
  animation: loaderHalo 5.8s ease-in-out infinite;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.site-loader-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1.3rem;
  width: min(22rem, calc(100vw - 3rem));
}

.site-loader-line {
  position: relative;
  width: min(9rem, 42vw);
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.site-loader-line-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--accent-strong), #ffffff, transparent);
  transform: translateX(-100%);
  animation: loaderLine 1.5s ease-in-out infinite;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.brand-mark-image {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.brand-mark-image-light {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.brand-mark-header {
  width: clamp(4.95rem, 7vw, 6.4rem);
}

.brand-mark-loader {
  width: clamp(11.5rem, 26vw, 17rem);
  animation: loaderLogoFloat 2.6s ease-in-out infinite;
}

.brand-mark-hero {
  width: min(82vw, 31rem);
}

.brand-mark-footer {
  width: clamp(5.3rem, 7vw, 6.9rem);
  opacity: 0.9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.header-panel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-strong), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-switcher {
  display: inline-flex;
  padding: 0.28rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--switch-bg);
  gap: 0.22rem;
}

.language-button {
  display: inline-grid;
  place-items: center;
  border: 0;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.language-button:hover,
.language-button:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.language-button.is-active {
  background: var(--switch-active);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.flag {
  display: block;
  width: 1.35rem;
  height: 0.98rem;
  border-radius: 0.2rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.flag-en {
  background:
    linear-gradient(90deg, transparent 41%, #ffffff 41% 59%, transparent 59%),
    linear-gradient(transparent 36%, #ffffff 36% 64%, transparent 64%),
    linear-gradient(90deg, transparent 46%, #c8102e 46% 54%, transparent 54%),
    linear-gradient(transparent 43%, #c8102e 43% 57%, transparent 57%),
    linear-gradient(27deg, transparent 42%, #ffffff 42% 48%, transparent 48% 52%, #ffffff 52% 58%, transparent 58%),
    linear-gradient(-27deg, transparent 42%, #ffffff 42% 48%, transparent 48% 52%, #ffffff 52% 58%, transparent 58%),
    linear-gradient(27deg, transparent 46%, #c8102e 46% 48%, transparent 48% 52%, #c8102e 52% 54%, transparent 54%),
    linear-gradient(-27deg, transparent 46%, #c8102e 46% 48%, transparent 48% 52%, #c8102e 52% 54%, transparent 54%),
    #012169;
}

.flag-es {
  background: linear-gradient(180deg, #aa151b 0 26%, #f1bf00 26% 74%, #aa151b 74% 100%);
}

.flag-de {
  background: linear-gradient(180deg, #111111 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.theme-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  color: var(--text);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(245, 157, 12, 0.32);
  box-shadow: 0 0 0 4px rgba(245, 157, 12, 0.08);
}

.theme-toggle-face {
  position: relative;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
}

.theme-toggle-icon {
  position: absolute;
  inset: 0;
  width: 1.35rem;
  height: 1.35rem;
  opacity: 0;
  transition:
    opacity 180ms ease,
    color 180ms ease,
    transform 220ms ease;
  transform: scale(0.72) rotate(-18deg);
}

.theme-toggle-glow {
  position: absolute;
  inset: -0.45rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 157, 12, 0.28), rgba(245, 157, 12, 0.08) 42%, transparent 70%);
  opacity: 0.7;
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    background 200ms ease;
}

body[data-theme="dark"] .theme-toggle-icon-moon,
body[data-theme="light"] .theme-toggle-icon-sun {
  opacity: 1;
  color: var(--warm);
  transform: scale(1) rotate(0deg);
}

body[data-theme="dark"] .theme-toggle-icon-sun,
body[data-theme="light"] .theme-toggle-icon-moon {
  opacity: 0;
  transform: scale(0.68) rotate(18deg);
}

body[data-theme="light"] .theme-toggle {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.46));
}

body[data-theme="light"] .theme-toggle-glow {
  background: radial-gradient(circle, rgba(216, 135, 21, 0.22), rgba(216, 135, 21, 0.06) 45%, transparent 70%);
  opacity: 0.6;
}

body[data-theme="dark"] .theme-toggle-glow {
  transform: scale(0.96);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.3rem;
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  color: var(--text);
  position: relative;
  z-index: 22;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.menu-toggle span {
  width: 1.1rem;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 220ms ease,
    opacity 180ms ease,
    width 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(245, 157, 12, 0.28);
  box-shadow: 0 0 0 4px rgba(245, 157, 12, 0.08);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(0.4rem) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-0.4rem) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.2rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button[disabled] {
  opacity: 0.78;
  cursor: not-allowed;
  box-shadow: none;
}

.button[disabled]:hover,
.button[disabled]:focus-visible {
  transform: none;
}

.button-primary {
  color: #120a02;
  background: var(--accent);
  box-shadow: 0 10px 28px rgba(245, 157, 12, 0.18);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.button-small {
  min-height: 2.75rem;
  padding-inline: 1rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
}

.hero .eyebrow {
  max-width: 32rem;
  text-align: center;
  text-wrap: balance;
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #040508;
}

.hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter:
    saturate(0.94)
    contrast(1.04)
    brightness(0.6);
  transform: scale(1.035);
  animation: heroBackdropDrift 18s ease-in-out infinite alternate;
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.92) 0%, rgba(5, 5, 8, 0.68) 28%, rgba(5, 5, 8, 0.22) 60%, rgba(5, 5, 8, 0.74) 100%),
    linear-gradient(180deg, rgba(7, 5, 8, 0.1) 0%, rgba(7, 5, 8, 0.18) 42%, rgba(7, 5, 8, 0.76) 100%);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 6.4rem 0;
}

.hero-copy {
  width: 100%;
  max-width: min(34rem, 100%);
  display: grid;
  place-items: center;
}

.hero-intro {
  width: 100%;
}

.hero-logo-shell {
  position: relative;
  display: inline-grid;
  place-items: center;
  padding: 0;
}

.brand-mark-hero {
  position: relative;
  z-index: 1;
  filter: none;
  animation: none;
  width: min(42rem, 74vw);
}

.hero-subtitle {
  margin: 0.1rem 0 0;
  color: var(--text);
  font-size: clamp(0.92rem, 1.3vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-description,
.section-intro,
.about-copy p,
.showcase-copy p,
.social-panel p,
.contact-panel p,
.contact-note {
  color: var(--muted);
  font-size: 1rem;
}

.hero-description {
  max-width: 38rem;
  margin: 1rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  margin-top: 2rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.55rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 10.4rem;
  padding: 0.68rem 1.15rem 0.68rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(5, 5, 8, 0.42);
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hero-scroll:hover,
.hero-scroll:focus-visible {
  transform: translateX(-50%) translateY(-2px);
  border-color: rgba(245, 157, 12, 0.4);
  box-shadow: 0 0 0 5px rgba(245, 157, 12, 0.08);
}

.hero-scroll::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.14) 48%, transparent 72%);
  opacity: 0;
  transform: translateX(-38%);
  animation: heroScrollSheen 3.4s ease-in-out infinite;
}

.hero-scroll-orb {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #160e04;
  box-shadow:
    0 0 0 0 rgba(245, 157, 12, 0.32),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18);
  animation: heroScrollPulse 2.2s ease-in-out infinite;
}

.hero-scroll-text {
  position: relative;
  z-index: 1;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-scroll-arrow {
  width: 0.62rem;
  height: 0.62rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  animation: heroArrowBounce 1.8s ease-in-out infinite;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(1.1rem, 2.5vw, 1.85rem);
  align-items: start;
}

.about-intro {
  max-width: 46rem;
}

.about-section .section-heading h2 {
  max-width: 12ch;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.about-story {
  display: grid;
  gap: 1.3rem;
  align-content: start;
}

.about-lead {
  margin: 0;
  max-width: 34rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.32rem, 2.35vw, 1.92rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.about-copy-frame,
.about-panel,
.social-panel,
.contact-panel,
.showcase-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: none;
}

.about-copy-frame {
  box-shadow: none;
}

.about-copy-frame::after {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 1rem;
  width: 2px;
  background: rgba(255, 255, 255, 0.14);
}

.about-copy {
  display: grid;
  gap: 0;
  position: relative;
  z-index: 1;
  padding: 0.5rem 0 0;
}

.about-copy p {
  margin: 0;
  padding: 1.1rem 1.35rem 1.15rem 2.2rem;
  line-height: 1.78;
}

.about-copy p + p {
  border-top: 1px solid var(--line);
}

.about-copy p:first-child::first-letter {
  float: left;
  margin: 0.12rem 0.5rem 0 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.9rem;
  line-height: 0.8;
  font-weight: 700;
}

.about-signature {
  display: grid;
  gap: 0.45rem;
  position: relative;
  z-index: 1;
  padding: 1rem 1.35rem 1.2rem 2.2rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.about-signature-label {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.about-signature strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  font-weight: 600;
}

.about-panel {
  display: grid;
  gap: 0.9rem;
  padding: 0.8rem;
}

.about-panel-visual {
  min-height: 100%;
}

.about-visual {
  position: relative;
  display: grid;
  min-height: 31rem;
  overflow: hidden;
  border-radius: 0.9rem;
  isolation: isolate;
}

.about-portrait {
  width: 100%;
  height: 100%;
  min-height: 31rem;
  aspect-ratio: 4 / 4.75;
  object-fit: cover;
  object-position: center 22%;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34));
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.72rem;
  pointer-events: none;
}

.about-visual-caption {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 2;
}

.about-timeline-shell {
  position: relative;
  margin-top: 1.45rem;
  padding-top: 1.05rem;
}

.about-timeline-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.about-timeline-heading {
  margin-bottom: 1.05rem;
}

.about-timeline-kicker {
  margin-bottom: 0;
}

.about-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.about-timeline-item {
  position: relative;
  height: 100%;
  padding: 3.85rem 1.2rem 1.1rem 1.2rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.about-timeline-item:first-child {
  border-left: 0;
}

.about-year {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.about-timeline-item h3,
.showcase-copy h3,
.social-link strong {
  margin: 0 0 0.42rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.about-timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.72;
}

.feature-tag {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.events-section {
  padding-top: 5rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.showcase-card {
  display: grid;
  grid-column: span 4;
  min-height: 100%;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.showcase-card-wide {
  grid-column: span 8;
}

.showcase-card:hover,
.showcase-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
}

.showcase-visual {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  background: #05070f;
}

.showcase-card-wide .showcase-visual {
  min-height: 23rem;
}

.showcase-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 4, 8, 0.03) 0%, rgba(6, 4, 8, 0.1) 48%, rgba(6, 4, 8, 0.58) 100%);
  pointer-events: none;
}

.showcase-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter:
    saturate(0.92)
    contrast(1.01)
    brightness(0.92);
  transform: scale(1.01);
  transition:
    transform 440ms ease,
    filter 440ms ease;
}

.showcase-card:hover .showcase-image,
.showcase-card:focus-within .showcase-image {
  transform: scale(1.02);
  filter:
    saturate(0.96)
    contrast(1.02)
    brightness(0.95);
}

.showcase-image-night {
  object-position: center 42%;
}

.showcase-image-alps {
  object-position: center center;
}

.showcase-image-open-air {
  object-position: center 24%;
}

.showcase-image-energy {
  object-position: center 28%;
}

.showcase-image-crowd {
  object-position: center 32%;
}

.showcase-copy {
  display: grid;
  gap: 0.2rem;
  padding: 1.3rem 1.35rem 1.45rem;
  background: var(--showcase-fill);
}

.social-panel,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.95fr);
  gap: 1.5rem;
  padding: 2rem;
}

.social-links {
  display: grid;
  gap: 0.85rem;
}

.social-link {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-lg);
  background: var(--card-soft);
  border: 1px solid var(--line);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(245, 157, 12, 0.34);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.social-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.14) 46%, transparent 72%);
  opacity: 0;
  transform: translateX(-52%);
  transition: opacity 180ms ease;
}

.social-link:hover::after,
.social-link:focus-visible::after {
  opacity: 1;
  animation: socialSheen 1s ease;
}

.social-link small {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.social-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  overflow: hidden;
}

.social-icon svg {
  position: relative;
  z-index: 1;
  width: 1.35rem;
  height: 1.35rem;
  animation: none;
  transition:
    transform 220ms ease,
    color 220ms ease;
}

.social-link:hover .social-icon svg,
.social-link:focus-visible .social-icon svg {
  transform: scale(1.04);
}

.contact-actions {
  display: grid;
  align-content: center;
  gap: 0.9rem;
}

.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.contact-note {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  padding: 0 0 2.3rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.social-rail {
  position: fixed;
  top: 50%;
  left: 1.25rem;
  z-index: 18;
  display: grid;
  gap: 0.85rem;
  transform: translateY(-50%);
}

.social-rail-link {
  position: relative;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--rail-bg);
  color: var(--rail-color);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.social-rail-link:hover,
.social-rail-link:focus-visible {
  transform: translateX(2px);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
  box-shadow: none;
}

.social-rail-link svg {
  position: relative;
  z-index: 1;
  width: 1.25rem;
  height: 1.25rem;
  animation: none;
  transition:
    transform 220ms ease,
    color 220ms ease;
}

.social-rail-link:hover svg,
.social-rail-link:focus-visible svg {
  transform: scale(1.04);
}

.reveal {
  --reveal-x: 0px;
  --reveal-y: 24px;
  --reveal-scale: 1;
  --reveal-delay: 0ms;
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity 700ms ease var(--reveal-delay),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    filter 700ms ease var(--reveal-delay);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-left {
  --reveal-x: -30px;
  --reveal-y: 0px;
}

.reveal-right {
  --reveal-x: 30px;
  --reveal-y: 0px;
}

.reveal-soft {
  --reveal-y: 18px;
  --reveal-scale: 0.985;
}

body[data-theme="light"] {
  --bg: #f0e5d8;
  --bg-soft: #f6efe6;
  --surface: #fcf7f0;
  --surface-strong: #f0e5d8;
  --surface-light: rgba(23, 17, 20, 0.04);
  --text: #171114;
  --muted: #6f6165;
  --line: rgba(23, 17, 20, 0.12);
  --accent: #d88715;
  --accent-strong: #bd6c0d;
  --accent-blue: #5564d7;
  --accent-magenta: #9a2c67;
  --warm: #412616;
  --page-background: linear-gradient(180deg, #faf4eb 0%, #f1e7da 44%, #e8dccf 100%);
  --header-bg: rgba(249, 242, 233, 0.9);
  --header-border: rgba(23, 17, 20, 0.08);
  --header-panel-bg: rgba(251, 246, 239, 0.98);
  --switch-bg: rgba(23, 17, 20, 0.04);
  --switch-active: linear-gradient(135deg, rgba(216, 135, 21, 0.22), rgba(23, 17, 20, 0.04));
  --menu-button-bg: rgba(23, 17, 20, 0.03);
  --rail-bg: rgba(252, 247, 240, 0.88);
  --rail-color: #171114;
  --card-soft: rgba(23, 17, 20, 0.03);
  --showcase-fill: rgba(255, 255, 255, 0.82);
  --icon-bg: rgba(216, 135, 21, 0.12);
}

body[data-theme="light"] .ambient-a {
  background: rgba(176, 153, 127, 0.08);
}

body[data-theme="light"] .ambient-b {
  background: rgba(209, 198, 183, 0.12);
}

body[data-theme="light"] .site-loader {
  background: linear-gradient(180deg, #faf4eb 0%, #f1e7da 44%, #e8dccf 100%);
}

body[data-theme="light"] .site-loader::before {
  background: rgba(216, 135, 21, 0.16);
}

body[data-theme="light"] .site-loader::after {
  background: rgba(255, 255, 255, 0.34);
}

body[data-theme="light"] .brand-mark-image-dark {
  opacity: 0;
}

body[data-theme="light"] .brand-mark-image-light {
  opacity: 1;
}

body[data-theme="light"] .site-nav a {
  color: rgba(23, 17, 20, 0.72);
}

body[data-theme="light"] .language-button.is-active {
  box-shadow: inset 0 0 0 1px rgba(23, 17, 20, 0.08);
}

body[data-theme="light"] .button-secondary {
  border-color: rgba(23, 17, 20, 0.14);
}

body[data-theme="light"] .hero-backdrop {
  background: #eee7dc;
}

body[data-theme="light"] .hero-backdrop::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.08) 42%, rgba(24, 16, 12, 0.16) 100%);
}

body[data-theme="light"] .hero-backdrop::before {
  background:
    linear-gradient(90deg, rgba(246, 239, 231, 0.94) 0%, rgba(246, 239, 231, 0.8) 28%, rgba(246, 239, 231, 0.24) 58%, rgba(246, 239, 231, 0.6) 100%),
    linear-gradient(180deg, rgba(250, 244, 236, 0.02) 0%, rgba(250, 244, 236, 0.08) 44%, rgba(16, 10, 12, 0.12) 100%);
}

body[data-theme="light"] .hero-background-image {
  filter:
    saturate(0.98)
    contrast(1.03)
    brightness(0.98);
}

body[data-theme="light"] .hero-scroll {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.3)),
    rgba(250, 244, 236, 0.44);
  color: var(--text);
  border-color: rgba(23, 17, 20, 0.12);
}

body[data-theme="light"] .hero-scroll-orb {
  color: #fff9ef;
  background: linear-gradient(135deg, #d88715, #bd6c0d);
}

body[data-theme="light"] .about-signature {
  background: rgba(23, 17, 20, 0.03);
}

body[data-theme="light"] .about-copy-frame,
body[data-theme="light"] .about-panel,
body[data-theme="light"] .about-timeline-shell,
body[data-theme="light"] .social-panel,
body[data-theme="light"] .contact-panel,
body[data-theme="light"] .showcase-card {
  background: rgba(255, 255, 255, 0.78);
}

body[data-theme="light"] .about-copy-frame::after {
  background: rgba(23, 17, 20, 0.16);
}

body[data-theme="light"] .about-visual::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(16, 10, 12, 0.36));
}

body[data-theme="light"] .about-timeline-item {
  background: rgba(23, 17, 20, 0.02);
}

body[data-theme="light"] .showcase-copy,
body[data-theme="light"] .social-link,
body[data-theme="light"] .about-timeline-item,
body[data-theme="light"] .about-panel,
body[data-theme="light"] .social-panel,
body[data-theme="light"] .contact-panel,
body[data-theme="light"] .showcase-card {
  box-shadow: none;
}

body[data-theme="light"] .social-link:hover,
body[data-theme="light"] .social-link:focus-visible {
  background: rgba(23, 17, 20, 0.045);
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .social-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 27rem;
  }

  .about-portrait {
    min-height: 27rem;
    aspect-ratio: 16 / 10.5;
  }

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

  .about-timeline-item:nth-child(2n + 1) {
    border-left: 0;
  }

  .showcase-card,
  .showcase-card-wide {
    grid-column: span 6;
  }

  .about-lead {
    max-width: none;
  }

  .hero-background-image {
    object-position: 64% center;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    gap: 0.9rem;
    padding: 0.75rem 0;
  }

  .brand-mark-header {
    width: 4.8rem;
  }

  .header-panel {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 4.45rem);
    left: 0.75rem;
    right: 0.75rem;
    z-index: 21;
    width: auto;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.05rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.012)),
      var(--header-panel-bg);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.985);
    max-height: calc(100svh - 5.6rem);
    overflow: auto;
    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 220ms ease;
  }

  .header-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .site-nav,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    gap: 0.3rem;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid transparent;
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.018);
  }

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

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.038);
    border-color: var(--line);
  }

  body[data-theme="light"] .site-nav a:hover,
  body[data-theme="light"] .site-nav a:focus-visible {
    background: rgba(23, 17, 20, 0.038);
    border-color: rgba(23, 17, 20, 0.08);
  }

  .header-actions {
    display: grid;
    gap: 1rem;
  }

  .language-switcher,
  .theme-toggle {
    align-self: stretch;
  }

  .language-switcher {
    justify-content: center;
  }

  .language-button {
    width: 2.7rem;
    height: 2.7rem;
  }

  .theme-toggle {
    width: 100%;
    max-width: 3.15rem;
    margin: 0 auto;
  }

  .header-actions .button-small {
    width: 100%;
    min-height: 3.15rem;
  }

  .site-loader-inner {
    width: min(18rem, calc(100vw - 2rem));
  }

  .hero {
    min-height: 100svh;
  }

  .hero-grid {
    min-height: 100svh;
    justify-items: center;
    text-align: center;
    padding: calc(5.3rem + env(safe-area-inset-top, 0px)) 0 4rem;
  }

  .hero-logo-shell {
    width: min(100%, 30rem);
    padding: 0;
    place-items: center;
  }

  .brand-mark-hero {
    width: min(76vw, 24rem);
  }

  .hero-copy {
    max-width: min(31rem, 100%);
    place-items: center;
  }

  .hero-background-image {
    object-position: 64% center;
  }

  .showcase-card,
  .showcase-card-wide {
    grid-column: span 12;
  }

  .social-rail {
    position: fixed;
    top: auto;
    left: 0.9rem;
    bottom: calc(0.95rem + env(safe-area-inset-bottom, 0px));
    z-index: 19;
    transform: none;
    width: auto;
    margin: 0;
    gap: 0.65rem;
  }

  body.is-ready .social-rail {
    animation: socialDockInMobile 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.46s both;
  }

  .social-rail-link {
    width: 2.9rem;
    height: 2.9rem;
    background: rgba(7, 5, 8, 0.82);
    backdrop-filter: blur(16px);
  }
}

@media (max-width: 620px) {
  .section {
    padding: 4rem 0;
  }

  .container {
    width: min(1180px, calc(100vw - 1.5rem));
  }

  .hero-grid {
    min-height: 100svh;
    align-items: center;
    padding: calc(4.8rem + env(safe-area-inset-top, 0px)) 0 2.5rem;
  }

  .hero-logo-shell {
    width: min(92vw, 19rem);
    padding: 0;
  }

  .hero-background-image {
    object-position: 67% center;
  }

  .hero-subtitle {
    max-width: 21rem;
    font-size: 0.78rem;
    letter-spacing: 0.17em;
  }

  .hero-description {
    max-width: 22rem;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .about-grid,
  .social-links,
  .about-timeline-grid {
    gap: 0.85rem;
  }

  .showcase-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(84vw, 1fr);
    gap: 0.8rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 0.4rem;
    scroll-snap-type: x proximity;
  }

  .showcase-grid::-webkit-scrollbar {
    height: 0.35rem;
  }

  .showcase-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(245, 157, 12, 0.32);
  }

  .showcase-card,
  .showcase-card-wide {
    grid-column: auto;
    scroll-snap-align: start;
  }

  .showcase-card .showcase-visual,
  .showcase-card-wide .showcase-visual {
    min-height: 14.8rem;
  }

  .social-panel,
  .contact-panel {
    gap: 1rem;
    padding: 1.25rem;
  }

  .about-lead {
    font-size: clamp(1.28rem, 8vw, 1.72rem);
    line-height: 1.08;
  }

  .about-signature {
    padding: 0.95rem 1rem 1rem 1.65rem;
  }

  .about-copy-frame {
    border-radius: var(--radius-lg);
  }

  .about-copy p {
    padding: 1.05rem 1rem 1.08rem 1.65rem;
  }

  .about-copy p:first-child::first-letter {
    font-size: 2.35rem;
  }

  .about-copy-frame::after {
    left: 0.72rem;
  }

  .about-panel {
    padding: 0.65rem;
  }

  .about-portrait {
    min-height: 22rem;
    aspect-ratio: 4 / 4.1;
  }

  .about-visual-caption {
    top: 1rem;
    left: 1rem;
  }

  .about-timeline-grid {
    grid-template-columns: 1fr;
  }

  .about-timeline-heading {
    margin-bottom: 0.8rem;
  }

  .about-timeline-item {
    padding: 3.15rem 1rem 1rem;
    border-left: 0;
  }

  .about-year {
    top: 0.9rem;
    left: 1rem;
    font-size: 1.05rem;
  }

  .showcase-copy {
    padding: 1rem 1rem 1.1rem;
  }

  .social-link {
    padding: 0.85rem 0.9rem;
  }

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

@media (max-width: 460px) {
  .brand-mark-header {
    width: 4.1rem;
  }

  .menu-toggle {
    width: 2.7rem;
    height: 2.7rem;
  }

  .header-panel {
    top: calc(env(safe-area-inset-top, 0px) + 4.1rem);
    left: 0.6rem;
    right: 0.6rem;
    width: auto;
    padding: 0.85rem;
  }

  .site-nav a {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .language-button {
    width: 2.4rem;
    height: 2.4rem;
    flex: 0 0 auto;
  }

  .flag {
    width: 1.22rem;
    height: 0.88rem;
  }

  .theme-toggle {
    max-width: 2.85rem;
    height: 2.85rem;
  }

  .brand-mark-hero {
    width: min(80vw, 16.8rem);
  }

  .hero .eyebrow {
    max-width: 18rem;
    font-size: 0.68rem;
  }

  .hero-scroll {
    bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
    min-width: 8.4rem;
    padding: 0.48rem 0.74rem 0.48rem 0.54rem;
    gap: 0.48rem;
  }

  .hero-scroll-text {
    font-size: 0.54rem;
    letter-spacing: 0.18em;
  }

  .hero-scroll-orb {
    width: 1.85rem;
    height: 1.85rem;
  }

  .site-loader-line {
    width: min(6.8rem, 54vw);
  }

  .section-heading {
    gap: 0.65rem;
    margin-bottom: 1.5rem;
  }

  .section-heading h2,
  .contact-panel h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .section-intro,
  .about-copy p,
  .about-timeline-item p,
  .showcase-copy p,
  .social-panel p,
  .contact-panel p {
    font-size: 0.95rem;
  }

  .feature-tag {
    font-size: 0.72rem;
  }

  .social-rail {
    left: 0.7rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    gap: 0.5rem;
  }

  .social-rail-link {
    width: 2.65rem;
    height: 2.65rem;
  }
}

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

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

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@keyframes loaderLogoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes loaderLine {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(110%);
  }
}

@keyframes loaderAura {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
}

@keyframes loaderHalo {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.22;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.44;
  }
}

@keyframes headerSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroContentIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.965);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroLogoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroLogoPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.24)) drop-shadow(0 0 36px rgba(245, 157, 12, 0.12));
  }
  50% {
    filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.34)) drop-shadow(0 0 52px rgba(245, 157, 12, 0.18));
  }
}

@keyframes heroBackdropDrift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.05) translate3d(0, -1.1%, 0);
  }
  100% {
    transform: scale(1.03) translate3d(0.8%, 1.1%, 0);
  }
}

@keyframes heroHalo {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes heroOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroScrollEnter {
  0% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes heroScrollPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(245, 157, 12, 0.22),
      inset 0 -1px 0 rgba(255, 255, 255, 0.18);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(245, 157, 12, 0),
      inset 0 -1px 0 rgba(255, 255, 255, 0.22);
    transform: scale(1.04);
  }
}

@keyframes heroArrowBounce {
  0%,
  100% {
    opacity: 0.72;
    transform: rotate(45deg) translate(-1px, -1px);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translate(1px, 1px);
  }
}

@keyframes heroScrollSheen {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-42%);
  }
  18%,
  32% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translateX(42%);
  }
}

@keyframes socialRing {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.78;
    transform: scale(1.04);
  }
}

@keyframes socialGlyph {
  0%,
  100% {
    opacity: 0.88;
    filter: drop-shadow(0 0 0 rgba(245, 157, 12, 0));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(245, 157, 12, 0.18));
  }
}

@keyframes socialSheen {
  0% {
    transform: translateX(-52%);
  }
  100% {
    transform: translateX(52%);
  }
}

@keyframes socialDockIn {
  0% {
    opacity: 0;
    transform: translate(-10px, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes socialDockInMobile {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
