:root {
  --bg: #f6f1e8;
  --paper: #fffaf1;
  --ink: #17130f;
  --muted: #756b5d;
  --line: rgba(23, 19, 15, 0.14);
  --gold: #b78a42;
  --dark: #0f0e0c;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: var(--gold);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.header-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.74)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=80")
      center/cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 140px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 126px);
  font-weight: 400;
  line-height: 0.92;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.03;
}

h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.08;
}

.hero-copy {
  width: min(720px, 100%);
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions,
.footer-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
}

.button.primary {
  background: var(--gold);
  color: #18110a;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.button.ghost.dark {
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-strip {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-strip span {
  padding: 18px 14px;
  text-align: center;
  background: rgba(0, 0, 0, 0.28);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.section,
.feature-band,
.footer {
  padding: clamp(64px, 8vw, 116px) clamp(18px, 4vw, 56px);
}

.intro,
.event-section,
.section-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.intro p,
.event-copy p,
.feature-band p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.filters {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.filter {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.filter.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

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

.space-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #16120d;
  color: #fff;
}

.space-card.large {
  grid-row: span 2;
}

.space-card[hidden] {
  display: none;
}

.space-card img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 280ms ease, opacity 280ms ease;
}

.space-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.74));
}

.space-card:hover img {
  transform: scale(1.045);
  opacity: 1;
}

.space-card div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.space-card p {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.space-card span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  background: var(--dark);
  color: #fff;
}

.feature-band p {
  color: rgba(255, 255, 255, 0.68);
}

.feature-list {
  display: grid;
  gap: 1px;
  align-self: start;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.14);
}

.feature-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  min-height: 70px;
  padding: 0 20px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.feature-list span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  background: #17130f;
  color: #fff;
}

.footer p {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .intro,
  .event-section,
  .section-head,
  .feature-band,
  .footer {
    grid-template-columns: 1fr;
  }

  .filters {
    justify-content: flex-start;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding-inline: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    width: min(100% - 28px, 620px);
    padding: 120px 0 122px;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .hero-strip span {
    padding: 12px 10px;
  }

  .section,
  .feature-band,
  .footer {
    padding-inline: 14px;
  }

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

  .space-card,
  .space-card img {
    min-height: 360px;
  }

  .feature-list li {
    grid-template-columns: 46px 1fr;
    font-size: 16px;
  }
}
