:root {
  --ink: #171717;
  --muted: #5d5a55;
  --paper: #faf7f0;
  --soft: #eee8dc;
  --sage: #637066;
  --wine: #7a2430;
  --gold: #c79a45;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(23, 23, 23, 0.14);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

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

.skip-link:focus {
  z-index: 100;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--white);
  box-shadow: var(--shadow);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
  padding: 0.85rem 1rem;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(250, 247, 240, 0.94);
  box-shadow: 0 1px 0 rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 2.55rem;
  height: 2.55rem;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-mark::after {
  position: absolute;
  right: 0.35rem;
  bottom: 0.36rem;
  left: 0.35rem;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.site-header.is-scrolled .brand-mark {
  border-color: rgba(23, 23, 23, 0.28);
  box-shadow: inset 0 0 0 1px rgba(23, 23, 23, 0.06);
}

.brand-name {
  overflow: hidden;
  max-width: 11.5rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-toggle {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.site-header.is-scrolled .nav-toggle {
  border-color: rgba(23, 23, 23, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.nav-toggle span:not(.sr-only) {
  width: 1rem;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  transform: translateY(3px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-3px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: auto;
  right: 1rem;
  display: flex;
  flex-direction: column;
  width: min(72vw, 17rem);
  max-width: calc(100vw - 2rem);
  gap: 0.38rem;
  padding: 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(23, 23, 23, 0.48);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(0.35rem, -0.35rem) scale(0.98);
  transform-origin: top right;
  transition: opacity 300ms ease, transform 300ms ease, visibility 300ms ease;
  visibility: hidden;
  backdrop-filter: blur(18px);
}

.site-header.is-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0) scale(1);
  visibility: visible;
}

.site-nav a {
  display: grid;
  gap: 0.12rem;
  min-height: 2.75rem;
  align-content: center;
  justify-items: center;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--white);
  font-weight: 600;
  text-align: center;
  background: rgba(255, 255, 255, 0.09);
  transition: color 300ms ease, background 300ms ease, border-color 300ms ease, transform 300ms ease;
}

.site-nav a span {
  font-size: 0.95rem;
  line-height: 1;
  transition: color 300ms ease;
}

.site-nav a small {
  color: rgba(242, 204, 132, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  transition: color 300ms ease, opacity 300ms ease, transform 300ms ease;
}

.site-nav .nav-cta {
  border-color: rgba(199, 154, 69, 0.54);
  color: var(--ink);
  background: linear-gradient(135deg, rgba(225, 184, 91, 0.94), rgba(199, 154, 69, 0.94));
}

.site-nav .nav-cta small {
  color: rgba(23, 23, 23, 0.68);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-1px);
  outline: none;
}

.site-nav a:hover small,
.site-nav a:focus-visible small {
  color: var(--ink);
  opacity: 0.76;
  transform: translateY(1px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.22), rgba(23, 23, 23, 0.72)),
    linear-gradient(90deg, rgba(23, 23, 23, 0.82), rgba(23, 23, 23, 0.08) 78%);
}

.hero-content {
  position: relative;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 5rem 1rem 1.6rem;
  text-align: center;
  transform: translateY(-8.8rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  margin-bottom: 0.6rem;
  font-size: 3rem;
  line-height: 0.9;
  font-weight: 700;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 600;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.95rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: min(100%, 20rem);
  margin: 0 auto;
}

.button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

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

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

.section,
.section-band,
.quote-section {
  padding: 4.5rem 0;
}

.section-band {
  background: var(--white);
}

.section-inner {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.intro-grid,
.repertoire-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading {
  max-width: 43rem;
  margin-bottom: 2rem;
}

.offer-grid {
  display: grid;
  gap: 1rem;
  perspective: 900px;
}

.offer-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto auto;
  min-height: 27rem;
  padding: 15px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 240, 0.78)),
    var(--white);
  box-shadow: 0 1px 0 rgba(23, 23, 23, 0.05);
  transform: translateY(0) scale(1);
  transform-origin: center;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease, opacity 300ms ease;
}

.offer-card::before {
  position: absolute;
  inset: -35%;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(199, 154, 69, 0.34), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(122, 36, 48, 0.16), transparent 38%);
  content: "";
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 300ms ease, transform 300ms ease;
}

.offer-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), transparent 42%);
  content: "";
  opacity: 0;
  transition: opacity 300ms ease;
}

