@font-face {
  font-family: "PT Sans Custom";
  font-style: normal;
  font-weight: 400;
  src: url("../css/fonts/jizaRExUiTo99u79D0KExQ.woff2") format("woff2");
}

@font-face {
  font-family: "PT Sans Custom";
  font-style: normal;
  font-weight: 700;
  src: url("../css/fonts/jizfRExUiTo99u79B_mh0O6tLQ.woff2") format("woff2");
}

:root {
  --page-width: 1180px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-soft: 0 18px 60px rgba(10, 10, 10, 0.12);
  --shadow-card: 0 16px 36px rgba(10, 10, 10, 0.09);
  --transition: 180ms ease;
  --font-body: "PT Sans Custom", "Segoe UI", sans-serif;
  --font-display: "PT Sans Custom", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, var(--glow) 0, transparent 22%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-alt) 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--accent);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--panel);
  border-radius: 999px;
}

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

.container {
  width: min(calc(100% - 2rem), var(--page-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, #d8bfa9 0%, #aa030d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.brand__title {
  font-size: 0.9rem;
  color: #fff;
}

.brand__logo {
  width: auto;
  height: 2.9rem;
  flex: 0 0 auto;
}

.brand__subline {
  font-size: 0.74rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  background: transparent;
  color: #fff;
  position: relative;
  overflow: hidden;
  font-size: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 220ms ease, box-shadow 220ms ease, top 220ms ease, bottom 220ms ease;
}

.nav-toggle::before {
  top: 1.05rem;
  box-shadow: 0 0.42rem 0 0 currentColor;
}

.nav-toggle::after {
  bottom: 1.05rem;
}

.nav-toggle[aria-expanded="true"]::before {
  top: 1.45rem;
  box-shadow: 0 0 0 0 transparent;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  bottom: 1.43rem;
  transform: translateX(-50%) rotate(-45deg);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

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

.nav a {
  padding: 0.8rem 1rem;
  border-radius: 0;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: normal;
  color: #fff;
}

.nav a:hover,
.nav a:focus-visible {
  background: #fff;
  color: #aa030d;
}

.nav a.is-active,
.nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.92);
  color: #aa030d;
}

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

.nav-mobile-only {
  display: none !important;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.2rem;
  border-radius: 0;
  border: 1px solid #aa030d;
  background: transparent;
  color: #aa030d;
  box-shadow: none;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.button:hover {
  transform: translateY(-1px);
  background: #aa030d;
  color: #fff;
  border-color: #aa030d;
}

.button--primary {
  background: transparent;
  color: #aa030d;
  border-color: #aa030d;
}

.button--secondary {
  border-color: #aa030d;
  background: transparent;
  color: #aa030d;
}

.button--secondary:hover,
.button--primary:hover {
  background: #aa030d;
  color: #fff;
}

.site-header .button--primary {
  background: #fff;
  color: #aa030d;
  border-color: #fff;
}

.site-header .button--primary:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.button--ghost {
  border-color: var(--line);
  background: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero {
  padding: 4rem 0 2rem;
  animation: fade-up 700ms ease both;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: stretch;
}

.hero__copy,
.hero__visual {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}

.hero__copy {
  padding: 2.4rem;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 84%, transparent), color-mix(in srgb, var(--panel) 94%, transparent));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  animation: fade-up 820ms ease both;
}

.hero__copy::after {
  content: "";
  position: absolute;
  inset: auto -10% -24% auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%);
  pointer-events: none;
}

.hero h1,
.section-heading h2,
.mini-hero h1 {
  margin: 1rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(1.9rem, 2.9vw, 2.8rem);
  max-width: 18ch;
}

.hero__headline span {
  display: block;
}

.hero p.lead,
.mini-hero__lead {
  max-width: 46rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--muted);
}

.hero__actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.1rem;
}

.stat-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  border: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  font-size: 1.7rem;
  font-family: var(--font-display);
}

.hero__visual {
  min-height: 30rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48)), url("../img/hochheim-drums_cover.jpg") center center / cover no-repeat;
  box-shadow: var(--shadow-soft);
  animation: reveal-soft 1s ease both;
  transition: transform 500ms ease, filter 500ms ease;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.55) 100%),
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 36%);
}

.hero__badge,
.floating-card {
  position: absolute;
  z-index: 2;
  max-width: 18rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  border: 1px solid color-mix(in srgb, var(--surface) 60%, transparent);
  box-shadow: var(--shadow-card);
}

.hero__badge {
  left: 1.2rem;
  top: 1.2rem;
}

