:root {
  --ivory: #f4efe6;
  --ivory-deep: #e8dfd1;
  --ink: #171b18;
  --ink-soft: #4d554f;
  --forest: #283a31;
  --forest-light: #3e594a;
  --wine: #743d39;
  --gold: #b39462;
  --line: rgba(23, 27, 24, 0.18);
  --light-line: rgba(244, 239, 230, 0.22);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-synthesis: none;
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.96rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  min-height: 70px;
  background: transparent;
  border-color: transparent;
  color: var(--ink);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

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

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

button,
input,
select,
textarea {
  font: 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;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 max(4vw, calc((100vw - 1480px) / 2));
  border-bottom: 1px solid transparent;
  color: var(--ivory);
  transition: min-height 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(244, 239, 230, 0.94);
  border-color: var(--line);
  color: var(--ink);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: grid;
  width: 2.9rem;
  aspect-ratio: 1;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.22));
}

.brand-title {
  display: block;
  width: clamp(10rem, 14vw, 13.5rem);
  flex: 0 0 auto;
}

.brand-title img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  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-contact {
  padding: 0.68rem 1.05rem;
  border: 1px solid currentColor;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7.5rem max(6vw, calc((100vw - 1440px) / 2)) 5.5rem;
  background: var(--ink);
  color: var(--ivory);
}

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

.hero-image {
  background: url("../images/violinist-wedding-hero.png?v=2") center 43% / cover no-repeat;
  transform: scale(1.015);
  animation: hero-settle 1.6s ease-out both;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(12, 15, 13, 0.9) 0%, rgba(12, 15, 13, 0.62) 42%, rgba(12, 15, 13, 0.16) 72%), linear-gradient(0deg, rgba(12, 15, 13, 0.68) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 760px);
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
  text-align: center;
}

.hero-content::before {
  position: absolute;
  z-index: -1;
  inset: -7rem -10rem -6rem;
  background: radial-gradient(
    ellipse at center,
    rgba(4, 5, 4, 0.74) 0%,
    rgba(4, 5, 4, 0.58) 30%,
    rgba(4, 5, 4, 0.34) 50%,
    rgba(4, 5, 4, 0.14) 66%,
    rgba(4, 5, 4, 0.04) 76%,
    transparent 86%
  );
  border-radius: 50%;
  content: "";
  filter: blur(30px);
  pointer-events: none;
  transform: scale(1.03);
}

.hero-logo {
  position: relative;
  width: clamp(260px, 25vw, 340px);
  aspect-ratio: 2961 / 3264;
  margin-bottom: clamp(1.25rem, 2vw, 2rem);
  overflow: hidden;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.48));
}

