:root {
  --ink: #241e1c;
  --ink-soft: #342d2a;
  --headline: #454a4d;
  --cream: #f4efe5;
  --cream-light: #fffaf1;
  --sand: #ded7c3;
  --rust: #a84f3d;
  --rust-dark: #803b30;
  --rose: #c5986f;
  --gold: #e2b835;
  --muted: #6f6560;
  --line: rgba(36, 30, 28, 0.16);
  --shadow: 0 24px 60px rgba(36, 30, 28, 0.16);
  --radius: 1.25rem;
  --page-width: 76rem;
  --header-height: 6.5rem;
  --font-heading: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-body: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  color-scheme: light;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.section-light h2,
.section-light h3,
.legal-content h2 {
  color: var(--headline);
}

h2 {
  max-width: 18ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 4.8vw, 4.5rem);
}

h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  color: var(--ink);
  background: var(--gold);
  border-radius: 0.35rem;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--cream-light);
  background: linear-gradient(to bottom, rgba(22, 18, 17, 0.78), rgba(22, 18, 17, 0));
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.legal-page .site-header {
  background: rgba(36, 30, 28, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 2.5rem), var(--page-width));
  min-height: var(--header-height);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: block;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: clamp(10rem, 17vw, 13.5rem);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.3vw, 2.3rem);
}

.site-nav a {
  position: relative;
  padding-block: 0.5rem;
  color: var(--cream-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.75rem 1.15rem !important;
  color: var(--ink) !important;
  background: var(--gold);
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--cream-light);
}

.menu-toggle {
  display: none;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
}

.hero {
  position: relative;
  min-height: 49rem;
  color: var(--cream-light);
  background-color: var(--ink);
  background-image: url("../images/hero.jpg");
  background-position: center 42%;
  background-size: cover;
}

