@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Raleway:wght@200;300;400;500;600&display=swap");

:root {
  --white: #ffffff;
  --page: #faf8f5;
  --surface: #ffffff;
  --surface-soft: #f4efea;
  --surface-muted: #e8e2d9;
  --cream: #f4efea;
  --warm-grey: #e8e2d9;
  --ink: #1c1814;
  --charcoal: #2e2820;
  --text: #3d3428;
  --muted: #7a6e62;
  --pale-muted: #a89e92;
  --line: #ddd7ce;
  --gold: #9a7c3f;
  --gold-mid: #b8963e;
  --gold-light: #c9a84c;
  --focus: #9a7c3f;
  --max: 1400px;
  --radius: 0;
  --space: clamp(72px, 8vw, 120px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 0.94rem;
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  z-index: 20;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 106px;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  overflow: visible;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.site-header::before {
  top: 0;
  height: 30px;
  background: var(--gold);
}

.site-header::after {
  top: 30px;
  height: 76px;
  border-bottom: 1px solid rgba(221, 215, 206, 0.62);
  background: #fff;
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

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

.brand img {
  width: auto;
  height: 58px;
  display: block;
}

.desktop-header-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2.6vw, 42px);
  width: 100%;
  height: 76px;
}

.desktop-brand {
  --header-logo-size: clamp(86px, 6.2vw, 106px);
  display: grid;
  place-items: center;
  width: calc(var(--header-logo-size) + 20px);
  height: 76px;
  align-self: center;
  justify-self: center;
  z-index: 2;
  position: relative;
  isolation: isolate;
}

.desktop-brand::before,
.desktop-brand::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--header-logo-size) + 20px);
  height: calc(var(--header-logo-size) + 20px);
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.desktop-brand::after {
  border: 1px solid rgba(221, 215, 206, 0.62);
  background: transparent;
  clip-path: inset(calc(50% + 38px) 0 0 0);
  z-index: 0;
  pointer-events: none;
}

.desktop-brand img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: var(--header-logo-size);
  filter: drop-shadow(0 12px 22px rgba(28, 24, 20, 0.08));
  transform: translate(-50%, -50%);
}

.mobile-brand {
  display: none;
}

.brand strong {
  font-family: "Playfair Display", serif;
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand span {
  color: var(--pale-muted);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-logo-img {
  width: 92px;
  height: auto;
  display: block;
  opacity: 0.82;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 10px 12px;
  min-width: 44px;
  min-height: 44px;
  font: inherit;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 2vw, 26px);
  min-width: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.5vw, 22px);
}

.primary-nav-left {
  justify-content: flex-end;
}

.primary-nav-right {
  justify-content: flex-start;
}

.mobile-primary-nav {
  display: none;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  border-radius: 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav a[aria-current="page"] {
  background: transparent;
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.primary-nav .nav-brochure {
  color: var(--gold);
  font-weight: 800;
}

.primary-nav .nav-brochure:hover,
.primary-nav .nav-brochure:focus {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.wire-hero,
.wire-section {
  border-bottom: 1px solid var(--line);
}

.wire-hero {
  padding: 106px 0 0;
  background: var(--off-white, #faf8f5);
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.wire-section {
  padding: var(--space) 0;
  position: relative;
  overflow: hidden;
}

.wire-section:nth-of-type(even) {
  background: var(--page);
}

.hero-grid,
.split-grid,
.three-grid,
.two-grid {
  display: grid;
  gap: 18px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}

.wire-hero .section-inner {
  width: 100%;
  max-width: none;
}

.wire-hero .stack {
  justify-content: center;
  min-height: calc(100vh - 88px);
  padding: clamp(56px, 8vw, 120px) clamp(28px, 7vw, 88px);
  transform: translateY(clamp(-32px, -2vw, -18px));
}

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

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

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

.stack {
  display: grid;
  gap: 16px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.service-choice-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 780px) auto;
  align-items: end;
  gap: 18px clamp(24px, 4vw, 60px);
  max-width: none;
}

.service-choice-section {
  padding-top: clamp(54px, 5vw, 76px);
}

.service-choice-section .section-heading .eyebrow,
.service-choice-section .section-heading h2 {
  grid-column: 1;
}

.service-choice-section .section-action {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  color: var(--ink);
}

h1 {
  max-width: 900px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4.8vw, 4.9rem);
  font-weight: 400;
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: italic;
}

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

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.95rem, 3vw, 3.05rem);
  font-weight: 400;
}

h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

p {
  margin: 0;
}

.lede {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.25vw, 1rem);
  line-height: 1.95;
}

.wire-box,
.wire-card,
.wire-panel,
.form-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.wire-box {
  min-height: 420px;
  display: grid;
  align-items: end;
  justify-items: start;
  padding: 20px;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
  background:
    linear-gradient(to top, rgba(28, 24, 20, 0.72), rgba(28, 24, 20, 0.08)),
    url("/assets/img/optimized/wedding-confetti.webp") center/cover;
  overflow: hidden;
  font-family: "Playfair Display", serif;
  font-style: italic;
  position: relative;
}

