:root {
  --ink: #161616;
  --soft-ink: #4f4a45;
  --cream: #f4eee8;
  --sand: #e6ddd6;
  --paper: #fbfaf7;
  --night: #171715;
  --night-2: #23211e;
  --brown: #3a2f25;
  --orange: #f4a85f;
  --orange-dark: #c97834;
  --aqua: #83c9ce;
  --white: #fffaf2;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", "Poppins", "Segoe UI", Arial, sans-serif;
  line-height: 1.68;
}

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

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

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  color: #514f4b;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-cta {
  padding: 11px 17px;
  background: var(--orange);
  color: var(--white) !important;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  color: var(--white);
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.12));
}

.hero.compact {
  min-height: 420px;
}

.hero.contact-hero {
  background: linear-gradient(112deg, #0a0a0a 0%, #5d5c59 46%, #f0f0ee 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 700;
}

.hero p {
  max-width: 700px;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 500;
}

.quote {
  margin: 18px 0;
  color: #fff0df;
  font-style: italic;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 13px 20px;
  border: 2px solid transparent;
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.btn:hover {
  background: var(--orange-dark);
}

.btn.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.74);
}

.btn.dark {
  background: var(--night);
}

.section {
  padding: 92px 0;
}

.section.tight {
  padding: 58px 0;
}

.cream {
  background: var(--cream);
}

.sand {
  background: var(--sand);
}

.dark {
  background: var(--night);
  color: var(--white);
}

.brown {
  background: var(--brown);
  color: var(--white);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.rule {
  width: 52px;
  height: 3px;
  margin: 20px 0 28px;
  background: var(--orange);
}

.section-head.center .rule {
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: 28px;
}

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

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

.card {
  background: #fff;
  padding: 32px;
  box-shadow: var(--shadow);
}

.card.dark-card {
  background: var(--night-2);
  color: var(--white);
  box-shadow: none;
}

.card p:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 70px;
}

.split.reverse {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.portrait {
  width: min(100%, 360px);
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  box-shadow: var(--shadow);
  justify-self: center;
}

.feature-image {
  width: 100%;
  max-height: 50vh;
  object-fit: cover;
}

.poster {
  width: min(100%, 320px, 50vh);
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.poster.small {
  width: 230px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.event-card {
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.event-card img {
  width: 100%;
  aspect-ratio: 0.72 / 1;
  object-fit: cover;
  background: #ddd;
}

.event-card .body {
  padding: 22px;
}

.event-card .meta {
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 0.82rem;
}

.image-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 390px;
}

.image-band .copy {
  padding: 72px clamp(28px, 6vw, 92px);
  background: var(--cream);
}

.image-band img {
  width: 100%;
  height: 100%;
  max-height: 50vh;
  object-fit: cover;
}

.columns-dark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
}

.columns-dark article {
  padding: 56px clamp(24px, 4vw, 48px);
  min-height: 0;
}

.columns-dark article:nth-child(1) {
  background: #171717;
}

.columns-dark article:nth-child(2) {
  background: #22211f;
}

.columns-dark article:nth-child(3) {
  background: #3a2f25;
}

.columns-dark img {
  width: min(100%, 360px, 50vh);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 28px 0;
}

.pill-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 14px 16px;
  background: rgba(244, 168, 95, 0.14);
  border-left: 4px solid var(--orange);
  font-weight: 700;
}

.accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.accordion details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: #24221f;
  color: var(--white);
}

.accordion summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--white);
}

.accordion .details-body {
  padding: 0 24px 22px;
}

.audio-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px;
  background: var(--aqua);
  color: #fff;
  text-align: center;
}

audio {
  width: 100%;
  margin-top: 16px;
}

.testimonial {
  background: #fff;
  padding: 26px;
  border-left: 5px solid var(--orange);
  box-shadow: var(--shadow);
  font-style: italic;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.contact-card {
  min-height: 230px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 32px;
}

.contact-card .icon {
  color: var(--orange);
  font-size: 2.2rem;
  line-height: 1;
}

.form {
  max-width: 900px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 20px;
  font-weight: 800;
}

.field.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfcac5;
  background: #fff;
  padding: 13px 14px;
  font: inherit;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 10px 0 24px;
  font-weight: 500;
}

.check input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.notice {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  background: #e5f5ef;
  color: #145340;
  font-weight: 700;
}

.notice.visible {
  display: block;
}

.legal {
  max-width: 860px;
}

.site-footer {
  padding: 28px 20px;
  background: #111;
  color: #e6ddd6;
  text-align: center;
  font-size: 0.82rem;
}

.site-footer a {
  color: var(--orange);
}

@media (max-width: 960px) {
  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 22px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 0;
  }

  .grid.three,
  .grid.two,
  .event-grid,
  .contact-cards,
  .columns-dark,
  .image-band,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .columns-dark article {
    min-height: auto;
  }

  .pill-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav,
  .container,
  .hero-inner {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    min-height: 570px;
  }

  .hero::before {
    background: rgba(0, 0, 0, 0.58);
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .card,
  .event-card .body {
    padding: 24px;
  }

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