:root {
  --bg: #ece7de;
  --surface: #f7f3eb;
  --surface-strong: #f1ecdf;
  --ink: #1e221d;
  --muted: #545b52;
  --line: rgba(30, 34, 29, 0.18);
  --line-strong: rgba(30, 34, 29, 0.34);
  --accent: #b4572f;
  --accent-dark: #8a3f20;
  --radius-soft: 24px;
  --radius-tight: 12px;
  --shadow-soft: 0 22px 64px -34px rgba(40, 34, 27, 0.46);
  --max-width: 1360px;
  --space-2xs: clamp(0.45rem, 0.4rem + 0.2vw, 0.65rem);
  --space-xs: clamp(0.7rem, 0.65rem + 0.3vw, 1rem);
  --space-s: clamp(1rem, 0.9rem + 0.4vw, 1.35rem);
  --space-m: clamp(1.4rem, 1.2rem + 0.7vw, 2rem);
  --space-l: clamp(2rem, 1.5rem + 1.7vw, 3.6rem);
  --space-xl: clamp(3.2rem, 2.4rem + 2.8vw, 5.8rem);
  --space-2xl: clamp(5rem, 3.9rem + 4.2vw, 8.8rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at 7% 12%, rgba(180, 87, 47, 0.16), transparent 44%),
    radial-gradient(circle at 90% 5%, rgba(30, 34, 29, 0.08), transparent 34%),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(30, 34, 29, 0.045) 0.45px, transparent 0.45px);
  background-size: 4px 4px;
  opacity: 0.36;
  z-index: -1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 0.8rem;
  top: -3rem;
  padding: 0.65rem 0.85rem;
  background: var(--ink);
  color: var(--surface);
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  top: 0.85rem;
}

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

.site-shell {
  width: min(var(--max-width), calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 240;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(247, 243, 235, 0.9),
    rgba(247, 243, 235, 0.75)
  );
  border-bottom: 1px solid rgba(30, 34, 29, 0.08);
}

.site-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-s);
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.brand-main {
  font-size: clamp(1.1rem, 0.92rem + 0.52vw, 1.45rem);
}

.brand-sub {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0 0.22rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.site-nav-list a[aria-current="page"] {
  color: var(--ink);
  border-color: var(--ink);
}

.site-nav-list a:hover,
.site-nav-list a:focus-visible {
  color: var(--ink);
  border-color: rgba(30, 34, 29, 0.4);
}

.menu-toggle {
  display: inline-flex;
  position: relative;
  z-index: 260;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(228, 232, 237, 0.28);
  border-radius: 999px;
  background: rgba(14, 16, 19, 0.48);
  color: #eef2f7;
  backdrop-filter: blur(8px);
  transition: background 0.22s ease, transform 0.2s ease, border-color 0.22s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(14, 16, 19, 0.72);
  border-color: rgba(240, 245, 255, 0.44);
}

.menu-toggle:active {
  transform: scale(0.97);
}

.menu-toggle svg {
  width: 1.2rem;
  height: 1.2rem;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  transform: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 180;
  background: transparent;
  overflow: hidden;
}

.mobile-panel[hidden] {
  display: none !important;
}

.mobile-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(1100px 700px at 52% 20%, rgba(236, 203, 151, 0.1), transparent 56%),
    radial-gradient(900px 500px at 50% 88%, rgba(8, 11, 18, 0.88), transparent 60%);
}

.menu-reveal-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.menu-reveal-layer {
  position: absolute;
  inset: 0;
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}

.menu-reveal-layer:nth-child(1) {
  background: #050608;
}

.menu-reveal-layer:nth-child(2) {
  background: #0a1019;
}

.menu-reveal-layer:nth-child(3) {
  background: #0c1421;
}

.menu-reveal-layer:nth-child(4) {
  background:
    radial-gradient(1300px 620px at 50% 18%, rgba(171, 121, 64, 0.17), transparent 56%),
    linear-gradient(180deg, #06080d 0%, #070c15 48%, #05070b 100%);
}

.mobile-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(310deg, rgba(255, 255, 255, 0.05), transparent 24%);
  mix-blend-mode: screen;
  opacity: 0.25;
}

