:root {
  --bg: #fcf8f2;
  --bg-soft: #f7f0e8;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --border: rgba(120, 94, 64, 0.16);
  --text: #2b2723;
  --muted: #6f645b;
  --gold: #c9a46a;
  --rose: #d5a996;
  --beige: #e9ddcf;
  --charcoal: #2e2a28;
  --shadow: 0 24px 60px rgba(60, 44, 27, 0.1);
  --shadow-soft: 0 18px 40px rgba(70, 48, 30, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(213, 169, 150, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(201, 164, 106, 0.12), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 55%, #fffefc 100%);
  line-height: 1.6;
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(247, 240, 232, 0.8));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(252, 248, 242, 0.78);
  border-bottom: 1px solid rgba(120, 94, 64, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 164, 106, 0.22), rgba(213, 169, 150, 0.24));
  border: 1px solid rgba(201, 164, 106, 0.28);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-copy span {
  font-size: 0.82rem;
  color: var(--muted);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  font-size: 0.94rem;
  color: var(--muted);
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--charcoal);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--charcoal);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold), #b99056);
  color: #fffdf9;
  box-shadow: 0 18px 35px rgba(185, 144, 86, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(120, 94, 64, 0.12);
  color: var(--charcoal);
  box-shadow: var(--shadow-soft);
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 164, 106, 0.18);
  color: #8a6a43;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 18px 0 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 4.2vw, 5rem);
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section h2 {
  font-size: clamp(2.4rem, 3.2vw, 3.6rem);
  line-height: 1;
}

.hero p,
.section-heading p,
.section-copy p,
.hall-card p,
.package-card p,
.testimonial-card p,
.contact-copy p,
.booking-copy p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.hero-highlights article {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.hero-highlights strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.hero-main-image {
  position: absolute;
  inset: 0 70px 80px 0;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-main-image img,
.hero-side-card img,
.about-visual img,
.event-card img,
.hall-card img,
.gallery-grid img,
.booking-copy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-side-card {
  position: absolute;
  right: 0;
  width: 250px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(120, 94, 64, 0.12);
  box-shadow: var(--shadow);
}

.hero-side-card img {
  height: 150px;
  border-radius: 16px;
  margin-bottom: 14px;
}

.hero-side-card strong {
  display: block;
  margin-bottom: 3px;
}

.hero-side-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.top-card {
  top: 48px;
}

.bottom-card {
  bottom: 0;
}

.section-grid,
.booking-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.feature-points span {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
  color: var(--charcoal);
}

.about-visual {
  height: 560px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.event-grid,
.hall-grid,
.package-grid,
.testimonial-grid {
  display: grid;
  gap: 24px;
}

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

.event-card,
.hall-card,
.package-card,
.testimonial-card,
.booking-form,
.map-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.event-card,
.hall-card,
.testimonial-card,
.map-card {
  overflow: hidden;
  border-radius: 24px;
}

.event-card img {
  height: 250px;
}

.event-card:hover,
.hall-card:hover,
.package-card:hover,
.testimonial-card:hover,
.map-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 164, 106, 0.24);
}

.event-card div {
  padding: 24px;
}

.event-card h3,
.hall-card h3,
.package-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.event-card p,
.hall-card p,
.package-card p {
  margin: 0;
}

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

.hall-card img {
  height: 300px;
}

.hall-card-body {
  padding: 24px;
}

.hall-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  margin-bottom: 12px;
}

.hall-topline span {
  color: #8a6a43;
  font-size: 0.9rem;
  font-weight: 800;
}

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

.package-card {
  padding: 30px 24px;
  border-radius: 24px;
}

.package-card ul {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.package-card li + li {
  margin-top: 10px;
}

.package-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #8a6a43;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-card.featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 240, 229, 0.95));
  border-color: rgba(201, 164, 106, 0.34);
  transform: translateY(-10px);
}

.booking-copy img {
  margin-top: 28px;
  height: 360px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.booking-form {
  padding: 30px;
  border-radius: 28px;
}

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

.booking-form label {
  display: grid;
  gap: 10px;
}

.booking-form span {
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(120, 94, 64, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  padding: 14px 16px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(201, 164, 106, 0.62);
  box-shadow: 0 0 0 4px rgba(201, 164, 106, 0.12);
}

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

.form-note {
  min-height: 24px;
  margin: 16px 0 0;
  color: #7b664b;
  font-weight: 600;
}

.booking-wizard-section {
  position: relative;
  overflow: clip;
}

.booking-wizard-section::before {
  content: "";
  position: absolute;
  inset: 60px auto auto -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 106, 0.14), transparent 68%);
  pointer-events: none;
}

