/* ================== TOKENS ================== */
:root {
  --bg: #fbf6ec;
  --bg-2: #f5ecd8;
  --paper: #fdf9f0;
  --ink: #2b2418;
  --ink-2: #5a4f3c;
  --ink-3: #8b7e64;
  --line: #d9c89a;
  --line-soft: #ead9b0;
  --gold: #b89150;
  --gold-2: #9c7733;
  --gold-deep: #6f5524;
  --gold-soft: #e8d5a3;
  --shadow-soft: 0 1px 2px rgba(111, 85, 36, 0.06), 0 8px 30px rgba(111, 85, 36, 0.08);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.6) inset, 0 1px 2px rgba(111,85,36,0.06), 0 18px 40px -16px rgba(111,85,36,0.18);
  --radius: 10px;
  --font-display: "Cormorant Garamond", "EB Garamond", Garamond, serif;
  --font-body: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Inter", system-ui, sans-serif;
  --tracking-wide: 0.22em;
}

/* ================== BASE ================== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* page paper */
.page-frame {
  max-width: 1240px;
  margin: 32px auto 60px;
  background: var(--paper);
  border-radius: 14px;
  position: relative;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 30px 80px -30px rgba(111,85,36,0.25), 0 0 0 1px var(--line-soft);
  overflow: hidden;
}

.page-frame::before,
.page-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  pointer-events: none;
  z-index: 5;
}
.page-frame::after {
  inset: 18px;
  border-color: var(--line-soft);
}


/* ================== HERO ================== */
.hero {
  position: relative;
  padding: 70px 80px 40px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: end;
  min-height: 580px;
  background: linear-gradient(180deg, #fdf9ef 0%, #faf2dd 100%);
  overflow: hidden;
}
.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}
.hero-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  background-image: url("/images/castle-only.png");
  background-size: cover;
  background-position: 60% center;
  background-repeat: no-repeat;
  z-index: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 22%, black 100%);
          mask-image: linear-gradient(90deg, transparent 0%, black 22%, black 100%);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
}
.brand-crest {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  margin-top: 8px;
  font-weight: 500;
}
.brand-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.36em;
  color: var(--gold-2);
}
.brand-tag::before, .brand-tag::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero-copy { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; text-align: center; }
.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
  text-align: center;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 22px 0;
  color: var(--gold);
  justify-content: center;
}
.hero-divider .line { flex: 1; height: 1px; background: var(--gold); max-width: 180px; }
.hero-divider-img { width: 90px; height: auto; flex-shrink: 0; }
.hero-sub {
  font-size: 20px;
  color: var(--ink-2);
  font-style: italic;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

/* ================== HOURS CARD ================== */
.hours-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 18px 30px;
  margin: 24px 60px 0;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  text-align: center;
}
.hours-card .icn {
  width: 60px; height: 60px;
  color: var(--gold-2);
  flex-shrink: 0;
}
.hours-card .h {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2px;
}
.hours-card .v {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink-2);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ================== BOOKING CARD ================== */
.booking {
  margin: 30px 60px 40px;
  padding: 36px 44px 40px;
  background: linear-gradient(180deg, #fdfaf1 0%, #faf3df 100%);
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
  position: relative;
}

.booking-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 6px;
  font-weight: 500;
}
.booking-title-orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--gold);
}
.booking-title-orn .line { width: 80px; height: 1px; background: var(--gold); opacity: 0.6; }
.booking-title-orn svg { width: 14px; height: 14px; }

/* stepper */
.stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 8px auto 32px;
  max-width: 720px;
}
.step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-3);
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease;
  user-select: none;
}
.step .num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-family: var(--font-display);
  background: var(--paper);
  transition: all .3s ease;
}
.step.active { color: var(--gold-deep); }
.step.active .num {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold-2);
  box-shadow: 0 6px 14px -6px rgba(184,145,80,0.6);
}
.step.done { color: var(--gold-2); }
.step.done .num {
  background: transparent;
  color: var(--gold-2);
  border-color: var(--gold);
}
.step-sep {
  width: 36px;
  height: 1px;
  background: var(--line);
  margin: 0 14px;
}
.step-sep.done { background: var(--gold); }

