:root {
  --ink: #171310;
  --muted: #6f675f;
  --cream: #f6f0e5;
  --paper: #fffdf8;
  --gold: #9f7940;
  --gold-dark: #745329;
  --line: #dcd1c2;
  --success: #236b4a;
  --danger: #a33939;
  --shadow: 0 24px 70px rgba(28, 21, 14, .12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(159,121,64,.16), transparent 34rem),
    linear-gradient(135deg, #f8f3e9, #eee4d5);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.message-list {
  display: grid;
  gap: .75rem;
  margin: 1rem 0;
}

.message {
  border-left: 3px solid var(--gold);
  background: rgba(139, 111, 61, .08);
  padding: .75rem 1rem;
}

.message.buyer {
  border-left-color: #59534a;
  background: rgba(89, 83, 74, .08);
}

.message p {
  white-space: pre-wrap;
}
a { color: var(--gold-dark); }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 20; background: #fff; padding: .8rem; }
.skip-link:focus { top: 1rem; }
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1180px;
  margin: auto;
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
}
.brand { color: var(--ink); text-decoration: none; display: grid; gap: .2rem; }
.brand-name { font: 600 clamp(1.25rem, 3vw, 1.65rem)/1 Georgia, serif; letter-spacing: .03em; }
.brand-role, .eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .68rem; color: var(--gold-dark); }
.text-link { font-size: .9rem; text-underline-offset: .3em; }
.booking-shell { width: min(1100px, calc(100% - 2rem)); margin: 2rem auto 5rem; }
.intro { max-width: 800px; margin: 0 auto 2rem; text-align: center; }
.intro h1 { font: 500 clamp(2.4rem, 7vw, 5rem)/.98 Georgia, serif; margin: .6rem 0 1rem; }
.intro > p:last-child { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--muted); line-height: 1.7; max-width: 700px; margin: auto; }
.panel {
  background: rgba(255,253,248,.96);
  border: 1px solid rgba(159,121,64,.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 4vw, 3rem);
}
.status-panel { text-align: center; padding: 2.5rem; }
.spinner { display: inline-block; width: 1rem; height: 1rem; border: 2px solid var(--line); border-top-color: var(--gold); border-radius: 50%; animation: spin .7s linear infinite; vertical-align: -.15rem; margin-right: .4rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.hidden { display: none !important; }
.progress { border-bottom: 1px solid var(--line); margin: -1rem 0 2rem; padding-bottom: 1.25rem; overflow-x: auto; }
.progress ol { display: flex; list-style: none; margin: 0; padding: 0; gap: .45rem; min-width: max-content; }
.progress li { width: 3rem; height: .3rem; border-radius: 5rem; background: var(--line); overflow: hidden; text-indent: -999px; }
.progress li.active, .progress li.done { background: var(--gold); }
.step { max-width: 850px; margin: auto; }
.step-count { color: var(--gold-dark); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
h2 { font: 500 clamp(1.8rem, 4vw, 3rem)/1.1 Georgia, serif; margin: .3rem 0 1rem; }
.muted { color: var(--muted); line-height: 1.6; }
.choice-grid, .package-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; margin: 1.5rem 0; }
.choice, .package-card {
  appearance: none;
  text-align: left;
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
  cursor: pointer;
  font: inherit;
  transition: .18s ease;
}
.choice:hover, .choice:focus-visible, .package-card:hover, .package-card:focus-visible { border-color: var(--gold); transform: translateY(-2px); outline: none; }
.choice.selected, .package-card.selected { border: 2px solid var(--gold); background: #fff8e9; }
.package-card strong { font: 600 1.2rem/1.2 Georgia, serif; display: block; margin-bottom: .4rem; }
.package-card span { display: block; color: var(--muted); line-height: 1.5; }
.package-card .price { color: var(--gold-dark); font-weight: 750; margin-top: .8rem; }
.addons { border: 0; padding: 0; margin: 2rem 0; }
.addons legend { font-weight: 700; margin-bottom: .7rem; }
.check { display: flex; gap: .75rem; align-items: flex-start; margin: 1rem 0; line-height: 1.45; }
.check input { width: 1.2rem; height: 1.2rem; margin-top: .1rem; accent-color: var(--gold-dark); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 1.5rem 0; }
label { display: grid; gap: .45rem; font-weight: 700; font-size: .9rem; }
label span { font-weight: 400; color: var(--muted); }
.wide { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: .82rem .9rem;
  font: inherit;
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(159,121,64,.22); border-color: var(--gold); }
textarea { resize: vertical; }
.date-search { display: flex; gap: 1rem; align-items: end; flex-wrap: wrap; margin: 1.5rem 0; }
.availability-days { display: grid; gap: 1rem; margin: 1rem 0 2rem; }
.day-card { border: 1px solid var(--line); border-radius: 12px; padding: 1rem; }
.day-card h3 { font: 600 1.1rem Georgia, serif; margin: 0 0 .8rem; }
.slots { display: flex; flex-wrap: wrap; gap: .5rem; }
.slot { appearance: none; border: 1px solid var(--gold); background: #fff; color: var(--gold-dark); border-radius: 999px; padding: .62rem .9rem; cursor: pointer; font: inherit; }
.slot.selected { background: var(--gold-dark); color: #fff; }
.slot small { display: block; opacity: .8; }
.button { appearance: none; border: 1px solid transparent; border-radius: 999px; padding: .8rem 1.25rem; font: 750 .92rem/1 inherit; cursor: pointer; transition: .15s ease; }
.button:hover { transform: translateY(-1px); }
.button:focus-visible { outline: 3px solid rgba(159,121,64,.35); outline-offset: 2px; }
.button.primary { color: #fff; background: var(--gold-dark); }
.button.secondary { color: var(--gold-dark); background: #fff; border-color: var(--gold); }
.button.quiet { background: transparent; color: var(--ink); border-color: var(--line); }
.form-actions { display: flex; justify-content: space-between; gap: 1rem; max-width: 850px; margin: 2rem auto 0; }
.inline-status { color: var(--muted); margin: 1rem 0; line-height: 1.5; }
.inline-status.error { color: var(--danger); }
.inline-status.success { color: var(--success); }
.review-summary { display: grid; gap: .7rem; padding: 1rem; background: var(--cream); border-radius: 12px; margin: 1.2rem 0; }
.review-row { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid rgba(0,0,0,.08); padding-bottom: .7rem; }
.review-row span:first-child { color: var(--muted); }
.notice { border-left: 4px solid var(--gold); background: #fff8e9; padding: 1rem; line-height: 1.55; margin: 1.2rem 0; }
.partner-notice { width: min(850px, 100%); margin: 0 auto 1rem; border: 1px solid var(--line); border-radius: 12px; background: #fff8e9; color: var(--gold-dark); padding: .85rem 1rem; text-align: center; line-height: 1.5; }
.portal-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.portal-card { border: 1px solid var(--line); border-radius: 12px; padding: 1rem; }
.portal-card h3 { font: 600 1.2rem Georgia, serif; margin-top: 0; }
.status-pill { display: inline-block; border-radius: 999px; padding: .3rem .65rem; background: var(--cream); color: var(--gold-dark); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
footer { text-align: center; color: var(--muted); font-size: .85rem; padding: 0 1rem 3rem; }

@media (max-width: 700px) {
  .booking-shell { width: min(100% - 1rem, 1100px); margin-top: 1rem; }
  .site-header { padding: 1rem; }
  .choice-grid, .package-grid, .field-grid, .portal-grid { grid-template-columns: 1fr; }
  .wide { grid-column: auto; }
  .intro { padding: 0 .5rem; }
  .panel { padding: 1.15rem; border-radius: 14px; }
  .review-row { display: grid; gap: .2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
