:root {
  color-scheme: dark;
  --bg: #0b0b0b;
  --surface: #141414;
  --surface-2: #1b1a18;
  --surface-3: #23211d;
  --line: #34312b;
  --line-soft: #282622;
  --gold: #d1af61;
  --gold-strong: #e0c174;
  --gold-soft: #8d7647;
  --cream: #f4efe5;
  --muted: #b6b0a5;
  --muted-2: #8f8a82;
  --success: #79bd8b;
  --danger: #f18c82;
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 13px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -15%, rgba(209, 175, 97, .13), transparent 34rem),
    var(--bg);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.has-dialog {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 12px max(22px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(209, 175, 97, .18);
  background: rgba(11, 11, 11, .88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  text-decoration: none;
}

.brand-mark,
.assistant-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: linear-gradient(145deg, #201d17, #0e0e0e);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-contact {
  padding: 9px 15px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  color: var(--gold-strong);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.header-contact:hover,
.header-contact:focus-visible {
  background: var(--gold);
  color: #111;
  outline: none;
}

main {
  overflow: hidden;
}

.assistant-section,
.gallery-section,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.assistant-section {
  padding: 64px 0 84px;
}

.assistant-heading {
  max-width: 730px;
  margin: 0 auto 34px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.12;
}

h1 {
  margin: 0;
  font-size: clamp(35px, 6vw, 60px);
  letter-spacing: -.035em;
}

.assistant-heading > p:last-child {
  max-width: 580px;
  margin: 17px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.assistant-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(20, 20, 20, .96);
  box-shadow: var(--shadow);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0 30px;
  border-bottom: 1px solid var(--line-soft);
  list-style: none;
}

.stepper li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 62px;
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 700;
}

.stepper li::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: transparent;
  content: "";
}

.stepper li span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
}

.stepper li.is-current,
.stepper li.is-complete {
  color: var(--gold-strong);
}

.stepper li.is-current::after {
  background: var(--gold);
}

.stepper li.is-complete span {
  border-color: var(--gold);
  background: var(--gold);
  color: #111;
}

.wizard-screen {
  padding: clamp(28px, 5vw, 62px);
}

.wizard-screen[data-screen="start"] {
  max-width: 830px;
  margin: auto;
}

.assistant-message {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 27px;
}

.assistant-message > div {
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 4px 17px 17px;
  background: var(--surface-2);
}

.assistant-message small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.assistant-message p {
  margin: 3px 0 0;
  font-size: 18px;
}

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

.choice-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.choice-card:hover,
.choice-card:focus-visible {
  border-color: var(--gold-soft);
  background: var(--surface-3);
  outline: none;
  transform: translateY(-2px);
}

.choice-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-soft);
  border-radius: 12px;
  color: var(--gold);
  font-size: 21px;
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  font-size: 17px;
}

.choice-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.choice-arrow {
  color: var(--gold);
  font-size: 28px;
}

.choice-price {
  grid-column: 2 / -1;
  color: var(--gold-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.back-button,
.text-button,
.terms-button,
.breakdown-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.back-button,
.text-button {
  padding: 7px 0;
  color: var(--gold-strong);
  font-size: 14px;
  font-weight: 700;
}

.back-button:hover,
.text-button:hover,
.back-button:focus-visible,
.text-button:focus-visible {
  color: var(--cream);
  outline: none;
}

.question-block {
  max-width: 650px;
  margin: 35px auto 15px;
  text-align: center;
}

.question-block h2 {
  margin: 0;
  font-size: clamp(29px, 5vw, 43px);
}

.question-block > p:not(.eyebrow) {
  margin: 13px 0 25px;
  color: var(--muted);
}

.number-field {
  display: flex;
  align-items: center;
  max-width: 420px;
  margin: 0 auto 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #0f0f0f;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.number-field:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(209, 175, 97, .12);
}

.number-field input {
  width: 100%;
  min-height: 60px;
  padding: 0 8px 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--cream);
  font-size: 20px;
}

.number-field span {
  padding: 0 18px;
  color: var(--muted);
}

.field-error {
  margin: 0 0 13px;
  color: var(--danger);
  font-size: 14px;
}

.primary-button,
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  background: var(--gold);
  color: #111;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.primary-button:hover,
.primary-button:focus-visible,
.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: var(--gold-strong);
  outline: none;
  transform: translateY(-1px);
}