.hero-logo img {
  position: absolute;
  top: 44.65%;
  left: 50%;
  width: 169.4%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.eyebrow {
  margin: 0 0 1.3rem;
  color: var(--wine);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #dbc9a7;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  max-width: 800px;
  margin-bottom: 1.6rem;
  font-size: clamp(4.2rem, 7.8vw, 7.5rem);
  letter-spacing: -0.035em;
  line-height: 0.88;
}

h1 .accent,
h2 .accent {
  color: #d6c19c;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 1.75rem;
  color: rgba(244, 239, 230, 0.7);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 1.4rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-light {
  border-color: #c59b58;
  background: #c59b58;
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: #d6b573;
  background: #d6b573;
}

.button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.text-link {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.light-link {
  color: rgba(244, 239, 230, 0.88);
}

.hero-meta {
  position: absolute;
  right: auto;
  bottom: 2.5rem;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 1.3rem;
  color: rgba(244, 239, 230, 0.62);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.hero-meta span + span::before {
  margin-right: 1.3rem;
  content: "/";
}

.section-pad {
  padding: clamp(5.5rem, 8vw, 8rem) max(5vw, calc((100vw - 1440px) / 2));
}

.section-number {
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.intro-content {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(460px, 1.18fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: start;
  min-width: 0;
}

.intro-heading {
  max-width: 660px;
  margin-bottom: 0;
}

.intro-story {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  gap: clamp(2.25rem, 4vw, 3.5rem);
}

.intro-copy {
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.intro-heading h2,
.packages-heading h2,
.contact-intro h2 {
  margin-bottom: 1.6rem;
  font-size: clamp(3.2rem, 5.2vw, 5.5rem);
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.intro-heading h2 .accent,
.packages-heading h2 .accent,
.contact-intro h2 .accent {
  color: var(--wine);
}

.lead {
  max-width: 640px;
  margin-bottom: 1.4rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  line-height: 1.3;
}

.body-copy,
.packages-heading > p:last-child,
.contact-intro > p {
  max-width: 570px;
  color: var(--ink-soft);
  line-height: 1.72;
}

.artist-profile {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: clamp(620px, 42.14vw, 800px);
  overflow: hidden;
  background: #fff;
  color: var(--ink);
}

.artist-profile-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #f7f3ed;
}

.artist-profile-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 46%,
      rgba(255, 255, 255, 0.18) 64%,
      rgba(255, 255, 255, 0.55) 82%,
      rgba(255, 255, 255, 0.85) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0) 22%,
      rgba(255, 255, 255, 0) 80%,
      rgba(255, 255, 255, 0.08) 100%
    );
  content: "";
  pointer-events: none;
}

.artist-profile-media img {
  position: absolute;
  top: 0;
  left: clamp(4rem, 7vw, 9rem);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(0.72);
  transform-origin: left center;
}

.artist-profile-content {
  position: relative;
  z-index: 2;
  isolation: isolate;
  width: min(49%, 720px);
  margin-left: auto;
  padding: clamp(2.25rem, 4vw, 4rem) 0;
}

.artist-profile-content::before {
  position: absolute;
  inset: -13% -12% -15% -28%;
  z-index: -1;
  background: radial-gradient(
    ellipse at 62% 48%,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.99) 32%,
    rgba(255, 255, 255, 0.93) 50%,
    rgba(255, 255, 255, 0.68) 67%,
    rgba(255, 255, 255, 0.28) 83%,
    rgba(255, 255, 255, 0) 100%
  );
  content: "";
  filter: blur(12px);
  pointer-events: none;
}

.artist-profile-content h2 {
  margin: 0 0 0.3rem;
  color: var(--ink);
  font-size: clamp(3.3rem, 5vw, 5.25rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}

.artist-profile-role {
  margin: 0 0 clamp(1.5rem, 3vw, 2.4rem);
  color: var(--wine);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.artist-bio {
  max-width: 680px;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.artist-bio p {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.68;
}

.artist-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  margin: 1.8rem 0 0;
}

.artist-credentials div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  align-content: start;
  padding: 0.8rem 0 0.9rem;
  border-top: 1px solid var(--line);
}

.artist-credentials dt {
  margin-bottom: 0;
  color: var(--wine);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.artist-credentials dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.65;
}

.packages {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 clamp(2.5rem, 5vw, 5rem);
}

.packages-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.65fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
}

.packages-heading .eyebrow,
.packages-heading h2 {
  grid-column: 1;
}

.packages-heading h2 {
  margin-bottom: 0;
}

.packages-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin-bottom: 0.8rem;
}

.package-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  padding: clamp(1.8rem, 2.6vw, 2.5rem);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.24);
}

.package-card:nth-child(even) {
  border-right: 1px solid var(--line);
}

.package-card:nth-child(n + 3) {
  border-bottom: 1px solid var(--line);
}

.package-card.featured {
  background: var(--forest);
  color: var(--ivory);
  transform: none;
}

.package-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--light-line);
  color: #d6c19c;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-index {
  margin-bottom: 2.8rem;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: normal;
}

.featured .package-index,
.featured .package-kicker {
  color: #d6c19c;
}

.package-kicker {
  margin-bottom: 0.7rem;
  color: var(--wine);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(2.05rem, 2.8vw, 3rem);
  line-height: 1;
}

