@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;700&display=swap");

:root {
  --green-light: #a9c1ac;
  --green: #839d81;
  --ink: #faf8f5;
  --text: #e8e2d9;
  --muted: #b7aea2;
  --pale: #f4efea;
  --page: #0f130f;
  --surface: #161c16;
  --surface-soft: #1d261d;
  --surface-deep: #090d09;
  --line: rgba(232, 226, 217, 0.14);
  --line-strong: rgba(232, 226, 217, 0.28);
  --shadow: rgba(0, 0, 0, 0.42);
  --max: 1400px;
  --space: clamp(72px, 8vw, 120px);
}

* {
  box-sizing: border-box;
}

html {
  font-kerning: normal;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(169, 193, 172, 0.055), transparent 28vw),
    linear-gradient(180deg, #0b100c 0%, var(--page) 38%, #0a0e0a 100%);
  color: var(--text);
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.68;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 106px;
}

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

.site-header::before {
  top: 0;
  height: 30px;
  background: #111711;
  border-bottom: 1px solid rgba(169, 193, 172, 0.28);
}

.site-header::after {
  top: 30px;
  height: 76px;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 13, 9, 0.92);
  backdrop-filter: blur(18px);
}

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

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

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

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

.mobile-brand {
  display: none;
}

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

.desktop-brand {
  --header-logo-size: clamp(84px, 6.2vw, 106px);
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: calc(var(--header-logo-size) + 20px);
  height: 76px;
  justify-self: center;
  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%;
  transform: translate(-50%, -50%);
}

.desktop-brand::before {
  z-index: -1;
  background: var(--surface-deep);
}

.desktop-brand::after {
  z-index: 0;
  border: 1px solid var(--line-strong);
  clip-path: inset(calc(50% + 38px) 0 0 0);
  pointer-events: none;
}

.desktop-brand img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: var(--header-logo-size);
  filter: brightness(0) invert(1) drop-shadow(0 18px 28px rgba(0, 0, 0, 0.5));
  transform: translate(-50%, -50%);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.2vw, 18px);
}

.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-bottom: 1px solid transparent;
  color: rgba(244, 239, 234, 0.72);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.primary-nav .nav-weddings {
  color: var(--green-light);
}

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

.page-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 106px;
  background:
    linear-gradient(90deg, rgba(15, 19, 15, 0.96), rgba(15, 19, 15, 0.9) 50%, rgba(9, 13, 9, 0.3) 50%, rgba(9, 13, 9, 0.08)),
    var(--surface-deep);
}

.section {
  padding: var(--space) 0;
  border-top: 1px solid rgba(232, 226, 217, 0.09);
  background: transparent;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012));
}

.hero-grid,
.split-grid,
.two-grid,
.three-grid,
.service-grid,
.menu-grid,
.gallery-grid,
.stats-grid,
.form-grid {
  display: grid;
  gap: 18px;
}

.hero-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 106px);
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: clamp(14px, 1.6vw, 20px);
  padding: clamp(34px, 6vw, 86px) clamp(28px, 7vw, 88px);
}

.hero-image {
  min-height: 560px;
  background:
    linear-gradient(to top, rgba(9, 13, 9, 0.72), rgba(9, 13, 9, 0.08)),
    linear-gradient(to right, rgba(9, 13, 9, 0.08), rgba(9, 13, 9, 0.22)),
    var(--hero-image, url("/assets/img/optimized/food-plating-hero.webp")) center/cover;
  filter: saturate(0.9) contrast(1.04);
}

.split-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: stretch;
}

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

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

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

.gallery-item,
.full-gallery-item {
  margin: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
}

.gallery-item img,
.full-gallery-item img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 0.65s ease, opacity 0.65s ease, filter 0.65s ease;
}

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

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

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

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

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

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

.quick-proof {
  padding: clamp(32px, 4vw, 54px) 0;
  border-block: 1px solid rgba(232, 226, 217, 0.09);
  background: rgba(9, 13, 9, 0.78);
}

.quick-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(232, 226, 217, 0.12);
}

