/* ======================================================
   HOLIDAY BROTHERS — DESIGN SYSTEM
   Palette grounded in the logo: deep espresso brown, warm
   amber glass, gold rim-light bevels. Deliberately not the
   cream-background/terracotta look — this is a dark, tactile,
   "beveled glass" direction pulled from the 3D logo itself.
   ====================================================== */
 
:root {
  --bg-deep: #241610;
  --bg-deep-2: #2E1C13;
  --panel-glass: rgba(255, 224, 189, 0.06);
  --panel-glass-strong: rgba(255, 224, 189, 0.1);
  --panel-border: rgba(244, 196, 138, 0.18);
  --panel-border-strong: rgba(244, 196, 138, 0.32);
 
  --text-cream: #F5EAD9;
  --text-muted: #C9AF93;
  --text-faint: #8C7358;
 
  --amber: #D98A3D;
  --amber-bright: #F2A84E;
  --gold-rim: #F2C879;
 
  --danger: #D96B4A;
 
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 8px;
 
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}
 
* { box-sizing: border-box; }
 
html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(ellipse at top, var(--bg-deep-2) 0%, var(--bg-deep) 60%);
  color: var(--text-cream);
  font-family: var(--font-body);
  min-height: 100%;
}
 
body {
  background-attachment: fixed;
}
 
a { color: inherit; text-decoration: none; }
 
img { max-width: 100%; display: block; }
 
/* ---- Layout shell ---- */
 
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
 
.page-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  max-width: 720px;
  margin: 0 auto;
}
 
.page-header img { height: 40px; width: auto; }
 
.page-header span {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
 
/* ---- Glass panel — the signature element ----
   Every card, button, and banner shares this beveled-glass
   treatment, echoing the logo's own bevel. */
 
.glass {
  background: var(--panel-glass);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 224, 189, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25),
    0 20px 40px -20px rgba(0, 0, 0, 0.5);
}
 
.glass-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 22px 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--panel-glass-strong), var(--panel-glass));
  border: 1px solid var(--panel-border-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 224, 189, 0.22),
    inset 0 -2px 6px rgba(0, 0, 0, 0.3),
    0 14px 28px -16px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
  color: var(--text-cream);
  font-family: var(--font-display);
  font-size: 17px;
}
 
.glass-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold-rim);
}
 
.glass-btn:active { transform: translateY(0); }
 
.glass-btn .sub {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 400;
}
 
.glass-btn.primary {
  border-color: var(--amber-bright);
  box-shadow:
    inset 0 1px 0 rgba(255, 224, 189, 0.3),
    inset 0 -2px 6px rgba(0, 0, 0, 0.3),
    0 16px 32px -14px rgba(217, 138, 61, 0.45);
}
 
/* ---- Text ---- */
 
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: var(--text-cream);
}
 
h1 { font-size: 34px; letter-spacing: -0.01em; }
h2 { font-size: 22px; }
p { line-height: 1.65; color: var(--text-muted); margin: 0; }
 
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-bright);
}
 
/* ---- Banner ---- */
 
.banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  margin: 0 0 24px;
  font-size: 13.5px;
  color: var(--gold-rim);
}
 
/* ---- Buttons (generic, non-hero) ---- */
 
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  background: var(--panel-glass-strong);
  border: 1px solid var(--panel-border-strong);
  color: var(--text-cream);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.btn:hover { border-color: var(--gold-rim); }
 
.btn.text-input, input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--panel-border);
  color: var(--text-cream);
  font-family: var(--font-body);
  font-size: 14.5px;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--amber-bright);
}
 
/* ---- Scroll section ---- */
 
.section {
  margin-top: 56px;
}
 
.teaser-card {
  padding: 22px;
  margin-bottom: 14px;
}
 
.teaser-card h2 { margin-bottom: 8px; }
 
.teaser-card .arrow {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber-bright);
}
 
/* ---- Footer ---- */
 
footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--panel-border);
  font-size: 13px;
  color: var(--text-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
 
/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
 
/* ---- Stepper (shared by join-crew.html and booking.html) ---- */
 
.step-row {
  padding: 12px 14px;
  border-bottom: 1px solid var(--panel-border);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  opacity: 0.55;
}
.step-row:last-child { border-bottom: none; }
.step-row .val { font-weight: 500; color: var(--text-cream); text-align: right; }
 
.active-q { padding: 22px; }
.active-q .required-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--amber-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.active-q h2 { margin: 8px 0 16px; font-size: 19px; }
 
.option-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.option-btn {
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  background: var(--panel-glass-strong);
  border: 1px solid var(--panel-border-strong);
  color: var(--text-cream);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
}
.option-btn:hover { border-color: var(--gold-rim); }
 
.peek-row {
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--text-faint);
  opacity: 0.5;
}
 
.actions { display: flex; gap: 10px; margin-top: 6px; }
.actions .btn:disabled { opacity: 0.35; cursor: not-allowed; }
 
/* ---- Chat panel (booking.html) ---- */
 
.chat-messages {
  max-height: 340px;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.45;
}
.chat-bubble.customer {
  align-self: flex-end;
  background: linear-gradient(180deg, var(--panel-glass-strong), var(--panel-glass));
  border: 1px solid var(--panel-border-strong);
}
.chat-bubble.admin {
  align-self: flex-start;
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--panel-border);
}
.chat-bubble .meta {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-faint);
  margin-top: 4px;
}
.chat-input-row {
  display: flex;
  gap: 10px;
  padding: 14px 18px;
  border-top: 1px solid var(--panel-border);
}
.chat-input-row input { flex: 1; }
.chat-waiting-note {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--panel-border);
}
 
/* ---- Mobile ---- */
@media (max-width: 480px) {
  h1 { font-size: 27px; }
  .wrap { padding: 0 16px 60px; }
}
