:root {
  --ink: #171412;
  --ink-soft: #3a302c;
  --paper: #fbfaf7;
  --white: #ffffff;
  --mist: #eef2f3;
  --gold: #c79a43;
  --gold-soft: #f4e0a3;
  --rose: #b4747d;
  --red: #8d1f2a;
  --line: rgba(23, 20, 18, 0.14);
  --shadow: 0 22px 60px rgba(23, 20, 18, 0.18);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Lato", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 900;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px 6%;
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(23, 20, 18, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 210px;
  height: auto;
}

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

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.88);
  transition: background 180ms ease, color 180ms ease;
}

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

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

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--gold-soft);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 84svh;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 128px 6% 84px;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  object-fit: cover;
  object-position: center 44%;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(23, 20, 18, 0.82) 100%);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro h2,
.detail-copy h2,
.video-grid h2,
.contact-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.04;
}

.hero h1 {
  max-width: 720px;
  font-size: 5.15rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: var(--ink);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--gold-soft);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  border-left: 3px solid var(--rose);
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 900;
}

.section-inner {
  width: min(1180px, 88%);
  margin: 0 auto;
}

.section-band {
  padding: 88px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.detail-copy h2,
.video-grid h2,
.contact-grid h2 {
  font-size: 3.05rem;
}

.intro .section-kicker,
.services .section-kicker,
.detail-band .section-kicker,
.gallery-section .section-kicker,
.video-section .section-kicker,
.contact-section .section-kicker {
  color: var(--gold);
}

.intro-copy p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.services {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--paper), #f6f7f8);
}

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

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 45px rgba(23, 20, 18, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 52%;
}

.service-card:nth-child(2) img {
  aspect-ratio: 4 / 5;
  object-position: center;
}

.service-card:nth-child(3) img {
  object-position: center 45%;
}

.service-body {
  min-height: 286px;
  padding: 26px;
}

.service-number {
  display: inline-block;
  color: var(--rose);
  font-weight: 900;
  margin-bottom: 14px;
}

.service-body h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.15;
}

.service-body p {
  margin: 0;
  color: var(--ink-soft);
}

.detail-band {
  padding: 96px 0;
  background: var(--ink);
  color: var(--white);
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.detail-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.feature-list div {
  min-height: 138px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 1rem;
}

.feature-list span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.gallery-section {
  padding: 96px 0;
  background: var(--paper);
}

.gallery-heading p {
  max-width: 400px;
  margin: 0;
  color: var(--ink-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--mist);
  padding: 0;
  cursor: zoom-in;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.35));
  opacity: 0;
  transition: opacity 200ms ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.video-section {
  padding: 96px 0;
  background: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: center;
}

.video-grid p {
  color: var(--ink-soft);
}

.video-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.video-cards video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 16px 45px rgba(23, 20, 18, 0.14);
}

.contact-section {
  padding: 100px 0;
  background:
    linear-gradient(90deg, rgba(23, 20, 18, 0.92), rgba(23, 20, 18, 0.72)),
    url("assets/images/gold-light-stage.jpg") center / cover;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 54px;
  align-items: center;
}

.contact-grid p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.contact-link span {
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-link strong {
  overflow-wrap: anywhere;
  font-size: 1.2rem;
}

.contact-link.featured {
  background: var(--gold);
  color: var(--ink);
}

.contact-link.featured span {
  color: rgba(23, 20, 18, 0.72);
}

.site-footer {
  padding: 28px 0;
  background: #0f0d0c;
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.92rem;
}

.footer-inner span:first-child {
  color: var(--gold-soft);
  font-weight: 900;
}

.lightbox {
  width: min(980px, 92%);
  border: 0;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: #0f0d0c;
  color: var(--white);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.lightbox img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  background: #0f0d0c;
}

.lightbox p {
  margin: 0;
  padding: 14px 18px 18px;
  color: rgba(255, 255, 255, 0.82);
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

@media (min-width: 1400px) {
  .hero h1 {
    font-size: 5.65rem;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 5%;
  }

  .brand img {
    width: 178px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 5%;
    left: 5%;
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(23, 20, 18, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    justify-content: center;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 82svh;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

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

  .intro h2,
  .section-heading h2,
  .detail-copy h2,
  .video-grid h2,
  .contact-grid h2 {
    font-size: 2.45rem;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .service-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
  }

  .service-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .service-body {
    min-height: 0;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 66px;
  }

  .brand img {
    width: 154px;
  }

  .hero {
    min-height: 80svh;
    padding: 104px 6% 52px;
  }

  .hero-media {
    object-position: center top;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.68) 48%, rgba(23, 20, 18, 0.9) 100%);
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-points li {
    width: 100%;
  }

  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .section-band,
  .services,
  .detail-band,
  .gallery-section,
  .video-section,
  .contact-section {
    padding: 68px 0;
  }

  .intro h2,
  .section-heading h2,
  .detail-copy h2,
  .video-grid h2,
  .contact-grid h2 {
    font-size: 2.08rem;
  }

  .service-card {
    display: block;
  }

  .service-card img {
    aspect-ratio: 4 / 3;
  }

  .feature-list,
  .video-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-inner {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
