:root {
  color-scheme: light;
  --ink: #251c1a;
  --ink-soft: #5e514d;
  --paper: #fffdf9;
  --cream: #f5efe5;
  --cream-deep: #ece1d1;
  --wine: #8e2e35;
  --wine-dark: #5e1820;
  --wine-light: #b8555d;
  --gold: #b68a4a;
  --gold-light: #e5cca4;
  --sage: #68766a;
  --white: #fff;
  --line: rgba(73, 45, 39, 0.16);
  --shadow: 0 24px 70px rgba(62, 37, 31, 0.12);
  --shadow-soft: 0 14px 40px rgba(62, 37, 31, 0.08);
  --radius: 1.5rem;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Aptos, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: var(--wine);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--wine-dark);
}

:focus-visible {
  outline: 3px solid #d99d3e;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.65rem 1rem;
  transform: translateY(-180%);
  border-radius: 999px;
  color: white;
  background: var(--wine-dark);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.narrow {
  width: min(820px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(4.75rem, 9vw, 8rem) 0;
}

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

.section--dark {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  background: var(--wine-dark);
}

.section--dark a {
  color: white;
}

.eyebrow {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin: 0 0 0.85rem;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.section--dark .eyebrow,
.footer .eyebrow {
  color: var(--gold-light);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.3rem;
  font-size: clamp(3.3rem, 7vw, 6.65rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: -0.02em;
}

p {
  margin-top: 0;
}

.lede {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
}

.section--dark .lede {
  color: rgba(255, 255, 255, 0.72);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--wine);
  border-radius: 999px;
  color: white;
  background: var(--wine);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  color: white;
  background: var(--wine-dark);
  box-shadow: 0 12px 26px rgba(94, 24, 32, 0.22);
  transform: translateY(-2px);
}

.button--outline {
  color: var(--wine-dark);
  background: transparent;
}

.button--outline:hover {
  color: white;
}

.button--light {
  border-color: white;
  color: var(--wine-dark);
  background: white;
}

.button--light:hover {
  color: var(--wine-dark);
  background: var(--gold-light);
}

.text-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  font-weight: 750;
  text-decoration-thickness: 1px;
}

.topbar {
  padding: 0.45rem 0;
  color: rgba(255, 255, 255, 0.86);
  background: var(--wine-dark);
  font-size: 0.78rem;
}

.topbar__inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(16px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(62, 37, 31, 0.08);
}

.header__inner {
  display: flex;
  min-height: 5.5rem;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

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

.brand img {
  width: clamp(190px, 20vw, 255px);
  height: auto;
}

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

.site-nav a:not(.button) {
  position: relative;
  padding: 0.5rem 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.27rem auto;
  content: "";
  background: var(--wine-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(0.29rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-0.29rem) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 8rem);
  background:
    radial-gradient(circle at 16% 10%, rgba(229, 204, 164, 0.52), transparent 25rem),
    linear-gradient(135deg, #fbf7f0 0%, #f1e6d8 100%);
}

.hero::before {
  position: absolute;
  top: -15rem;
  left: 54%;
  width: 43rem;
  height: 43rem;
  border: 1px solid rgba(142, 46, 53, 0.13);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__copy .lede {
  max-width: 620px;
  margin-bottom: 1.8rem;
}

.hero__note {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin: 1.3rem 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.hero__note::before {
  width: 2rem;
  height: 1px;
  content: "";
  background: var(--gold);
}

.hero__visual {
  position: relative;
  margin: 0;
}

.hero__visual::before {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 72%;
  height: 80%;
  border: 1px solid rgba(142, 46, 53, 0.28);
  border-radius: 48% 48% 1.4rem 1.4rem;
  content: "";
}

.hero__visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 0.88;
  border-radius: 48% 48% 1.4rem 1.4rem;
  object-fit: cover;
  object-position: 52% center;
  box-shadow: var(--shadow);
}

.hero__card {
  position: absolute;
  right: -1.4rem;
  bottom: 2rem;
  z-index: 3;
  width: min(260px, 72%);
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.hero__card strong,
.hero__card span {
  display: block;
}

.hero__card strong {
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
}

.hero__card span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -2rem;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 1.25rem;
  color: white;
  background: var(--wine-dark);
  box-shadow: var(--shadow);
}

.stat {
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.stat span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.portrait-frame {
  position: relative;
  width: min(100%, 480px);
  margin: 0 auto;
}

.portrait-frame::before {
  position: absolute;
  right: -1.2rem;
  bottom: -1.2rem;
  width: 70%;
  height: 75%;
  border: 1px solid var(--gold);
  border-radius: 1rem;
  content: "";
}

.portrait-frame img {
  position: relative;
  width: 100%;
  max-height: 660px;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.signature-quote {
  margin: 2rem 0;
  padding: 1.3rem 0 0 1.4rem;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.3vw, 1.65rem);
  font-style: italic;
  line-height: 1.45;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  margin: 2.5rem 0 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.service-feature img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.service-feature__copy {
  padding: clamp(2rem, 5vw, 4rem);
}

.service-feature__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.3rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.service-feature__copy li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--wine-dark);
  background: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.event-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  margin-top: 1rem;
}

.event-gallery figure {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 1.15rem;
  box-shadow: var(--shadow-soft);
}

.event-gallery img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-gallery figure:hover img {
  transform: scale(1.025);
}

.event-gallery figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0.85rem;
  color: white;
  background: rgba(50, 16, 22, 0.72);
  font-family: var(--serif);
  font-size: 1.15rem;
  backdrop-filter: blur(10px);
}

.service-card {
  position: relative;
  min-height: 245px;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.76);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  border-color: rgba(142, 46, 53, 0.34);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.service-card__number {
  display: inline-grid;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1.5rem;
  place-items: center;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  color: var(--wine);
  font-family: var(--serif);
}

.service-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}

.rating-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(28, 8, 12, 0.18);
}

.rating-card__score {
  display: block;
  color: white;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.9;
}

.stars {
  margin: 0.8rem 0 0.4rem;
  color: #f1cc78;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
}

.rating-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.review-quote {
  position: relative;
  margin: 0;
  color: white;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.7vw, 3.25rem);
  line-height: 1.28;
  text-wrap: balance;
}

.review-quote::before {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  content: "“";
  font-size: 5rem;
  line-height: 0.5;
}

.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.music-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.045;
  object-fit: cover;
  filter: invert(1);
  pointer-events: none;
}