.quick-proof-grid div {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 2.4vw, 34px);
  border-right: 1px solid rgba(232, 226, 217, 0.12);
  text-align: center;
}

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

.quick-proof-grid span,
.tour-card span,
.tour-card small {
  color: var(--green-light);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  line-height: 1.2;
  text-transform: uppercase;
}

.quick-proof-grid strong {
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(232, 226, 217, 0.1);
  background: rgba(232, 226, 217, 0.1);
}

.tour-card {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 220px;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--surface-deep);
  color: inherit;
  text-decoration: none;
}

.tour-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--green-light), transparent);
  opacity: 0.48;
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.tour-card:hover::before,
.tour-card:focus::before {
  opacity: 0.9;
  transform: scaleX(1);
}

.tour-card strong {
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.25rem, 1.7vw, 1.72rem);
  font-weight: 400;
  line-height: 1.12;
}

.tour-card small {
  align-self: end;
  color: var(--pale);
}

.tour-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 94px);
  align-items: center;
}

.tour-copy {
  max-width: 560px;
}

.tour-link-list {
  display: grid;
  border-block: 1px solid rgba(232, 226, 217, 0.12);
}

.tour-link {
  display: grid;
  grid-template-columns: minmax(48px, 0.16fr) minmax(0, 1fr) auto;
  gap: clamp(14px, 2.2vw, 32px);
  align-items: center;
  min-height: 118px;
  padding: clamp(20px, 2.6vw, 34px) 0;
  border-bottom: 1px solid rgba(232, 226, 217, 0.1);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.25s ease, padding-left 0.25s ease;
}

.tour-link:last-child {
  border-bottom: 0;
}

.tour-link span,
.tour-link small {
  color: var(--green-light);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-transform: uppercase;
}

.tour-link span {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 2.2vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.82;
}

.tour-link strong {
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.25rem, 1.9vw, 1.9rem);
  font-weight: 400;
  line-height: 1.12;
}

.tour-link small {
  justify-self: end;
  color: var(--pale);
}

.tour-link:hover,
.tour-link:focus {
  border-bottom-color: rgba(169, 193, 172, 0.26);
  padding-left: 10px;
  outline: none;
}

.venue-spaces-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(32px, 5vw, 82px);
  align-items: center;
}

.venue-space-list {
  display: grid;
  border-block: 1px solid rgba(232, 226, 217, 0.12);
}

.space-row {
  display: grid;
  grid-template-columns: minmax(86px, 0.28fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  padding: clamp(24px, 3.2vw, 42px) 0;
  border-bottom: 1px solid rgba(232, 226, 217, 0.1);
}

.space-row:last-child {
  border-bottom: 0;
}

.space-row .card-number {
  color: rgba(244, 239, 234, 0.9);
}

.space-row p {
  max-width: 560px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.venue-spaces-copy {
  align-content: center;
}

.editorial-rows-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}

.quiet-split-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 5vw, 82px);
  align-items: center;
}

.editorial-rows {
  display: grid;
  border-block: 1px solid rgba(232, 226, 217, 0.12);
}

.editorial-row {
  display: grid;
  grid-template-columns: minmax(72px, 0.22fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  padding: clamp(22px, 3vw, 38px) 0;
  border-bottom: 1px solid rgba(232, 226, 217, 0.1);
}

.editorial-row:last-child {
  border-bottom: 0;
}

.editorial-row .card-number {
  color: rgba(244, 239, 234, 0.88);
}

.editorial-row p,
.editorial-note p,
.quiet-note p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.editorial-note,
.quiet-note {
  display: grid;
  gap: 18px;
  align-content: center;
}

.featured-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(180px, auto);
  gap: 12px;
}

.featured-menu-grid.expanded-menu-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.featured-menu-grid .card:first-child {
  grid-column: span 2;
  grid-row: span 2;
  align-content: end;
  min-height: 390px;
  background:
    linear-gradient(to top, rgba(9, 13, 9, 0.88), rgba(9, 13, 9, 0.24)),
    var(--feature-image, none) center/cover,
    rgba(13, 18, 13, 0.62);
}

.featured-menu-grid .card:first-child h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
}

.hosting-choice-grid {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  align-items: stretch;
}