.mobile-panel-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: clamp(5rem, 11vh, 8rem) clamp(1.3rem, 6vw, 5.5rem) clamp(2rem, 8vh, 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  background: linear-gradient(180deg, rgba(8, 10, 15, 0.52), rgba(8, 10, 15, 0.76));
}

.mobile-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  width: min(32rem, 100%);
  justify-items: center;
  text-align: center;
}

.mobile-panel a {
  position: relative;
  display: inline-block;
  width: max-content;
  padding: 0.2rem 0;
  border-radius: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2.05rem, 1.1rem + 3.2vw, 4.55rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: rgba(232, 227, 214, 0.58);
  transition: transform 0.24s ease, color 0.3s ease, text-shadow 0.3s ease;
  text-shadow: 0 0 0 rgba(255, 140, 42, 0);
}

.mobile-panel a:hover,
.mobile-panel a:focus-visible {
  transform: translateY(-0.04em) scale(1.01);
  color: #ffc777;
  text-shadow: 0 0 14px rgba(255, 140, 42, 0.48), 0 0 28px rgba(255, 90, 30, 0.22);
}

.mobile-panel a[aria-current="page"] {
  color: #ffc777;
  text-shadow: 0 0 14px rgba(255, 170, 64, 0.38);
}

.menu-link-mask {
  display: block;
  overflow: hidden;
  padding-block: 0.08em 0.14em;
  line-height: 1.05;
}

.menu-link-line {
  display: block;
  transform: translateY(115%);
  opacity: 0;
  will-change: transform, opacity;
}

body.menu-open .mobile-panel {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

main {
  padding-bottom: var(--space-2xl);
}

.section {
  padding-block: var(--space-xl);
}

.section + .section {
  border-top: 1px solid rgba(30, 34, 29, 0.08);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 var(--space-m);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.display-title {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2rem, 1.2rem + 3.2vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.section-title {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.7rem, 1.38rem + 1.2vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.lead {
  max-width: 64ch;
  margin: var(--space-m) 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 0.95rem + 0.35vw, 1.22rem);
}

.hero {
  padding-top: var(--space-2xl);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--space-xl);
  align-items: end;
}

.hero-copy {
  max-width: 46rem;
}

.hero-roles {
  margin-top: var(--space-m);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 29rem;
}

.hero-role {
  padding: 0.72rem 0.82rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(247, 243, 235, 0.7);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: var(--space-l);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 999px;
  padding: 0 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease,
    color 0.22s ease;
}

.button:active {
  transform: translateY(1px) scale(0.98);
}

.button-primary {
  background: var(--accent);
  color: #fff6ef;
  box-shadow: 0 16px 32px -18px rgba(138, 63, 32, 0.52);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(30, 34, 29, 0.06);
}

.hero-media-wrap {
  position: relative;
}

.hero-media {
  border-radius: var(--radius-soft);
  overflow: clip;
  min-height: 70dvh;
  box-shadow: var(--shadow-soft);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-caption {
  position: absolute;
  inset: auto 1rem 1rem auto;
  background: rgba(247, 243, 235, 0.84);
  border: 1px solid rgba(30, 34, 29, 0.16);
  border-radius: 999px;
  padding: 0.46rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.marquee {
  margin-top: var(--space-xl);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding: 0.85rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  animation: marquee 26s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: var(--space-xl);
}

.sticky-col {
  position: sticky;
  top: 112px;
  align-self: start;
}

.track-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.track-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: var(--space-m);
  padding: var(--space-m) 0;
  border-bottom: 1px solid var(--line);
}

.track-item h3 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.18rem, 1.03rem + 0.48vw, 1.58rem);
  letter-spacing: -0.02em;
}

.track-item p {
  margin: 0;
  color: var(--muted);
}

.track-meta {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.tour-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-m);
}