/* step content */
.step-content {
  min-height: 380px;
  animation: fadeIn .35s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 8px;
  font-weight: 500;
  justify-content: center;
}
.step-heading svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); }
.step-sub {
  color: var(--ink-3);
  font-style: italic;
  font-size: 17px;
  margin: 0 0 28px;
  text-align: center;
}

/* ================== CALENDAR ================== */
.cal-wrap {
  max-width: 460px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 22px 26px 26px;
}
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.cal-nav {
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: grid; place-items: center;
  color: var(--gold-2);
  transition: all .2s;
}
.cal-nav:hover { background: var(--gold-soft); color: var(--gold-deep); }
.cal-month {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-dow {
  text-align: center;
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--ink-2);
  padding: 10px 0;
  text-transform: uppercase;
  font-weight: 600;
}
.cal-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  cursor: pointer;
  border-radius: 50%;
  transition: all .2s;
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  line-height: 1;
}
.cal-day:hover:not(.muted):not(.disabled) {
  background: var(--gold-soft);
}
.cal-day.muted { color: var(--line); cursor: default; }
.cal-day.selected {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(184,145,80,0.65);
}
.cal-day.today::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.cal-day.selected.today::after { background: #fff; }

/* ================== TIME SLOTS ================== */
.slots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 620px;
  margin: 0 auto;
}
.slot {
  padding: 16px 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  letter-spacing: 0.04em;
}
.slot:hover { border-color: var(--gold); color: var(--gold-deep); }
.slot.selected {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold-2);
  box-shadow: 0 8px 18px -8px rgba(184,145,80,0.55);
}

/* ================== PARTICIPANTS ================== */
.parts {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border: 1px solid var(--line-soft);
  background: var(--paper);
  border-radius: 8px;
}
.counter-row .label {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.counter-row .desc { font-size: 16px; color: var(--ink-2); font-style: italic; margin-top: 4px; }
.counter {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  overflow: hidden;
}
.counter button {
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--gold-2);
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-display);
  line-height: 1;
}
.counter button:hover:not(:disabled) { background: var(--gold-soft); color: var(--gold-deep); }
.counter button:disabled { color: var(--line); cursor: not-allowed; }
.counter .val {
  min-width: 38px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
}

