:root {
  --bg: #ffffff;
  --ink: #09090b;
  --muted: #71717a;
  --soft: #f4f4f5;
  --line: #e4e4e7;
  --brand: #9b1c1c;
  --dark: #09090b;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

.inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #f4f4f5;
  backdrop-filter: blur(14px);
  transition: box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand span {
  color: #d4d4d8;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a,
.mobile-nav a {
  color: #71717a;
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--brand);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 12px 20px 18px;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
}

.hero {
  overflow: hidden;
  padding: 76px 0 0;
}

.hero-copy {
  text-align: center;
}

.hero-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.second-line {
  margin-top: 8px;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.need-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  background: #18181b;
  color: white;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 32px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-btn:hover {
  background: #7f1717;
  transform: translateY(-2px);
}

.play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid #e4e4e7;
  border-radius: 50%;
  color: #52525b;
  font-size: 14px;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.play-btn:hover {
  color: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.mobile-hero-actions {
  display: none;
}

.marquee {
  margin-top: 64px;
  padding: 20px 0;
  border-top: 1px solid #f4f4f5;
  border-bottom: 1px solid #f4f4f5;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.marquee span {
  margin: 0 40px;
  color: #d4d4d8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.section {
  padding: 96px 0;
  border-top: 1px solid #f4f4f5;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.events-section .section-title {
  margin-bottom: 56px;
}

.event-card {
  padding: 40px;
  background: #18181b;
  color: white;
  border-radius: 28px;
}

.event-title {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
}

.event-subtitle {
  margin: 0 0 20px;
  color: #71717a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-image {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 20px;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.event-date {
  position: absolute;
  left: 18px;
  bottom: 18px;
}

.event-date p {
  margin: 0 0 2px;
  color: white;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
}

.event-date span {
  color: #a1a1aa;
  font-size: clamp(1rem, 3vw, 1.35rem);
}

.story-section {
  background: #fafafa;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 76px;
  align-items: center;
}

.story-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #71717a;
  line-height: 1.75;
}

.story-copy .muted {
  color: #a1a1aa;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 2px solid rgba(155, 28, 28, 0.2);
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.text-link:hover {
  border-color: var(--brand);
}

.project-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 120px;
  gap: 12px;
}

.mosaic-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 20px;
  color: white;
  font-size: 42px;
  cursor: pointer;
  transition: transform 200ms ease, filter 200ms ease;
}

.mosaic-tile:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
}

.mosaic-tile.large {
  grid-column: span 2;
  grid-row: span 2;
  background: #1f2937;
}

.mosaic-tile:nth-child(2) {
  background: #374151;
}

.mosaic-tile:nth-child(3) {
  background: #4b5563;
}

.mosaic-tile:nth-child(4) {
  background: #6b7280;
}

.mosaic-tile:nth-child(5) {
  background: #111827;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
}

.section-heading > p {
  max-width: 320px;
  margin: 0;
  color: #a1a1aa;
  font-size: 14px;
  line-height: 1.7;
}

.service-list {
  border-top: 1px solid #f4f4f5;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid #f4f4f5;
  cursor: default;
}

.service-name {
  display: flex;
  align-items: center;
  gap: 34px;
}

.service-name span {
  width: 28px;
  color: #d4d4d8;
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.service-name h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  transition: color 180ms ease, transform 180ms ease;
}

.service-detail {
  display: flex;
  align-items: center;
  gap: 28px;
}

.service-detail p {
  max-width: 220px;
  margin: 0;
  color: #a1a1aa;
  font-size: 14px;
  line-height: 1.55;
  text-align: right;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #f4f4f5;
  font-size: 30px;
}

.arrow {
  font-size: 24px;
  transition: transform 180ms ease, color 180ms ease;
}

.service-item:hover h3,
.service-item:hover .arrow {
  color: var(--brand);
}

.service-item:hover .arrow {
  transform: translateX(6px);
}

.site-footer {
  background: #09090b;
  color: white;
}

.footer-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  padding: 88px 0 64px;
}

.footer-main h2 {
  margin: 0;
  color: var(--brand);
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

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

.footer-links h4 {
  margin: 0 0 20px;
  color: #52525b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 14px 0;
  color: #a1a1aa;
  font-size: 14px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #27272a;
  padding: 24px 0;
}

.footer-bottom .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p,
.footer-bottom span {
  margin: 0;
  color: #52525b;
  font-size: 12px;
}

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

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

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.reveal-delay-3 {
  transition-delay: 320ms;
}

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

  .menu-toggle {
    display: block;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-line {
    gap: 16px;
  }

  .need-badge,
  .second-line > .primary-btn,
  .second-line > .play-btn {
    display: none;
  }

  .mobile-hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
  }

  .mobile-hero-actions .play-btn {
    width: 48px;
    height: 48px;
    border-width: 1px;
  }

  .section {
    padding: 76px 0;
  }

  .event-card {
    padding: 28px;
    border-radius: 24px;
  }

  .event-image {
    height: 330px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 18px;
  }

  .service-item {
    align-items: flex-start;
  }

  .service-detail p {
    display: none;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 24px;
  }

  .footer-main {
    display: block;
  }

  .footer-links {
    margin-top: 42px;
  }
}

@media (max-width: 560px) {
  .inner {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    font-size: 24px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 19vw, 5.8rem);
  }

  .marquee {
    margin-top: 48px;
  }

  .events-section .section-title {
    margin-bottom: 36px;
  }

  .event-card {
    padding: 20px;
  }

  .event-image {
    height: 270px;
    border-radius: 18px;
  }

  .project-mosaic {
    grid-auto-rows: 96px;
  }

  .service-item {
    gap: 16px;
    padding: 24px 0;
  }

  .service-name {
    gap: 16px;
  }

  .arrow {
    display: none;
  }

  .footer-links {
    gap: 52px;
  }

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