.tour-block {
  background: var(--surface);
  border: 1px solid rgba(30, 34, 29, 0.14);
  border-radius: 18px;
  padding: var(--space-m);
  box-shadow: var(--shadow-soft);
}

.tour-block h3 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.15rem, 1.04rem + 0.44vw, 1.48rem);
  letter-spacing: -0.02em;
}

.tour-list {
  margin: var(--space-s) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.tour-list li {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  font-size: 0.92rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed rgba(30, 34, 29, 0.18);
}

.tour-list strong {
  font-weight: 700;
}

.journal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: var(--space-m);
}

.news-card {
  display: grid;
  grid-template-rows: auto auto;
  gap: var(--space-s);
  background: var(--surface);
  border: 1px solid rgba(30, 34, 29, 0.12);
  border-radius: 16px;
  padding: var(--space-s);
  box-shadow: var(--shadow-soft);
}

.news-card figure {
  margin: 0;
  border-radius: 12px;
  overflow: clip;
  aspect-ratio: 4 / 3;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card h3 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.34rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.news-card time {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--accent-dark);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.news-card .text-link {
  margin-top: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.text-link::after {
  content: "";
  width: 14px;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 22px;
}

.journal-stack {
  display: grid;
  gap: var(--space-m);
}

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: var(--space-m);
  align-items: center;
  padding: var(--space-l);
  border-radius: var(--radius-soft);
  background: linear-gradient(145deg, rgba(180, 87, 47, 0.96), rgba(138, 63, 32, 0.93));
  color: #fdf7f1;
  box-shadow: 0 22px 60px -28px rgba(138, 63, 32, 0.68);
}

.cta-strip p {
  margin: var(--space-s) 0 0;
  color: rgba(253, 247, 241, 0.86);
}

.cta-strip .button-secondary {
  border-color: rgba(253, 247, 241, 0.44);
  color: #fdf7f1;
}

.cta-strip .button-secondary:hover,
.cta-strip .button-secondary:focus-visible {
  background: rgba(253, 247, 241, 0.14);
}

.page-hero {
  padding-top: var(--space-xl);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

.page-grid.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.figure-panel {
  margin: 0;
  border-radius: var(--radius-soft);
  overflow: clip;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(30, 34, 29, 0.1);
}

.figure-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prose {
  color: var(--muted);
  max-width: 70ch;
}

.prose p {
  margin-top: 0;
  margin-bottom: 1.05rem;
}

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

.moment-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-s);
}

.moment-grid figure {
  margin: 0;
  border-radius: 14px;
  overflow: clip;
  box-shadow: var(--shadow-soft);
}

.moment-grid figure:nth-child(1) {
  grid-column: span 7;
}

.moment-grid figure:nth-child(2) {
  grid-column: span 5;
}

.moment-grid figure:nth-child(3) {
  grid-column: span 5;
}

.moment-grid figure:nth-child(4) {
  grid-column: span 7;
}

.moment-grid figure:nth-child(5),
.moment-grid figure:nth-child(6),
.moment-grid figure:nth-child(7),
.moment-grid figure:nth-child(8) {
  grid-column: span 3;
}

.value-lines {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.value-lines li {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: var(--space-m);
  padding: var(--space-m) 0;
  border-bottom: 1px solid var(--line);
}

.value-lines h3 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.16rem;
}

.value-lines p {
  margin: 0;
  color: var(--muted);
}

.logo-row {
  margin-top: var(--space-s);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-s);
}

.logo-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border: 1px solid rgba(30, 34, 29, 0.12);
  border-radius: 14px;
  background: var(--surface);
  padding: 1rem;
}

.logo-row img {
  max-height: 48px;
  width: auto;
}

.schedule-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-m);
}

.schedule-card {
  border: 1px solid rgba(30, 34, 29, 0.14);
  border-radius: 16px;
  background: var(--surface);
  padding: var(--space-m);
  box-shadow: var(--shadow-soft);
}

.schedule-card h2 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.5rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.schedule-table {
  margin-top: 1rem;
  width: 100%;
  border-collapse: collapse;
}