.floating-card {
  right: 1.2rem;
  bottom: 1.2rem;
}

.pulse-lines {
  position: absolute;
  inset: auto auto 2rem 2rem;
  z-index: 2;
  display: flex;
  gap: 0.45rem;
}

.pulse-lines span {
  width: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  animation: groove 1.6s ease-in-out infinite;
}

.pulse-lines span:nth-child(1) { height: 2.2rem; animation-delay: 0s; }
.pulse-lines span:nth-child(2) { height: 3.6rem; animation-delay: 0.1s; }
.pulse-lines span:nth-child(3) { height: 1.7rem; animation-delay: 0.2s; }
.pulse-lines span:nth-child(4) { height: 4.8rem; animation-delay: 0.3s; }
.pulse-lines span:nth-child(5) { height: 2.8rem; animation-delay: 0.4s; }

@keyframes groove {
  0%,
  100% {
    transform: scaleY(0.7);
    opacity: 0.45;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

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

.section--tight {
  padding-top: 2.4rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  max-width: 16ch;
}

.section-heading p {
  max-width: 36rem;
  color: var(--muted);
}

.grid-two,
.grid-three,
.grid-four,
.story-grid,
.contact-grid,
.mini-hero__grid {
  display: grid;
  gap: 1.35rem;
}

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

.story-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.story-grid--single {
  grid-template-columns: 1fr;
}

.card,
.region-card,
.quote-card,
.lesson-card,
.faq-card,
.contact-card,
.detail-card {
  position: relative;
  padding: 1.4rem;
  border-radius: 0;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.card:hover,
.region-card:hover,
.quote-card:hover,
.lesson-card:hover,
.faq-card:hover,
.contact-card:hover,
.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(10, 10, 10, 0.12);
  border-color: rgba(170, 3, 13, 0.2);
}

.card h3,
.region-card h3,
.lesson-card h3,
.detail-card h3 {
  margin-top: 0.2rem;
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
  font-family: var(--font-display);
}

.card p,
.region-card p,
.lesson-card p,
.detail-card p,
.quote-card p {
  color: var(--muted);
}

.region-card {
  min-height: 100%;
}

.region-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.93rem;
}

.feature-list,
.plain-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.feature-list li,
.plain-list li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.feature-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.portrait-card__image {
  min-height: 24rem;
  border-radius: 0;
  overflow: hidden;
}

.portrait-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.quote-card {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.2;
}

.quote-card strong {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-body);
}

.section-photo img,
.section-panorama img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  transition: transform 700ms ease, filter 700ms ease;
}

.section-photo img {
  min-height: 100%;
  max-height: 42rem;
}

.section-panorama {
  margin-top: 1.5rem;
}

.section-panorama img {
  min-height: 15rem;
  max-height: 22rem;
  object-fit: cover;
  border-radius: 0;
}

.section-photo:hover img,
.section-panorama:hover img,
.portrait-card__image:hover img,
.hero__visual:hover {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.ribbon {
  margin: 2rem 0 0;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, var(--surface)), color-mix(in srgb, var(--surface) 88%, transparent));
}

.route-visual {
  position: relative;
  min-height: 24rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 15%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 30%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 86%, transparent), color-mix(in srgb, var(--panel) 90%, transparent));
  overflow: hidden;
}

.route-visual svg {
  width: 100%;
  height: auto;
}

.route-label {
  position: absolute;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  font-size: 0.86rem;
}

.route-label::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.route-label--hochheim { left: 48%; top: 40%; }
.route-label--mainz { left: 18%; top: 52%; }
.route-label--wiesbaden { left: 12%; top: 22%; }
.route-label--floersheim { left: 58%; top: 18%; }
.route-label--ruesselsheim { left: 70%; top: 44%; }
.route-label--bischofsheim { left: 58%; top: 58%; }

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.4rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-card__row {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.contact-line {
  padding: 1rem;
  border-radius: 0;
  background: color-mix(in srgb, var(--surface) 75%, transparent);
  border: 1px solid var(--line);
}

.contact-line small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 1.05rem;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--ink);
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.25rem;
}

.microcopy,
.small-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  padding: 2rem 0 5.5rem;
  border-top: 1px solid var(--line);
  animation: fade-up 700ms ease both;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.75fr;
  gap: 1.4rem;
}

.site-footer h2 {
  margin-top: 0;
  font-family: var(--font-display);
}

.mini-hero {
  padding: 4rem 0 2rem;
}