/* language tiles */
.lang-section { margin-top: 8px; }
.lang-section h4 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 14px;
  text-align: center;
  font-weight: 500;
}
.lang-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lang-tile {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  padding: 22px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all .25s;
  position: relative;
}
.lang-tile:hover { border-color: var(--gold); transform: translateY(-1px); }
.lang-tile.selected {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fdf6e3 0%, #f9ecc8 100%);
  box-shadow: 0 8px 24px -10px rgba(184,145,80,0.4);
}
.lang-tile .flag {
  width: 56px; height: 40px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.lang-tile .flag svg { display: block; width: 100%; height: 100%; }
.lang-tile .lang-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.lang-tile .lang-sub {
  font-size: 15px;
  color: var(--ink-2);
  font-style: italic;
  margin-top: 4px;
}
.lang-tile .check {
  position: absolute;
  top: 12px; right: 12px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  display: grid; place-items: center;
  color: #fff;
  font-size: 12px;
  opacity: 0;
  transform: scale(0.7);
  transition: all .2s;
}
.lang-tile.selected .check { opacity: 1; transform: scale(1); }

/* ================== FORM ================== */
.form-grid {
  max-width: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
}
.field input {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 2px 12px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
  height: 48px;
  box-sizing: border-box;
  width: 100%;
}
.field input:focus { border-bottom-color: var(--gold); }
.field input::placeholder { color: var(--ink-3); opacity: 0.5; font-style: italic; font-size: 18px; }
.field .error-msg {
  font-family: var(--font-ui);
  font-size: 12px;
  color: #c0392b;
  margin-top: 2px;
}

.discount-row {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  align-items: flex-end;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}
.discount-row .field { flex: 1; }
.discount-btn {
  padding: 10px 26px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: all .2s;
  white-space: nowrap;
  height: 48px;
  font-weight: 600;
}
.discount-btn:hover { background: var(--gold); color: #fff; }
.discount-msg {
  grid-column: 1 / -1;
  font-family: var(--font-ui);
  font-size: 13px;
  margin-top: -6px;
}
.discount-msg.ok { color: #5c8a45; }
.discount-msg.err { color: #c0392b; }

/* ================== PAYMENT OPTIONS ================== */
.payment-opts { max-width: 620px; margin: 0 auto 24px; }
.payment-opts h4 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 14px;
  font-weight: 500;
}
.pay-tile {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all .25s;
  margin-bottom: 12px;
  position: relative;
}
.pay-tile:hover { border-color: var(--gold); }
.pay-tile.selected {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fdf6e3 0%, #f9ecc8 100%);
  box-shadow: 0 8px 24px -10px rgba(184,145,80,0.4);
}
.pay-tile input[type="radio"] { display: none; }
.pay-tile .pay-radio {
  width: 18px; height: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-top: 3px;
  flex-shrink: 0;
  transition: all .2s;
}
.pay-tile.selected .pay-radio {
  border-color: var(--gold);
  background: var(--gold);
}
.pay-tile.selected .pay-radio::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
}
.pay-tile .pay-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 4px;
}
.pay-tile .pay-amount {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--ink-2);
}
.pay-tile .pay-warning {
  font-family: var(--font-ui);
  font-size: 12px;
  color: #9c6a00;
  margin-top: 4px;
}

