@import url("https://fonts.googleapis.com/css2?family=Changa:wght@300;400;500;600;700&family=Cinzel:wght@500;600&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&display=swap");

:root {
  --bg: #120e10;
  --panel: #1c1518;
  --ink: #fff7f2;
  --muted: rgba(255, 247, 242, 0.72);
  --accent: #dd4377;
  --gold: #d7a65b;
  --line: rgba(255, 247, 242, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Lato", Arial, Helvetica, sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(18, 14, 16, 0.88), rgba(18, 14, 16, 0));
}

.brand {
  position: relative;
  display: block;
  flex: 0 1 310px;
  width: min(310px, 28vw);
  height: 78px;
  min-width: 190px;
}

.brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/logo-full.png") left center / contain no-repeat;
  filter: brightness(0) invert(1);
}

.brand-mark,
.brand-word {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px clamp(10px, 1.25vw, 20px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.social-links a:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

nav a.is-current {
  color: white;
  box-shadow: inset 0 -2px var(--accent);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 14, 16, 0.2), rgba(18, 14, 16, 0.64) 65%, var(--bg));
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 1800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  width: min(92vw, 1100px);
  padding-top: 60px;
  text-align: center;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.7);
}

.hero-content p,
.hero-content span {
  margin: 0;
  font-family: "Changa", Arial, Helvetica, sans-serif;
  font-size: clamp(26px, 5vw, 60px);
  font-weight: 300;
}

.hero-content h1 {
  margin: 4px 0 10px;
  font-family: "Changa", Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 14vw, 150px);
  line-height: 0.86;
}

.hero-content span {
  display: block;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: 0;
}

.hero-dots {
  position: absolute;
  bottom: 34px;
  display: flex;
  gap: 12px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: transparent;
}

.hero-dots button.is-active {
  background: white;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 11vw, 130px) 0;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) 1.08fr;
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--accent);
}

.about-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 28px;
  font-family: "Changa", Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 0.95;
}

h3 {
  margin: 8px 0 12px;
  font-family: "Changa", Arial, Helvetica, sans-serif;
  font-size: 24px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.dates-section {
  padding: clamp(72px, 10vw, 120px) clamp(18px, 4vw, 64px);
  background: #0d0a0c;
  overflow: hidden;
}

.dates-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: min(1320px, 100%);
  margin: 0 auto 38px;
}

.dates-heading h2 {
  margin-bottom: 0;
}

.dates-controls {
  display: flex;
  gap: 8px;
}

.dates-arrow {
  width: 48px;
  min-height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 24px;
  transition: background 180ms ease, border-color 180ms ease;
}

.dates-arrow:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.dates-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, calc((100% - 44px) / 3));
  gap: 22px;
  width: min(1320px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.dates-track::-webkit-scrollbar {
  display: none;
}

.date-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--panel);
}

.date-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(8, 5, 7, 0.92) 88%);
}

.date-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.date-card:hover img {
  transform: scale(1.035);
}

.date-card-copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.date-card time {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.date-card h3 {
  min-height: 60px;
  margin: 8px 0 16px;
  font-size: 23px;
  line-height: 1.28;
}

.date-card a {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.services-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-grid article {
  min-height: 250px;
  padding: 34px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel) 84%, black);
}

.service-grid span {
  color: var(--accent);
  font-family: "Changa", Georgia, "Times New Roman", serif;
  font-size: 44px;
}

