:root {
  --blue-950: #071943;
  --blue-900: #102b7a;
  --blue-800: #173a9a;
  --blue-700: #2449b7;
  --blue-600: #315ed4;
  --gold: #c59b45;
  --gold-soft: #fff7e5;
  --blue-100: #eaf0ff;
  --blue-50: #f6f8ff;
  --white: #ffffff;
  --ivory: #fbfaf7;
  --grey-100: #f3f5f9;
  --grey-200: #e2e7f0;
  --ink: #111827;
  --muted: #637083;
  --line: rgba(16, 43, 122, 0.14);
  --shadow: 0 22px 70px rgba(7, 25, 67, 0.15);
  --radius: 8px;
  --section: clamp(58px, 7vw, 94px);
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--ivory) 0, var(--white) 520px, #f8faff 100%);
  font-family: "Manrope", Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  font-feature-settings: "liga" 1, "kern" 1;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

img,
iframe {
  max-width: 100%;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold), var(--blue-600));
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(7, 25, 67, 0.09);
  backdrop-filter: blur(16px);
  transition: padding 240ms var(--ease-luxury), box-shadow 240ms var(--ease-luxury), background 240ms var(--ease-luxury);
}

.site-header.is-scrolled {
  padding-top: 9px;
  padding-bottom: 9px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(7, 25, 67, 0.13);
}

.brand,
.footer-brand,
.wizard-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand img {
  width: clamp(76px, 7vw, 104px);
  height: clamp(76px, 7vw, 104px);
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 22px rgba(7, 25, 67, 0.18));
}

.brand strong,
.brand small,
.footer-brand strong,
.footer-brand span,
.wizard-brand strong,
.wizard-brand span {
  display: block;
  line-height: 1.25;
}

.brand strong {
  color: var(--blue-950);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.36rem, 2.45vw, 2.05rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 0 rgba(197, 155, 69, 0.2);
}

.brand small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.9vw, 24px);
  color: var(--blue-950);
  font-size: 0.93rem;
  font-weight: 800;
}

.nav-links a {
  white-space: nowrap;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-600));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms var(--ease-luxury);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.quote-button,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  transition: transform 260ms var(--ease-luxury), box-shadow 260ms var(--ease-luxury), background 260ms var(--ease-luxury), border-color 260ms var(--ease-luxury);
}

.quote-button,
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  box-shadow: 0 16px 34px rgba(36, 73, 183, 0.3);
}

.quote-button:hover,
.button-primary:hover {
  background: var(--blue-900);
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(36, 73, 183, 0.34);
}

.button-secondary,
.button-light {
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid rgba(16, 43, 122, 0.18);
}

.button {
  text-align: center;
}

.button-secondary:hover,
.button-light:hover {
  border-color: rgba(16, 43, 122, 0.36);
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  place-items: center;
  gap: 4px;
  padding: 10px;
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue-900);
}

.search-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-950);
}

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