.music-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(430px, 1.28fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.music-intro {
  position: sticky;
  top: 8rem;
}

.music-intro__photo {
  width: min(100%, 390px);
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 48% 48% 1.2rem 1.2rem;
  box-shadow: 0 24px 70px rgba(28, 8, 12, 0.24);
}

.music-intro__photo img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
}

.player {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(28, 8, 12, 0.3);
}

.now-playing {
  padding: 1.6rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fff 0%, #f5e9dd 100%);
}

.now-playing__meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.now-playing__label {
  color: var(--wine);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.now-playing__count {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.now-playing h3 {
  margin-bottom: 1rem;
}

.now-playing audio {
  width: 100%;
  height: 44px;
  accent-color: var(--wine);
}

.player-tools {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
}

.player-nav {
  display: flex;
  gap: 0.45rem;
}

.icon-button {
  display: inline-grid;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--wine-dark);
  background: white;
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--wine);
  background: var(--cream);
}

.track-search {
  min-width: 0;
  flex: 1;
}

.track-search input {
  width: 100%;
  min-height: 2.55rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: white;
}

.track-list {
  max-height: 560px;
  margin: 0;
  overflow-y: auto;
  padding: 0;
  list-style: none;
  overscroll-behavior: contain;
}

.track-list li + li {
  border-top: 1px solid var(--line);
}