#guestForm .primary-button {
  width: min(100%, 420px);
}

.venue-choice-grid {
  margin-top: 25px;
}

.calculator-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 20px;
}

.calculator-controls {
  display: grid;
  gap: 16px;
}

.control-card,
.summary-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
}

.control-card {
  padding: clamp(19px, 3vw, 27px);
}

.control-card h2,
.control-card h3,
.summary-card h2 {
  margin: 0;
}

.control-card h2 {
  font-size: 29px;
}

.control-card h3 {
  font-size: 23px;
}

#selectedPackageMeta,
.section-copy,
.help-text {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.segmented-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.segment-option {
  position: relative;
}

.segment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segment-option label {
  display: block;
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #111;
  cursor: pointer;
}

.segment-option label strong,
.segment-option label small {
  display: block;
}

.segment-option label small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.segment-option input:checked + label {
  border-color: var(--gold);
  background: rgba(209, 175, 97, .09);
  box-shadow: inset 0 0 0 1px var(--gold-soft);
}

.segment-option input:focus-visible + label {
  outline: 3px solid rgba(209, 175, 97, .22);
  outline-offset: 2px;
}

.segment-option input:disabled + label {
  cursor: not-allowed;
  opacity: .65;
}

.option-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.check-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 11px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: #111;
  cursor: pointer;
}

.check-option:hover {
  border-color: var(--gold-soft);
}

.check-option input,
.addon-check input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--gold);
}

.check-option strong,
.check-option small {
  display: block;
}

.check-option strong {
  font-size: 14px;
}

.check-option small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.option-price {
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.addon-groups {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.addon-group,
.facility-group {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: #111;
}

.addon-group > summary,
.facility-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 13px 15px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.addon-group > summary::-webkit-details-marker,
.facility-group > summary::-webkit-details-marker {
  display: none;
}

.addon-group > summary::after,
.facility-group > summary::after {
  color: var(--gold);
  font-size: 21px;
  font-weight: 400;
  content: "+";
}

.addon-group[open] > summary::after,
.facility-group[open] > summary::after {
  content: "−";
}

.addon-group[open] > summary,
.facility-group[open] > summary {
  border-bottom: 1px solid var(--line-soft);
}

.addon-group-body {
  display: grid;
  gap: 1px;
  background: var(--line-soft);
}

.addon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
  align-items: center;
  gap: 15px;
  padding: 13px 15px;
  background: #151515;
}

.addon-label strong,
.addon-label small {
  display: block;
}

.addon-label strong {
  font-size: 14px;
}

.addon-label small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.addon-check {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.addon-control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.addon-control input,
.addon-control select,
.stall-builder input,
.stall-builder select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  background: #0c0c0c;
  color: var(--cream);
}

.addon-control input,
.stall-builder input {
  width: 86px;
  padding: 8px 10px;
}

.addon-control select,
.stall-builder select {
  width: min(240px, 100%);
  padding: 8px 32px 8px 10px;
}

.addon-control input:focus,
.addon-control select:focus,
.stall-builder input:focus,
.stall-builder select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(209, 175, 97, .1);
}

.addon-unit {
  color: var(--muted);
  font-size: 12px;
}

.stall-panel {
  padding: 15px;
  background: #151515;
}

.stall-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px auto;
  gap: 8px;
}

.stall-builder select,
.stall-builder input {
  width: 100%;
}

.stall-add {
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid var(--gold-soft);
  border-radius: 9px;
  background: transparent;
  color: var(--gold-strong);
  font-weight: 800;
  cursor: pointer;
}

.stall-add:hover,
.stall-add:focus-visible {
  border-color: var(--gold);
  background: rgba(209, 175, 97, .09);
  outline: none;
}