.wire-box.image-venue {
  background-image:
    linear-gradient(to top, rgba(28, 24, 20, 0.72), rgba(28, 24, 20, 0.08)),
    url("/assets/img/optimized/venue-dining-room.webp");
}

.wire-box.image-quayside {
  background-image:
    linear-gradient(to top, rgba(28, 24, 20, 0.72), rgba(28, 24, 20, 0.08)),
    url("/assets/img/optimized/wedding-quayside-couple.webp");
}

.wire-box.image-catering {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("/assets/img/optimized/menu-card-conventional.webp");
  background-position: center;
  background-size: cover;
}

.wire-box.image-food {
  background-image:
    linear-gradient(to top, rgba(28, 24, 20, 0.72), rgba(28, 24, 20, 0.08)),
    url("/assets/img/optimized/food-cocktail-dessert.webp");
}

.wire-box.image-gallery-dessert {
  background-image:
    linear-gradient(to top, rgba(28, 24, 20, 0.72), rgba(28, 24, 20, 0.08)),
    url("/assets/img/optimized/food-gallery-mar2024-62.webp");
  background-position: right center;
}

.wire-box.image-couple {
  background-image:
    linear-gradient(to top, rgba(28, 24, 20, 0.72), rgba(28, 24, 20, 0.08)),
    url("/assets/img/optimized/wedding-quayside-couple.webp");
}

.wire-box.image-bride {
  background-image:
    linear-gradient(to top, rgba(28, 24, 20, 0.72), rgba(28, 24, 20, 0.08)),
    url("/assets/img/optimized/wedding-family-moment.webp");
}

.wire-box.image-confetti {
  background-image:
    linear-gradient(to top, rgba(28, 24, 20, 0.72), rgba(28, 24, 20, 0.08)),
    url("/assets/img/optimized/wedding-confetti.webp");
}

.wire-box.image-dessert {
  background-image:
    linear-gradient(to top, rgba(28, 24, 20, 0.72), rgba(28, 24, 20, 0.08)),
    url("/assets/img/optimized/food-dessert-pour.webp");
}

.wire-box,
.placeholder-thumb {
  color: transparent;
  font-size: 0;
}

.wire-card,
.wire-panel,
.form-shell {
  padding: clamp(28px, 4vw, 52px);
}

.wire-panel h3 {
  margin-bottom: 16px;
}

.wire-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 230px;
  transition: background 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.wire-card:hover {
  background: var(--page);
  box-shadow: 0 4px 40px rgba(28, 24, 20, 0.06);
}

.wire-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.wire-card:hover::before {
  transform: scaleX(1);
}