.package-card > p:not(.package-kicker) {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.featured > p:not(.package-kicker) {
  color: rgba(244, 239, 230, 0.67);
}

.package-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 2.5rem;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  list-style: none;
}

.featured ul {
  color: rgba(244, 239, 230, 0.72);
}

.package-card li::before {
  margin-right: 0.65rem;
  color: var(--wine);
  content: "+";
}

.featured li::before {
  color: #d6c19c;
}

.package-price {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.featured .package-price {
  border-color: var(--light-line);
}

.booking {
  background: var(--ivory-deep);
  border-top: 1px solid var(--line);
}

.booking-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.65fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
}

.booking-heading .eyebrow,
.booking-heading h2 {
  grid-column: 1;
}

.booking-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 5.2vw, 5.5rem);
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.booking-heading h2 em {
  color: var(--wine);
}

.booking-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 520px;
  margin-bottom: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 3.5rem;
}

.booking-step {
  min-height: 260px;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.28);
}

.booking-step > span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--wine);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-step h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  line-height: 1.04;
}

.booking-step p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.72;
}

.booking-step .booking-note {
  margin-top: 1.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(3rem, 6vw, 6rem);
  background: var(--ivory);
  border-top: 1px solid var(--line);
}

.availability-card,
.location-card {
  max-width: 500px;
  border-top: 1px solid var(--line);
}

.availability-card {
  margin-top: 2.7rem;
  padding: 1.2rem 0;
}

.availability-title {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.status-dot {
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #568263;
  box-shadow: 0 0 0 5px rgba(86, 130, 99, 0.12);
}

.availability-title strong {
  margin-bottom: 0;
  line-height: 1.15;
}

.availability-card strong,
.location-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.availability-card p,
.location-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.availability-card > p {
  margin-left: calc(9px + 0.85rem);
}

.location-card {
  padding: 1.2rem 0 0;
}

.location-card > span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--wine);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  align-content: start;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.contact-intro h2 {
  font-size: clamp(3.1rem, 4.6vw, 4.8rem);
  line-height: 0.98;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.single-field-row {
  grid-template-columns: minmax(0, calc(50% - 0.55rem));
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field > span {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  outline: 0;
  background: rgba(244, 239, 230, 0.58);
  color: var(--ink);
  resize: vertical;
  transition: border-color 180ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(116, 61, 57, 0.08);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(77, 85, 79, 0.58);
}

.choice-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-field legend {
  padding: 0;
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.choice-field > p {
  margin: 0.55rem 0 0.8rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.choice-grid {
  display: grid;
  gap: 0.6rem;
}

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

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

.setting-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 180px));
}

.choice-option {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(244, 239, 230, 0.52);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.86rem;
}

.choice-option input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--wine);
}

.choice-option:hover,
.choice-option:focus-within {
  border-color: rgba(116, 61, 57, 0.5);
  color: var(--ink);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-footer {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 1.3rem;
}

.form-meta {
  display: grid;
  gap: 0.25rem;
}

.response-note {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.35;
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--ivory);
}

.button-dark:hover,
.button-dark:focus-visible {
  border-color: var(--wine);
  background: var(--wine);
}

.form-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-status.success {
  color: #326a47;
}

.form-status.error {
  color: #943f31;
}

.site-footer {
  padding: 3.5rem max(5vw, calc((100vw - 1440px) / 2)) 1.8rem;
  background: var(--ink);
  color: var(--ivory);
}

.footer-main,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-main {
  min-height: 100px;
}

.footer-main > p {
  max-width: 310px;
  margin: 0;
  color: rgba(244, 239, 230, 0.58);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: normal;
  text-align: right;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-line);
  color: rgba(244, 239, 230, 0.48);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-copyright {
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: none;
}