.hero-background {
  background-image: url("https://images.unsplash.com/photo-1511578314322-379afb476865?auto=format&fit=crop&w=2200&q=86");
  background-position: center right;
  background-size: cover;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.06);
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 25, 67, 0.98), rgba(16, 43, 122, 0.84) 50%, rgba(7, 25, 67, 0.28)),
    linear-gradient(0deg, rgba(7, 25, 67, 0.82), rgba(7, 25, 67, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
  animation: heroEntrance 900ms var(--ease-luxury) both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-hero .eyebrow,
.impact-section .eyebrow,
.enquiry-band .eyebrow {
  color: #f3d998;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(3.05rem, 7vw, 6.85rem);
  text-wrap: balance;
  letter-spacing: -0.015em;
}

h2 {
  color: var(--blue-950);
  font-size: clamp(1.8rem, 3.5vw, 3.3rem);
}

h3 {
  color: var(--blue-950);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.hero-copy {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  max-width: 1000px;
  margin-top: 38px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  animation: searchEntrance 900ms var(--ease-luxury) 180ms both;
}

.hero-search label {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-right: 1px solid var(--grey-200);
}

.hero-search span,
.quick-form label span,
.wizard label span,
.field-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-search select,
.quick-form input,
.quick-form select,
.wizard input,
.wizard textarea,
.wizard select {
  width: 100%;
  min-height: 44px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  outline: none;
}

.hero-search select {
  min-height: 30px;
  padding: 0;
  border: 0;
  color: var(--blue-950);
  font-weight: 850;
}

.hero-search .button {
  min-height: 78px;
  border-radius: 0;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.quick-tags button,
.chip-grid span {
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
  transition: transform 240ms var(--ease-luxury), box-shadow 240ms var(--ease-luxury), border-color 240ms var(--ease-luxury);
}

.quick-tags button:hover,
.chip-grid span:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 155, 69, 0.38);
  box-shadow: 0 16px 34px rgba(7, 25, 67, 0.12);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-highlights span {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(243, 217, 152, 0.32);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  align-items: start;
}

.main-column,
.quote-sidebar {
  min-width: 0;
}

.section {
  padding: var(--section) 0;
}

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

.section-heading {
  max-width: 840px;
  margin-bottom: 30px;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.venue-card,
.detail-panel,
.location-card,
.quick-form,
.space-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 62px rgba(7, 25, 67, 0.11);
  transition: transform 360ms var(--ease-luxury), box-shadow 360ms var(--ease-luxury), border-color 360ms var(--ease-luxury);
}

.venue-card:hover,
.detail-panel:hover,
.location-card:hover,
.quick-form:hover,
.space-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 155, 69, 0.24);
  box-shadow: 0 30px 78px rgba(7, 25, 67, 0.16);
}

.venue-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  overflow: hidden;
  position: relative;
}

.venue-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold), var(--blue-700));
  z-index: 1;
  transform-origin: top center;
  transition: transform 420ms var(--ease-luxury);
}

.venue-card:hover::before {
  transform: scaleY(0.88);
}

.venue-image {
  min-height: 360px;
  background:
    linear-gradient(0deg, rgba(7, 25, 67, 0.2), rgba(7, 25, 67, 0.04)),
    url("https://images.unsplash.com/photo-1517502884422-41eaead166d4?auto=format&fit=crop&w=1200&q=86");
  background-position: center;
  background-size: cover;
}

.venue-info {
  padding: clamp(22px, 3vw, 34px);
}

.venue-title-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.venue-title-row img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  flex: 0 0 auto;
}

.venue-title-row h3 {
  max-width: 680px;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  line-height: 1.02;
  text-wrap: balance;
}

.result-label {
  width: fit-content;
  margin: 0 0 8px;
  color: #7a5a16;
  background: var(--gold-soft);
  border: 1px solid rgba(197, 155, 69, 0.26);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.venue-address {
  margin: 12px 0;
  color: var(--muted);
}

.venue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.venue-meta span {
  color: var(--blue-950);
  background: linear-gradient(180deg, var(--blue-50), var(--white));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 11px;
  font-size: 0.9rem;
  font-weight: 850;
}

.venue-info p {
  color: var(--muted);
}

.venue-info strong {
  color: var(--blue-950);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.detail-tabs {
  position: sticky;
  top: 83px;
  z-index: 10;
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  overflow-x: auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.detail-tabs a {
  white-space: nowrap;
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-weight: 850;
}

.detail-panel {
  padding: clamp(24px, 4vw, 42px);
}

.detail-panel p:last-child {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.facility-grid article {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 18px;
  background:
    linear-gradient(180deg, var(--white), var(--blue-50));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 320ms var(--ease-luxury), box-shadow 320ms var(--ease-luxury), border-color 320ms var(--ease-luxury);
}

.facility-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 155, 69, 0.24);
  box-shadow: 0 18px 44px rgba(7, 25, 67, 0.12);
}

.facility-grid span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 950;
}

.facility-grid strong {
  color: var(--blue-950);
  line-height: 1.25;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-grid span {
  border-color: var(--line);
  box-shadow: 0 8px 22px rgba(7, 25, 67, 0.06);
}

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

.space-grid article {
  padding: 22px;
}

.space-grid strong {
  color: var(--blue-950);
  font-size: 1.08rem;
}

.space-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.impact-section,
.enquiry-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-inline: clamp(22px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 25, 67, 0.97), rgba(16, 43, 122, 0.94)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1400&q=84");
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
}

.impact-section h2,
.enquiry-band h2 {
  color: var(--white);
}

.impact-section p,
.enquiry-band p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
  gap: 20px;
  overflow: hidden;
}