.stall-hint {
  min-height: 19px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.selected-stalls {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.selected-stall {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 9px;
  background: #0e0e0e;
  font-size: 13px;
}

.selected-stall span:nth-child(2) {
  color: var(--gold-strong);
  font-weight: 800;
}

.remove-stall {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #24211d;
  color: var(--muted);
  cursor: pointer;
}

.remove-stall:hover,
.remove-stall:focus-visible {
  background: #3a2724;
  color: var(--danger);
  outline: none;
}

.live-badge {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(121, 189, 139, .12);
  color: var(--success);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

#facilityDetails {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.facility-group ul {
  margin: 0;
  padding: 14px 20px 17px 36px;
  color: var(--muted);
  font-size: 14px;
}

.facility-group li + li {
  margin-top: 6px;
}

.removed-facilities,
.added-facilities {
  padding: 14px 15px;
  border-radius: var(--radius-md);
  font-size: 14px;
}

.removed-facilities {
  border: 1px solid rgba(241, 140, 130, .28);
  background: rgba(241, 140, 130, .06);
}

.added-facilities {
  border: 1px solid rgba(121, 189, 139, .28);
  background: rgba(121, 189, 139, .06);
}

.removed-facilities strong,
.added-facilities strong {
  display: block;
  margin-bottom: 5px;
}

.removed-facilities strong {
  color: var(--danger);
}

.added-facilities strong {
  color: var(--success);
}

.removed-facilities ul,
.added-facilities ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.summary-card {
  position: sticky;
  top: 96px;
  padding: 25px;
  background: linear-gradient(155deg, #211e18 0%, #151515 55%);
}

.summary-card h2 {
  font-size: 28px;
}

.summary-meta {
  margin: 7px 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.total-price {
  color: var(--gold-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -.025em;
}

.price-note {
  margin: 12px 0;
  color: var(--muted);
  font-size: 12px;
}

.terms-button {
  padding: 4px 0;
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold-soft);
  text-underline-offset: 3px;
}

.terms-button:hover,
.terms-button:focus-visible {
  color: var(--cream);
  outline: none;
}

.breakdown {
  margin: 20px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.breakdown-toggle {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 10px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.breakdown-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.breakdown-toggle span {
  color: var(--gold);
  transition: transform .2s ease;
}

.breakdown-toggle[aria-expanded="false"] span {
  transform: rotate(180deg);
}

.breakdown-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 5px 0;
  color: var(--muted);
  font-size: 12px;
}

.breakdown-row strong {
  color: var(--cream);
  font-weight: 700;
  text-align: right;
}

.breakdown-row.is-deduction strong {
  color: var(--success);
}

.breakdown-row.is-addition strong {
  color: var(--gold-strong);
}

.breakdown-row.is-total {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
}

.whatsapp-button {
  width: 100%;
  background: #70b77e;
  border-color: #70b77e;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #82c68f;
}

.summary-footnote {
  margin: 10px 0 0;
  color: var(--muted-2);
  font-size: 11px;
  text-align: center;
}

.gallery-section {
  padding: 80px 0 95px;
  border-top: 1px solid var(--line-soft);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 30px;
  margin-bottom: 36px;
}

.gallery-heading h2 {
  margin: 0;
  font-size: clamp(33px, 5vw, 52px);
}

.gallery-heading > p {
  margin: 0;
  color: var(--muted);
}

.gallery-group + .gallery-group {
  margin-top: 48px;
}

.gallery-group > h3 {
  margin: 0 0 15px;
  font-size: 20px;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--surface-2);
  cursor: zoom-in;
}

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

.gallery-item::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: brightness(1.06);
  transform: scale(1.025);
}

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

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

.portrait-grid .gallery-item {
  aspect-ratio: 2 / 3;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 35px 0 45px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
}

.site-footer p {
  margin: 4px 0 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 13px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-strong);
}

.modal {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 18px;
  border: 0;
  background: transparent;
  color: #201d18;
}

.modal::backdrop {
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(5px);
}

.modal-panel {
  display: flex;
  flex-direction: column;
  width: min(780px, 100%);
  max-height: calc(100vh - 36px);
  margin: auto;
  overflow: hidden;
  border: 1px solid #d6c59d;
  border-radius: 20px;
  background: #f4efe5;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

.modal-header,
.modal-footer {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 23px;
}

.modal-header {
  border-bottom: 1px solid #dcd2bd;
}

.modal-header .eyebrow {
  color: #8b6a27;
}

.modal-header h2 {
  margin: 0;
  font-size: 31px;
}

.modal-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #cfc3ac;
  border-radius: 50%;
  background: transparent;
  color: #4f493f;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: #8b6a27;
  color: #8b6a27;
  outline: none;
}

.modal-body {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px 23px 10px;
  scrollbar-color: #aa8d50 #e5ddcf;
}

.terms-intro {
  margin: 0;
  padding: 15px;
  border-left: 3px solid #a9873f;
  background: #e9e0cf;
  font-weight: 600;
}

.terms-content section {
  padding: 20px 0;
  border-bottom: 1px solid #ddd3c0;
}

.terms-content h3 {
  margin: 0 0 10px;
  color: #171511;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.terms-content h4 {
  margin: 14px 0 5px;
  color: #826322;
  font-size: 14px;
  text-transform: uppercase;
}

.terms-content p,
.terms-content li {
  font-size: 14px;
  line-height: 1.65;
}

.terms-content p {
  margin: 9px 0 0;
}

.terms-content ul {
  margin: 8px 0 0;
  padding-left: 21px;
}

.terms-content li + li {
  margin-top: 6px;
}

.terms-important {
  margin: 18px 0;
  padding: 18px !important;
  border: 1px solid #cbb071 !important;
  border-radius: 13px;
  background: #eee5d4;
}

.modal-footer {
  justify-content: flex-end;
  border-top: 1px solid #dcd2bd;
}

.modal-footer .primary-button {
  min-width: 180px;
}

.gallery-modal {
  padding: 20px;
  color: var(--cream);
}

.gallery-modal-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(1100px, 100%);
  height: 100%;
  margin: auto;
}

.gallery-modal-panel img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 100px);
  border-radius: 13px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.gallery-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  border-color: rgba(255, 255, 255, .35);
  background: rgba(0, 0, 0, .62);
  color: #fff;
}