.schedule-table td {
  font-size: 0.91rem;
  padding: 0.54rem 0;
  border-bottom: 1px dashed rgba(30, 34, 29, 0.18);
}

.schedule-table td:first-child {
  width: 36%;
  color: var(--muted);
  font-weight: 600;
}

.news-list {
  display: grid;
  gap: var(--space-s);
}

.news-list article {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr);
  gap: var(--space-m);
  border: 1px solid rgba(30, 34, 29, 0.14);
  border-radius: 14px;
  padding: var(--space-s);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.news-list figure {
  margin: 0;
  border-radius: 10px;
  overflow: clip;
  aspect-ratio: 1;
}

.news-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-list h3 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.26rem;
  letter-spacing: -0.02em;
}

.news-list time {
  display: inline-block;
  margin: 0.15rem 0 0.65rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  font-weight: 700;
}

.news-list p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-l);
}

.contact-lines {
  margin: var(--space-m) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.contact-lines li {
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed rgba(30, 34, 29, 0.18);
}

.contact-lines span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.contact-lines a {
  font-weight: 700;
  color: var(--accent-dark);
}

.contact-form {
  background: var(--surface);
  border: 1px solid rgba(30, 34, 29, 0.14);
  border-radius: 18px;
  padding: var(--space-m);
  box-shadow: var(--shadow-soft);
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.95rem;
}

.field label {
  font-weight: 650;
  font-size: 0.89rem;
}

.field input,
.field textarea {
  border: 1px solid rgba(30, 34, 29, 0.24);
  border-radius: 10px;
  background: #fcfaf6;
  padding: 0.74rem 0.82rem;
  color: var(--ink);
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(180, 87, 47, 0.28);
  outline-offset: 1px;
  border-color: var(--accent);
}

.field .error {
  display: none;
  color: #882f19;
  font-size: 0.79rem;
}

.field.invalid .error {
  display: block;
}

.field.invalid input,
.field.invalid textarea {
  border-color: #882f19;
}

.form-note {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.inline-callout {
  margin-top: var(--space-m);
  padding: var(--space-s);
  border-left: 2px solid var(--accent);
  background: rgba(180, 87, 47, 0.08);
  font-size: 0.9rem;
  color: #4f3f36;
}

.legal-copy {
  max-width: 78ch;
  color: var(--muted);
}

.legal-copy h2 {
  margin: var(--space-l) 0 var(--space-s);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.legal-copy p,
.legal-copy li {
  margin: 0 0 0.95rem;
}

.site-footer {
  margin-top: var(--space-2xl);
  border-top: 1px solid rgba(30, 34, 29, 0.1);
  padding: var(--space-l) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: var(--space-s);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.81rem;
}

[data-animate] {
  will-change: transform, opacity;
}

.no-motion * {
  animation: none !important;
  transition: none !important;
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-grid,
  .page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sticky-col {
    position: static;
  }

  .hero-media {
    min-height: 56dvh;
  }

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

  .cta-strip {
    grid-template-columns: 1fr;
  }

  .value-lines li,
  .track-item,
  .tour-list li,
  .news-list article {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
  }

  .site-header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .hero-roles {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .mobile-panel-inner {
    width: 100%;
    margin: 0;
    background: linear-gradient(
      180deg,
      rgba(10, 11, 14, 0.38) 0%,
      rgba(10, 11, 14, 0.9) 38%,
      rgba(10, 11, 14, 0.97) 100%
    );
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(var(--max-width), calc(100% - 1.3rem));
  }

  .section {
    padding-block: var(--space-l);
  }

  .hero {
    padding-top: var(--space-xl);
  }

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

  .moment-grid figure:nth-child(1),
  .moment-grid figure:nth-child(2),
  .moment-grid figure:nth-child(3),
  .moment-grid figure:nth-child(4),
  .moment-grid figure:nth-child(5),
  .moment-grid figure:nth-child(6),
  .moment-grid figure:nth-child(7),
  .moment-grid figure:nth-child(8) {
    grid-column: span 1;
  }
}
