/* reserve.html — extracted stylesheet */
:root {
  --ink: #1c1c1a;
  --ink-soft: #2d2d2a;
  --paper: #f4f1ea;
  --paper-warm: #ebe6db;
  --paper-cool: #ffffff;
  --rule: #d8d3c5;
  --accent: #c8553d;
  --muted: #5e5b52;
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Sohne', -apple-system, 'Helvetica Neue', Helvetica, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

/* === UTILITY BAR === */
.utility-bar {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility-marquee { opacity: 0.85; }
.utility-actions span { opacity: 0.85; }

/* === NAV === */
nav {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.logo-mark {
  width: 22px;
  height: 28px;
}
.logo-mark rect { fill: none; stroke: var(--ink); stroke-width: 2.5; }
.logo-mark line { stroke: var(--ink); stroke-width: 2.5; }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.brand-text .dot { opacity: 0.4; padding: 0 0.2em; }
.brand-text .light { font-weight: 300; opacity: 0.7; }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.2s;
  background: var(--ink);
  color: var(--paper);
}

/* === MAIN === */
.reserve-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.page-title em {
  font-style: italic;
  color: var(--accent);
}

.page-lede {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 32em;
  margin-bottom: 3.5rem;
}

/* === PROGRESS === */
.progress {
  display: flex;
  gap: 0;
  margin-bottom: 3.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.progress-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
}
.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 60px);
  left: 50px;
  height: 1px;
  background: var(--rule);
  transition: background 0.4s;
}
.progress-step.complete:not(:last-child)::after {
  background: var(--ink);
}
.progress-step.active { color: var(--accent); font-weight: 500; }
.progress-step.complete { color: var(--ink); }
.progress-num {
  font-family: var(--font-mono);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s;
  background: var(--paper);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.progress-step.active .progress-num {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(200, 85, 61, 0.15);
}
.progress-step.complete .progress-num {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.progress-step.complete .progress-num::before {
  content: '✓';
  font-size: 0.85rem;
}
.progress-step.complete .progress-num-text {
  display: none;
}
@media (max-width: 720px) {
  .progress { padding: 1.5rem 0; }
  .progress-step { font-size: 0; gap: 0; }
  .progress-step.active { font-size: 0.65rem; }
  .progress-num { width: 28px; height: 28px; font-size: 0.7rem; }
}

/* === STEPS === */
.step { display: none; }
.step.active { display: block; }

.step-heading {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.step-heading em { font-style: italic; color: var(--accent); }
.step-sub {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

/* === FIELDS === */
.field {
  margin-bottom: 1.8rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
}
.field label,
.field-legend {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.field label .required,
.field-legend .required {
  color: var(--accent);
  margin-left: 0.2em;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0.7rem 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--ink);
}
.field textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}
.field select {
  background: transparent url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%226%22%20viewBox%3D%220%200%2010%206%22%3E%3Cpath%20d%3D%22M0%200l5%206%205-6%22%20fill%3D%22%231c1c1a%22%2F%3E%3C%2Fsvg%3E") no-repeat right 0.5rem center;
  padding-right: 1.8rem;
  cursor: pointer;
}

.field-help {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

/* === RADIO/CHECK CARDS === */
.card-group {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.card-group.single-col { grid-template-columns: 1fr; }
@media (max-width: 600px) {
  .card-group { grid-template-columns: 1fr; }
}
.card-option {
  position: relative;
  cursor: pointer;
}
.card-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.card-option-body {
  border: 1px solid var(--rule);
  padding: 1.3rem 1.4rem;
  background: var(--paper-cool);
  transition: all 0.2s;
  height: 100%;
}
.card-option:hover .card-option-body {
  border-color: var(--ink);
}
.card-option input:checked + .card-option-body {
  border-color: var(--accent);
  border-width: 1px;
  box-shadow: inset 0 0 0 1px var(--accent);
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--ink);
}
.card-title em { font-style: italic; }
.card-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.card-price {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-top: 0.5rem;
  text-transform: uppercase;
}

/* === POD CARDS WITH IMAGES === */
.pod-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) {
  .pod-grid { grid-template-columns: 1fr; }
}
.pod-option {
  position: relative;
  cursor: pointer;
}
.pod-option input { position: absolute; opacity: 0; pointer-events: none; }
.pod-option-body {
  border: 1px solid var(--rule);
  background: var(--paper-cool);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
}
.pod-option:hover .pod-option-body { border-color: var(--ink); }
.pod-option input:checked + .pod-option-body {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}
.pod-thumb {
  width: 56px;
  height: 64px;
  background: var(--paper-warm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--muted);
  font-size: 1.1rem;
}
.pod-info {
  flex: 1;
  min-width: 0;
}
.pod-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.pod-name em { font-style: italic; }
.pod-meta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.3;
}
.pod-price {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink);
  margin-top: 0.2rem;
}

/* === CHECKBOXES === */
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
}
.checkbox-row:last-child { border-bottom: none; }
.checkbox-row input {
  margin-top: 0.25em;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.checkbox-row-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.4;
}
.checkbox-row-text strong { font-weight: 500; }
.checkbox-row-help {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* === REVIEW SUMMARY === */
.review-section {
  background: var(--paper-warm);
  padding: 1.8rem 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--accent);
}
.review-section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.review-edit {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.65rem;
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.review-row {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
}
.review-row .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.6em;
}