.gallery-modal-panel p {
  margin: 9px 0 0;
  color: var(--cream);
  font-size: 13px;
  text-align: center;
}

.noscript-message {
  position: fixed;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 50;
  padding: 14px;
  border-radius: 10px;
  background: #7a3029;
  color: #fff;
  text-align: center;
}

@media (max-width: 980px) {
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
    grid-row: 1;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 10px;
  }

  .header-contact {
    padding: 8px 11px;
    font-size: 12px;
  }

  .assistant-section,
  .gallery-section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .assistant-section {
    padding: 42px 0 60px;
  }

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

  .assistant-heading > p:last-child {
    font-size: 16px;
  }

  .stepper {
    padding-inline: 8px;
  }

  .stepper li {
    min-height: 53px;
    font-size: 11px;
  }

  .stepper li span {
    width: 21px;
    height: 21px;
    font-size: 10px;
  }

  .wizard-screen {
    padding: 22px 15px 25px;
  }

  .choice-grid,
  .venue-choice-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 92px;
  }

  .question-block {
    margin-top: 24px;
  }

  .calculator-layout,
  .calculator-controls {
    gap: 12px;
  }

  .control-card,
  .summary-card {
    border-radius: 15px;
  }

  .control-card,
  .summary-card {
    padding: 18px;
  }

  .section-title-row {
    align-items: center;
  }

  .section-title-row h3 {
    font-size: 21px;
  }

  .live-badge {
    max-width: 88px;
    white-space: normal;
    text-align: center;
  }

  .addon-row {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .addon-check,
  .addon-control {
    justify-content: flex-start;
  }

  .addon-control select {
    width: 100%;
  }

  .stall-builder {
    grid-template-columns: 1fr 90px;
  }

  .stall-builder select {
    grid-column: 1 / -1;
  }

  .selected-stall {
    grid-template-columns: 1fr auto;
  }

  .selected-stall span:nth-child(2) {
    grid-column: 1;
  }

  .remove-stall {
    grid-row: 1 / 3;
    grid-column: 2;
  }

  .gallery-section {
    padding: 60px 0 70px;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-bottom: 27px;
  }

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

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

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

  .footer-links {
    justify-content: flex-start;
  }

  .modal {
    padding: 8px;
  }

  .modal-panel {
    max-height: calc(100vh - 16px);
    border-radius: 16px;
  }

  .modal-header,
  .modal-footer {
    padding: 15px;
  }

  .modal-body {
    padding: 17px 15px 8px;
  }

  .modal-header h2 {
    font-size: 25px;
  }

  .gallery-modal {
    padding: 8px;
  }
}