.gallery-section {
  padding: clamp(72px, 11vw, 130px) 0 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid img {
  width: 100%;
  height: clamp(190px, 24vw, 370px);
  object-fit: cover;
  filter: saturate(0.9);
  transition: filter 220ms ease, transform 220ms ease;
}

.gallery-grid img:hover {
  filter: saturate(1.08);
  transform: scale(1.015);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(180px, 0.58fr) minmax(300px, 1.15fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
}

.contact-emblem {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  align-self: start;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #0d0a0c;
  color: var(--ink);
  font: inherit;
  padding: 16px;
}

button {
  min-height: 52px;
  border: 0;
  background: var(--accent);
  color: white;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer span {
  color: var(--ink);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.inner-page .site-header {
  position: relative;
  background: #0d0a0c;
}

.page-hero {
  position: relative;
  min-height: min(68vh, 700px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 7, 9, 0.08), rgba(10, 7, 9, 0.88));
}

.page-hero-content {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0 64px;
}

.page-hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: "Changa", Arial, sans-serif;
  font-size: clamp(52px, 9vw, 112px);
  line-height: 0.92;
}

.page-intro {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.page-intro h2 {
  margin-bottom: 0;
}

.page-intro-copy p:first-child {
  margin-top: 0;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 520px;
}

.feature-strip figure {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.feature-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.feature-strip figure:hover img {
  transform: scale(1.035);
}

.page-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.page-callout h2 {
  max-width: 760px;
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.text-link:hover {
  background: transparent;
}

.photo-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
}

.photo-page-grid img {
  width: 100%;
  height: clamp(280px, 42vw, 620px);
  object-fit: cover;
}

.photo-page-grid img:nth-child(3n + 2) {
  height: clamp(220px, 34vw, 500px);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8px;
  padding: 8px;
}

.video-poster {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10, 7, 9, 0.68));
}

.video-poster-copy {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 30px;
  left: 34px;
}

.video-poster-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(180px, 0.55fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.brand-showcase {
  display: grid;
  place-items: center;
  padding: 0 18px clamp(72px, 10vw, 120px);
}

.brand-showcase img {
  width: min(440px, 88vw);
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 30px 100px rgba(126, 0, 18, 0.2);
}

.contact-details {
  display: grid;
  gap: 26px;
}

.contact-details a {
  font-family: "Changa", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
}

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

.partners-intro {
  max-width: 850px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: clamp(72px, 11vw, 130px);
}

.partner-card {
  display: grid;
  grid-template-rows: 360px 1fr;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--panel);
}

.partner-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.partner-copy {
  padding: 30px;
}

.partner-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 48px);
}

.partner-copy p {
  margin: 0 0 18px;
}

.partner-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 13px;
  font-weight: 700;
}

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

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .brand {
    width: min(270px, 35vw);
    height: 70px;
  }

  .header-actions {
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 12px;
  }

  .dates-track {
    grid-auto-columns: minmax(280px, calc((100% - 22px) / 2));
  }

  .about-section,
  .contact-section,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-emblem {
    width: min(360px, 100%);
    justify-self: center;
  }

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

  .page-intro,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 520px) {
  .site-header {
    display: block;
  }

  .brand {
    width: min(310px, 82vw);
    height: 68px;
  }

  .header-actions {
    align-items: center;
    margin-top: 14px;
  }

  nav {
    justify-content: flex-start;
    max-height: 64px;
    overflow: hidden;
  }

  .social-links {
    margin-left: auto;
  }

  .hero {
    min-height: 88vh;
  }

  .dates-track {
    grid-auto-columns: minmax(270px, 88%);
  }

  .date-card,
  .date-card img {
    height: 400px;
    min-height: 400px;
  }

  .hero-content {
    padding-top: 170px;
  }

  .about-image::before {
    inset: 14px -10px -14px 10px;
  }

  footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .partner-card,
  .partner-card img {
    height: auto;
  }

  .partner-card {
    grid-template-rows: 320px auto;
  }

  .partner-card img {
    min-height: 320px;
  }

  .page-hero {
    min-height: 60vh;
  }

  .page-hero-content {
    padding-bottom: 46px;
  }

  .feature-strip,
  .photo-page-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip figure,
  .video-poster {
    min-height: 480px;
  }

  .page-callout {
    align-items: flex-start;
    flex-direction: column;
  }
}