address {
  margin: 0;
  padding: clamp(22px, 3vw, 32px);
  color: var(--muted);
  font-style: normal;
}

address strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 1.15rem;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 310px;
  display: block;
  border: 0;
  filter: grayscale(0.12) contrast(1.03);
}

.quote-sidebar {
  position: sticky;
  top: 98px;
  padding-top: var(--section);
}

.quick-form {
  display: grid;
  gap: 13px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 255, 0.98));
}

.quick-form img {
  width: 94px;
  height: 94px;
  object-fit: contain;
}

.quick-form h2 {
  font-size: 1.45rem;
}

.quick-form p {
  margin: 0;
  color: var(--muted);
}

.quick-form label,
.wizard label {
  display: grid;
  gap: 7px;
}

.quick-form input,
.quick-form select,
.wizard input,
.wizard textarea,
.wizard select {
  padding: 11px 12px;
}

.quick-form input:focus,
.quick-form select:focus,
.wizard input:focus,
.wizard textarea:focus,
.wizard select:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(36, 73, 183, 0.12);
}

.quick-status {
  min-height: 22px;
  color: var(--blue-800) !important;
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 1.4fr 0.8fr 0.7fr;
  gap: 28px;
  padding: 48px clamp(20px, 5vw, 76px) 28px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--blue-950);
}

.site-footer img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px;
}

.site-footer h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  margin: 0 0 8px;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
}

.footer-brand strong {
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wizard-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 25, 67, 0.68);
  backdrop-filter: blur(10px);
}

.wizard-overlay[hidden] {
  display: none;
}

.wizard {
  position: relative;
  width: min(760px, 100%);
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.wizard-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  color: var(--blue-950);
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}

.wizard-brand {
  padding-right: 44px;
}

.wizard-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.wizard-brand strong {
  color: var(--blue-950);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.12rem, 2.4vw, 1.55rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.wizard-brand span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.progress-track {
  height: 8px;
  margin: 22px 0 26px;
  overflow: hidden;
  background: var(--blue-100);
  border-radius: 999px;
}

.progress-track span {
  display: block;
  width: 11.111%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-800), var(--blue-600));
  border-radius: inherit;
  transition: width 220ms ease;
}

.wizard-form {
  display: grid;
}

.wizard-step {
  display: none;
}

.wizard-step.is-active {
  display: block;
}

.wizard-step h2,
.wizard-success h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
}

.step-note {
  margin: -4px 0 18px;
  color: var(--muted);
}

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

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

.option-grid.compact {
  margin-top: 8px;
}

.option-grid button {
  min-height: 58px;
  padding: 13px 14px;
  color: var(--blue-950);
  text-align: left;
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
  transition: transform 220ms var(--ease-luxury), box-shadow 220ms var(--ease-luxury), background 220ms var(--ease-luxury), border-color 220ms var(--ease-luxury);
}

.option-grid button:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 73, 183, 0.28);
  box-shadow: 0 12px 26px rgba(7, 25, 67, 0.09);
}

.option-grid button.is-selected {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: 0 12px 24px rgba(36, 73, 183, 0.22);
}

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

.date-grid > label {
  align-self: start;
}

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