.wizard-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(120, 94, 64, 0.14);
  background:
    radial-gradient(circle at top left, rgba(213, 169, 150, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 240, 232, 0.94));
  box-shadow: 0 28px 80px rgba(70, 48, 30, 0.1);
}

.wizard-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  padding: clamp(26px, 4vw, 46px);
  color: #fffdf9;
  background:
    linear-gradient(90deg, rgba(46, 42, 40, 0.9), rgba(46, 42, 40, 0.42)),
    url("banquetimages/hall3.webp") center/cover;
}

.wizard-hero .section-tag,
.wizard-summary .section-tag {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff7ec;
}

.wizard-hero h2 {
  max-width: 12ch;
  margin: 18px 0 14px;
  color: #fffdf9;
  font-size: clamp(2.7rem, 4vw, 4.6rem);
  line-height: 0.96;
}

.wizard-hero p:not(.section-tag) {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 253, 249, 0.8);
}

.wizard-save {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fff7ec;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 22px 24px 0;
}

.wizard-progress button {
  min-height: 76px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(120, 94, 64, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.wizard-progress button span {
  display: block;
  margin-bottom: 6px;
  color: #8a6a43;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.wizard-progress button.active,
.wizard-progress button.complete {
  color: var(--charcoal);
  border-color: rgba(201, 164, 106, 0.3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 243, 236, 0.96));
  box-shadow: 0 18px 34px rgba(70, 48, 30, 0.08);
}

.wizard-progress button.active span,
.wizard-progress button.complete span {
  color: var(--gold);
}

.wizard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  padding: 26px;
}

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

.wizard-step {
  display: none;
  animation: wizardFade 0.36s ease;
}

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

.step-heading {
  margin-bottom: 24px;
}

.step-heading .section-tag {
  margin-bottom: 12px;
}

.step-heading h3,
.wizard-summary h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  line-height: 0.98;
}

.step-heading p:not(.section-tag) {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
}

.detail-grid,
.wizard-hall-grid,
.wizard-package-grid,
.custom-choice,
.review-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.detail-grid label,
.designer-tools label,
.notes-field {
  display: grid;
  gap: 9px;
  color: #5e544c;
  font-size: 0.86rem;
  font-weight: 800;
}

.wizard-shell input,
.wizard-shell select,
.wizard-shell textarea {
  width: 100%;
  border: 1px solid rgba(120, 94, 64, 0.16);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.88);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.wizard-shell select option {
  color: var(--charcoal);
}

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

.wizard-shell input:focus,
.wizard-shell select:focus,
.wizard-shell textarea:focus {
  border-color: rgba(201, 164, 106, 0.62);
  box-shadow: 0 0 0 4px rgba(201, 164, 106, 0.12);
  background: #fff;
}

.wizard-hall-card,
.wizard-menu-tier,
.choice-card,
.accordion-section,
.wizard-review-card {
  border: 1px solid rgba(120, 94, 64, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(70, 48, 30, 0.08);
}

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

.wizard-hall-card:hover,
.wizard-menu-tier:hover,
.choice-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 164, 106, 0.26);
  box-shadow: 0 24px 50px rgba(70, 48, 30, 0.12);
}

.wizard-hall-card.selected,
.wizard-menu-tier.selected,
.choice-card.active {
  border-color: rgba(201, 164, 106, 0.36);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 243, 236, 0.95));
  box-shadow: 0 26px 54px rgba(185, 144, 86, 0.12);
}

.wizard-hall-card img,
.wizard-menu-tier img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.wizard-hall-card > div,
.wizard-menu-tier > div {
  padding: 22px;
}

.wizard-hall-card h4,
.wizard-menu-tier h4,
.accordion-section h4,
.wizard-review-card h4 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

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

.feature-list,
.package-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.feature-list span,
.package-facts span,
.badge,
.warning-pill,
.menu-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(120, 94, 64, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: #5e544c;
  font-size: 0.78rem;
  font-weight: 800;
}

.badge {
  color: #8a6a43;
}

.warning-pill {
  color: #9b5d1a;
  border-color: rgba(201, 130, 39, 0.24);
  background: rgba(255, 241, 223, 0.9);
}

.included {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(120, 94, 64, 0.1);
}

.included p + p {
  margin-top: 8px;
}

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

.wizard-toggle,
.wizard-mini-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 8px;
  border: 1px solid rgba(120, 94, 64, 0.14);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.9);
  color: #6e5942;
  font-size: 0.8rem;
  font-weight: 800;
}

.custom-choice {
  margin-bottom: 22px;
}