.mini-hero__grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.mini-hero__copy {
  padding: 2.4rem;
  border-radius: 0;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.mini-hero__visual {
  min-height: 22rem;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.mini-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-hero__visual img[src$=".svg"] {
  object-fit: contain;
  padding: 2.5rem;
  background:
    radial-gradient(circle at 70% 30%, rgba(216, 191, 169, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 239, 231, 0.96));
}

.mini-hero h1 {
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  max-width: 15ch;
}

.info-table {
  display: grid;
  gap: 0.8rem;
}

.info-row {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.info-row strong {
  font-weight: 700;
}

.legal {
  padding: 3rem 0 5rem;
}

.legal article {
  padding: 2rem;
  border-radius: 0;
  background: color-mix(in srgb, var(--surface) 83%, transparent);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.legal h1,
.legal h2,
.legal h3 {
  font-family: var(--font-display);
}

.legal h1 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.legal h2 {
  margin-top: 2rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.badge {
  padding: 0.55rem 0.75rem;
  border-radius: 0;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  border: 1px solid var(--line);
  font-size: 0.92rem;
}

.theme-copper {
  --surface: #f5f5f5;
  --surface-alt: #ececec;
  --panel: #ffffff;
  --ink: #201816;
  --muted: #595050;
  --line: rgba(32, 24, 22, 0.08);
  --line-strong: rgba(32, 24, 22, 0.18);
  --accent: #8e2331;
  --accent-strong: #5a1721;
  --glow: rgba(216, 191, 169, 0.18);
}

.theme-night {
  --surface: #edf0f3;
  --surface-alt: #d6dde5;
  --panel: #ffffff;
  --ink: #0d1720;
  --muted: #47606b;
  --line: rgba(13, 23, 32, 0.1);
  --line-strong: rgba(13, 23, 32, 0.2);
  --accent: #1d8dff;
  --accent-strong: #0d1720;
  --glow: rgba(29, 141, 255, 0.16);
}

.theme-night .hero__visual {
  background: linear-gradient(180deg, rgba(2, 18, 32, 0.08), rgba(2, 18, 32, 0.5)), url("../img/hochheim-drums_cover.jpg") center center / cover no-repeat;
}

.theme-copper .hero__visual {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0.56)), url("../img/hochheim-drums_cover.jpg") center center / cover no-repeat;
}

.profile-parallax {
  position: relative;
  min-height: 48rem;
  padding: 7rem 0;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.76) 0%, rgba(8, 8, 8, 0.44) 42%, rgba(8, 8, 8, 0.25) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.15) 0%, rgba(8, 8, 8, 0.38) 100%),
    url("../img/kai2.jpg");
  background-position: center center, center center, center top;
  background-repeat: no-repeat;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
}

.profile-parallax__content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.profile-parallax__panel {
  width: min(100%, 32rem);
  padding: 2rem;
  background: rgba(16, 16, 16, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(6px);
}

.profile-parallax__panel .eyebrow {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.profile-parallax__panel h2,
.profile-parallax__panel h3,
.profile-parallax__panel p {
  color: #fff;
}

.site-rail {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 18;
  background: linear-gradient(90deg, #d8bfa9 0%, #aa030d 100%);
  color: #fff;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.16);
  transform: translateY(100%);
  animation: rail-in 700ms ease 220ms forwards;
}

.site-rail__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem 1.5rem;
  min-height: 3rem;
  padding: 0.7rem 0;
}

.site-rail__inner a:hover {
  color: #fff;
  text-decoration: underline;
}

@keyframes rail-in {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes reveal-soft {
  from {
    opacity: 0;
    filter: saturate(0.92) blur(4px);
    transform: scale(1.015);
  }
  to {
    opacity: 1;
    filter: saturate(1) blur(0);
    transform: scale(1);
  }
}

@supports (animation-timeline: view()) {
  .section,
  .site-footer {
    animation-name: fade-up;
    animation-duration: 1ms;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 10% cover 32%;
  }

  .section-photo img,
  .section-panorama img,
  .hero__visual,
  .portrait-card__image img {
    animation-name: reveal-soft;
    animation-duration: 1ms;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 5% cover 34%;
  }
}

.ornament,
.ornament--floating {
  display: block;
  color: var(--accent);
}

.ornament img,
.ornament--floating img {
  width: 100%;
  height: auto;
}

.hero__ornament {
  margin-top: 2rem;
  max-width: 24rem;
  color: var(--accent);
}

.editorial-note {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  border-left: 4px solid var(--accent);
}

.editorial-note strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-canvas {
  position: relative;
  min-height: min(74vh, 760px);
  display: grid;
  align-items: end;
  padding: 5rem 0 2.2rem;
}

.hero-canvas__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-canvas__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.hero-canvas__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 14, 13, 0.68) 0%, rgba(20, 14, 13, 0.44) 34%, rgba(20, 14, 13, 0.14) 70%, rgba(20, 14, 13, 0.32) 100%),
    linear-gradient(180deg, rgba(20, 14, 13, 0.06) 0%, rgba(20, 14, 13, 0.5) 100%);
}

