:root {
  color-scheme: dark;
  --bg: oklch(16% 0.018 70);
  --bg-2: oklch(20% 0.02 70);
  --panel: oklch(23% 0.016 74);
  --panel-soft: oklch(26% 0.015 74);
  --line: oklch(32% 0.02 78);
  --text: oklch(95% 0.012 90);
  --muted: oklch(76% 0.012 85);
  --gold: oklch(78% 0.13 84);
  --gold-strong: oklch(86% 0.15 86);
  --gold-soft: oklch(72% 0.08 82);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Work Sans", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 160, 46, 0.12), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(84, 120, 52, 0.12), transparent 24%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  overflow-x: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: var(--content);
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(12, 10, 8, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

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

.brand img {
  width: 132px;
  max-width: 100%;
}

.nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav a:hover {
  color: var(--gold-strong);
  transform: translateY(-1px);
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 84px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding-top: 48px;
  min-height: calc(100vh - 110px);
}

.kicker,
.note-label {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  font-weight: 800;
}

.kicker.tiny {
  margin-bottom: 8px;
  font-size: 0.66rem;
}

.hero h1,
.section-heading h2,
.story h2 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-optical-sizing: auto;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.hero h1 {
  font-size: clamp(3.9rem, 8vw, 7.7rem);
  max-width: 10.5ch;
}

.section-heading h2,
.story h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  max-width: 12ch;
}

.lede,
.section-note,
.feature p,
.story p,
.contact-card p,
.hero-note strong {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.lede {
  max-width: 58ch;
  margin: 26px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(212, 160, 46, 0.92), rgba(181, 132, 23, 0.95));
  color: #1a1208;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(212, 160, 46, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(212, 160, 46, 0.24);
}

.pill-dark {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.pill-ghost {
  justify-self: end;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.chips li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 16px;
}

.poster-frame {
  position: relative;
  padding: 18px;
  border-radius: calc(var(--radius-xl) + 8px);
  background:
    linear-gradient(180deg, rgba(212, 160, 46, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(10, 8, 6, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.poster-frame::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: calc(var(--radius-xl) - 4px);
  border: 1px solid rgba(212, 160, 46, 0.2);
  pointer-events: none;
}

.poster-frame img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.hero-note {
  display: grid;
  gap: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-note strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-row div {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.metric-row span {
  display: block;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.metric-row strong {
  font-size: 1rem;
}

.section-tight {
  padding-top: 32px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-heading-inline {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
}

.section-heading-inline .section-note {
  max-width: 42ch;
  margin: 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}

.feature {
  padding: 26px;
  min-height: 240px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feature-large {
  background:
    linear-gradient(135deg, rgba(212, 160, 46, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.feature span {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  font-weight: 800;
}

.feature h3 {
  margin: 16px 0 10px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.gallery-section {
  padding-top: 54px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  grid-auto-rows: 220px;
}

.shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #101010;
  box-shadow: var(--shadow);
}

.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.38));
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.shot:hover img {
  transform: scale(1.03);
}

.shot figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  font-size: 0.95rem;
  color: var(--text);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.shot-wide {
  grid-row: span 2;
}

.shot-portrait {
  grid-row: span 1;
}

.shot-portrait.alt {
  background: linear-gradient(135deg, rgba(212, 160, 46, 0.06), rgba(255, 255, 255, 0.03));
}

.shot-portrait.small {
  grid-column: 2 / span 2;
}

.story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
  padding-top: 54px;
}

.story-copy,
.mascot-card,
.contact-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.list {
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--text);
}

.list li + li {
  margin-top: 12px;
}

.mascot-card {
  display: grid;
  align-content: space-between;
  gap: 14px;
  background:
    radial-gradient(circle at top, rgba(84, 120, 52, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.03);
}

.mascot-card img {
  width: min(360px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
}

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

.contact-card {
  display: grid;
  gap: 12px;
  min-height: 230px;
}

.contact-card strong {
  font-size: 1.42rem;
  line-height: 1.1;
}

.contact-card-accent {
  background: linear-gradient(135deg, rgba(212, 160, 46, 0.1), rgba(255, 255, 255, 0.03));
}

.contact-card-map {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(212, 160, 46, 0.1), transparent 35%);
}

.footer {
  width: var(--content);
  margin: 0 auto;
  padding: 30px 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer img {
  width: 122px;
  opacity: 0.9;
}

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

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

.delay-1 {
  transition-delay: 100ms;
}

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 1fr;
    border-radius: 28px;
    justify-items: center;
  }

  .brand,
  .pill-ghost {
    justify-self: center;
  }

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

  .experience-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .shot-wide,
  .shot-portrait.small {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero-visual {
    max-width: 520px;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  :root {
    --content: min(100vw - 24px, 1180px);
  }

  body {
    padding-bottom: 104px;
  }

  .section {
    padding: 66px 0;
  }

  .topbar {
    gap: 0.75rem;
  }

  .nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
    flex-wrap: nowrap;
    width: 100%;
  }

  .nav::-webkit-scrollbar,
  .chips::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 26px;
    gap: 1.25rem;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(2.45rem, 13vw, 4rem);
    line-height: 0.95;
  }

  .lede {
    font-size: 1rem;
    max-width: 34ch;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pill {
    width: 100%;
    justify-content: center;
  }

  .chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.1rem;
  }

  .chips li {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero-visual {
    order: -1;
    width: min(100%, 420px);
    justify-self: center;
  }

  .hero-visual figure:first-child {
    aspect-ratio: 4 / 3;
  }

  .section-heading-inline {
    flex-direction: column;
    align-items: start;
  }

  .experience-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-auto-rows: 320px;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 0.25rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .shot {
    scroll-snap-align: start;
  }

  .shot-wide,
  .shot-portrait,
  .shot-portrait.small {
    grid-column: auto;
    grid-row: auto;
  }

  .footer {
    flex-direction: column;
    align-items: start;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }

  .mobile-actions {
    display: grid;
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    z-index: 60;
    grid-template-columns: 1.35fr 0.95fr;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 1.25rem;
    background: rgba(11, 10, 8, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .mobile-actions-primary {
    background: linear-gradient(180deg, rgba(212, 160, 46, 0.98), rgba(181, 132, 23, 0.98));
    color: #1a1203;
  }

  .mobile-actions-secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
  }
}


@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;
    transform: none;
  }
}
