:root {
  --ink: #171613;
  --charcoal: #211f1b;
  --charcoal-soft: #2b2924;
  --paper: #f5f1e8;
  --paper-deep: #ebe4d7;
  --white: #fffdf8;
  --gold: #b4893f;
  --gold-dark: #76551c;
  --wine: #7c3046;
  --green: #255e4a;
  --muted: #686158;
  --line: rgba(23, 22, 19, 0.16);
  --line-light: rgba(255, 253, 248, 0.18);
  --shadow: 0 22px 55px rgba(23, 22, 19, 0.12);
  --radius: 6px;
  --max: 1180px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.intro-loading {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100%, 780px);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: #e4bf78;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  font-size: 68px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 25px;
}

p {
  margin: 0 0 18px;
}

.lead {
  max-width: 760px;
  font-size: 20px;
  line-height: 1.55;
}

.muted {
  color: var(--muted);
}

.mobile-copy {
  display: none;
}

/* Brief brand intro */
.site-loader {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--paper);
  opacity: 1;
  visibility: visible;
  transition: opacity 360ms ease, visibility 360ms ease;
}

.site-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
}

.site-loader-inner {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.site-loader img {
  width: 164px;
  height: auto;
}

.loader-equalizer {
  height: 30px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.loader-equalizer span {
  width: 3px;
  height: 28px;
  display: block;
  background: var(--gold);
  transform: scaleY(0.28);
  transform-origin: center bottom;
  animation: loader-level 560ms ease-in-out infinite alternate;
}

.loader-equalizer span:nth-child(2) {
  animation-delay: -360ms;
}

.loader-equalizer span:nth-child(3) {
  animation-delay: -180ms;
}

.loader-equalizer span:nth-child(4) {
  animation-delay: -460ms;
}

.loader-equalizer span:nth-child(5) {
  animation-delay: -90ms;
}

@keyframes loader-level {
  to {
    transform: scaleY(1);
  }
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding: 72px 0;
}

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

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

.section-dark {
  color: var(--white);
  background: var(--charcoal);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-heading > p {
  color: #d2cbc0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: #15120c;
  background: #d2a650;
  border-color: #d2a650;
}

.button-primary:hover {
  background: #e0bb72;
  border-color: #e0bb72;
}

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

.button-dark:hover {
  background: #36322b;
  border-color: #36322b;
}

.button-outline {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.button-outline:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-outline-dark:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button-small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 800;
}

.text-link::after {
  content: "\203A";
  font-size: 22px;
  line-height: 1;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.mix-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.mix-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 126px;
  height: 76px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 19px;
}

.nav-menu > a {
  position: relative;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-menu > a:not(.button):hover::after,
.nav-menu > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-lines {
  width: 20px;
  display: grid;
  gap: 5px;
}

.nav-toggle-lines span {
  width: 100%;
  height: 2px;
  display: block;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

/* Homepage hero */
.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #171613;
}

.hero-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 11%;
  transform: translateX(12%);
  filter: saturate(0.84) contrast(1.05);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 11, 10, 0.96) 0%, rgba(12, 11, 10, 0.84) 42%, rgba(12, 11, 10, 0.25) 74%, rgba(12, 11, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(12, 11, 10, 0.52) 0%, transparent 45%);
}

.hero::after {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 38%;
  height: 4px;
  content: "";
  background: var(--gold);
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 92px 0 102px;
}

.hero-copy {
  width: min(690px, 64%);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: #e9e4da;
  font-size: 20px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #eee7db;
  font-size: 14px;
  font-weight: 700;
}

.hero-facts li {
  position: relative;
  padding-left: 15px;
}

.hero-facts li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.trust-strip {
  color: var(--white);
  background: var(--charcoal-soft);
  border-bottom: 1px solid var(--line-light);
}

.trust-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  border-right: 1px solid var(--line-light);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

.trust-grid span:first-child {
  border-left: 1px solid var(--line-light);
}

/* Content blocks */
.specialist-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 84px;
  align-items: start;
}

.specialist-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.music-list li {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
}

.music-list li:nth-child(odd) {
  margin-right: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(180, 137, 63, 0.68);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  color: var(--gold-dark);
  border: 1px solid rgba(180, 137, 63, 0.5);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 850;
}

.service-card h3 {
  margin-bottom: 14px;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

.service-card .text-link {
  margin-top: auto;
}

.wedding-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 86px;
  align-items: center;
}

.wedding-layout p {
  color: #d7d0c5;
  font-size: 18px;
}

.wedding-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.wedding-detail {
  min-height: 154px;
  padding: 24px 26px 24px 0;
  border-bottom: 1px solid var(--line-light);
}

.wedding-detail:nth-child(odd) {
  margin-right: 24px;
  border-right: 1px solid var(--line-light);
}

.wedding-detail h3 {
  margin-bottom: 10px;
  color: #e2bd76;
  font-size: 22px;
}

.wedding-detail p {
  margin: 0;
  color: #d8d1c5;
  font-size: 15px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 84px;
  align-items: center;
}

.story-portrait {
  position: relative;
  margin: 0;
}

.story-portrait picture {
  display: block;
}

.story-portrait::before {
  position: absolute;
  z-index: 0;
  top: -16px;
  right: -16px;
  width: 58%;
  height: 48%;
  content: "";
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}

.story-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: 2px;
}