.hosting-choice-grid .card {
  min-height: 340px;
  grid-template-rows: auto auto 1fr auto;
}

.hosting-choice-grid .card:nth-child(2) {
  align-self: stretch;
}

.metric-strip {
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.82fr));
  align-items: stretch;
}

.metric-strip .stat-card:first-child {
  display: grid;
  align-content: end;
  min-height: 340px;
}

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

.corporate-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.corporate-proof-grid .stat-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 0;
  min-height: clamp(260px, 24vw, 340px);
}

.corporate-proof-grid .stat-card strong {
  display: block;
  margin-bottom: clamp(20px, 2.4vw, 30px);
  line-height: 0.82;
}

.corporate-proof-grid .stat-card h3 {
  max-width: 9ch;
  margin-bottom: 14px;
  font-size: clamp(1.28rem, 1.6vw, 1.55rem);
  line-height: 0.98;
  text-wrap: balance;
}

.corporate-proof-grid .stat-card p {
  align-self: start;
  max-width: 30ch;
  line-height: 1.58;
}

.quiet-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(232, 226, 217, 0.1);
  background: rgba(232, 226, 217, 0.1);
}

.quiet-list .card {
  border: 0;
  box-shadow: none;
}

.party-flow-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
}

.party-flow-intro {
  align-content: center;
  min-height: 100%;
}

.party-flow-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.78;
}

.party-flow-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(232, 226, 217, 0.1);
  background: rgba(232, 226, 217, 0.1);
}

.party-flow-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 360px;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(13, 18, 13, 0.68);
}

.party-flow-card span {
  color: var(--green-light);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.party-flow-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.68;
}

.room-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.room-showcase-card {
  display: grid;
  gap: clamp(24px, 3vw, 38px);
  align-content: start;
  padding: clamp(24px, 4vw, 50px);
  min-height: 100%;
}

.room-showcase-copy {
  display: grid;
  gap: 16px;
}

.room-showcase-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.78;
}

.room-showcase-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 36vw, 560px);
  border: 1px solid rgba(232, 226, 217, 0.09);
  background: var(--surface-deep);
}

.room-showcase-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.room-showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 13, 9, 0.28), transparent 58%);
  pointer-events: none;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 420px);
  align-items: end;
  gap: 24px clamp(28px, 6vw, 96px);
  margin-bottom: clamp(46px, 5vw, 72px);
}

.section-heading > .lede {
  font-size: 0.92rem;
  line-height: 1.68;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 4px;
  color: var(--green-light);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-kerning: normal;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.65vw, 6.2rem);
  letter-spacing: 0;
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.05rem, 3.65vw, 3.75rem);
  letter-spacing: 0;
  line-height: 1.02;
}

h3 {
  font-size: 1.38rem;
  line-height: 1.14;
}

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

p {
  margin: 0;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.05vw, 1rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.hero-copy .lede {
  max-width: 500px;
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.62;
}

.page-hero .button-row {
  margin-top: 4px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--pale);
  background: var(--pale);
  color: #111611;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.68rem;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button.secondary {
  background: transparent;
  border-color: rgba(169, 193, 172, 0.58);
  color: var(--pale);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.card,
.image-card,
.form-shell,
.quote-panel,
.stat-card {
  border: 1px solid rgba(232, 226, 217, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.012)),
    rgba(13, 18, 13, 0.62);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
}

.card,
.quote-panel,
.stat-card {
  padding: clamp(22px, 3vw, 34px);
}

.quote-panel {
  position: relative;
  overflow: hidden;
}

.enquiry-details {
  display: grid;
  align-content: start;
  gap: clamp(18px, 2vw, 26px);
}

.enquiry-details .eyebrow {
  margin-bottom: -4px;
}

.enquiry-details h2 {
  max-width: 520px;
}

.enquiry-detail-list {
  display: grid;
  gap: 9px;
  padding-top: clamp(6px, 1vw, 12px);
}

.enquiry-detail-list p {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.55;
}

.enquiry-details .lede {
  max-width: 500px;
  padding-top: clamp(4px, 1vw, 10px);
}

