:root {
  --bg: #ffffff;
  --bg-soft: #fbf8f2;
  --text: #172033;
  --muted: #6e7684;
  --line: rgba(23, 32, 51, 0.12);
  --line-strong: rgba(23, 32, 51, 0.2);
  --gold: #b59454;
  --gold-soft: #d9c39a;
  --navy: #14203a;
  --max-width: 1240px;
  --section-space: clamp(4.5rem, 8vw, 8rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

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

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

.site-shell {
  width: min(calc(100% - 2rem), 1400px);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-text strong,
.nav a,
.button,
.eyebrow,
.space-label,
.footer-label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-text strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.75rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 1px;
  margin: 0 auto;
  background: currentColor;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.nav-toggle span + span {
  margin-top: 0.28rem;
}

.topbar.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(0.4rem) rotate(45deg);
}

.topbar.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-0.4rem) rotate(-45deg);
}

.nav a {
  position: relative;
  padding-bottom: 0.25rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  padding: 1.6rem 0 0;
}

.hero-frame {
  position: relative;
  display: grid;
  min-height: clamp(34rem, 60vw, 46rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(13, 20, 37, 0.84) 0%, rgba(13, 20, 37, 0.58) 42%, rgba(13, 20, 37, 0.24) 72%, rgba(13, 20, 37, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(13, 20, 37, 0.14) 100%),
    url("banquetimages/hall3.webp") center center / cover no-repeat;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 1.75rem;
  min-height: inherit;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.hero-copy-block {
  display: grid;
  gap: 1.1rem;
  max-width: 39rem;
  margin: 0;
  text-align: left;
  animation: rise-in 700ms ease-out both;
}

.hero-copy-block h1,
.section-heading h2,
.heritage-copy h2,
.showcase-copy h2,
.footer h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
}

.hero-copy-block h1 {
  margin: 0;
  max-width: 8.7ch;
  font-size: clamp(3.1rem, 6vw, 5.35rem);
  line-height: 0.93;
  color: #fffdf8;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
}

.hero .eyebrow {
  margin-bottom: 0;
}

.hero-brandline {
  margin: -0.15rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 34rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.35rem;
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 600;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: #fffdf8;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ab8849;
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--navy);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
  background: rgba(181, 148, 84, 0.08);
}

.hero .eyebrow {
  color: #e1c896;
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fffdf8;
  background: rgba(255, 255, 255, 0.06);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  border-color: rgba(225, 200, 150, 0.8);
  background: rgba(255, 255, 255, 0.12);
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-notes span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-band,
.section,
.footer {
  max-width: var(--max-width);
  margin: 0 auto;
}

.intro-band {
  padding: 2rem 0 0;
}

.intro-band p {
  margin: 0;
  max-width: 62rem;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.98rem;
}

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

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin-bottom: 2.4rem;
}

.section-heading h2,
.heritage-copy h2,
.showcase-copy h2,
.footer h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.journey-grid,
.gallery-grid,
.occasions-grid,
.testimonials-grid {
  display: grid;
  gap: 1.35rem;
}

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

.journey-card,
.testimonial-card,
.booking-card {
  border: 1px solid var(--line);
  background: #ffffff;
}

.journey-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.5rem;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.journey-card:hover,
.journey-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(181, 148, 84, 0.45);
  background: #fffdf9;
}

.journey-index {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.journey-card h3,
.testimonial-card h3,
.booking-card h3,
.booking-step h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.journey-card p,
.booking-copy p,
.booking-card p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 9rem;
}

.occasions-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas:
    "featured featured reception engagement"
    "private private bartamandha birthday";
  align-items: stretch;
}

.occasion-card {
  border: 1px solid var(--line);
  background: #ffffff;
  overflow: hidden;
  display: grid;
  align-content: start;
  transition:
    transform 240ms ease,
    border-color 240ms ease;
}

.occasion-card:hover,
.occasion-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(181, 148, 84, 0.45);
}

.occasion-card-featured {
  grid-area: featured;
}

.occasions-grid .occasion-card:nth-child(2) {
  grid-area: reception;
}

.occasions-grid .occasion-card:nth-child(3) {
  grid-area: engagement;
}