@media (max-width: 390px) {
  .header-contact {
    max-width: 92px;
    line-height: 1.2;
    text-align: center;
  }

  .stepper li {
    gap: 4px;
  }

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

  .check-option {
    grid-template-columns: auto 1fr;
  }

  .option-price {
    grid-column: 2;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Jagarasa Venue visual refresh - v1.1 */
:root {
  color-scheme: light;
  --bg: #f5f1e9;
  --surface: #fffaf1;
  --surface-2: #ffffff;
  --surface-3: #e9e2d6;
  --line: rgba(21, 19, 15, .16);
  --line-soft: rgba(21, 19, 15, .1);
  --gold: #c8a46b;
  --gold-strong: #916b32;
  --gold-soft: #b28b51;
  --cream: #fffaf1;
  --ink: #15130f;
  --ink-soft: #25221c;
  --paper: #f5f1e9;
  --paper-deep: #e9e2d6;
  --muted: #716c62;
  --muted-2: #8b857b;
  --success: #4b7e59;
  --danger: #9d4b42;
}

html,
body {
  background: var(--paper);
}

body {
  color: var(--ink);
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.site-header {
  min-height: 80px;
  border-bottom-color: rgba(255, 255, 255, .1);
  background: rgba(21, 19, 15, .95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

.brand {
  align-items: center;
  gap: 13px;
}

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

.brand > span {
  padding-left: 13px;
  border-left: 1px solid rgba(223, 197, 150, .38);
  color: #dfc596;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.header-contact {
  border-color: var(--gold);
  color: #dfc596;
}

.header-contact:hover,
.header-contact:focus-visible {
  background: var(--gold);
  color: var(--ink);
}

main {
  background: var(--paper);
}

.assistant-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 68px max(20px, calc((100vw - 1180px) / 2)) 92px;
  overflow: hidden;
  background: var(--ink);
}

.assistant-section::before {
  position: absolute;
  inset: 0 0 auto;
  height: 500px;
  background:
    linear-gradient(180deg, rgba(21, 19, 15, .58), rgba(21, 19, 15, .96)),
    linear-gradient(90deg, rgba(21, 19, 15, .55), transparent 48%, rgba(21, 19, 15, .55)),
    url("../brand/hero-assistant.webp") center 42% / cover no-repeat;
  content: "";
  pointer-events: none;
}

.assistant-heading,
.assistant-shell {
  position: relative;
  z-index: 1;
}

.assistant-heading {
  max-width: 700px;
  margin-bottom: 38px;
  color: var(--cream);
}

.assistant-heading .eyebrow,
#selectionCard .eyebrow,
.summary-card .eyebrow {
  color: #dfc596;
}

.assistant-heading > p:last-child {
  color: rgba(255, 250, 241, .76);
}

.assistant-shell {
  width: min(1160px, 100%);
  margin-inline: auto;
  overflow: visible;
  border: 0;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
}

.stepper {
  border-bottom-color: var(--line);
  background: #fffaf1;
}

.stepper li {
  color: var(--muted-2);
}

.stepper li.is-current,
.stepper li.is-complete {
  color: var(--gold-strong);
}

.stepper li.is-current::after {
  background: var(--gold-strong);
}

.stepper li.is-complete span {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.wizard-screen[data-screen="start"] {
  max-width: 870px;
  padding-top: 50px;
  padding-bottom: 58px;
}

.assistant-prompt {
  max-width: 650px;
  margin: 0 auto 30px;
  text-align: center;
}

.assistant-prompt h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
}

.assistant-prompt .eyebrow {
  color: var(--gold-strong);
}

.choice-card {
  border-color: var(--line);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 25px rgba(35, 29, 19, .06);
}

.choice-card:hover,
.choice-card:focus-visible {
  border-color: var(--gold-soft);
  background: #fffaf1;
  box-shadow: 0 13px 34px rgba(35, 29, 19, .1);
}

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

.choice-icon {
  border-color: rgba(145, 107, 50, .45);
  border-radius: 50%;
  color: var(--gold-strong);
}

.choice-arrow,
.choice-price {
  color: var(--gold-strong);
}

.back-button,
.text-button {
  color: var(--gold-strong);
}

.back-button:hover,
.text-button:hover,
.back-button:focus-visible,
.text-button:focus-visible {
  color: var(--ink);
}

.question-block h2,
.control-card h2,
.control-card h3 {
  color: var(--ink);
}

.control-card .eyebrow {
  color: var(--gold-strong);
}

.question-block > p:not(.eyebrow),
#selectedPackageMeta,
.section-copy,
.help-text {
  color: var(--muted);
}

.number-field {
  border-color: var(--line);
  background: #fff;
}

.number-field input {
  color: var(--ink);
}

.number-field span {
  color: var(--muted);
}

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

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

.calculator-layout {
  display: block;
  padding-right: 388px;
}

.calculator-controls {
  width: 100%;
  max-width: 750px;
}

.control-card {
  border-color: var(--line);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(35, 29, 19, .055);
}

#selectionCard {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

#selectionCard h2 {
  color: var(--cream);
}

#selectionCard #selectedPackageMeta {
  color: rgba(255, 250, 241, .72);
}

#venueChoiceSection {
  background: var(--paper-deep);
}

.segmented-options {
  gap: 8px;
}

.segment-option label {
  border-color: var(--line);
  border-radius: 3px;
  background: rgba(255, 255, 255, .7);
  color: var(--ink);
}

.segment-option label small {
  color: var(--muted);
}

.segment-option input:checked + label {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
  box-shadow: none;
}

.segment-option input:checked + label small {
  color: rgba(255, 250, 241, .7);
}

.facilities-card {
  position: relative;
  border-top: 4px solid var(--gold);
  padding-top: 24px;
  background: #fff;
}

.facilities-card .section-title-row h3 {
  font-size: 27px;
}

.live-badge {
  background: rgba(75, 126, 89, .11);
  color: var(--success);
}

.facility-group {
  border-color: var(--line);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
}

.facility-group > summary {
  min-height: 58px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 600;
}

.facility-group[open] > summary {
  border-bottom-color: var(--line);
  background: #fffaf1;
}

.facility-group ul {
  color: var(--muted);
}

.adjustment-card {
  border-radius: 2px;
  box-shadow: none;
}

.adjustment-card-deduction {
  border: 1px dashed rgba(126, 92, 48, .4);
  background: #eee6d8;
}

.adjustment-card-addition {
  border: 1px dashed rgba(77, 100, 62, .38);
  background: #e7eadf;
}

.adjustment-card .eyebrow {
  margin-bottom: 4px;
  font-size: 10px;
  letter-spacing: .13em;
}

.adjustment-card .section-title-row h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.adjustment-card .section-copy {
  max-width: 620px;
  font-size: 12px;
  line-height: 1.5;
}

.adjustment-card .option-list,
.adjustment-card .addon-groups {
  gap: 7px;
  margin-top: 14px;
}

.check-option {
  min-height: 52px;
  border-color: rgba(21, 19, 15, .12);
  border-radius: 2px;
  background: rgba(255, 255, 255, .68);
  color: var(--ink);
}

.check-option strong {
  font-size: 13px;
}

.check-option small,
.addon-label small,
.addon-unit,
.stall-hint {
  color: var(--muted);
}

.option-price {
  color: #795b2c;
  font-size: 12px;
}

.addon-group {
  border-color: rgba(21, 19, 15, .13);
  border-radius: 2px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
}

.addon-group > summary {
  min-height: 49px;
  font-size: 13px;
}

.addon-group[open] > summary {
  border-bottom-color: var(--line);
}

.addon-group-body {
  background: var(--line-soft);
}

.addon-row,
.stall-panel {
  background: rgba(255, 255, 255, .76);
}

.addon-label strong {
  color: var(--ink);
  font-size: 13px;
}

.addon-check,
.addon-group > summary::after,
.facility-group > summary::after {
  color: var(--gold-strong);
}

.addon-control input,
.addon-control select,
.stall-builder input,
.stall-builder select {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.stall-add {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.stall-add:hover,
.stall-add:focus-visible {
  border-color: var(--ink-soft);
  background: var(--ink-soft);
}

.selected-stall {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.selected-stall span:nth-child(2) {
  color: var(--gold-strong);
}

.remove-stall {
  background: var(--paper-deep);
  color: var(--muted);
}

.removed-facilities,
.added-facilities {
  border-radius: 2px;
  font-size: 12px;
}

.removed-facilities {
  border-color: rgba(157, 75, 66, .26);
  background: #f5e8e5;
}

.added-facilities {
  border-color: rgba(75, 126, 89, .25);
  background: #e8f0e7;
}

.removed-facilities ul,
.added-facilities ul {
  color: var(--muted);
}

.summary-card {
  position: fixed;
  z-index: 40;
  top: auto;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: 20px;
  width: min(354px, calc(100vw - 32px));
  max-height: calc(100svh - 105px);
  padding: 16px 18px;
  overflow-y: auto;
  border: 1px solid rgba(223, 197, 150, .58);
  border-radius: 4px;
  background: rgba(21, 19, 15, .97);
  color: var(--cream);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .38);
  backdrop-filter: blur(14px);
}

.summary-floating-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.summary-floating-head .eyebrow {
  margin-bottom: 4px;
  font-size: 10px;
}

.summary-card .total-price {
  color: #dfc596;
  font-size: 31px;
}

.summary-expand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid rgba(223, 197, 150, .42);
  border-radius: 999px;
  background: transparent;
  color: #dfc596;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.summary-expand b {
  font-size: 12px;
  font-weight: 400;
  transform: rotate(180deg);
  transition: transform .2s ease;
}

.summary-expand[aria-expanded="true"] b {
  transform: rotate(0);
}

.summary-expand:hover,
.summary-expand:focus-visible {
  border-color: #dfc596;
  background: rgba(223, 197, 150, .09);
  outline: none;
}

.summary-details {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.summary-card h2 {
  color: var(--cream);
  font-size: 23px;
}

.summary-meta,
.price-note,
.summary-footnote,
.breakdown-row {
  color: rgba(255, 250, 241, .64);
}

.summary-meta {
  margin-bottom: 10px;
}

.terms-button {
  color: #dfc596;
}

.breakdown {
  border-color: rgba(255, 255, 255, .13);
}

.breakdown-toggle,
.breakdown-row strong,
.breakdown-row.is-total {
  color: var(--cream);
}

.breakdown-row.is-deduction strong {
  color: #8ed09d;
}

.breakdown-row.is-addition strong,
.breakdown-toggle span {
  color: #dfc596;
}

.whatsapp-button {
  border-color: #4f9f66;
  background: #4f9f66;
  color: #fff;
}

.gallery-section {
  width: min(1180px, calc(100% - 40px));
  padding-top: 90px;
  border-top: 0;
  background: var(--paper);
  color: var(--ink);
}

.gallery-heading > p {
  color: var(--muted);
}

.gallery-item {
  border-radius: 2px;
  background: var(--paper-deep);
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 38px max(22px, calc((100vw - 1180px) / 2)) 44px;
  border-top: 0;
  background: var(--ink);
  color: rgba(255, 250, 241, .66);
}

.footer-logo {
  display: block;
  width: 175px;
  height: auto;
  margin-bottom: 7px;
}

.site-footer p {
  color: rgba(255, 250, 241, .6);
}

.footer-links a {
  color: var(--cream);
}

@media (max-width: 1180px) {
  .calculator-layout {
    display: block;
    padding-right: 0;
  }

  .calculator-controls {
    max-width: none;
    padding-bottom: 100px;
  }

  .summary-card {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    max-height: calc(100svh - 92px);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 142px;
  }

  .brand > span {
    display: none;
  }

  .assistant-section {
    padding: 44px 12px 64px;
  }

  .assistant-section::before {
    height: 430px;
  }

  .assistant-heading {
    width: min(100% - 12px, 700px);
  }

  .assistant-shell {
    border-radius: 3px;
  }

  .wizard-screen[data-screen="start"] {
    padding-top: 34px;
    padding-bottom: 37px;
  }

  .assistant-prompt {
    margin-bottom: 23px;
  }

  .choice-card {
    min-height: 88px;
  }

  .facilities-card .section-title-row h3 {
    font-size: 23px;
  }

  .adjustment-card {
    padding: 15px;
  }

  .summary-card {
    padding: 13px 14px;
  }

  .summary-card .total-price {
    font-size: 26px;
  }

  .summary-expand {
    min-height: 34px;
    padding: 6px 9px;
  }

  .gallery-section {
    width: min(100% - 24px, 1180px);
  }

  .site-footer {
    padding: 34px 18px 40px;
  }
}

@media (max-width: 390px) {
  .summary-floating-head {
    gap: 8px;
  }

  .summary-card .total-price {
    font-size: 23px;
  }

  .summary-expand span {
    max-width: 62px;
    line-height: 1.15;
    text-align: center;
  }
}