.card {
  display: grid;
  gap: 14px;
  align-content: start;
  position: relative;
  overflow: hidden;
}

.card::before,
.quote-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 193, 172, 0.36), transparent);
  opacity: 0.7;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.68;
}

.card a:not(.button) {
  color: var(--pale);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.menu-download-card {
  color: inherit;
  text-decoration: none;
}

.menu-link-card {
  color: inherit;
  text-decoration: none;
}

.menu-download-card::after {
  content: "Download menu";
  align-self: end;
  width: fit-content;
  margin-top: 6px;
  color: var(--pale);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.menu-link-card::after {
  content: attr(data-label);
  align-self: end;
  width: fit-content;
  margin-top: 6px;
  color: var(--pale);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.menu-download-card:hover::after,
.menu-download-card:focus::after,
.menu-link-card:hover::after,
.menu-link-card:focus::after {
  color: var(--green-light);
}

.card-number,
.stat-card strong {
  color: var(--pale);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 4.4vw, 4.6rem);
  line-height: 0.88;
  opacity: 0.82;
}

.card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.image-card {
  min-height: 480px;
  overflow: hidden;
  position: relative;
}

.image-card::after,
.full-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 13, 9, 0.26), transparent 62%);
  pointer-events: none;
}

.split-grid > .image-card {
  align-self: center;
  height: calc(100% + 40px);
  margin-block: -20px;
  min-height: 0;
}

.image-card img {
  position: absolute;
  inset: 0;
}

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

.feature-list li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 1px;
  background: var(--green-light);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(232, 226, 217, 0.08);
  background: rgba(9, 13, 9, 0.82);
  color: rgba(244, 239, 234, 0.78);
}

.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 54s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-dot {
  width: 28px;
  height: 1px;
  background: var(--green-light);
}

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

.form-shell {
  padding: clamp(22px, 3vw, 36px);
}

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

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

.compact-form-grid > .field {
  min-width: 0;
}

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

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

.conditional-field[hidden] {
  display: none;
}

label {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
}

select {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(232, 226, 217, 0.08);
  color: var(--ink);
  color-scheme: dark;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(169, 193, 172, 0.38);
  box-shadow: 0 0 0 3px rgba(169, 193, 172, 0.12);
  outline: none;
}

select option {
  background: var(--surface-deep);
  color: var(--ink);
}

select option:checked {
  background: var(--surface-soft);
  color: var(--ink);
}

input[type="date"] {
  color-scheme: dark;
  color: var(--ink);
  padding-right: 12px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
}

.custom-select-button,
.custom-select-option {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font: inherit;
  text-align: left;
}

.custom-select-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.custom-select-button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.78;
  transform: translateY(-2px) rotate(45deg);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  z-index: 40;
  display: none;
  border: 1px solid rgba(232, 226, 217, 0.12);
  background: var(--surface-deep);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.44);
}

.custom-select.is-open .custom-select-menu {
  display: grid;
}

.custom-select-option {
  min-height: 0;
  border: 0;
  padding: 7px 12px;
}

.custom-select-option:hover,
.custom-select-option:focus,
.custom-select-option.is-selected {
  background: rgba(169, 193, 172, 0.16);
  color: var(--ink);
  outline: none;
}

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

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.84rem;
}

.save-date-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(9, 13, 9, 0.78), rgba(21, 29, 21, 0.58)),
    url("/assets/img/optimized/food-gallery-table-restaurant.webp") center/cover;
  color: var(--ink);
}

.save-date-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 13, 9, 0.68), rgba(9, 13, 9, 0.42)),
    radial-gradient(circle at 86% 20%, rgba(169, 193, 172, 0.12), transparent 28vw);
  pointer-events: none;
}

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

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

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

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

.save-date-band .lede {
  color: rgba(244, 239, 234, 0.72);
}

.save-date-form {
  border-top-color: rgba(169, 193, 172, 0.48);
  background: rgba(9, 13, 9, 0.58);
  backdrop-filter: blur(16px);
}

.save-date-form .button {
  width: 100%;
}

.save-date-submit {
  grid-column: 4;
  justify-self: end;
  width: min(100%, 220px);
}