.choice-card {
  min-height: 158px;
  padding: 24px;
  border: 1px solid rgba(120, 94, 64, 0.12);
  text-align: left;
}

.choice-card span {
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--charcoal);
}

.choice-card small {
  color: var(--muted);
  line-height: 1.6;
}

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

.designer-tools {
  margin-bottom: 18px;
}

.accordion-list {
  display: grid;
  gap: 12px;
}

.accordion-section {
  overflow: hidden;
}

.accordion-head {
  width: 100%;
  border: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
  text-align: left;
  background: transparent;
}

.accordion-progress {
  min-width: 116px;
  text-align: right;
  color: #8a6a43;
  font-weight: 800;
}

.accordion-body {
  display: none;
  padding: 0 20px 20px;
}

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

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

.menu-chip {
  padding-inline: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.menu-chip.selected {
  color: #fffdf9;
  background: linear-gradient(135deg, var(--gold), #b99056);
  border-color: rgba(185, 144, 86, 0.7);
}

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

.menu-subtitle {
  width: 100%;
  margin: 14px 0 4px;
  color: #8a6a43;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wizard-review-card {
  padding: 22px;
}

.wizard-review-card[style] {
  grid-column: 1 / -1;
}

.notes-field {
  margin-top: 6px;
  margin-bottom: 18px;
}

.checkout-actions,
.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wizard-actions {
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(120, 94, 64, 0.1);
}

.wizard-summary {
  position: sticky;
  top: 108px;
  align-self: start;
  padding: 24px;
  border-radius: 28px;
  color: #fffdf9;
  background:
    linear-gradient(180deg, rgba(46, 42, 40, 0.9), rgba(46, 42, 40, 0.8)),
    url("banquetimages/table1.webp") center/cover;
  box-shadow: 0 24px 60px rgba(33, 28, 24, 0.22);
}

.wizard-summary h3 {
  color: #fffdf9;
}

.wizard-summary dl {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.wizard-summary dt {
  color: rgba(255, 253, 249, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wizard-summary dd {
  margin: -8px 0 0;
  color: #fffdf9;
  font-weight: 700;
}

.summary-meter {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.summary-meter span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold), #b99056);
  transition: width 0.24s ease;
}

@keyframes wizardFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-grid {
  display: grid;
  gap: 20px;
}

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

.gallery-card {
  margin: 0;
  position: relative;
  grid-column: span 3;
  grid-row: span 3;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  min-height: 0;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(33, 28, 24, 0.76) 100%);
}

.gallery-card figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: #fffdf9;
}

.gallery-card figcaption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.gallery-card figcaption span {
  display: block;
  color: rgba(255, 253, 249, 0.82);
  font-size: 0.88rem;
  line-height: 1.5;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card-large {
  grid-column: span 6;
  grid-row: span 5;
}

.gallery-card-wide {
  grid-column: span 6;
  grid-row: span 3;
}

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

.testimonial-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.testimonial-proof-chip {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(120, 94, 64, 0.1);
  color: #6a5846;
  font-size: 0.82rem;
  font-weight: 800;
}

.testimonial-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(120, 94, 64, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 243, 236, 0.95));
  box-shadow: 0 22px 48px rgba(70, 48, 30, 0.07);
}

.testimonial-card-compact::after {
  content: '"';
  position: absolute;
  right: 18px;
  top: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(201, 164, 106, 0.14);
  pointer-events: none;
}

.testimonial-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 20px 20px 0;
}

.testimonial-badge,
.testimonial-score,
.testimonial-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.testimonial-badge {
  min-height: 34px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(201, 164, 106, 0.2);
  color: #8a6a43;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-score {
  min-height: 34px;
  padding: 0 14px;
  background: linear-gradient(135deg, var(--gold), #b99056);
  color: #fffdf9;
  box-shadow: 0 12px 24px rgba(185, 144, 86, 0.22);
  font-size: 0.82rem;
  font-weight: 800;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.testimonial-person img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(60, 44, 27, 0.14);
}

.testimonial-person strong {
  display: block;
  margin: 0 0 4px;
  font-size: 1.02rem;
}

.testimonial-person span,
.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-rating {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  padding: 0 20px;
  color: #8a6a43;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  padding: 0 20px;
  color: #44362e;
  max-width: 28ch;
}

.compact-quote {
  font-size: 1.16rem;
  line-height: 1.5;
}

.testimonial-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding: 0 20px 20px;
}

.testimonial-tags span {
  min-height: 32px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(120, 94, 64, 0.12);
  color: #5f534a;
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-list a:not(.whatsapp-button),
.contact-list p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
}

