:root {
  --bg: #060910;
  --bg-2: #0a101b;
  --panel: rgba(255, 248, 236, 0.055);
  --panel-2: rgba(255, 248, 236, 0.085);
  --gold: #d7a24d;
  --gold-2: #f2cc7c;
  --copper: #b85a3c;
  --ivory: #f7efe2;
  --muted: #b9ad9c;
  --line: rgba(215, 162, 77, 0.26);
  --line-soft: rgba(215, 162, 77, 0.12);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ivory);
  background:
    radial-gradient(circle at 10% 5%, rgba(215, 162, 77, 0.13), transparent 36rem),
    radial-gradient(circle at 88% 35%, rgba(184, 90, 60, 0.12), transparent 30rem),
    linear-gradient(180deg, #04070d 0%, var(--bg) 46%, #080c14 100%);
  font-family: var(--sans);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(6, 9, 16, 0.82);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}
.brand img {
  width: clamp(220px, 28vw, 500px);
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
  color: var(--muted);
  font-size: 0.92rem;
}
.nav a { transition: color .18s ease; }
.nav a:hover, .nav a.active { color: var(--gold-2); }
.nav-cta {
  color: var(--ivory) !important;
  border: 1px solid var(--line);
  padding: 9px 15px;
  border-radius: 999px;
}
.mobile-toggle { display: none; }

main { min-height: 70vh; }
.section { padding: clamp(64px, 8vw, 118px) clamp(22px, 6vw, 96px); }
.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(34px, 5vw, 84px);
  align-items: center;
  padding-top: clamp(34px, 5vw, 70px);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .26em;
  font-weight: 800;
  font-size: .76rem;
}
h1, h2, h3 { font-family: var(--serif); line-height: .98; margin: 0; font-weight: 600; }
h1 { font-size: clamp(3.7rem, 7.2vw, 7.8rem); letter-spacing: -0.055em; max-width: 860px; }
h2 { font-size: clamp(2.65rem, 5vw, 5.4rem); letter-spacing: -0.045em; }
h3 { font-size: clamp(1.65rem, 2.3vw, 2.6rem); }
p { color: var(--muted); }
.lede { font-size: clamp(1.05rem, 1.45vw, 1.28rem); max-width: 650px; margin: 28px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}
.button.primary { background: linear-gradient(135deg, var(--gold-2), #b77834); color: #120b04; box-shadow: 0 18px 42px rgba(215,162,77,.22); }
.button.secondary { border: 1px solid var(--line); color: var(--ivory); }
.hero-image {
  position: relative;
  justify-self: center;
  width: min(100%, 690px);
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 50%, rgba(215,162,77,.14), transparent 64%);
  filter: blur(8px);
  z-index: -1;
}
.hero-image img {
  width: 100%;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.hero-note {
  margin-top: 20px;
  display: flex;
  gap: 11px;
  align-items: center;
  color: var(--muted);
  font-size: .92rem;
}
.hero-note span { width: 8px; height: 8px; background: var(--copper); border-radius: 50%; display: inline-block; }

.hero-quote {
  margin: 30px 0 0;
  padding: 0 0 0 18px;
  border-left: 3px solid var(--copper);
  color: var(--muted);
  max-width: 680px;
}
.hero-quote p {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
  color: var(--ivory);
}
.hero-quote cite {
  display: block;
  font-style: normal;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.page-hero { padding-bottom: clamp(44px, 5vw, 80px); border-bottom: 1px solid var(--line-soft); }
.page-hero .lede { max-width: 860px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-2), rgba(255,248,236,.028));
  border-radius: 28px;
  padding: 30px;
  min-height: 230px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.card .num, .tag { color: var(--copper); text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 900; }
.card h3 { margin: 20px 0 12px; }
.card p { margin-bottom: 0; }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 6vw, 78px); align-items: start; }
.panel {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(215,162,77,.11), rgba(184,90,60,.055));
  border-radius: 30px;
  padding: clamp(28px, 4vw, 44px);
}
.list { display: grid; gap: 14px; margin: 28px 0 0; }
.list-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}
.list-item span { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; font-weight: 900; }
.list-item strong { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; line-height: 1.05; }
.list-item p { margin: 6px 0 0; }

.feature-band {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255,248,236,.025);
}
.music-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  align-items: center;
  min-height: auto;
}
.disc {
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: radial-gradient(circle, #060910 0 20%, var(--gold-2) 21% 24%, #0c1320 25% 61%, rgba(215,162,77,.52) 62% 64%, #070b13 65%);
  box-shadow: inset 0 0 22px rgba(0,0,0,.45);
}
.kicker-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.kicker-links a, .pill { border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; color: var(--ivory); font-weight: 700; font-size: .9rem; }

.contact-info-section { padding-bottom: 2rem; }
.contact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 34px; }
.contact-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: var(--panel);
}
.contact-card span { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 900; }
.contact-card a { display: block; margin-top: 10px; font-family: var(--serif); font-size: clamp(1.18rem, 1.35vw, 1.5rem); line-height: 1.1; word-break: break-word; color: #4ea1ff; text-decoration: underline; text-underline-offset: 4px; }

.site-footer {
  padding: 30px clamp(22px, 6vw, 96px);
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
}
.site-footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }


@media (max-width: 1220px) and (min-width: 981px) {
}
@media (max-width: 1180px) and (min-width: 981px) {
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


@media (max-width: 980px) {
  .site-header { align-items: flex-start; }
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
  }
  .mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--ivory);
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
  }
  .mobile-toggle:hover,
  .mobile-toggle:focus-visible,
  .mobile-toggle[aria-expanded="true"] {
    border-color: var(--gold-2);
    background: rgba(215, 162, 77, 0.08);
  }
  .mobile-toggle:hover span,
  .mobile-toggle:focus-visible span,
  .mobile-toggle[aria-expanded="true"] span {
    background: var(--gold-2);
    opacity: 1;
    transform: none;
  }
  .nav { display: none; position: absolute; left: 20px; right: 20px; top: 76px; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(6,9,16,.96); flex-direction: column; align-items: stretch; gap: 8px; }
  .nav.open { display: flex; }
  .nav a { padding: 10px 12px; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  h1 { font-size: 3.2rem; }
  .brand img { width: min(72vw, 300px); }
  .hero-image img { border-radius: 24px; }
  .card, .panel { border-radius: 22px; padding: 24px; }
  .music-card { grid-template-columns: 1fr; }
  .disc { width: 116px; }
  .list-item { grid-template-columns: 1fr; gap: 6px; }
  .site-footer { flex-direction: column; }
}

.page-actions {
  margin-top: 1.6rem;
}

.button.ghost {
  border-color: rgba(238, 212, 166, 0.28);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.035);
}

.button.ghost:hover {
  border-color: rgba(217, 161, 74, 0.72);
  color: var(--gold-light);
}

.featured-contact {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(217, 161, 74, 0.18), rgba(184, 90, 60, 0.10));
  border-color: rgba(217, 161, 74, 0.52);
}

/* Embedded Google Form */
.contact-form-section {
  padding-top: 8.5rem;
}

.centered {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.embedded-form-card {
  max-width: 640px;
  margin: 4rem auto 0;
  padding: 0;
  border: 1px solid rgba(217, 161, 74, 0.26);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.embedded-form-card iframe {
  display: block;
  width: 100%;
  height: 950px;
  border: 0;
  border-radius: 18px;
  background: #fff;
}

@media (max-width: 700px) {
  .embedded-form-card {
    padding: 0;
    border-radius: 20px;
  }

  .embedded-form-card iframe {
    height: 1150px;
    border-radius: 14px;
  }
}