/* === BUTTONS === */
.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  gap: 1rem;
}
.btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn:hover { background: var(--accent); border-color: var(--accent); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn:disabled:hover { background: var(--ink); border-color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: transparent; color: var(--accent); border-color: var(--accent); }

/* === MESSAGES === */
.error-msg {
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.85rem;
  margin-top: 0.3rem;
  display: none;
}
.error-msg.visible { display: block; }

/* === RESERVATION CAVEAT INFO BOX === */
.info-box {
  background: var(--paper-warm, #ebe6db);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.4rem;
  margin: 1.8rem 0 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft, #2d2d2a);
}
.info-box-label {
  font-family: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
  display: block;
}
.info-box p { margin: 0; }

/* === SUCCESS === */
.success-screen {
  display: none;
  text-align: center;
  padding: 3rem 0 2rem;
}
.success-screen.active { display: block; }
.success-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.success-heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.success-heading em { font-style: italic; color: var(--accent); }
.success-body {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 30em;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 241, 234, 0.1);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* === MOBILE === */
@media (max-width: 700px) {
  .utility-bar { padding: 0.5rem 1rem; font-size: 0.6rem; }
  .utility-marquee { display: none; }
  nav { padding: 1rem; }
  .nav-links { display: none; }
  .reserve-page { padding: 2.5rem 1.2rem 4rem; }
  .progress { gap: 0.5rem; }
  .progress-step { font-size: 0.6rem; flex-direction: column; gap: 0.3rem; }
}
/* ============================================
   STEP 3 — SHIPPING ESTIMATE WIDGET
   ============================================ */
.reserve-calc {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--paper-warm);
  border-left: 3px solid var(--accent);
  border-radius: 2px;
}

.reserve-calc-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.reserve-calc-empty {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

.reserve-calc-loading {
  font-size: 0.9rem;
  color: var(--muted);
}

.reserve-calc-spinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid var(--rule);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: reserve-spin 0.8s linear infinite;
  margin-right: 0.4rem;
  vertical-align: middle;
}

@keyframes reserve-spin {
  to { transform: rotate(360deg); }
}

.reserve-calc-pod {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.reserve-calc-range {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.reserve-calc-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.reserve-calc-note {
  padding-top: 0.75rem;
  border-top: 1px solid var(--rule);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.6;
}

.reserve-calc-fallback {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.reserve-calc-fallback strong {
  color: var(--ink);
}
/* Honeypot — visually and accessibly hidden. Bots fill it, we reject the submission. */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