.map-card iframe {
  width: 100%;
  height: 460px;
  border: 0;
}

.site-footer {
  padding: 36px 0 42px;
}

.footer-shell {
  padding: 34px 34px 24px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 240, 232, 0.9));
  border: 1px solid rgba(120, 94, 64, 0.12);
  box-shadow: var(--shadow-soft);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.footer-brand-block p,
.footer-column p,
.footer-column a {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand-block p {
  max-width: 38ch;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-badges span {
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(120, 94, 64, 0.12);
  color: #5f534a;
  font-size: 0.84rem;
  font-weight: 700;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h3 {
  margin: 6px 0 8px;
  font-size: 1rem;
  color: var(--charcoal);
}

.footer-column a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #8a6a43;
  transform: translateX(2px);
}

.footer-contact {
  justify-items: start;
}

.footer-button {
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(120, 94, 64, 0.12);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-ready .reveal.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 1100px) {
  .hero-grid,
  .section-grid,
  .contact-grid,
  .hall-grid,
  .package-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero-visual {
    min-height: 560px;
  }

  .hero-main-image {
    inset: 0 48px 70px 0;
  }

  .hero-side-card {
    width: 220px;
  }

  .gallery-grid-enhanced {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .gallery-card-large,
  .gallery-card-wide {
    grid-column: span 6;
  }

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

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

@media (max-width: 820px) {
  .section {
    padding: 86px 0;
  }

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

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(120, 94, 64, 0.12);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .section-grid,
  .contact-grid,
  .event-grid,
  .hall-grid,
  .package-grid,
  .testimonial-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-shell {
    padding: 28px 22px 22px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1,
  .section h2 {
    line-height: 1;
  }

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

  .hero-visual {
    display: grid;
    gap: 16px;
    min-height: 0;
  }

  .hero-main-image {
    position: relative;
    inset: auto;
    height: 300px;
  }

  .hero-side-card {
    position: relative;
    right: auto;
    left: auto;
    width: auto;
  }

  .top-card {
    top: auto;
    bottom: auto;
  }

  .bottom-card {
    bottom: auto;
  }

  .about-visual,
  .map-card iframe {
    height: 340px;
  }

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

  .gallery-card,
  .gallery-card-large,
  .gallery-card-wide,
  .gallery-card-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .wizard-hero,
  .wizard-layout,
  .wizard-progress {
    padding-inline: 20px;
  }

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

  .wizard-hero h2 {
    max-width: 14ch;
  }

  .wizard-progress {
    display: flex;
    overflow-x: auto;
    padding-top: 18px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .wizard-progress::-webkit-scrollbar {
    display: none;
  }

  .wizard-progress button {
    flex: 0 0 190px;
  }

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

  .wizard-actions,
  .checkout-actions {
    justify-content: stretch;
  }

  .wizard-review-card[style] {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy span {
    display: none;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .section h2 {
    font-size: 2.2rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    min-height: 52px;
  }

  .hall-topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .hero {
    padding-top: 24px;
  }

  .testimonial-proof {
    gap: 10px;
  }

  .testimonial-proof-chip {
    width: 100%;
    justify-content: center;
  }

  .testimonial-card {
    border-radius: 24px;
  }

  .testimonial-person {
    gap: 12px;
  }

  .testimonial-person img {
    width: 64px;
    height: 64px;
  }

  .testimonial-person strong {
    font-size: 1.04rem;
  }

  .compact-quote {
    font-size: 1.08rem;
    max-width: 100%;
  }

  .hero-main-image {
    height: 250px;
    border-radius: 28px;
  }

  .hero-side-card {
    padding: 10px;
    border-radius: 20px;
  }

  .hero-side-card img {
    height: 118px;
  }

  .wizard-shell {
    border-radius: 28px;
  }

  .wizard-hero,
  .wizard-layout {
    padding: 18px;
  }

  .wizard-progress {
    padding-inline: 18px;
  }

  .wizard-progress button {
    flex-basis: 160px;
    min-height: 72px;
    border-radius: 18px;
  }

  .wizard-hall-card img,
  .wizard-menu-tier img {
    height: 190px;
  }

  .wizard-hall-card > div,
  .wizard-menu-tier > div,
  .wizard-review-card,
  .choice-card {
    padding: 18px;
  }

  .wizard-hall-card h4,
  .wizard-menu-tier h4,
  .accordion-section h4,
  .wizard-review-card h4 {
    font-size: 1.75rem;
  }

  .step-heading h3,
  .wizard-summary h3 {
    font-size: 2rem;
  }

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