.hero-overlay,
.contact-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 18, 17, 0.45), rgba(22, 18, 17, 0.08) 42%, rgba(22, 18, 17, 0.48)),
    linear-gradient(0deg, rgba(22, 18, 17, 0.88), transparent 58%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(calc(100% - 2.5rem), var(--page-width));
  min-height: 49rem;
  margin-inline: auto;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 3.5rem;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-copy {
  max-width: 47rem;
  text-align: right;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.eyebrow {
  margin-bottom: 1.1rem;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.hero h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(3.4rem, 8.2vw, 7.8rem);
  line-height: 0.88;
}

.hero-lead {
  max-width: 42rem;
  margin-right: 0;
  margin-bottom: 2rem;
  margin-left: auto;
  color: rgba(255, 250, 241, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.8rem 1.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: var(--cream-light);
}

.button-ghost {
  color: var(--cream-light);
  border-color: rgba(255, 250, 241, 0.62);
  background: rgba(36, 30, 28, 0.24);
}

.button-ghost:hover {
  color: var(--ink);
  background: var(--cream-light);
  border-color: var(--cream-light);
}

.hero-facts {
  display: flex;
  margin: 3.4rem 0 0;
  padding: 0.8rem 1.15rem;
  gap: 0;
  background: rgba(36, 30, 28, 0.62);
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.hero-facts div {
  min-width: 10rem;
  padding: 0.35rem 1.4rem;
  border-left: 1px solid rgba(255, 250, 241, 0.2);
}

.hero-facts div:first-child {
  border-left: 0;
}

.hero-facts dt {
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.18rem;
}

.section {
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

.section[id],
.contact-section[id] {
  scroll-margin-top: var(--header-height);
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2.5rem), var(--page-width));
  margin-inline: auto;
}

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

.section-dark {
  color: var(--cream-light);
  background:
    radial-gradient(circle at 15% 10%, rgba(197, 152, 111, 0.15), transparent 33rem),
    var(--ink);
}

.section-copy {
  max-width: 39rem;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
}

.lead {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.62;
}

.offer-grid,
.story-grid,
.contact-inner {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.occasion-list {
  display: flex;
  margin: 2rem 0;
  padding: 0;
  gap: 0.65rem;
  flex-wrap: wrap;
  list-style: none;
}

.occasion-list li {
  padding: 0.42rem 0.8rem;
  color: var(--rust-dark);
  background: rgba(168, 79, 61, 0.09);
  border: 1px solid rgba(168, 79, 61, 0.22);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--rust-dark);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.35rem;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(0.35rem);
}

.image-frame {
  position: relative;
  margin: 0;
}

.image-frame::before {
  position: absolute;
  z-index: -1;
  top: 1.4rem;
  right: -1.4rem;
  bottom: -1.4rem;
  left: 1.4rem;
  content: "";
  background: var(--rose);
  border-radius: var(--radius);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame figcaption {
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.section-heading-wide {
  display: grid;
  max-width: none;
  align-items: end;
  column-gap: 4rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.section-heading-wide .eyebrow {
  grid-column: 1 / -1;
}

.section-heading-wide h2 {
  margin-bottom: 0;
}

.section-heading-wide > p:last-child {
  margin-bottom: 0.4rem;
  color: rgba(255, 250, 241, 0.7);
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.centered h2 {
  max-width: 20ch;
  margin-inline: auto;
}

.centered > p:last-child {
  color: var(--muted);
}

.band-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.musician-card {
  display: grid;
  overflow: hidden;
  min-height: 20rem;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 250, 241, 0.1);
  border-radius: var(--radius);
  grid-template-columns: minmax(10rem, 0.8fr) minmax(0, 1.2fr);
}

.musician-card img {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.03);
}

.musician-copy {
  display: flex;
  padding: clamp(1.5rem, 3.2vw, 2.3rem);
  flex-direction: column;
  justify-content: center;
}

.musician-copy .role {
  margin-bottom: 0.5rem;
  color: var(--rose);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.musician-copy p:last-child {
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.7);
  font-size: 0.96rem;
}

.story-section {
  color: var(--cream-light);
  background: linear-gradient(125deg, var(--rust-dark), #8d6254);
}

.story-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.story-section .section-copy p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.78);
}

.story-section .section-copy .lead {
  color: var(--cream-light);
}

.story-section .eyebrow {
  color: var(--gold);
}

.story-section .image-frame::before {
  background: var(--ink);
}

.references-section {
  background:
    radial-gradient(circle at 100% 0, rgba(197, 152, 111, 0.28), transparent 32rem),
    var(--cream);
}

.reference-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reference-list li {
  position: relative;
  padding: 1.25rem 1.2rem 1.25rem 2rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.35;
}

.reference-list li::before {
  position: absolute;
  top: 1.75rem;
  left: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  background: var(--rust);
  border-radius: 50%;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 12vw, 10rem);
  color: var(--cream-light);
  background: var(--ink) url("../images/contact.jpg") center 48% / cover no-repeat;
}

.contact-overlay {
  background: linear-gradient(100deg, rgba(36, 30, 28, 0.96) 15%, rgba(36, 30, 28, 0.73) 60%, rgba(36, 30, 28, 0.55));
}

.contact-inner {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
}

.contact-copy h2 {
  max-width: 15ch;
}

.contact-copy > p:last-child {
  max-width: 38rem;
  color: rgba(255, 250, 241, 0.78);
  font-size: 1.15rem;
}

.contact-section .eyebrow {
  color: var(--gold);
}

.contact-card {
  padding: clamp(1.8rem, 4vw, 3rem);
  background: rgba(255, 250, 241, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-style: normal;
}

.contact-name {
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
}

.contact-card > p:nth-child(2) {
  margin-bottom: 1.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-link {
  display: flex;
  padding: 1rem 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.contact-link span {
  color: var(--rust);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-link strong {
  font-size: 1.05rem;
}

.contact-link:hover strong {
  color: var(--rust);
}

.site-footer {
  padding-block: 3rem;
  color: rgba(255, 250, 241, 0.7);
  background: #191514;
}

.footer-inner {
  display: grid;
  width: min(calc(100% - 2.5rem), var(--page-width));
  margin-inline: auto;
  align-items: end;
  gap: 2rem;
  grid-template-columns: 1fr auto;
}

.footer-brand img {
  width: 10.5rem;
  height: auto;
  margin-bottom: 0.7rem;
  opacity: 0.86;
}

.footer-brand p,
.copyright {
  margin-bottom: 0;
  font-size: 0.82rem;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--gold);
}

.copyright {
  grid-column: 2;
  text-align: right;
}

.legal-hero {
  padding: calc(var(--header-height) + 5.5rem) 0 5rem;
  color: var(--cream-light);
  background:
    radial-gradient(circle at 80% 15%, rgba(197, 152, 111, 0.32), transparent 28rem),
    var(--ink-soft);
}

.legal-hero-inner,
.legal-content {
  width: min(calc(100% - 2.5rem), 54rem);
  margin-inline: auto;
}

.legal-hero .eyebrow {
  color: var(--gold);
}

.legal-hero h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 7vw, 6rem);
}

.legal-content {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.legal-content section + section {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  max-width: 26ch;
  margin-bottom: 1.25rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.legal-content p {
  color: var(--muted);
}

.legal-content strong {
  color: var(--ink);
}

.legal-content a {
  color: var(--rust-dark);
  font-weight: 700;
}

@media (max-width: 68rem) {
  .band-grid {
    grid-template-columns: 1fr;
  }

  .musician-card {
    grid-template-columns: minmax(14rem, 0.9fr) minmax(0, 1.1fr);
  }

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

@media (max-width: 56rem) {
  :root {
    --header-height: 5.25rem;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    padding: 0.6rem;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
  }

  .menu-toggle-lines {
    display: grid;
    width: 1.5rem;
    gap: 0.28rem;
  }

  .menu-toggle-lines span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .menu-toggle-label {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .js .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    padding: calc(var(--header-height) + 3rem) 2rem 3rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    background: rgba(36, 30, 28, 0.99);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .js .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.12);
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 7vw, 2.8rem);
    letter-spacing: 0;
    text-transform: none;
  }

  .js .site-nav .nav-cta {
    margin-top: 1.4rem;
    padding: 0.8rem 1.1rem !important;
    border-bottom: 0;
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .no-js .header-inner {
    padding-block: 0.75rem;
    flex-wrap: wrap;
  }

  .no-js .site-header {
    position: absolute;
    background: rgba(36, 30, 28, 0.96);
  }

  .no-js .site-nav {
    display: flex;
    width: 100%;
    padding-bottom: 0.5rem;
    gap: 0.8rem 1.2rem;
    flex-wrap: wrap;
  }

  .hero,
  .hero-inner {
    min-height: 43rem;
  }

  .hero-inner {
    align-items: flex-start;
  }

  .hero-copy {
    max-width: 38rem;
    text-align: left;
  }

  .hero-lead {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-facts {
    align-self: stretch;
  }

  .hero-facts div {
    min-width: 0;
    flex: 1 1 0;
  }

  .offer-grid,
  .story-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .image-frame::before {
    right: 0;
  }

  .section-copy {
    max-width: none;
  }

  .section-heading-wide {
    display: block;
  }

  .section-heading-wide h2 {
    margin-bottom: 1.5rem;
  }

  .story-image {
    order: 2;
  }

  .contact-card {
    max-width: 38rem;
  }
}

@media (max-width: 42rem) {
  body {
    font-size: 1rem;
  }

  .header-inner,
  .hero-inner,
  .section-inner,
  .footer-inner,
  .legal-hero-inner,
  .legal-content {
    width: min(calc(100% - 1.5rem), var(--page-width));
  }

  .brand img {
    width: 9.5rem;
  }

  .hero {
    background-position: 39% center;
  }

  .hero,
  .hero-inner {
    min-height: 44rem;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 18vw, 5.2rem);
  }

  .hero-facts {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts div {
    padding: 0.35rem 0.85rem;
  }

  .hero-facts div:nth-child(3) {
    display: none;
  }

  .button {
    width: 100%;
  }

  .image-frame::before {
    top: 0.8rem;
    right: -0.35rem;
    bottom: -0.8rem;
    left: 0.8rem;
  }

  .musician-card {
    display: block;
  }

  .musician-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

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

  .contact-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .copyright {
    grid-column: 1;
    text-align: left;
  }
}

@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;
  }
}