.occasions-grid .occasion-card:nth-child(4) {
  grid-area: private;
}

.occasions-grid .occasion-card:nth-child(5) {
  grid-area: bartamandha;
}

.occasions-grid .occasion-card:nth-child(6) {
  grid-area: birthday;
}

.occasion-card img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  transition: transform 500ms ease;
}

.occasion-card-featured img {
  height: 100%;
  min-height: 100%;
}

.occasion-card:hover img,
.occasion-card:focus-within img {
  transform: scale(1.04);
}

.occasion-content {
  display: grid;
  gap: 0.7rem;
  padding: 1.4rem;
}

.occasion-content h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.18;
}

.occasion-content p:last-child {
  margin: 0;
  color: var(--muted);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(20, 32, 58, 0) 0%, rgba(20, 32, 58, 0.82) 100%);
  color: #ffffff;
}

.gallery-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(233, 211, 164, 0.94);
}

.gallery-item strong {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 600;
}

.gallery-item-featured {
  grid-column: span 6;
  grid-row: span 3;
}

.gallery-item-tall {
  grid-column: span 3;
  grid-row: span 3;
}

.gallery-item-wide {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-item:not(.gallery-item-featured):not(.gallery-item-tall):not(.gallery-item-wide) {
  grid-column: span 3;
  grid-row: span 2;
}

.spaces-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 1.35rem;
}

.space-card,
.service-card {
  border: 1px solid var(--line);
  background: #ffffff;
}

.space-card {
  overflow: hidden;
  transition:
    transform 240ms ease,
    border-color 240ms ease;
}

.space-card:hover,
.space-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(181, 148, 84, 0.45);
}

.space-card img {
  width: 100%;
  height: 26rem;
  object-fit: cover;
  transition: transform 500ms ease;
}

.space-card-large img {
  height: 35rem;
}

.space-card:hover img,
.space-card:focus-within img {
  transform: scale(1.04);
}

.space-content {
  display: grid;
  gap: 0.7rem;
  padding: 1.35rem;
}

.space-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
}

.space-content h3,
.service-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.18;
}

.space-content p:last-child,
.service-card p,
.heritage-copy p,
.showcase-copy p,
.footer-grid p {
  margin: 0;
  color: var(--muted);
}

.heritage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 2rem;
  align-items: stretch;
}

.heritage-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 2rem) 0;
}

.heritage-visual {
  min-height: 44rem;
  border: 1px solid var(--line);
  overflow: hidden;
}

.heritage-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-panel,
.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 1.6rem;
  align-items: stretch;
}

.tour-copy,
.booking-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.tour-visual,
.booking-card {
  border: 1px solid var(--line);
  overflow: hidden;
}

.tour-visual img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
}

.tour-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tour-points span {
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions-tour {
  align-items: center;
}

.tour-launch {
  gap: 0.8rem;
}

.tour-play-icon {
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
}

.tour-play-icon::before {
  content: "";
  margin-left: 0.12rem;
  border-top: 0.34rem solid transparent;
  border-bottom: 0.34rem solid transparent;
  border-left: 0.52rem solid currentColor;
}

.text-link {
  margin-top: 0.5rem;
  width: fit-content;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--gold);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.service-card {
  display: grid;
  gap: 0.9rem;
  min-height: 16rem;
  padding: 1.6rem;
  border-top: 2px solid var(--gold-soft);
}

.showcase {
  display: grid;
  gap: 2rem;
}

.showcase-copy {
  max-width: 44rem;
}

.showcase-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 0.78fr;
  gap: 1.35rem;
}

.showcase-strip img {
  width: 100%;
  height: 27rem;
  object-fit: cover;
  border: 1px solid var(--line);
}

.showcase-strip img:last-child {
  object-position: center top;
}

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

.testimonial-card {
  display: grid;
  gap: 1.4rem;
  min-height: 18rem;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(217, 195, 154, 0.28), transparent 34%),
    linear-gradient(180deg, #fffefb 0%, #f8f3ea 100%);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(181, 148, 84, 0.16);
  pointer-events: none;
}

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