.footer-copyright a {
  text-decoration: underline;
  text-decoration-color: rgba(244, 239, 230, 0.28);
  text-underline-offset: 0.24em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-copyright a:hover,
.footer-copyright a:focus-visible {
  color: var(--ivory);
  text-decoration-color: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-settle {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.015); }
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 3vw;
  }

  .site-nav {
    gap: 1rem;
  }

  .brand-title {
    width: 10.75rem;
  }

  .hero-meta {
    display: none;
  }

  .intro {
    grid-template-columns: auto 1fr;
  }

  .intro-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .intro-heading {
    max-width: 900px;
  }

  .intro-story {
    max-width: 760px;
  }

  .packages-heading,
  .booking-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .artist-profile {
    min-height: 650px;
  }

  .artist-profile-media img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: none;
  }

  .artist-profile-content {
    width: min(54%, 650px);
    margin-left: auto;
    padding-block: 3rem;
  }

  .packages-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .booking-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .booking-steps {
    grid-template-columns: 1fr;
  }

  .package-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .package-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .package-grid .package-card:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .package-grid .package-card:last-child {
    border-bottom: 0;
  }

  .package-card.featured {
    transform: none;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
  }

  .brand {
    gap: 0.6rem;
  }

  .brand-mark {
    width: 2.55rem;
  }

  .brand-title {
    width: 9.6rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 12px 8px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    margin: auto;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100svh;
    padding: max(5.5rem, env(safe-area-inset-top)) 7vw max(2rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0;
    opacity: 0;
    text-transform: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .nav-contact {
    padding: 0;
    border: 0;
  }

  .hero {
    min-height: 100svh;
    padding: 7.5rem 7vw 4.5rem;
  }

  .hero-content::before {
    inset: -5rem -30vw -4.5rem;
    filter: blur(24px);
  }

  .hero-logo {
    width: min(76vw, 320px);
    margin-bottom: 1.25rem;
  }

  .hero-image {
    background-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(12, 15, 13, 0.88), rgba(12, 15, 13, 0.32)), linear-gradient(0deg, rgba(12, 15, 13, 0.8), transparent 70%);
  }

  h1 {
    font-size: clamp(3.5rem, 16vw, 5.4rem);
    line-height: 0.92;
  }

  .form-footer,
  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions {
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.15rem;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    align-self: center;
  }

  .section-pad {
    padding-block: 5rem;
    padding-inline: 7vw;
  }

  .artist-profile {
    display: block;
    min-height: 0;
    padding-top: clamp(23rem, 112vw, 34rem);
    padding-bottom: 5rem;
  }

  .artist-profile-media {
    inset: 0 0 auto;
    height: clamp(25rem, 118vw, 36rem);
  }

  .artist-profile-media::after {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 42%,
        rgba(255, 255, 255, 0.4) 63%,
        rgba(255, 255, 255, 0.88) 82%,
        #fff 100%
      ),
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0) 72%,
        rgba(255, 255, 255, 0.15) 100%
      );
  }

  .artist-profile-media img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
    transform: none;
  }

  .artist-profile-content {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .artist-profile-content::before {
    inset: -7rem -12vw -5rem;
    background: radial-gradient(
      ellipse at 50% 38%,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.99) 37%,
      rgba(255, 255, 255, 0.91) 57%,
      rgba(255, 255, 255, 0.58) 74%,
      rgba(255, 255, 255, 0.18) 88%,
      rgba(255, 255, 255, 0) 100%
    );
    filter: blur(10px);
  }

  .artist-profile-content h2 {
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }

  .artist-credentials {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .artist-credentials div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .section-number {
    display: none;
  }

  .intro,
  .packages {
    display: block;
  }

  .intro-content {
    display: block;
  }

  .intro-heading {
    margin-bottom: 2.5rem;
  }

  .intro-story {
    gap: 2rem;
  }

  .package-grid {
    gap: 0.8rem;
    margin-top: 2.5rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .music-choice-grid,
  .event-type-grid,
  .setting-choice-grid {
    grid-template-columns: 1fr;
  }

  .single-field-row {
    grid-template-columns: 1fr;
  }

  .footer-main > p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