.offer-card > * {
  position: relative;
  z-index: 1;
}

.offer-copy {
  display: grid;
  align-content: start;
}

.offer-number {
  display: inline-block;
  width: fit-content;
  margin-bottom: 1.8rem;
  padding: 0.28rem 0.48rem;
  border: 1px solid rgba(122, 36, 48, 0.12);
  border-radius: 999px;
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  background: rgba(122, 36, 48, 0.05);
}

.offer-card h3,
.offer-card p,
.offer-number,
.offer-media img,
.offer-link {
  transition: transform 300ms ease, color 300ms ease, opacity 300ms ease;
}

.offer-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.55;
  margin: 1.2rem 0 0;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.offer-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(23, 23, 23, 0.42)),
    linear-gradient(90deg, rgba(23, 23, 23, 0.2), transparent 55%);
  content: "";
  opacity: 0.74;
  transition: opacity 300ms ease;
}

.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-link {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  justify-content: center;
  gap: 0.52rem;
  width: fit-content;
  min-height: 2.45rem;
  margin-top: 0.82rem;
  padding: 0.46rem 0.5rem 0.46rem 0.78rem;
  border: 1px solid rgba(199, 154, 69, 0.24);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  transition: color 300ms ease, background 300ms ease, border-color 300ms ease, transform 300ms ease, opacity 300ms ease;
}

.offer-link::after {
  display: inline-grid;
  flex: 0 0 auto;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(199, 154, 69, 0.26);
  content: "\2192";
  line-height: 1;
  transition: transform 300ms ease, color 300ms ease, background 300ms ease;
}

.offer-link span {
  display: block;
}

.offer-link span {
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.1;
}

.offer-link:focus-visible {
  outline: 2px solid rgba(199, 154, 69, 0.72);
  outline-offset: 3px;
}

.offer-card p,
.repertoire-list p,
.contact p {
  color: var(--muted);
}

.offer-card:hover,
.offer-card:focus-within {
  border-color: rgba(199, 154, 69, 0.38);
  box-shadow: 0 26px 58px rgba(23, 23, 23, 0.14), 0 0 0 1px rgba(199, 154, 69, 0.08);
  transform: translateY(-0.45rem) scale(1.035);
}

.offer-card:hover::before,
.offer-card:focus-within::before,
.offer-card:hover::after,
.offer-card:focus-within::after {
  opacity: 1;
  transform: scale(1);
}

.offer-card:hover .offer-number,
.offer-card:focus-within .offer-number {
  color: var(--ink);
  background: rgba(199, 154, 69, 0.2);
  transform: translateY(-0.12rem);
}

.offer-card:hover h3,
.offer-card:focus-within h3 {
  transform: translateY(-0.08rem);
}

.offer-card:hover p,
.offer-card:focus-within p {
  color: rgba(23, 23, 23, 0.74);
}

.offer-card:hover .offer-media::after,
.offer-card:focus-within .offer-media::after {
  opacity: 0.42;
}

.offer-card:hover .offer-media img,
.offer-card:focus-within .offer-media img {
  transform: scale(1.06);
}

.offer-link:hover,
.offer-link:focus-visible {
  color: var(--white);
  background: var(--ink);
  border-color: rgba(23, 23, 23, 0.72);
  transform: translateY(-0.1rem);
}

.offer-link:hover::after,
.offer-link:focus-visible::after {
  color: var(--ink);
  background: var(--gold);
  transform: translateX(0.15rem);
}

.gallery-section {
  padding: 4rem 0;
  color: var(--white);
  background: var(--ink);
}

.gallery-heading {
  display: grid;
  gap: 0.7rem;
}

.gallery-heading p:last-child {
  max-width: 35rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  aspect-ratio: 9 / 16;
}