/* ================== SUMMARY (CERTIFICATE) ================== */
.cert {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(180deg, #fdf9ee 0%, #f6e9c8 100%);
  border: 1px double var(--gold);
  padding: 38px 44px 36px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 18px 50px -20px rgba(111,85,36,0.3);
}
.cert::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--gold-soft);
  pointer-events: none;
  border-radius: 2px;
}
.cert-corner {
  position: absolute;
  width: 38px; height: 38px;
  color: var(--gold);
}
.cert-corner.tl { top: 14px; left: 14px; }
.cert-corner.tr { top: 14px; right: 14px; transform: scaleX(-1); }
.cert-corner.bl { bottom: 14px; left: 14px; transform: scaleY(-1); }
.cert-corner.br { bottom: 14px; right: 14px; transform: scale(-1,-1); }
.cert-crest {
  display: block;
  width: 90px; height: 90px;
  object-fit: contain;
  margin: 0 auto 12px;
}
.cert-separator-img { width: 110px; height: auto; flex-shrink: 0; }
.cert-eyebrow {
  text-align: center;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 6px;
}
.cert-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 4px;
  font-weight: 500;
}
.cert-name {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
  margin: 18px 0 6px;
  font-weight: 500;
}
.cert-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 22px;
  color: var(--gold);
}
.cert-divider .line { width: 80px; height: 1px; background: var(--gold); }
.cert-rows {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px 24px;
  margin: 18px 0 22px;
  font-family: var(--font-display);
  font-size: 17px;
}
.cert-rows dt {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  align-self: center;
}
.cert-rows dd { margin: 0; color: var(--ink); font-size: 18px; letter-spacing: 0.02em; }
.cert-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0 6px;
  margin-top: 10px;
  border-top: 1px solid var(--gold);
}
.cert-total .label {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.cert-total .price {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold-deep);
  font-weight: 500;
}
.cert-stamp {
  position: absolute;
  right: 30px; bottom: 60px;
  width: 90px; height: 90px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  transform: rotate(-12deg);
  opacity: 0.5;
  line-height: 1.3;
  padding: 6px;
}
.cert-breakdown {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cert-breakdown-row {
  display: flex;
  justify-content: space-between;
}
.cert-breakdown-row.discount { color: #5c8a45; }

/* ================== RUNNING SUMMARY ================== */
.running {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 22px;
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.running .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
}
.running .pill svg { width: 12px; height: 12px; color: var(--gold-2); }
.running .pill .v { color: var(--ink); font-family: var(--font-display); text-transform: none; letter-spacing: 0.04em; font-size: 14px; }

/* ================== NAV BUTTONS ================== */
.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.btn {
  padding: 14px 32px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: all .25s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-ghost:disabled { opacity: 0.3; cursor: not-allowed; }
.btn-primary {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #fff;
  border: 1px solid var(--gold-2);
  box-shadow: 0 10px 24px -10px rgba(184,145,80,0.6);
  padding: 16px 38px;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px rgba(184,145,80,0.7);
}
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }

/* info box */
.info-box {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--ink-2);
  font-style: italic;
  text-align: center;
  margin-bottom: 20px;
}
.alert-no-slots {
  font-family: var(--font-display);
  font-size: 18px;
  color: #c0392b;
  text-align: center;
  padding: 40px 0;
}
.participants-hint {
  font-family: var(--font-ui);
  font-size: 13px;
  color: #9c6a00;
  margin-top: 6px;
  font-style: italic;
}
.participants-err {
  font-family: var(--font-ui);
  font-size: 13px;
  color: #c0392b;
  margin-top: 6px;
}

/* ================== FOOTER STRIP ================== */
.foot-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px 60px 32px;
  border-top: 1px solid var(--line-soft);
  margin-top: 12px;
}
.foot-cell {
  text-align: center;
  padding: 10px;
  border-right: 1px solid var(--line-soft);
}
.foot-cell:last-child { border-right: none; }
.foot-cell .icon { width: 38px; height: 38px; margin: 0 auto 8px; color: var(--gold-2); }
.foot-cell .ttl {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.foot-cell .desc {
  font-size: 13px;
  color: var(--ink-3);
  font-style: italic;
  line-height: 1.35;
}

/* ================== CONFIRMATION PAGE ================== */
.confirm-cert {
  max-width: 600px;
  margin: 60px auto;
  background: linear-gradient(180deg, #fdf9ee 0%, #f6e9c8 100%);
  border: 1px double var(--gold);
  padding: 48px 52px 44px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 18px 50px -20px rgba(111,85,36,0.3);
  text-align: center;
}
.confirm-cert::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold-soft);
  pointer-events: none;
  border-radius: 2px;
}
.confirm-check {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 20px;
  color: #fff;
}
.confirm-check svg { width: 32px; height: 32px; }
.confirm-nr {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 4px;
}
.confirm-ics {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 32px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #fff;
  border: 1px solid var(--gold-2);
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s;
}
.confirm-ics:hover { transform: translateY(-1px); }

/* ================== RESPONSIVE ================== */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding: 48px 36px 24px; min-height: auto; }
  .hero-img { width: 100%; opacity: 0.25; }
  .booking { margin: 24px 24px 30px; padding: 26px 22px 30px; }
  .hours-card { margin: 16px 24px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .slots { grid-template-columns: repeat(3, 1fr); }
  .foot-strip { grid-template-columns: 1fr 1fr; padding: 20px 24px 24px; }
  .stepper { flex-wrap: wrap; gap: 8px; }
  .step-sep { width: 16px; margin: 0 6px; }
  .hero-headline { font-size: 38px; }
  .cert { padding: 28px 24px 26px; }
  .confirm-cert { margin: 24px 16px; padding: 32px 24px; }
}
@media (max-width: 600px) {
  .slots { grid-template-columns: repeat(3, 1fr); }
  .lang-tiles { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .page-frame { margin: 0; border-radius: 0; }
  .stepper span { display: none; }
}