.testimonial-mark,
.testimonial-type {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonial-mark {
  color: var(--gold);
}

.testimonial-quote {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.35;
}

.testimonial-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-steps {
  display: grid;
  gap: 1rem;
  margin-top: 0.3rem;
}

.booking-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.booking-step span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.booking-step p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.booking-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.7rem;
  background: linear-gradient(180deg, #fffefb 0%, #f9f4ea 100%);
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 1.6rem;
  align-items: stretch;
}

.location-copy {
  display: grid;
  align-content: center;
  gap: 1.2rem;
}

.location-details {
  display: grid;
  gap: 1rem;
}

.location-details p {
  margin: 0;
  color: var(--muted);
}

.map-card {
  border: 1px solid var(--line);
  overflow: hidden;
  background: #ffffff;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  border: 0;
  display: block;
}

.footer {
  margin-top: var(--section-space);
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--bg-soft);
  border: 1px solid rgba(181, 148, 84, 0.14);
}

.footer-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(23, 32, 51, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding-top: 1.8rem;
}

.footer-label {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
}

.wizard-shell {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(217, 195, 154, 0.14), transparent 28%),
    linear-gradient(180deg, #fffefb 0%, #f7f1e7 100%);
  overflow: hidden;
}

.wizard-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.4rem, 4vw, 3rem);
  color: #fffdf8;
  background:
    linear-gradient(90deg, rgba(20, 32, 58, 0.9) 0%, rgba(20, 32, 58, 0.58) 48%, rgba(20, 32, 58, 0.26) 100%),
    url("banquetimages/grandhall.webp") center center / cover no-repeat;
}

.wizard-hero h2 {
  margin: 0 0 0.8rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.wizard-hero p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
}

.wizard-save {
  flex: 0 0 auto;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(225, 200, 150, 0.42);
  color: #fff4da;
  background: rgba(20, 32, 58, 0.34);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 32, 58, 0.1);
}

.wizard-progress button {
  min-height: 4.6rem;
  border: 0;
  padding: 0.9rem 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  transition: background-color 220ms ease, color 220ms ease;
}

.wizard-progress button span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold);
}

.wizard-progress button.active,
.wizard-progress button.complete {
  color: var(--navy);
  background: #f5ecdd;
}

.wizard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: 1.5rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.wizard-main {
  min-width: 0;
}

.wizard-step {
  display: none;
  animation: rise-in 320ms ease-out;
}

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

.step-heading {
  margin-bottom: 1.25rem;
}

.step-heading h3,
.wizard-summary h3 {
  margin: 0 0 0.7rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  line-height: 1;
}

.step-heading p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
}