.gallery-item::before {
  position: absolute;
  inset: -1.2rem;
  z-index: 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 247, 226, 0.22), transparent 54%),
    radial-gradient(circle at 50% 82%, rgba(199, 154, 69, 0.18), transparent 64%);
  content: "";
  filter: blur(18px);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 300ms ease, transform 300ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(180deg, transparent 56%, rgba(23, 23, 23, 0.38)),
    linear-gradient(90deg, rgba(23, 23, 23, 0.16), transparent 58%);
  content: "";
  opacity: 0.7;
  transform: scale(1.01);
  transition: opacity 300ms ease, transform 300ms ease;
}

.gallery-item img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 300ms ease, filter 300ms ease;
}

.gallery-item:nth-child(1) img,
.gallery-item:nth-child(6) img {
  object-position: 62% center;
}

.gallery-item:nth-child(3) img {
  object-position: 46% center;
}

.gallery-item:hover img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.055);
}

.gallery-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

.gallery-item:hover::after {
  opacity: 0.32;
  transform: scale(1.055);
}

.video-section {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(250, 247, 240, 0.92)),
    var(--paper);
}

.video-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(99, 112, 102, 0.1), transparent 46%),
    radial-gradient(circle at 80% 22%, rgba(199, 154, 69, 0.16), transparent 36%);
  content: "";
  pointer-events: none;
}

.video-section .section-inner {
  position: relative;
}

.video-heading {
  display: grid;
  gap: 0.7rem;
}

.video-heading p:last-child {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
}

.video-grid {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.video-card {
  position: relative;
  display: grid;
  gap: 0.9rem;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 9 / 16;
  background: var(--ink);
  box-shadow: 0 20px 44px rgba(23, 23, 23, 0.16);
}

.video-shell::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.06), rgba(23, 23, 23, 0.48)),
    linear-gradient(90deg, rgba(23, 23, 23, 0.18), transparent 58%);
  content: "";
  transition: opacity 300ms ease;
}

.video-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  transform: scale(1.01);
  transition: filter 300ms ease, transform 300ms ease;
}

.video-play {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(250, 247, 240, 0.9);
  box-shadow: 0 14px 32px rgba(23, 23, 23, 0.22);
  cursor: pointer;
  transition: background 300ms ease, opacity 300ms ease, transform 300ms ease;
}

.video-play::before {
  width: 0;
  height: 0;
  margin-left: 0.18rem;
  border-top: 0.48rem solid transparent;
  border-bottom: 0.48rem solid transparent;
  border-left: 0.72rem solid var(--ink);
  content: "";
}

.video-caption {
  display: grid;
  gap: 0.3rem;
  padding: 0 0.2rem;
}

.video-caption span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.video-caption h3 {
  margin-bottom: 0;
}

.video-caption p {
  margin-bottom: 0;
  color: var(--muted);
}

.video-card:hover .video-frame,
.video-card:focus-within .video-frame {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.055);
}

.video-card:hover .video-shell::after,
.video-card:focus-within .video-shell::after {
  opacity: 0.58;
}

.video-card:hover .video-play,
.video-card:focus-within .video-play {
  background: var(--gold);
  transform: translateY(-0.2rem) scale(1.04);
}

.video-card.is-playing .video-shell::after {
  opacity: 0.18;
}

.video-card.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.35rem) scale(0.92);
}

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

.repertoire .section-kicker {
  color: #f0c76b;
}

.repertoire-list {
  display: grid;
  gap: 1rem;
}

.repertoire-list div {
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.repertoire-list p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-section {
  color: var(--white);
  background: var(--wine);
}

.quote-inner {
  max-width: 860px;
}

blockquote {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.02;
}

.contact-panel {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
  border-left: 4px solid var(--gold);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(23, 23, 23, 0.08);
  font-style: normal;
  font-weight: 700;
}

.contact-panel span {
  color: var(--muted);
  font-weight: 600;
}

.contact-links {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.4rem;
  color: var(--ink);
  font-weight: 700;
}

.contact-links span {
  color: var(--muted);
  font-weight: 600;
}

.lead-form {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.42rem;
}

.form-field span,
.form-consent span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 2.95rem;
  padding: 0.78rem 0.82rem;
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(250, 247, 240, 0.72);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(199, 154, 69, 0.74);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(199, 154, 69, 0.16);
  outline: none;
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
}

.form-consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.18rem;
  accent-color: var(--gold);
}

.form-submit {
  width: 100%;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  color: var(--white);
  background: var(--ink);
}