.wizard textarea {
  resize: vertical;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.wizard-success {
  text-align: center;
  padding: 28px 10px 12px;
}

.wizard-success p {
  max-width: 520px;
  margin: 0 auto 22px;
  color: var(--muted);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition:
    opacity 780ms var(--ease-luxury),
    transform 780ms var(--ease-luxury),
    filter 780ms var(--ease-luxury);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

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

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes searchEntrance {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1120px) {
  .page-shell {
    grid-template-columns: 1fr;
  }

  .quote-sidebar {
    position: static;
    padding-top: 0;
    padding-bottom: var(--section);
  }

  .quick-form {
    max-width: 680px;
  }

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

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
  }

  .site-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding-top: 10px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a,
  .nav-links .quote-button {
    justify-content: flex-start;
    padding: 13px 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    color: var(--blue-950);
  }

  .hero-search,
  .venue-card,
  .location-card {
    grid-template-columns: 1fr;
  }

  .hero-search label {
    border-right: 0;
    border-bottom: 1px solid var(--grey-200);
  }

  .hero-search .button {
    min-height: 58px;
  }

  .venue-image {
    min-height: 280px;
  }

  .impact-section,
  .enquiry-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --section: 46px;
  }

  html {
    scroll-padding-top: 82px;
  }

  .site-header {
    gap: 10px;
    padding: 10px 14px;
  }

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

  .brand {
    flex: 1 1 min(250px, calc(100% - 58px));
    gap: 10px;
  }

  .brand strong {
    font-size: clamp(0.98rem, 4.7vw, 1.26rem);
  }

  .brand small {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .menu-toggle {
    flex: 0 0 auto;
    width: 42px;
    height: 40px;
  }

  .nav-links {
    max-height: calc(100svh - 68px);
    overflow-y: auto;
  }

  .nav-links a,
  .nav-links .quote-button {
    min-height: 46px;
    padding: 11px 0;
  }

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

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding: 44px 0 50px;
  }

  h1 {
    font-size: clamp(2.15rem, 11.5vw, 3.25rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-search {
    margin-top: 28px;
  }

  .hero-search label {
    padding: 13px 14px;
  }

  .quick-tags {
    gap: 8px;
  }

  .quick-tags button,
  .chip-grid span {
    padding: 8px 11px;
    font-size: 0.88rem;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-highlights span {
    padding: 10px 12px;
  }

  .page-shell {
    width: min(100% - 28px, 1240px);
    gap: 0;
  }

  .facility-grid,
  .space-grid,
  .option-grid,
  .date-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .venue-card,
  .detail-panel,
  .location-card,
  .quick-form,
  .space-grid article {
    box-shadow: 0 16px 44px rgba(7, 25, 67, 0.1);
  }

  .venue-image {
    min-height: 220px;
  }

  .venue-title-row {
    align-items: flex-start;
    gap: 12px;
  }

  .venue-title-row img {
    width: 52px;
    height: 52px;
  }

  .venue-meta span,
  .facility-grid article,
  .space-grid article,
  .option-grid button {
    min-width: 0;
  }

  .card-actions,
  .enquiry-band {
    gap: 10px;
  }

  .card-actions .button,
  .enquiry-band .button,
  .quick-form .button {
    width: 100%;
  }

  .detail-tabs {
    top: 65px;
    margin-inline: -14px;
    border-inline: 0;
    border-radius: 0;
  }

  .facility-grid article {
    min-height: 86px;
    padding: 14px;
  }

  .impact-section,
  .enquiry-band {
    padding: 28px 18px;
  }

  .location-card {
    gap: 0;
  }

  .map-placeholder iframe {
    min-height: 250px;
  }

  .quick-form {
    padding: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 38px 18px 24px;
  }

  .copyright {
    grid-column: auto;
  }

  .wizard-overlay {
    align-items: end;
    padding: 0;
  }

  .wizard {
    width: 100%;
    max-height: 94svh;
    padding: 20px 18px 0;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .wizard-brand {
    gap: 9px;
    padding-right: 42px;
  }

  .wizard-brand img {
    width: 56px;
    height: 56px;
  }

  .wizard-step h2,
  .wizard-success h2 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .option-grid button {
    min-height: 52px;
    padding: 12px;
  }

  .wizard-actions {
    position: sticky;
    bottom: -1px;
    margin-inline: -18px;
    margin-bottom: 0;
    padding: 14px 18px max(18px, env(safe-area-inset-bottom));
    background: var(--white);
  }

  .wizard-actions .button {
    flex: 1;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    display: none;
  }

  .hero-content,
  .page-shell {
    width: min(100% - 22px, 1240px);
  }

  .button,
  .quote-button {
    padding-inline: 14px;
  }

  .venue-info {
    padding: 18px;
  }

  .venue-title-row {
    flex-direction: column-reverse;
  }

  .wizard-close {
    top: 10px;
    right: 10px;
  }
}

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

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-background {
    transform: scale(1.02);
  }
}