.hero-canvas__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.hero-canvas__copy {
  max-width: 44rem;
  color: #fff;
}

.hero-canvas__copy h1 {
  margin: 1rem 0;
  font-size: clamp(2.25rem, 4.1vw, 4.1rem);
  line-height: 0.92;
  max-width: 11ch;
}

.hero-canvas__copy p {
  max-width: 38rem;
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  color: rgba(255, 255, 255, 0.82);
}

.hero-canvas__meta {
  display: grid;
  justify-self: end;
  gap: 1rem;
  width: min(100%, 22rem);
}

.hero-panel {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-panel strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marquee-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

.marquee-band__track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  padding: 0.9rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  color: var(--muted);
}

.marquee-band__track span::after {
  content: " /";
  margin-left: 2rem;
  color: var(--accent);
}

.split-stage {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.split-stage__media {
  position: sticky;
  top: 6.2rem;
  min-height: 68vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.split-stage__media img {
  width: 100%;
  height: 100%;
  min-height: 68vh;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
}

.split-stage__content {
  display: grid;
  gap: 1rem;
}

.split-stage__content .card {
  padding: 1.6rem;
}

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

.keyword-band .card {
  min-height: 100%;
}

.full-bleed-image {
  position: relative;
  min-height: 62vh;
  overflow: hidden;
}

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

.full-bleed-image__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.18) 0%, rgba(17, 17, 17, 0.56) 100%);
}

.full-bleed-image__content {
  position: relative;
  z-index: 1;
  min-height: 62vh;
  display: grid;
  align-content: end;
  padding: 2.6rem 0;
  color: #fff;
}

.full-bleed-image__content h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  max-width: 12ch;
  margin: 0 0 0.8rem;
}

.full-bleed-image__content p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.86);
}

.gallery-wall {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.gallery-wall__stack {
  display: grid;
  gap: 1rem;
}

.gallery-wall__tile {
  position: relative;
  min-height: 20rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-wall__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-wall__tile--tall {
  min-height: 40rem;
}

.gallery-wall__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(17, 17, 17, 0.5);
  color: #fff;
  backdrop-filter: blur(6px);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 600ms ease, transform 700ms ease;
}

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

.hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 1040px) {
  .hero__grid,
  .story-grid,
  .contact-grid,
  .mini-hero__grid,
  .portrait-card,
  .hero-canvas__grid,
  .split-stage,
  .gallery-wall {
    grid-template-columns: 1fr;
  }

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

  .keyword-band {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-actions {
    display: none;
  }

  .nav-mobile-only {
    display: inline-flex !important;
    width: 100%;
    margin-top: 0.4rem;
  }

  .nav {
    position: fixed;
    inset: 78px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 0;
    background: linear-gradient(180deg, #c69979 0%, #8f0911 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-soft);
  }

  .nav.is-open {
    display: flex;
    animation: fade-up 240ms ease both;
  }

  .stat-row,
  .grid-three,
  .grid-two,
  .grid-four,
  .form-grid,
  .hero-canvas {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-canvas__meta {
    justify-self: stretch;
    width: 100%;
  }

  .split-stage__media {
    position: relative;
    top: auto;
    min-height: 24rem;
  }

  .split-stage__media img {
    min-height: 24rem;
  }

  .gallery-wall__tile--tall,
  .gallery-wall__tile {
    min-height: 22rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero__copy,
  .mini-hero__copy {
    padding: 1.5rem;
  }

  .hero__visual {
    min-height: 26rem;
  }

  .route-label {
    position: static;
    margin-bottom: 0.55rem;
  }

  .route-visual {
    min-height: 18rem;
  }

  .photo-stack img:first-child {
    transform: none;
  }

  .site-rail {
    position: static;
    transform: none;
    animation: none;
  }

  .site-rail__inner {
    justify-content: flex-start;
  }

  .profile-parallax__content {
    justify-content: flex-start;
  }

  .profile-parallax {
    background-attachment: scroll, scroll, scroll;
    background-position: center center, center center, center center;
  }

  .section {
    padding: 3.5rem 0;
  }
}