.story-portrait figcaption {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.story-copy p {
  color: var(--muted);
  font-size: 18px;
}

.plain-list {
  margin: 26px 0 30px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plain-list li {
  position: relative;
  padding: 13px 0 13px 24px;
  border-bottom: 1px solid var(--line);
}

.plain-list li::before {
  position: absolute;
  top: 22px;
  left: 2px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--wine);
  transform: rotate(45deg);
}

.highlights-band {
  overflow: hidden;
  color: var(--white);
  background: var(--wine);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.highlights-grid p {
  color: #f2e8eb;
  font-size: 18px;
}

.channel-links {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.channel-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 800;
  text-decoration: none;
}

.channel-link span:last-child {
  font-size: 22px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.review-mark {
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
}

.review-card blockquote {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.5;
}

.review-card cite {
  margin-top: auto;
  font-style: normal;
  font-weight: 800;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.step {
  min-height: 235px;
  padding: 30px 24px;
  border-right: 1px solid var(--line-light);
}

.step:last-child {
  border-right: 0;
}

.step span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--ink);
  border-radius: 50%;
  background: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.step p {
  margin: 0;
  color: #d2cbc0;
  font-size: 15px;
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 86px;
  align-items: start;
}

.area-grid p {
  color: var(--muted);
  font-size: 18px;
}

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

.area-list li {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.area-list li:nth-child(odd) {
  margin-right: 28px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 23px 54px 23px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  content: "+";
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 20px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list details p {
  max-width: 850px;
  padding: 0 60px 22px 0;
  color: var(--muted);
}

/* Availability and enquiry */
.availability-band {
  color: var(--white);
  background: var(--green);
}

.availability-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: 70px;
  align-items: center;
}

.availability-grid p {
  color: #deebe5;
}

.availability-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.availability-form label {
  margin: 0;
}

.availability-result {
  grid-column: 1 / -1;
  min-height: 28px;
  margin: 2px 0 0;
  color: #f7f2e8;
  font-weight: 750;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1.25fr);
  gap: 80px;
  align-items: start;
}

.contact-options {
  margin-top: 34px;
  border-top: 1px solid var(--line-light);
}

.contact-option {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
}

.contact-option span {
  display: block;
  color: #c8c0b4;
  font-size: 13px;
  font-weight: 700;
}

.contact-option strong {
  display: block;
  color: var(--white);
  overflow-wrap: anywhere;
}

.enquiry-form {
  padding: 34px;
  color: var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.enquiry-form h3 {
  margin-bottom: 8px;
}

.enquiry-form > p {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.field {
  display: grid;
  gap: 7px;
}

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

.field span,
.field > label {
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea,
.availability-form input {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(23, 22, 19, 0.32);
  border-radius: 3px;
  background: #fffefa;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus,
.availability-form input:focus {
  border-color: var(--gold-dark);
  outline: 3px solid rgba(180, 137, 63, 0.22);
  outline-offset: 0;
}

.check-field {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 14px;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 24px;
  grid-column: 1 / -1;
  margin: 0;
  font-weight: 750;
}

.form-status.is-error {
  color: #9a2138;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

/* Internal pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  color: var(--white);
  background: var(--charcoal);
}

.page-hero::after {
  position: absolute;
  right: -6%;
  bottom: -2px;
  width: 42%;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: rotate(-8deg);
  transform-origin: right;
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: 60px;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: #ded7cb;
  font-size: 20px;
}

.breadcrumbs {
  margin-bottom: 24px;
  color: #c8c0b4;
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--white);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 80px;
  align-items: start;
}

.prose h2 {
  margin: 48px 0 18px;
  font-size: 36px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 32px 0 12px;
  font-size: 24px;
}

.prose p,
.prose li {
  color: #4e4942;
  font-size: 17px;
}

.prose ul,
.prose ol {
  padding-left: 23px;
}

.prose li {
  margin-bottom: 9px;
}

.side-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 28px;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--charcoal);
}

.side-panel h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.side-panel p {
  color: #d4cdc1;
}

.side-links {
  margin: 24px 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.side-links a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-light);
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-list div {
  min-height: 135px;
  padding: 24px;
  background: var(--white);
}

.feature-list h3 {
  margin-bottom: 9px;
  color: var(--gold-dark);
  font-size: 21px;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.related-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.related-card p {
  color: var(--muted);
}

.related-card .text-link {
  margin-top: auto;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.contact-page-grid .enquiry-form {
  border: 1px solid var(--line);
}

.contact-page-options {
  border-top: 1px solid var(--line);
}

.contact-page-options .contact-option {
  border-bottom-color: var(--line);
}

.contact-page-options .contact-option span {
  color: var(--muted);
}

.contact-page-options .contact-option strong {
  color: var(--ink);
}

.legal-card {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-card h2 {
  margin: 36px 0 14px;
  font-size: 30px;
}

.legal-card h1 {
  margin-bottom: 12px;
  font-size: 50px;
}

.legal-card p,
.legal-card li {
  color: #4e4942;
}

.not-found {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
}

.not-found h1 {
  margin-bottom: 18px;
}

/* Footer */
.site-footer {
  padding: 70px 0 28px;
  color: var(--ink);
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.75fr 0.9fr;
  gap: 50px;
}

.footer-brand img {
  width: 142px;
  height: 88px;
  object-fit: contain;
  margin-bottom: 15px;
}

.footer-brand p {
  max-width: 330px;
  color: var(--muted);
}

.footer-column h2 {
  margin-bottom: 18px;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 15px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #4f4a43;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 18px;
  bottom: 18px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  background: var(--green);
  box-shadow: 0 10px 28px rgba(23, 22, 19, 0.22);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 460ms ease var(--reveal-delay, 0ms), transform 460ms ease var(--reveal-delay, 0ms);
}

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

/* Responsive */
@media (max-width: 1140px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    z-index: 1001;
    top: 100%;
    right: 0;
    bottom: auto;
    width: min(420px, 100%);
    height: calc(100vh - var(--header-height));
    height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 32px;
    overflow-y: auto;
    background: var(--white);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .nav-menu.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-menu > a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

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

  .nav-menu .button {
    margin-top: 18px;
  }

  .section-heading,
  .specialist-grid,
  .wedding-layout,
  .story-grid,
  .area-grid,
  .availability-grid,
  .enquiry-grid,
  .content-layout,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 20px;
  }

  .specialist-grid,
  .wedding-layout,
  .story-grid,
  .area-grid,
  .availability-grid,
  .enquiry-grid,
  .content-layout,
  .contact-page-grid {
    gap: 48px;
  }

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

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

  .review-card {
    min-height: auto;
  }

  .side-panel {
    position: static;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(calc(100% - 30px), var(--max));
  }

  .brand img {
    width: 105px;
    height: 68px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .section {
    padding: 78px 0;
  }

  .section-tight {
    padding: 58px 0;
  }

  .hero {
    min-height: 650px;
  }

  .hero-media {
    object-position: 50% 12%;
    transform: translateX(7%);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(12, 11, 10, 0.94) 0%, rgba(12, 11, 10, 0.72) 65%, rgba(12, 11, 10, 0.4) 100%),
      linear-gradient(0deg, rgba(12, 11, 10, 0.74) 0%, transparent 56%);
  }

  .hero-inner {
    padding: 78px 0 86px;
  }

  .hero-copy {
    width: min(100%, 650px);
  }

  .hero h1 {
    max-width: 600px;
  }

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

  .trust-grid span,
  .trust-grid span:first-child {
    min-height: 70px;
    border: 0;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
  }

  .trust-grid span:nth-child(even) {
    border-right: 0;
  }

  .trust-grid span:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .service-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
  }

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

  .step {
    border-bottom: 1px solid var(--line-light);
  }

  .step:nth-child(even) {
    border-right: 0;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .page-hero {
    padding: 76px 0 70px;
  }

  .page-hero h1 {
    font-size: 48px;
  }

  .footer-grid {
    gap: 38px;
  }
}

@media (max-width: 580px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 15.5px;
    line-height: 1.6;
  }

  .container {
    width: calc(100% - 32px);
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 21px;
  }

  .lead,
  .hero-lead,
  .page-hero p {
    font-size: 16.5px;
  }

  .brand img {
    width: 92px;
    height: 58px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-menu {
    height: calc(100svh - var(--header-height));
    padding: 12px 20px 24px;
  }

  .nav-menu > a {
    padding: 13px 0;
    font-size: 16px;
  }

  .nav-menu > a[href="/#reviews"],
  .nav-menu > a[href="/faq/"] {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-tight {
    padding: 48px 0;
  }

  .section-heading {
    gap: 0;
    margin-bottom: 30px;
  }

  .section-heading > p,
  .mobile-optional {
    display: none;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .hero {
    min-height: min(650px, calc(100svh - var(--header-height) - 48px));
  }

  .hero-media {
    object-position: 50% 14%;
    transform: none;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(12, 11, 10, 0.88) 0%, rgba(12, 11, 10, 0.46) 100%),
      linear-gradient(0deg, rgba(12, 11, 10, 0.9) 0%, rgba(12, 11, 10, 0.14) 76%);
  }

  .hero-inner {
    display: flex;
    align-items: flex-end;
    min-height: min(650px, calc(100svh - var(--header-height) - 48px));
    padding: 44px 0 46px;
  }

  .hero .eyebrow {
    margin-bottom: 11px;
    font-size: 11.5px;
  }

  .hero h1 {
    margin-bottom: 18px;
    line-height: 1.04;
  }

  .hero-lead {
    max-width: 330px;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .hero-actions,
  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-secondary-action,
  .hero-facts,
  #weddings .button-outline {
    display: none;
  }

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

  .trust-grid span:nth-child(2),
  .trust-grid span:nth-child(5) {
    display: none;
  }

  .trust-grid span,
  .trust-grid span:first-child,
  .trust-grid span:nth-child(even),
  .trust-grid span:last-child {
    min-height: 62px;
    padding: 10px 7px;
    border: 0;
    border-right: 1px solid var(--line-light);
    font-size: 11.5px;
    line-height: 1.35;
  }

  .trust-grid span:nth-child(4) {
    border-right: 0;
  }

  .specialist-grid,
  .wedding-layout,
  .story-grid,
  .area-grid,
  .availability-grid,
  .enquiry-grid {
    gap: 32px;
  }

  .specialist-copy p,
  .wedding-layout p,
  .story-copy p,
  .highlights-grid p,
  .area-grid p {
    font-size: 16px;
  }

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

  .music-list li {
    min-height: 58px;
    padding: 12px 8px 12px 0;
    font-size: 16px;
    line-height: 1.3;
  }

  .service-grid,
  .review-grid {
    display: flex;
    gap: 12px;
    margin-inline: -16px;
    padding: 0 16px 12px;
    overflow-x: auto;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-grid::-webkit-scrollbar,
  .review-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card,
  .review-card {
    flex: 0 0 min(82vw, 318px);
    min-height: 0;
    padding: 24px;
    scroll-snap-align: start;
  }

  .service-number {
    width: 36px;
    height: 36px;
    margin-bottom: 22px;
  }

  .service-card p {
    margin-bottom: 18px;
  }

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

  .wedding-detail,
  .wedding-detail:nth-child(odd) {
    min-height: 0;
    margin-right: 0;
    padding: 18px 12px 18px 0;
  }

  .wedding-detail:nth-child(odd) {
    margin-right: 12px;
    border-right: 1px solid var(--line-light);
  }

  .wedding-detail h3 {
    font-size: 18px;
  }

  .wedding-detail p {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .story-portrait img {
    aspect-ratio: 4 / 4.6;
  }

  .story-portrait figcaption {
    display: none;
  }

  .plain-list {
    margin: 20px 0 24px;
  }

  .highlights-grid {
    gap: 28px;
  }

  .review-card blockquote {
    font-size: 18px;
  }

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

  .step,
  .step:nth-child(even) {
    min-height: 0;
    padding: 22px 15px;
    border-right: 1px solid var(--line-light);
  }

  .step:nth-child(even) {
    border-right: 0;
  }

  .step span {
    width: 32px;
    height: 32px;
    margin-bottom: 18px;
  }

  .step h3 {
    font-size: 18px;
  }

  .step p {
    font-size: 13.5px;
  }

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

  .area-list li {
    padding: 13px 0;
    font-size: 14px;
  }

  .faq-list details:nth-child(n + 5) {
    display: none;
  }

  .faq-list summary {
    padding: 18px 44px 18px 0;
    font-size: 18px;
  }

  .faq-list details p {
    padding: 0 44px 18px 0;
  }

  .availability-grid > div > p:not(.eyebrow) {
    display: none;
  }

  #enquiry .lead,
  .mobile-optional-field,
  .contact-option:nth-child(3) {
    display: none;
  }

  .contact-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
  }

  .contact-option {
    min-width: 0;
    padding: 14px 10px 14px 0;
  }

  .contact-option + .contact-option {
    padding-left: 12px;
    border-left: 1px solid var(--line-light);
  }

  .contact-option strong {
    font-size: 14px;
  }

  .feature-list,
  .form-grid,
  .availability-form {
    grid-template-columns: 1fr;
  }

  .music-list li:nth-child(odd),
  .area-list li:nth-child(odd) {
    margin-right: 12px;
  }

  .story-portrait::before {
    right: -8px;
  }

  .availability-form .button {
    width: 100%;
  }

  .enquiry-form {
    padding: 24px 18px;
  }

  .form-grid {
    gap: 14px;
  }

  .field textarea {
    min-height: 104px;
  }

  .field-full,
  .check-field,
  .form-actions,
  .form-status {
    grid-column: auto;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .legal-card {
    padding: 30px 20px;
  }

  .legal-card h1 {
    font-size: 40px;
  }

  .site-footer {
    padding: 46px 0 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-brand img {
    width: 110px;
    height: 68px;
    margin-bottom: 0;
  }

  .footer-brand p {
    display: none;
  }

  .footer-links {
    gap: 7px;
    font-size: 14px;
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
    margin-top: 34px;
  }

  .reveal {
    transform: translateY(8px);
    transition-duration: 360ms;
  }

  .floating-whatsapp {
    display: none;
  }
}

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

  .site-loader,
  .mix-progress {
    display: none;
  }

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

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