.track-button {
  display: grid;
  width: 100%;
  grid-template-columns: 2.1rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

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

.track-button[aria-current="true"] {
  color: var(--wine-dark);
  background: #f4e2e0;
}

.track-number {
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
}

.track-button[aria-current="true"] .track-number {
  border-color: var(--wine);
  color: white;
  background: var(--wine);
}

.track-title {
  overflow: hidden;
  font-size: 0.88rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-length {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
}

.faq-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 1.25rem 3rem 1.25rem 0;
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  position: absolute;
  top: 1.25rem;
  right: 0.2rem;
  content: "+";
  color: var(--wine);
  font-family: var(--sans);
  font-weight: 300;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion details > div {
  padding: 0 2rem 1.3rem 0;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.contact-methods {
  display: grid;
  gap: 0.8rem;
  margin: 1.7rem 0;
}

.contact-method {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.contact-method:hover {
  border-color: var(--wine-light);
  color: var(--wine-dark);
  background: white;
}

.contact-method__icon {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--wine);
}

.contact-method__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-method strong,
.contact-method span {
  display: block;
}

.contact-method span {
  color: var(--ink-soft);
  font-size: 0.77rem;
}

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

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

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid #cfc3b7;
  border-radius: 0.7rem;
  color: var(--ink);
  background: #fffefb;
}

.field textarea {
  min-height: 145px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--wine);
  outline: 2px solid rgba(142, 46, 53, 0.16);
  outline-offset: 1px;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.form-footer {
  display: flex;
  grid-column: 1 / -1;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.form-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.turnstile-slot {
  grid-column: 1 / -1;
  min-height: 0;
}

.form-footer .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: 0.7rem;
  color: #624312;
  background: #fff2ce;
  font-size: 0.86rem;
}

.form-status.is-visible {
  display: block;
}

.form-status[data-state="success"] {
  color: #174d2c;
  background: #dff4e6;
}

.form-status[data-state="error"] {
  color: #761f2a;
  background: #f8dfe2;
}

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(182, 138, 74, 0.25), transparent 25rem),
    var(--cream);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.breadcrumb {
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.breadcrumb a {
  font-weight: 700;
}

.policy-content h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.policy-content ul {
  padding-left: 1.25rem;
}

.cta-band {
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius);
  color: white;
  background:
    linear-gradient(115deg, rgba(94, 24, 32, 0.98), rgba(142, 46, 53, 0.9)),
    var(--wine-dark);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 700px;
  margin-bottom: 1.5rem;
  color: white;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.footer {
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.7);
  background: #321016;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.3fr) repeat(2, minmax(160px, 0.7fr));
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__logo {
  width: min(300px, 100%);
  padding: 1rem;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.94);
}

.footer h2 {
  margin-bottom: 0.8rem;
  color: white;
  font-size: 1rem;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer a:hover {
  color: white;
  text-decoration: underline;
}

.footer__bottom {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.78rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom p a {
  text-decoration: underline;
}

.back-to-top {
  display: inline-grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1000px) {
  .site-nav {
    gap: 0.9rem;
  }

  .site-nav .button {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  }

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

@media (max-width: 780px) {
  html {
    scroll-padding-top: 5.5rem;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__inner p:first-child {
    display: none;
  }

  .header__inner {
    min-height: 4.8rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: calc(4.8rem + 31px) 0 auto;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 4.8rem - 31px);
    overflow-y: auto;
    padding: 1rem 1.25rem 1.4rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 40px rgba(62, 37, 31, 0.14);
    transform: translateY(-140%);
    visibility: hidden;
    transition: transform 0.25s ease, visibility 0.25s ease;
  }

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

  .site-nav a:not(.button) {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
  }

  .site-nav a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    display: inline-flex;
    margin-top: 1rem;
  }

  .hero__grid,
  .split,
  .service-feature,
  .event-gallery,
  .reviews-layout,
  .music-layout,
  .faq-preview,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding-right: 0;
  }

  .hero__visual {
    width: min(92%, 520px);
    margin-inline: auto;
  }

  .hero__visual img {
    aspect-ratio: 1 / 1.05;
  }

  .hero__card {
    right: -0.8rem;
  }

  .service-feature img {
    min-height: 330px;
  }

  .service-feature__copy {
    order: 2;
  }

  .music-intro {
    position: static;
  }

  .music-intro__photo {
    display: none;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(100% - 1.4rem, 1180px);
  }

  .section {
    padding: 4.25rem 0;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .hero {
    padding-top: 3.3rem;
  }

  .hero__visual {
    width: 94%;
  }

  .hero__card {
    right: 0;
    bottom: 1rem;
  }

  .portrait-frame::before {
    right: 0;
    bottom: -0.75rem;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .stat {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: center;
    text-align: left;
  }

  .stat + .stat {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .stat span {
    margin-top: 0;
  }

  .services-grid,
  .contact-form,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__brand,
  .field--full,
  .form-footer {
    grid-column: auto;
  }

  .form-footer,
  .footer__bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .form-footer .button {
    width: 100%;
  }

  .music-layout {
    gap: 1.5rem;
  }

  .player-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .player-nav {
    justify-content: flex-end;
  }

  .track-list {
    max-height: 470px;
  }

  .track-title {
    white-space: normal;
  }
}

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

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

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

@media print {
  .topbar,
  .site-header,
  .button-row,
  .player,
  .contact-form,
  .back-to-top {
    display: none !important;
  }

  body {
    color: black;
    background: white;
  }

  .section,
  .page-hero {
    padding: 2rem 0;
  }

  .section--dark,
  .footer {
    color: black;
    background: white;
  }

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