.thanks-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0;
}

.thanks-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 23, 23, 0.92), rgba(23, 23, 23, 0.46)),
    url("assets/photo-37.jpg") center / cover;
  content: "";
}

.thanks-content {
  position: relative;
  width: min(100% - 2rem, 760px);
  margin: 0 auto;
}

.thanks-content h1 {
  font-size: 3.4rem;
}

.thanks-content p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
}

.thanks-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.site-footer {
  padding: 1.5rem 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--gold);
  font-weight: 700;
}

@media (min-width: 640px) {
  h1 {
    font-size: 5.65rem;
    margin-bottom: 0.8rem;
    line-height: 0.88;
  }

  h2 {
    font-size: 3.2rem;
  }

  blockquote {
    font-size: 3.5rem;
  }

  .hero-actions,
  .footer-inner,
  .thanks-actions {
    flex-direction: row;
  }

  .hero-actions {
    gap: 0.75rem;
    width: auto;
  }

  .button {
    min-width: 11rem;
    min-height: 3.15rem;
    padding: 0.8rem 1.15rem;
    font-size: 1rem;
  }

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

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

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

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

  .offer-grid:has(.offer-card:hover) .offer-card:not(:hover),
  .offer-grid:has(.offer-card:focus-within) .offer-card:not(:focus-within) {
    opacity: 0.72;
    transform: translateY(0.25rem) scale(0.96);
  }

  .footer-inner {
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 840px) {
  .hero {
    align-items: center;
  }

  .hero-content {
    padding: 7rem 2rem 5rem;
    text-align: left;
    transform: none;
  }

  .hero-lead {
    font-size: 1.18rem;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.6;
    margin-bottom: 1.45rem;
  }

  h1 {
    font-size: 6.75rem;
  }

  h2 {
    font-size: 4.1rem;
  }

  blockquote {
    font-size: 4.5rem;
  }

  .section,
  .section-band,
  .quote-section {
    padding: 6.5rem 0;
  }

  .gallery-section {
    padding: 5rem 0;
  }

  .video-section {
    padding: 5.5rem 0;
  }

  .intro-grid,
  .repertoire-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
  }

  .contact-grid {
    align-items: center;
  }
}

@media (min-width: 1040px) {
  .site-header {
    min-height: 5rem;
    padding: 1rem 2rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    max-width: none;
    gap: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    backdrop-filter: none;
  }

  .site-nav a {
    min-width: 7.15rem;
    min-height: 2.8rem;
    padding: 0.5rem 0.72rem;
    border-color: rgba(255, 255, 255, 0.18);
    color: inherit;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 10px 26px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(14px);
  }

  .site-nav a span {
    font-size: 0.84rem;
  }

  .site-nav a small {
    color: rgba(242, 204, 132, 0.88);
    font-size: 0.63rem;
    opacity: 0.86;
  }

  .site-nav .nav-cta {
    border-color: rgba(199, 154, 69, 0.6);
    color: var(--ink);
    background: linear-gradient(135deg, #d5a74d, var(--gold));
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    border-color: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  }

  .site-nav .nav-cta:hover,
  .site-nav .nav-cta:focus-visible {
    background: rgba(255, 255, 255, 0.94);
  }

  .site-nav .nav-cta small {
    color: rgba(23, 23, 23, 0.68);
  }

  .site-header.is-scrolled .site-nav a {
    border-color: rgba(23, 23, 23, 0.08);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
  }

  .site-header.is-scrolled .site-nav a small {
    color: var(--wine);
    opacity: 0.74;
  }

  .site-header.is-scrolled .site-nav .nav-cta {
    background: linear-gradient(135deg, #d5a74d, var(--gold));
  }

  .site-header.is-scrolled .site-nav a:hover,
  .site-header.is-scrolled .site-nav a:focus-visible {
    border-color: rgba(23, 23, 23, 0.08);
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(23, 23, 23, 0.1);
  }

  .site-header.is-scrolled .site-nav a:hover small,
  .site-header.is-scrolled .site-nav a:focus-visible small {
    color: var(--ink);
  }

}

@media (min-width: 1120px) {
  .hero-content {
    padding-left: 0;
    padding-right: 0;
  }
}
