:root {
  --ink: #141413;
  --muted: #54524b;
  --paper: #faf8f1;
  --band: #efeee6;
  --line: rgba(20, 20, 19, 0.12);
  --green: #173f34;
  --green-2: #0e2d26;
  --gold: #f3b544;
  --rust: #ba5a43;
  --white: #fff;
  --shadow: 0 22px 60px rgba(20, 20, 19, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  padding: 10px;
  color: var(--white);
  background: rgba(14, 20, 18, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(250, 248, 241, 0.94);
  border-color: var(--line);
  box-shadow: 0 14px 42px rgba(20, 20, 19, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 7px;
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 7px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  background: rgba(23, 63, 52, 0.08);
}

.site-nav .nav-cta {
  color: var(--ink);
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  color: inherit;
  border: 0;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.16);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(640px, 86svh, 820px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("assets/product/outdoor-theater.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 70% 38%, rgba(14, 20, 18, 0.08), rgba(14, 20, 18, 0.72) 62%),
    linear-gradient(90deg, rgba(8, 13, 12, 0.9), rgba(8, 13, 12, 0.54) 43%, rgba(8, 13, 12, 0.18)),
    linear-gradient(180deg, rgba(8, 13, 12, 0.18), rgba(8, 13, 12, 0.78));
}

.hero-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 132px 0 44px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.pricing-band .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2.05rem, 4.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.02rem;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.62;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(243, 181, 68, 0.26);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
  margin: 34px 0 0;
}

.hero-stats div {
  min-width: 180px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-stats dt {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 950;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--green);
  color: var(--white);
}

.trust-item {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.motion-section,
.section,
.showcase,
.gallery-section,
.pricing-band,
.contact-section {
  width: min(calc(100% - 40px), var(--max));
  margin-left: auto;
  margin-right: auto;
}

.motion-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 44px;
  align-items: center;
  padding: 86px 0 36px;
}

.motion-copy p:not(.eyebrow),
.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.pricing-band p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--green);
  font-weight: 950;
  text-decoration: none;
}

.text-arrow::after {
  content: "->";
  color: var(--rust);
}

.motion-card {
  position: relative;
  width: min(100%, 360px);
  max-height: 520px;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-2);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.motion-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 70px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: 46px;
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 112px;
}

.feature-grid,
.event-grid {
  display: grid;
  gap: 14px;
}

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

.feature-card,
.event-grid article,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(20, 20, 19, 0.05);
}

.feature-card {
  min-height: 168px;
  padding: 22px;
}

.feature-card p,
.event-grid p,
.faq p {
  color: var(--muted);
  line-height: 1.62;
}

.icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.75fr);
  gap: 14px;
  margin-top: -8px;
  margin-bottom: 78px;
}

.showcase figure,
.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-2);
  box-shadow: 0 16px 36px rgba(20, 20, 19, 0.08);
}

.showcase img,
.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-main {
  min-height: 440px;
}

.showcase-side {
  display: grid;
  gap: 14px;
}

.showcase-side figure {
  min-height: 213px;
}

.events {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--band);
}

.section-heading,
.gallery-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

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

.event-grid article {
  min-height: 156px;
  padding: 24px;
}

.gallery-section {
  margin-bottom: 82px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.78fr));
  gap: 14px;
}

.gallery-grid figure {
  min-height: 238px;
}

.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 13, 12, 0.04) 42%, rgba(8, 13, 12, 0.74));
}

.gallery-large {
  grid-row: span 2;
  min-height: 490px;
}

.gallery-grid figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: var(--white);
  font-weight: 900;
  line-height: 1.22;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.pricing-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.8fr);
  gap: 42px;
  align-items: center;
  margin-top: 68px;
  padding: 44px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pricing-band h2 {
  color: var(--gold);
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.pricing-band p {
  color: rgba(255, 255, 255, 0.82);
}

.price-details {
  display: grid;
  gap: 12px;
}

.price-details div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.price-details span {
  display: block;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 950;
}

.price-details p {
  margin: 8px 0 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

summary {
  cursor: pointer;
  padding: 21px 24px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--rust);
  font-size: 1.2rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.78fr);
  gap: 38px;
  align-items: center;
  margin-bottom: 86px;
  padding-top: 18px;
}

.contact-actions {
  align-items: center;
  justify-content: flex-start;
}

.contact-link {
  font-weight: 850;
  color: var(--green);
  text-decoration-color: rgba(186, 90, 67, 0.5);
  text-underline-offset: 5px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(20px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.photo-note {
  max-width: 430px;
  text-align: right;
}

@media (max-width: 860px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    color: var(--ink);
    background: rgba(250, 248, 241, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 13, 12, 0.84), rgba(8, 13, 12, 0.46)),
      linear-gradient(180deg, rgba(8, 13, 12, 0.18), rgba(8, 13, 12, 0.88));
  }

  .hero-inner {
    width: min(calc(100% - 32px), var(--max));
    padding: 124px 0 36px;
  }

  .button {
    width: 100%;
  }

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

  .hero-stats div {
    min-width: 0;
    padding: 12px 10px;
  }

  .hero-stats dt {
    font-size: 1.02rem;
  }

  .hero-stats dd {
    font-size: 0.78rem;
  }

  .trust-band,
  .motion-section,
  .split,
  .feature-grid,
  .showcase,
  .gallery-grid,
  .event-grid,
  .pricing-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .motion-section,
  .section,
  .showcase,
  .gallery-section,
  .pricing-band,
  .contact-section {
    width: min(calc(100% - 32px), var(--max));
  }

  .motion-section {
    gap: 26px;
    padding: 62px 0 18px;
  }

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

  .section {
    padding: 62px 0;
  }

  .section-copy {
    position: static;
  }

  .events {
    padding-left: 16px;
    padding-right: 16px;
  }

  .showcase {
    margin-bottom: 62px;
  }

  .showcase-main,
  .showcase-side figure,
  .gallery-grid figure,
  .gallery-large {
    min-height: 245px;
  }

  .pricing-band {
    margin-top: 52px;
    padding: 30px 22px;
  }

  .contact-section {
    margin-bottom: 68px;
  }

  .site-footer {
    flex-direction: column;
  }

  .photo-note {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    max-width: 136px;
    line-height: 1.05;
  }

  h1 {
    font-size: 2.78rem;
  }

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

  .feature-card,
  .event-grid article {
    padding: 18px;
  }
}