.save-date-note {
  align-self: center;
  grid-column: 1 / 4;
  margin-top: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 5vw, 70px) 0 30px;
  border-top: 1px solid rgba(232, 226, 217, 0.08);
  background: var(--surface-deep);
  color: var(--ink);
}

.site-footer::before {
  content: "";
  position: absolute;
  right: clamp(-140px, -8vw, -80px);
  top: clamp(18px, 4vw, 56px);
  width: clamp(230px, 23vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(169, 193, 172, 0.14);
  border-radius: 50%;
  opacity: 0.42;
  pointer-events: none;
}

.footer-inner {
  display: grid;
  gap: clamp(24px, 3vw, 36px);
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(0, 0.85fr));
  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-logo-img {
  width: clamp(86px, 8vw, 118px);
  height: auto;
  filter: brightness(0) invert(1);
}

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

.footer-column h3 {
  color: var(--green-light);
  font-family: inherit;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

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

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

.footer-inner a {
  color: rgba(244, 239, 234, 0.66);
  font-size: 0.72rem;
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.footer-inner a:hover,
.footer-inner a:focus {
  color: var(--green-light);
}

.footer-inner .footer-cta {
  width: fit-content;
  padding: 0 0 3px;
  border-bottom: 1px solid rgba(169, 193, 172, 0.45);
  color: var(--green-light);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-inner .footer-cta:hover,
.footer-inner .footer-cta:focus {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

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

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

.footer-bottom a {
  color: rgba(244, 239, 234, 0.52);
  font-size: inherit;
}

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

  .ticker-inner {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .desktop-header-nav {
    display: none;
  }

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

  .mobile-brand img {
    filter: brightness(0) invert(1);
  }

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

  .mobile-primary-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 86px;
    z-index: 25;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--surface-deep);
    padding: 10px;
  }

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

  .primary-nav a {
    padding: 10px;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .split-grid,
  .section-heading,
  .two-grid,
  .three-grid,
  .service-grid,
  .menu-grid,
  .stats-grid,
  .form-grid,
  .save-date-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    padding-inline: 24px;
  }

  .hero-image {
    min-height: 380px;
  }

  .split-grid > .image-card {
    height: auto;
    margin-block: 0;
    min-height: 360px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
  }

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

  .quick-proof-grid,
  .tour-grid,
  .tour-showcase,
  .venue-spaces-layout,
  .editorial-rows-layout,
  .quiet-split-layout,
  .featured-menu-grid,
  .featured-menu-grid.expanded-menu-grid,
  .party-flow-layout,
  .room-showcase-grid,
  .hosting-choice-grid,
  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .party-flow-options {
    grid-template-columns: 1fr;
  }

  .party-flow-card {
    min-height: 0;
  }

  .featured-menu-grid .card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 340px;
  }

  .metric-strip .stat-card:first-child,
  .hosting-choice-grid .card:first-child {
    min-height: 300px;
  }

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

  .footer-grid {
    grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(0, 0.9fr));
    gap: 24px;
  }

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

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

@media (max-width: 640px) {
  .page-hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }

  .gallery-item {
    min-height: 300px;
  }

  .compact-form-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .quick-proof-grid,
  .tour-grid,
  .tour-showcase,
  .venue-spaces-layout,
  .editorial-rows-layout,
  .quiet-split-layout,
  .featured-menu-grid,
  .featured-menu-grid.expanded-menu-grid,
  .party-flow-layout,
  .room-showcase-grid,
  .hosting-choice-grid,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .room-showcase-media {
    min-height: 320px;
  }

  .space-row,
  .editorial-row,
  .tour-link {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tour-link {
    min-height: 0;
  }

  .tour-link small {
    justify-self: start;
  }

  .featured-menu-grid .card:first-child,
  .metric-strip .stat-card:first-child,
  .hosting-choice-grid .card:first-child {
    min-height: 260px;
  }

  .quick-proof-grid div,
  .quick-proof-grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(232, 226, 217, 0.12);
  }

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

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

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

  .footer-bottom {
    display: grid;
  }
}