.detail-grid,
.hall-grid,
.menu-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.detail-grid label,
.designer-tools label,
.notes-field {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wizard-shell input,
.wizard-shell select,
.wizard-shell textarea {
  width: 100%;
  border: 1px solid rgba(23, 32, 51, 0.14);
  padding: 0.95rem 1rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  outline: none;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.wizard-shell input:focus,
.wizard-shell select:focus,
.wizard-shell textarea:focus {
  border-color: rgba(181, 148, 84, 0.7);
  box-shadow: 0 0 0 4px rgba(181, 148, 84, 0.12);
  background: #ffffff;
}

.wizard-shell textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.hall-card,
.menu-tier,
.choice-card,
.accordion-section,
.review-card {
  border: 1px solid var(--line);
  background: #ffffff;
}

.hall-card,
.menu-tier {
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.hall-card:hover,
.menu-tier:hover,
.choice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(181, 148, 84, 0.48);
  box-shadow: 0 24px 48px rgba(20, 32, 58, 0.08);
}

.hall-card.selected,
.menu-tier.selected,
.choice-card.active {
  border-color: rgba(181, 148, 84, 0.7);
  background: linear-gradient(180deg, #fffefb 0%, #f8f2e8 100%);
}

.hall-card img,
.menu-tier img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.hall-card > div,
.menu-tier > div {
  padding: 1.3rem;
}

.hall-card h4,
.menu-tier h4,
.accordion-section h4,
.review-card h4 {
  margin: 0 0 0.55rem;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.12;
}

.hall-card p,
.menu-tier p,
.review-card p,
.choice-card small,
.accordion-head p {
  margin: 0;
  color: var(--muted);
}

.feature-list,
.package-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.feature-list span,
.package-facts span,
.badge,
.warning-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(23, 32, 51, 0.12);
  color: var(--muted);
  background: rgba(248, 243, 234, 0.7);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge {
  color: var(--gold);
}

.warning-pill {
  color: #9d5c00;
  border-color: rgba(181, 148, 84, 0.3);
  background: rgba(255, 236, 205, 0.95);
}

.hall-card button,
.menu-tier button {
  margin: 0.2rem 0.45rem 0 0;
  border: 1px solid rgba(181, 148, 84, 0.45);
  padding: 0.65rem 0.9rem;
  color: var(--navy);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.included {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.menu-tier.open .included {
  display: block;
}

.custom-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.choice-card {
  min-height: 10.5rem;
  padding: 1.35rem;
  text-align: left;
}

.choice-card span {
  display: block;
  margin-bottom: 0.55rem;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  line-height: 1.08;
}

.menu-designer.hidden {
  display: none;
}

.designer-tools {
  margin-bottom: 1rem;
}

.accordion-list {
  display: grid;
  gap: 0.8rem;
}

.accordion-section {
  overflow: hidden;
}

.accordion-head {
  width: 100%;
  border: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem;
  color: var(--navy);
  background: transparent;
  text-align: left;
}

.accordion-progress {
  min-width: 5.8rem;
  text-align: right;
  color: var(--gold);
  font-weight: 700;
}

.accordion-body {
  display: none;
  padding: 0 1.15rem 1.15rem;
}

.accordion-section.open .accordion-body {
  display: block;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.menu-chip {
  border: 1px solid rgba(23, 32, 51, 0.12);
  padding: 0.65rem 0.9rem;
  color: var(--navy);
  background: #fffdf8;
  font-size: 0.74rem;
  font-weight: 700;
}

.menu-chip.selected {
  color: #fffdf8;
  background: var(--gold);
  border-color: var(--gold);
}

.menu-chip:disabled:not(.selected) {
  opacity: 0.38;
  cursor: not-allowed;
}

.menu-subtitle {
  width: 100%;
  margin: 0.8rem 0 0.2rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-card {
  padding: 1.15rem;
}

.notes-field {
  margin-bottom: 1rem;
}

.checkout-actions,
.wizard-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.wizard-actions {
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.wizard-summary {
  position: sticky;
  top: 7rem;
  align-self: start;
  padding: 1.4rem;
  color: #fffdf8;
  background:
    linear-gradient(180deg, rgba(20, 32, 58, 0.92), rgba(20, 32, 58, 0.8)),
    url("banquetimages/table1.webp") center center / cover no-repeat;
}

.wizard-summary h3,
.wizard-summary .eyebrow,
.wizard-summary dd {
  color: #fffdf8;
}

.wizard-summary dl {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.wizard-summary dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wizard-summary dd {
  margin: -0.35rem 0 0;
  font-weight: 700;
}

.summary-meter {
  height: 0.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.summary-meter span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--gold);
  transition: width 240ms ease;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.tour-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.tour-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 29, 0.72);
  backdrop-filter: blur(8px);
}

.tour-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  background: #fffdf8;
  border: 1px solid rgba(181, 148, 84, 0.22);
  box-shadow: 0 24px 80px rgba(20, 32, 58, 0.2);
  overflow: hidden;
}

.tour-modal-media {
  min-height: 36rem;
  background: #e8e1d3;
}

.tour-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-modal-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 2rem;
}

.tour-modal-copy p {
  margin: 0;
  color: var(--muted);
}

.tour-modal-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.tour-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(20, 32, 58, 0.3);
  color: #ffffff;
  min-height: 2.6rem;
  padding: 0.7rem 0.95rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .spaces-grid,
  .tour-panel,
  .testimonials-grid,
  .booking-panel,
  .location-panel,
  .tour-modal-dialog,
  .showcase-strip,
  .footer-grid,
  .heritage {
    grid-template-columns: 1fr;
  }

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

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

  .occasions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "featured featured"
      "reception engagement"
      "private private"
      "bartamandha birthday";
  }

  .wizard-layout {
    grid-template-columns: 1fr;
  }

  .wizard-summary {
    position: static;
    top: auto;
  }

  .wizard-progress {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .space-card-large img,
  .space-card img,
  .occasion-card img,
  .showcase-strip img,
  .heritage-visual {
    height: auto;
    min-height: unset;
  }

  .occasion-card-featured img,
  .heritage-visual img,
  .showcase-strip img,
  .space-card img,
  .occasion-card img {
    aspect-ratio: 4 / 3;
  }

  .gallery-item,
  .gallery-item-featured,
  .gallery-item-tall,
  .gallery-item-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item img,
  .tour-visual img {
    min-height: unset;
    aspect-ratio: 4 / 3;
  }

  .map-card iframe,
  .tour-modal-media {
    min-height: unset;
  }

  .footer-top {
    align-items: start;
    flex-direction: column;
  }

  .hero-notes {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    padding: 1.25rem 0;
  }
}

@media (max-width: 800px) {
  :root {
    --section-space: clamp(3.25rem, 11vw, 5rem);
  }

  .site-shell {
    width: min(calc(100% - 1rem), 1400px);
  }

  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.3rem 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(20, 32, 58, 0.12);
  }

  .topbar.is-open .nav {
    display: grid;
  }

  .nav a {
    display: block;
    min-width: 0;
    padding: 0.4rem 0;
    font-size: 0.72rem;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero {
    padding-top: 1.1rem;
  }

  .hero-frame {
    min-height: 31rem;
    background:
      linear-gradient(180deg, rgba(13, 20, 37, 0.62) 0%, rgba(13, 20, 37, 0.68) 44%, rgba(13, 20, 37, 0.82) 100%),
      url("banquetimages/hall3.webp") center center / cover no-repeat;
  }

  .hero-frame::before {
    inset: 0.75rem;
  }

  .hero-content {
    gap: 1.3rem;
    padding: 1.35rem;
  }

  .hero-copy-block {
    gap: 0.8rem;
  }

  .hero-copy-block h1 {
    max-width: 9ch;
    font-size: clamp(2.35rem, 10.8vw, 3.5rem);
    line-height: 0.98;
  }

  .hero-text {
    max-width: 26rem;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .hero-brandline {
    font-size: 0.72rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-notes {
    gap: 0.75rem;
    padding-top: 1rem;
  }

  .hero-notes span {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .intro-band {
    padding-top: 1.35rem;
  }

  .intro-band p {
    padding-top: 1rem;
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .section-heading {
    gap: 0.8rem;
    margin-bottom: 1.6rem;
  }

  .section-heading h2,
  .heritage-copy h2,
  .showcase-copy h2,
  .footer h2 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .journey-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .journey-card,
  .service-card,
  .testimonial-card,
  .booking-card {
    padding: 1.25rem;
  }

  .gallery-grid {
    gap: 1rem;
    grid-auto-rows: 12rem;
  }

  .occasions-grid {
    gap: 1rem;
  }

  .occasion-card img,
  .space-card img,
  .space-card-large img,
  .tour-visual img,
  .showcase-strip img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .occasion-content,
  .space-content {
    padding: 1.2rem;
  }

  .occasion-content h3,
  .space-content h3,
  .service-card h3,
  .journey-card h3,
  .booking-card h3,
  .booking-step h3 {
    font-size: 1.3rem;
  }

  .gallery-item figcaption {
    padding: 0.85rem;
  }

  .gallery-item strong {
    font-size: 1rem;
  }

  .tour-points span {
    font-size: 0.72rem;
    padding: 0.65rem 0.85rem;
  }

  .hero-actions-tour {
    align-items: stretch;
  }

  .hero-actions-tour .text-link {
    margin-top: 0;
  }

  .wizard-hero {
    align-items: start;
    flex-direction: column;
  }

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

  .wizard-progress button {
    min-height: 4rem;
    padding: 0.8rem;
    font-size: 0.68rem;
  }

  .detail-grid,
  .hall-grid,
  .menu-package-grid,
  .review-panel,
  .custom-choice {
    grid-template-columns: 1fr;
  }

  .wizard-layout {
    gap: 1rem;
    padding: 1rem;
  }

  .wizard-summary {
    padding: 1.2rem;
  }

  .wizard-actions,
  .checkout-actions {
    flex-direction: column;
  }

  .wizard-actions .button,
  .checkout-actions .button {
    width: 100%;
  }

  .hall-card > div,
  .menu-tier > div,
  .choice-card,
  .review-card {
    padding: 1.1rem;
  }

  .accordion-head,
  .accordion-body {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .accordion-body {
    padding-bottom: 1rem;
  }

  .testimonial-card {
    min-height: unset;
    gap: 1rem;
  }

  .testimonial-quote {
    font-size: 1.3rem;
  }

  .booking-step {
    gap: 0.8rem;
  }

  .map-card iframe {
    min-height: 22rem;
  }

  .footer-grid {
    gap: 1rem;
    padding-top: 1.2rem;
  }

  .tour-modal-copy {
    padding: 1.4rem;
  }

  .footer {
    padding: 1.4rem;
  }
}

@media (max-width: 560px) {
  .brand {
    gap: 0.7rem;
  }

  .brand-mark {
    width: 2.7rem;
    height: 2.7rem;
    font-size: 0.92rem;
  }

  .brand-text strong {
    font-size: 0.86rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 0.85rem;
  }

  .nav a {
    text-align: left;
  }

  .hero-frame {
    min-height: 27.5rem;
  }

  .hero-content {
    padding: 1.1rem;
    gap: 1rem;
  }

  .hero-copy-block h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-text {
    font-size: 0.88rem;
  }

  .hero-notes {
    gap: 0.6rem;
  }

  .hero-notes span {
    font-size: 0.69rem;
  }

  .gallery-grid,
  .occasions-grid {
    grid-template-columns: 1fr;
  }

  .occasions-grid {
    grid-template-areas:
      "featured"
      "reception"
      "engagement"
      "private"
      "bartamandha"
      "birthday";
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item-featured,
  .gallery-item-tall,
  .gallery-item-wide {
    aspect-ratio: 4 / 4.2;
  }

  .gallery-item img,
  .gallery-item-featured img,
  .gallery-item-tall img,
  .gallery-item-wide img {
    aspect-ratio: inherit;
  }

  .occasion-card img {
    aspect-ratio: 4 / 3.2;
  }

  .tour-points {
    gap: 0.6rem;
  }

  .booking-step {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .tour-modal-controls {
    flex-direction: column;
  }

  .tour-close {
    top: 0.8rem;
    right: 0.8rem;
  }

  .map-card iframe {
    min-height: 18rem;
  }

  .wizard-hero {
    padding: 1rem;
  }

  .wizard-hero h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .wizard-progress {
    grid-template-columns: 1fr;
  }

  .wizard-progress button {
    min-height: 3.4rem;
  }

  .wizard-layout {
    padding: 0.8rem;
  }

  .hall-card img,
  .menu-tier img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .step-heading h3,
  .wizard-summary h3 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .feature-list,
  .package-facts,
  .chip-grid {
    gap: 0.45rem;
  }

  .footer {
    margin-bottom: 1rem;
  }
}

@media (max-width: 420px) {
  .site-shell {
    width: min(calc(100% - 0.75rem), 1400px);
  }

  .brand-text strong {
    font-size: 0.8rem;
  }

  .brand-text small {
    font-size: 0.68rem;
  }

  .hero-frame::before {
    inset: 0.55rem;
  }

  .hero-copy-block h1 {
    font-size: clamp(1.85rem, 10.8vw, 2.6rem);
  }

  .hero-text,
  .intro-band p,
  .occasion-content p:last-child,
  .space-content p:last-child,
  .booking-copy p,
  .location-copy p,
  .footer-grid p {
    font-size: 0.84rem;
  }

  .button {
    min-height: 3rem;
    padding: 0.85rem 1rem;
    font-size: 0.72rem;
  }

  .journey-card,
  .service-card,
  .testimonial-card,
  .booking-card,
  .occasion-content,
  .space-content,
  .tour-modal-copy,
  .wizard-summary,
  .wizard-hero,
  .hall-card > div,
  .menu-tier > div,
  .choice-card,
  .review-card {
    padding: 1rem;
  }
}