.tasting-faq,
.planning-faq {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.tasting-faq-section .split-grid,
.planning-faq-section .split-grid {
  align-items: start;
}

.tasting-faq-section .list-check,
.planning-faq-section .list-check {
  margin-top: 8px;
  gap: 18px;
}

.tasting-faq details,
.planning-faq details {
  border: 1px solid var(--line);
  background: var(--white);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.tasting-faq details[open],
.planning-faq details[open] {
  border-color: rgba(154, 124, 63, 0.42);
  background: var(--page);
  box-shadow: 0 16px 38px rgba(28, 24, 20, 0.05);
}

.tasting-faq summary,
.planning-faq summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 62px;
  padding: 20px 64px 20px 24px;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.tasting-faq summary::-webkit-details-marker,
.planning-faq summary::-webkit-details-marker {
  display: none;
}

.tasting-faq summary::after,
.planning-faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  color: var(--gold);
  font-family: "Raleway", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.tasting-faq details[open] summary::after,
.planning-faq details[open] summary::after {
  content: "–";
}

.tasting-faq p,
.planning-faq p {
  margin: -4px 24px 22px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.85;
}

.ticker {
  background: var(--ink);
  padding: 16px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 0;
  width: max-content;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ticker-dot {
  position: relative;
  width: 12px;
  height: 12px;
  margin: 0 28px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.ticker-dot::before,
.ticker-dot::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

.ticker-dot::before {
  left: 0;
  top: 3px;
}

.ticker-dot::after {
  left: 4px;
  top: 1px;
  border-color: rgba(154, 124, 63, 0.78);
}

.gallery-section {
  padding: 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.gallery-section.compact-gallery .gallery-grid {
  grid-template-rows: 300px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 380px;
  gap: 3px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

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

.venue-gallery-section {
  background: var(--page);
}

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(230px, 18vw);
  column-gap: 10px;
  row-gap: 10px;
}

.full-gallery-item {
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  position: relative;
  background: var(--ink);
  cursor: zoom-in;
}

.full-gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.full-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, opacity 0.65s ease;
}

.full-gallery-item:hover img {
  opacity: 0.92;
  transform: scale(1.045);
}

body.lightbox-open {
  overflow: hidden;
}

.full-gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(20, 16, 9, 0.88);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox img {
  display: block;
  max-width: min(100%, 1380px);
  max-height: 86vh;
  border: 1px solid rgba(154, 124, 63, 0.7);
  object-fit: contain;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox button {
  position: absolute;
  top: clamp(14px, 2.4vw, 28px);
  right: clamp(14px, 2.4vw, 28px);
  min-height: 42px;
  border-color: rgba(154, 124, 63, 0.7);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.wire-card p,
.wire-panel p,
.list-check li {
  color: var(--muted);
}

.route-card {
  min-height: 330px;
}

.included-section {
  background: var(--white);
  padding-top: 120px;
  padding-bottom: 120px;
}

.included-section::before {
  display: none;
}

.included-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.included-heading h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(1.95rem, 3vw, 3.05rem);
  line-height: 1.15;
}

.included-heading .lede {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.9;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

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

.included-item {
  min-height: 0;
  padding: 52px 44px;
  background: var(--page);
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}

.included-item:hover {
  background: var(--surface-soft);
}

.venue-details-section .included-item {
  background: var(--white);
}

.included-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.included-item:hover::before {
  transform: scaleX(1);
}

.included-item span {
  display: block;
  margin-bottom: 20px;
  color: #e6dfd5;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
}

.included-item h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 500;
}

.included-item p {
  max-width: 420px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.85;
}

.included-item a {
  display: inline;
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-color: rgba(154, 124, 63, 0.2);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
  text-transform: uppercase;
}

.included-item a:hover {
  color: var(--ink);
  text-decoration-color: var(--gold);
}

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

.menu-download-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.menu-download-card {
  position: relative;
  display: flex;
  min-height: 230px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  padding: 32px 24px;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(rgba(28, 24, 20, 0.48), rgba(28, 24, 20, 0.48)),
    var(--menu-card-image, url("/assets/img/optimized/food-prep-detail.webp")) center/cover;
  text-align: center;
  text-decoration: none;
}

.menu-download-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(154, 124, 63, 0.24);
  opacity: 0;
  transition: opacity 0.35s;
}

.menu-download-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  opacity: 0;
  transition: opacity 0.35s;
}

.menu-download-card:hover::before,
.menu-download-card:focus-visible::before,
.menu-download-card:hover::after,
.menu-download-card:focus-visible::after {
  opacity: 1;
}

.menu-download-card-large {
  grid-column: span 2;
}

.menu-download-card span,
.menu-download-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: inherit;
  font-size: clamp(0.68rem, 0.8vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  line-height: 1.6;
  text-transform: uppercase;
}

.menu-download-card strong {
  font-weight: 500;
}

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

.section-heading.centered {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.venue-recommendations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.venue-recommendation-card {
  position: relative;
  display: grid;
  min-height: 230px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(rgba(28, 24, 20, 0.56), rgba(28, 24, 20, 0.56)),
    var(--venue-card-image, url("/assets/img/optimized/venue-dining-room.webp")) center/cover;
  text-align: center;
  text-decoration: none;
}

.venue-recommendation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(154, 124, 63, 0.28);
  opacity: 0;
  transition: opacity 0.35s;
}

.venue-recommendation-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  opacity: 0;
  transition: opacity 0.35s;
}

.venue-recommendation-card:hover::before,
.venue-recommendation-card:focus-visible::before,
.venue-recommendation-card:hover::after,
.venue-recommendation-card:focus-visible::after {
  opacity: 1;
}

.venue-recommendation-card-featured {
  grid-column: 1 / -1;
  min-height: 285px;
}

.venue-recommendation-card span {
  position: relative;
  z-index: 1;
  color: inherit;
  font-size: clamp(0.72rem, 0.9vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.reviews-carousel {
  display: grid;
  gap: 18px;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 76%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 76%, rgba(0, 0, 0, 0) 100%);
}

.reviews-carousel.is-at-end {
  -webkit-mask-image: none;
  mask-image: none;
}

.quick-proof {
  padding: clamp(34px, 4vw, 52px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.quick-proof::before {
  content: "";
  position: absolute;
  right: clamp(-120px, -6vw, -70px);
  top: 50%;
  width: clamp(220px, 22vw, 340px);
  aspect-ratio: 615.4 / 910.8;
  background: url("/assets/img/decoration-light.svg") center/contain no-repeat;
  opacity: 0.045;
  transform: translateY(-50%);
  pointer-events: none;
}

.quick-proof .section-inner {
  position: relative;
  z-index: 1;
}

.quick-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-proof-grid div {
  display: grid;
  gap: 8px;
  padding: clamp(22px, 2.5vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.quick-proof-grid div:last-child {
  border-right: 0;
}

.quick-proof-grid span {
  color: var(--gold);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.quick-proof-grid strong {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
  font-weight: 600;
}

.reviews-section .split-grid {
  gap: 50px;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 420px;
  gap: 28px;
  align-items: stretch;
  overflow-x: auto;
  padding-right: 1px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: grid;
  align-content: start;
  min-height: 315px;
  width: 100%;
  margin: 0;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid var(--line);
  background: var(--page);
  scroll-snap-align: start;
}

.review-card.featured {
  background: var(--surface);
  border-top: 2px solid var(--gold);
}

.review-stars {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.review-card blockquote {
  margin: 0;
  color: var(--text);
  font-family: "Playfair Display", serif;
  font-size: clamp(0.92rem, 1.12vw, 1.02rem);
  font-style: italic;
  line-height: 1.68;
}

.review-meta {
  display: inline-block;
  justify-self: start;
  margin-top: 18px;
  padding-bottom: 2px;
  color: var(--gold);
  border-bottom: 1px solid rgba(154, 124, 63, 0.2);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.6;
  text-transform: uppercase;
}

.reviews-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.reviews-dots button {
  width: 9px;
  height: 9px;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.reviews-dots button.is-active {
  background: var(--gold);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.cta-row .button.secondary {
  margin-top: 0;
  min-height: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  padding: 13px 24px;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.23em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.button:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

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

.button-dark:hover {
  border-color: #2d2720;
  background: #2d2720;
}

.wire-hero .button:not(.secondary) {
  border-color: var(--ink);
  background: var(--ink);
}

.wire-hero .button:not(.secondary):hover {
  border-color: #2d2720;
  background: #2d2720;
}

.button.secondary {
  justify-self: start;
  width: fit-content;
  margin-top: 16px;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--gold);
  border: 0;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
  line-height: 1.2;
}

.button.secondary:hover {
  background: transparent;
  color: var(--ink);
  text-decoration-color: var(--gold);
}

.button:focus,
.nav-toggle:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.list-check {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 30px;
}

.list-check li::before,
.list-check li::after {
  content: "";
  position: absolute;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.list-check li::before {
  left: 0;
}

.list-check li::after {
  left: 4px;
  top: 0.48em;
  border-color: rgba(154, 124, 63, 0.78);
}

.placeholder-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.placeholder-thumb {
  min-height: 140px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(to top, rgba(28, 24, 20, 0.62), rgba(28, 24, 20, 0.05)),
    url("/assets/img/optimized/venue-dining-room.webp") center/cover;
  display: grid;
  place-items: end start;
  text-align: left;
  padding: 12px;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

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

.wire-section.save-date-band {
  background: #1c1814;
  color: #fff;
  padding-top: clamp(72px, 7vw, 104px);
  padding-bottom: clamp(72px, 7vw, 104px);
  position: relative;
  overflow: hidden;
}

.save-date-band::before {
  content: "";
  position: absolute;
  right: clamp(-150px, -7vw, -70px);
  top: 50%;
  width: clamp(220px, 24vw, 360px);
  aspect-ratio: 615.4 / 910.8;
  background: url("/assets/img/decoration-light.svg") center/contain no-repeat;
  opacity: 0.055;
  transform: translateY(-50%);
  display: block;
  pointer-events: none;
}

.save-date-band::after {
  content: none;
}

.save-date-band .section-inner {
  position: relative;
  z-index: 1;
}

.save-date-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.save-date-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.save-date-band .lede {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.68);
}

.save-date-band h2,
.save-date-band h3 {
  color: #fff;
}

.save-date-band h2 em {
  color: var(--gold);
}

.save-date-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.42fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.save-date-form {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: none;
}

.save-date-form input,
.save-date-form select,
.save-date-form textarea {
  min-height: 46px;
  padding: 10px 14px;
}

.save-date-form .button {
  min-height: 46px;
  padding: 12px 22px;
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.form-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
  line-height: 1.6;
}

.compact-form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

@media (min-width: 981px) and (max-width: 1120px) {
  .save-date-grid {
    grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.5fr);
    gap: 26px;
  }

  .save-date-form {
    padding: 24px;
  }

  .compact-form-grid {
    gap: 10px;
  }

  .save-date-form .button {
    padding-inline: 16px;
    font-size: 0.56rem;
    letter-spacing: 0.18em;
  }
}

.wire-section.booking-form-section {
  background: #1c1814;
  color: #fff;
}

.booking-form-section::before {
  display: none;
}

.booking-form-section .eyebrow,
.booking-form-section .lede {
  color: rgba(255, 255, 255, 0.64);
}

.booking-form-section h2 {
  color: #fff;
}

.booking-form-section .form-shell {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.booking-form-section input,
.booking-form-section select,
.booking-form-section textarea {
  min-height: 46px;
  padding: 10px 14px;
}

.booking-form-section .button {
  min-height: 46px;
  padding: 12px 22px;
}

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

.form-turnstile {
  min-height: 0;
}

.form-turnstile:empty,
.cf-turnstile:empty {
  display: none;
}

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(154, 124, 63, 0.34);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.6;
}

.form-status[data-status="error"] {
  border-color: rgba(231, 201, 142, 0.62);
  color: #fff;
}

button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.consent-field label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  justify-content: start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.65;
  text-transform: none;
}

.consent-field input {
  min-height: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.consent-field a {
  color: var(--gold-light);
}

.booking-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
}

.hero-contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 22px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero-contact-details div {
  display: grid;
  gap: 6px;
}

.hero-contact-details dt {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-contact-details dd {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.3;
}

.hero-contact-details a {
  color: inherit;
  text-decoration: none;
}

.hero-contact-details a:hover {
  color: var(--gold);
}

.map-section {
  background: var(--surface);
}

.map-frame {
  position: relative;
  min-height: clamp(340px, 46vw, 560px);
  overflow: hidden;
  border: 1px solid var(--gold);
  background: var(--ink);
  box-shadow: 0 22px 54px rgba(28, 24, 20, 0.08);
}

.map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(154, 124, 63, 0.2), rgba(28, 24, 20, 0.28) 48%, rgba(28, 24, 20, 0.42)),
    rgba(28, 24, 20, 0.16);
  mix-blend-mode: multiply;
}

.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 3;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) saturate(0.18) contrast(0.9) sepia(0.08);
}

.cookie-embed-placeholder {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  padding: clamp(24px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(28, 24, 20, 0.92), rgba(28, 24, 20, 0.78)),
    url("/assets/img/decoration-light.svg") right -42px center / 190px auto no-repeat;
  color: #fff;
}

.cookie-embed-placeholder[hidden] {
  display: none;
}

.cookie-embed-placeholder strong {
  max-width: 520px;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.18;
}

.cookie-embed-placeholder p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.map-frame[data-cookie-embed] iframe:not([src]) {
  visibility: hidden;
}

.cookie-panel {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-panel[hidden] {
  display: none;
}

.cookie-panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  width: min(100%, 920px);
  padding: 24px;
  border: 1px solid rgba(154, 124, 63, 0.42);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(28, 24, 20, 0.22);
  pointer-events: auto;
}

.cookie-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.cookie-panel p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.cookie-panel a {
  color: var(--gold);
}

.cookie-actions {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  min-width: 270px;
}

.cookie-actions .button,
.cookie-embed-placeholder .button {
  margin-top: 0;
}

.cookie-actions .button.secondary {
  width: auto;
  min-width: 0;
  justify-self: center;
  padding: 0;
  text-align: center;
}

.cookie-settings-button {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 55;
  min-height: 38px;
  padding: 10px 14px;
  border: 1px solid rgba(154, 124, 63, 0.54);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(28, 24, 20, 0.12);
}

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

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

label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

label span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

input:focus,
select:focus,
textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}

select {
  cursor: pointer;
}

select option {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  padding: clamp(46px, 5vw, 68px) 0 28px;
  background: #141009;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: clamp(-130px, -7vw, -80px);
  top: clamp(20px, 4vw, 56px);
  width: clamp(230px, 23vw, 360px);
  aspect-ratio: 615.4 / 910.8;
  background: url("/assets/img/decoration-light.svg") center/contain no-repeat;
  opacity: 0.035;
  pointer-events: none;
}

.footer-inner {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(0, 0.8fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-brand-lockup {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.footer-brand-copy {
  display: grid;
  gap: 10px;
}

.footer-column h2,
.footer-column h3 {
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-column p,
.footer-small {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-content ul:not(.list-check) {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.policy-content ul:not(.list-check) li {
  position: relative;
  padding-left: 28px;
}

.policy-content ul:not(.list-check) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-inner .footer-cta {
  width: fit-content;
  min-height: 0;
  margin-top: 0;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(154, 124, 63, 0.45);
  background: transparent;
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-inner .footer-cta:hover {
  border-bottom-color: #fff;
  background: transparent;
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .footer-small {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: inherit;
}

.policy-content {
  max-width: 880px;
}

.policy-hero {
  min-height: 0;
  padding: 154px 0 70px;
  align-items: end;
  background: var(--off-white);
}

.policy-hero::after {
  content: "";
  position: absolute;
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: -42px;
  width: clamp(140px, 18vw, 240px);
  aspect-ratio: 615.4 / 910.8;
  background: url("/assets/img/decoration-dark.svg") center/contain no-repeat;
  opacity: 0.035;
  pointer-events: none;
}

.policy-hero .section-inner {
  width: min(100% - 32px, var(--max));
  max-width: var(--max);
}

.policy-hero .stack {
  min-height: 0;
  max-width: 780px;
  padding: 0;
  transform: none;
}

.policy-hero h1 {
  margin-bottom: 22px;
}

.policy-hero .lede {
  max-width: 720px;
  margin-bottom: 0;
}

.policy-section {
  padding: 72px 0 96px;
  background: var(--white);
}

.policy-section::before {
  content: "";
  position: absolute;
  left: max(22px, calc((100vw - var(--max)) / 2));
  top: 72px;
  width: 52px;
  height: 1px;
  background: var(--gold);
}

.policy-article {
  max-width: 820px;
  padding-left: clamp(0px, 3vw, 46px);
}

.policy-article > p:first-child {
  margin-bottom: 34px;
  color: var(--pale-muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-content h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 1.9vw, 1.72rem);
  line-height: 1.25;
}

.policy-content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1rem;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  line-height: 1.85;
}

.policy-content p {
  margin-bottom: 18px;
}

.policy-content a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.wire-hero .wire-box {
  position: relative;
  min-height: calc(100vh - 88px);
  border: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("/assets/img/optimized/wedding-confetti.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wire-hero .wire-box::before {
  content: none;
  position: absolute;
  top: -84px;
  right: -92px;
  width: min(34vw, 340px);
  aspect-ratio: 615.4 / 910.8;
  background: url("/assets/img/decoration-light.svg") center/contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.wire-hero .wire-box.image-venue {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("/assets/img/optimized/venue-dining-room.webp");
}

.venue-page .wire-hero .wire-box.image-venue {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("/assets/img/optimized/venue-gallery-img-9299.webp");
  background-position: left bottom;
}

.wire-hero .wire-box.image-quayside {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("/assets/img/optimized/wedding-quayside-couple.webp");
}

.wire-hero .wire-box.image-catering {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("/assets/img/optimized/menu-card-conventional.webp");
}

.menus-page .wire-hero .wire-box.image-catering {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("/assets/img/optimized/food-gallery-mar2024-36.webp");
  background-position: right center;
}

.wire-hero .wire-box.image-food {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("/assets/img/optimized/food-cocktail-dessert.webp");
}

.wire-hero .wire-box.image-couple {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("/assets/img/optimized/wedding-quayside-couple.webp");
}

.gallery-page .wire-hero .wire-box.image-couple {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("/assets/img/optimized/food-gallery-mar2024-62.webp");
  background-position: right center;
}

.wire-hero .wire-box.image-bride {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("/assets/img/optimized/wedding-family-moment.webp");
}

.planning-page .wire-hero .wire-box.image-bride {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("/assets/img/optimized/venue-table-setting.webp");
}

.wire-hero .wire-box.image-confetti {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("/assets/img/optimized/wedding-confetti.webp");
}

.package-page .wire-hero .wire-box.image-confetti {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("/assets/img/optimized/venue-wedding-conservatory.webp");
}

.wire-hero .wire-box.image-dessert {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("/assets/img/optimized/food-gallery-mar2024-43.webp");
}

.wire-hero .wire-box::after {
  content: "";
  position: absolute;
  inset: clamp(28px, 4vw, 48px);
  border: 2px solid rgba(255, 255, 255, 0.82);
  pointer-events: none;
}

.split-grid > .wire-box::after {
  content: "";
  position: absolute;
  right: -74px;
  bottom: -118px;
  width: min(28vw, 280px);
  aspect-ratio: 615.4 / 910.8;
  background: url("/assets/img/decoration-light.svg") center/contain no-repeat;
  opacity: 0.13;
  pointer-events: none;
  z-index: 1;
}

.split-grid > .wire-box.image-gallery-dessert::after {
  content: none;
}

.split-grid > .wire-box::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 2.4vw, 30px);
  border: 2px solid rgba(255, 255, 255, 0.82);
  pointer-events: none;
  z-index: 2;
}

.wire-hero .wire-box {
  padding: clamp(24px, 4vw, 54px);
}

.wire-hero .wire-box {
  align-items: end;
}

.split-grid .wire-box + .stack,
.split-grid .stack + .wire-box {
  align-self: center;
}

.gallery .placeholder-thumb:nth-child(1),
.placeholder-strip .placeholder-thumb:nth-child(1) {
  background-image: linear-gradient(to top, rgba(28, 24, 20, 0.62), rgba(28, 24, 20, 0.05)), url("/assets/img/optimized/wedding-confetti.webp");
}

.placeholder-strip .placeholder-thumb:nth-child(2) {
  background-image: linear-gradient(to top, rgba(28, 24, 20, 0.62), rgba(28, 24, 20, 0.05)), url("/assets/img/optimized/venue-dining-room.webp");
}

.placeholder-strip .placeholder-thumb:nth-child(3) {
  background-image: linear-gradient(to top, rgba(28, 24, 20, 0.62), rgba(28, 24, 20, 0.05)), url("/assets/img/optimized/food-grazing-table.webp");
}

.placeholder-strip .placeholder-thumb:nth-child(4) {
  background-image: linear-gradient(to top, rgba(28, 24, 20, 0.62), rgba(28, 24, 20, 0.05)), url("/assets/img/optimized/wedding-quayside-couple.webp");
}

@media (max-width: 980px) {
  :root {
    --space: clamp(58px, 8vw, 86px);
  }

  .site-header {
    height: auto;
    border-bottom: 1px solid rgba(221, 215, 206, 0.62);
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(18px);
  }

  .site-header::before,
  .site-header::after {
    content: none;
  }

  .header-inner {
    margin-top: 0;
    min-height: 88px;
  }

  .desktop-header-nav {
    display: none;
  }

  .mobile-brand {
    display: inline-flex;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    max-height: calc(100vh - 108px);
    overflow: hidden auto;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 18px 38px rgba(28, 24, 20, 0.14);
  }

  .mobile-primary-nav::after {
    content: "";
    position: absolute;
    right: -58px;
    top: 50%;
    width: 170px;
    aspect-ratio: 615.4 / 910.8;
    background: url("/assets/img/decoration-dark.svg") center/contain no-repeat;
    opacity: 0.045;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .mobile-primary-nav.is-open {
    display: flex;
  }

  .mobile-primary-nav a {
    position: relative;
    z-index: 1;
    width: auto;
    min-height: 32px;
    padding: 6px 0 5px;
    border-bottom: 0;
  }

  .mobile-primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 1px;
    background: currentColor;
    opacity: 0.72;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }

  .mobile-primary-nav a:hover::after,
  .mobile-primary-nav a:focus::after,
  .mobile-primary-nav a[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .hero-grid,
  .split-grid,
  .three-grid,
  .two-grid,
  .save-date-grid,
  .compact-form-grid,
  .booking-form-layout,
  .included-heading,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .full-gallery-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .full-gallery-section .included-heading {
    gap: 24px;
    margin-bottom: 34px;
  }

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

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

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

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

  .gallery-section.compact-gallery .gallery-grid {
    grid-template-rows: unset;
  }

  .full-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(220px, 28vw);
  }

  .full-gallery-item {
    min-height: 220px;
  }

  .gallery-item {
    height: 200px;
  }

  .service-choice-section .section-heading {
    grid-template-columns: 1fr;
  }

  .service-choice-section .section-heading .eyebrow,
  .service-choice-section .section-heading h2,
  .service-choice-section .section-action {
    grid-column: 1;
  }

  .service-choice-section .section-action {
    grid-row: auto;
    justify-content: flex-start;
    margin-bottom: 0;
    width: 100%;
  }

  .service-choice-section .section-action .button {
    width: 100%;
  }

  .wire-hero {
    min-height: auto;
    padding-top: 88px;
  }

  .included-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .wire-hero .stack {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 36px;
    transform: none;
  }

  .policy-hero {
    padding-top: 128px;
    padding-bottom: 54px;
  }

  .policy-hero .stack {
    padding: 0;
  }

  .policy-section {
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .policy-section::before {
    top: 58px;
  }

  .policy-article {
    padding-left: 0;
  }

  .wire-hero .wire-box {
    min-height: 380px;
  }

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

  .reviews-track {
    grid-auto-columns: minmax(280px, 82vw);
  }

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

  .quick-proof-grid div:nth-child(2) {
    border-right: 0;
  }
}

@media (min-width: 700px) and (max-width: 980px) {
  .site-header {
    height: 86px;
    border-bottom: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .site-header::before,
  .site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
  }

  .site-header::before {
    top: 0;
    height: 24px;
    background: var(--gold);
  }

  .site-header::after {
    top: 24px;
    height: 62px;
    border-bottom: 1px solid rgba(221, 215, 206, 0.62);
    background: #fff;
  }

  .header-inner {
    width: min(100% - 20px, var(--max));
    min-height: 62px;
    margin-top: 24px;
  }

  .desktop-header-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 12px;
    height: 62px;
  }

  .desktop-brand {
    --header-logo-size: 70px;
    height: 62px;
  }

  .desktop-brand::after {
    clip-path: inset(calc(50% + 31px) 0 0 0);
  }

  .mobile-brand,
  .nav-toggle,
  .mobile-primary-nav {
    display: none;
  }

  .primary-nav {
    gap: 8px;
  }

  .primary-nav a {
    min-height: 36px;
    font-size: 0.48rem;
    letter-spacing: 0.1em;
  }


  .header-actions {
    gap: 8px;
  }

  .wire-hero {
    padding-top: 86px;
  }

  .site-footer {
    padding-top: 46px;
  }

  .footer-grid {
    grid-template-columns: minmax(210px, 1.35fr) repeat(3, minmax(100px, 0.8fr));
    gap: 22px;
  }

  .footer-brand-lockup {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
  }

  .footer-logo-img {
    width: 76px;
  }

  .footer-column {
    gap: 10px;
  }

  .footer-column p,
  .footer-small {
    font-size: 0.72rem;
    line-height: 1.65;
  }

  .footer-links {
    gap: 5px;
  }

  .footer-inner a {
    font-size: 0.66rem;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 86px;
    border-bottom: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .site-header::before,
  .site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
  }

  .site-header::before {
    top: 0;
    height: 24px;
    background: var(--gold);
  }

  .site-header::after {
    top: 24px;
    height: 62px;
    border-bottom: 1px solid rgba(221, 215, 206, 0.62);
    background: #fff;
  }

  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  .header-inner {
    align-items: center;
    gap: 10px;
    min-height: 62px;
    margin-top: 24px;
  }

  .mobile-brand {
    --mobile-logo-size: 68px;
    position: relative;
    display: grid;
    place-items: center;
    width: calc(var(--mobile-logo-size) + 18px);
    height: 62px;
    isolation: isolate;
  }

  .mobile-brand::before,
  .mobile-brand::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(var(--mobile-logo-size) + 18px);
    height: calc(var(--mobile-logo-size) + 18px);
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .mobile-brand::before {
    background: #fff;
    z-index: -1;
  }

  .mobile-brand::after {
    border: 1px solid rgba(221, 215, 206, 0.62);
    clip-path: inset(calc(50% + 31px) 0 0 0);
    z-index: 0;
    pointer-events: none;
  }

  .mobile-brand img {
    position: absolute;
    left: 50%;
    top: 50%;
    height: var(--mobile-logo-size);
    transform: translate(-50%, -50%);
  }

  .nav-toggle {
    min-width: 78px;
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid rgba(154, 124, 63, 0.48);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .nav-toggle:hover,
  .nav-toggle:focus {
    border-color: var(--gold);
    background: #fff;
    color: var(--gold);
  }

  .mobile-primary-nav {
    top: 88px;
  }

  .form-grid,
  .included-grid,
  .gallery-grid,
  .placeholder-strip,
  .quick-proof-grid,
  .hero-contact-details {
    grid-template-columns: 1fr;
  }

  .menu-download-grid,
  .venue-recommendations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .menu-download-card,
  .menu-download-card-large {
    min-height: 158px;
    padding: 22px 14px;
  }

  .menu-download-card-large {
    grid-column: 1 / -1;
  }

  .menu-download-card span,
  .menu-download-card strong {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
  }

  .venue-recommendation-card {
    min-height: 150px;
  }

  .venue-recommendation-card-featured {
    grid-column: 1 / -1;
    min-height: 180px;
  }

  .venue-recommendation-card span {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .quick-proof-grid {
    border-top: 0;
    border-bottom: 0;
  }

  .full-gallery-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .full-gallery-section .included-heading {
    gap: 18px;
    margin-bottom: 24px;
  }

  .gallery-grid {
    grid-template-rows: unset;
  }

  .full-gallery-grid {
    grid-auto-rows: 170px;
  }

  .full-gallery-item {
    min-height: 170px;
  }

  .full-gallery-item-large {
    grid-column: auto;
    grid-row: auto;
  }

  .compact-gallery .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: unset;
  }

  .gallery-item,
  .gallery-item.tall {
    height: 190px;
    grid-row: auto;
  }

  .compact-gallery .gallery-item,
  .compact-gallery .gallery-item.tall {
    height: 160px;
  }

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

  .quick-proof-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .quick-proof-grid div:last-child {
    border-bottom: 0;
  }

  .included-item {
    min-height: auto;
    padding: 28px 24px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .wire-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .full-gallery-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .wire-box {
    min-height: 250px;
  }

  .included-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .included-grid,
  .included-grid-two {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.15rem, 10.5vw, 2.8rem);
    line-height: 1.08;
  }

  .cta-row {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .cta-row .button {
    width: 100%;
    min-width: 0;
    padding-right: 16px;
    padding-left: 16px;
    white-space: normal;
    text-align: center;
    letter-spacing: 0.18em;
  }

  .wire-hero .wire-box {
    min-height: 260px;
  }

  .hero-contact-details {
    gap: 14px;
    margin-top: 16px;
    padding-top: 18px;
  }

  .wire-hero {
    padding-top: 86px;
  }

  .cookie-panel {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-panel-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .cookie-actions .button {
    width: 100%;
  }

  .cookie-settings-button {
    left: 12px;
    bottom: 12px;
  }

  .policy-hero {
    padding-top: 118px;
    padding-bottom: 42px;
  }

  .policy-hero h1 {
    margin-bottom: 16px;
  }

  .policy-section {
    padding-top: 44px;
    padding-bottom: 58px;
  }

  .policy-section::before {
    top: 44px;
    width: 42px;
  }

  .policy-article > p:first-child {
    margin-bottom: 26px;
  }

  .policy-content h2 {
    margin-top: 32px;
  }
}
