/* Atlanta Tote Rentals — hand-written stylesheet (no build step) */

:root {
  --green: #e67e22;
  --green-dark: #c96a15;
  --green-700: #d9731b;
  --ink: #1a1a1a;
  --body: #3a3a3a;
  --muted: #6f6a6b;
  --tint: #fdf6ee;
  --tint-2: #fbe9d7;
  --line: #ece3d9;
  --amber: #f4b740;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .14);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff;
  padding: 10px 16px; z-index: 100; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4em;
  font-weight: 700; font-size: 1rem; padding: 12px 22px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 18px rgba(200,16,46,.28); }
.btn-primary:hover { background: var(--green-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--green); border-color: var(--green); }
.btn-ghost:hover { background: var(--tint-2); color: var(--green-dark); }
.btn-lg { font-size: 1.08rem; padding: 15px 28px; }
.btn-block { display: flex; width: 100%; }

/* ---- Header ---- */
.promo-bar {
  background: var(--ink); color: #ffe9b8; text-align: center;
  font-weight: 600; font-size: .92rem; padding: 9px 16px; letter-spacing: .2px;
}
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(8px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.18rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark { color: var(--green); }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { color: var(--body); font-weight: 600; font-size: .96rem; }
.site-nav a:hover { color: var(--green); text-decoration: none; }
.nav-cta { color: #fff !important; }

/* ---- Sections ---- */
.section { padding: 78px 0; }
.section-tint { background: var(--tint); }
.section-green { background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%); color: #f7dde1; }
.eyebrow { text-transform: uppercase; letter-spacing: 1.5px; font-size: .8rem; font-weight: 800; color: var(--green); margin: 0 0 8px; text-align: center; }
.eyebrow.light { color: #f2b8c1; text-align: left; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.7rem); text-align: center; margin: 0 0 10px; }
.section-title.left { text-align: left; }
.section-title.light { color: #fff; }
.section-sub { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 44px; font-size: 1.06rem; }
.section-sub.left { text-align: left; margin-left: 0; }
.page-head { padding-bottom: 40px; }

/* ---- Hero ---- */
.hero { padding: 64px 0 56px; background: radial-gradient(1200px 500px at 80% -10%, var(--tint-2), #fff 60%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.4rem, 5.4vw, 3.7rem); letter-spacing: -1px; }
.hero-lede { font-size: 1.14rem; color: var(--body); max-width: 540px; }
.price-badge {
  display: inline-flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--amber);
  padding: 12px 18px; border-radius: 12px; box-shadow: var(--shadow); margin: 6px 0 26px;
}
.price-badge-amount { font-size: 1.9rem; font-weight: 800; color: var(--ink); }
.price-badge-detail { color: var(--muted); font-weight: 600; font-size: .95rem; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-photo {
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
  border-radius: var(--radius); min-height: 200px; box-shadow: var(--shadow);
  background: linear-gradient(150deg, var(--tint-2), #f3ccd3);
}
.hero-photo-b { margin-top: 34px; background: linear-gradient(150deg, #f6d7db, #eebcc3); }
.hero-checks { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 40px; color: var(--green-dark); font-weight: 700; font-size: .96rem; }

/* ---- Steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; margin-bottom: 16px;
}
.step h3 { font-size: 1.3rem; }
.step p { margin: 0; color: var(--body); }

/* ---- Service-area map ---- */
.service-map-block { margin-top: 52px; text-align: center; }
.map-title { font-size: clamp(1.25rem, 2.6vw, 1.6rem); margin-bottom: 6px; }
.map-sub { color: var(--muted); margin: 0 auto 22px; }
#service-map { height: 440px; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; z-index: 0; }
@media (max-width: 560px) { #service-map { height: 340px; } }
/* Black & white basemap — grayscale only the map tiles; service rings stay colored. */
#service-map .leaflet-tile-pane { filter: grayscale(100%) contrast(1.05); }
.map-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: 18px; }
.legend-item { display: inline-flex; align-items: center; gap: 8px; color: var(--body); font-size: .92rem; font-weight: 600; }
.legend-dot { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.legend-free { background: rgba(200,16,46,.45); border: 2px solid #c8102e; }
.legend-extra { background: rgba(244,183,64,.4); border: 2px dashed #e08a1e; }

/* ---- Mini cards (4-up / 2-up) ---- */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.mini-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; text-align: center; box-shadow: var(--shadow); }
.mini-card.left { text-align: left; }
.mini-emoji { font-size: 2.2rem; margin-bottom: 10px; }
.mini-card h3 { font-size: 1.18rem; }
.mini-card p { margin: 0 0 4px; color: var(--muted); }

/* ---- Comparison ---- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 0 auto; }
.compare-col { border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow); }
.compare-win { background: #fff; border: 2px solid var(--green); }
.compare-lose { background: #faf6f5; border: 2px solid #ecd9d6; }
.compare-head h3 { margin-bottom: 2px; }
.compare-price { font-weight: 800; color: var(--muted); margin: 0 0 14px; }
.compare-col ul { list-style: none; margin: 0; padding: 0; }
.compare-col li { padding: 7px 0; border-top: 1px solid var(--line); font-weight: 500; color: var(--body); }
.compare-col li:first-child { border-top: none; }

/* ---- Packages ---- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pkg-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.pkg-popular { border: 2px solid var(--green); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.pkg-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; }
.pkg-name { font-size: 1.5rem; margin-bottom: 2px; }
.pkg-sub { color: var(--muted); margin: 0 0 16px; }
.pkg-price { font-size: 2.6rem; font-weight: 800; color: var(--ink); margin-bottom: 16px; }
.pkg-price span { display: block; font-size: .9rem; font-weight: 600; color: var(--muted); }
.pkg-list { list-style: none; margin: 0 0 24px; padding: 0; flex: 1; }
.pkg-list li { padding: 8px 0 8px 26px; position: relative; color: var(--body); border-top: 1px solid var(--line); }
.pkg-list li:first-child { border-top: none; }
.pkg-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.packages-note { text-align: center; margin-top: 32px; color: var(--muted); }

/* ---- Totes / feature list ---- */
.totes-grid, .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.totes-media, .about-media {
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
  min-height: 320px; border-radius: var(--radius); box-shadow: var(--shadow);
  background: linear-gradient(150deg, var(--tint-2), #f0ccd2);
}
.about-media { background: rgba(255,255,255,.12); }
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); font-weight: 600; color: var(--ink); }
.feature-list li:first-child { border-top: none; }
.feature-list li span { font-size: 1.5rem; }

/* ---- About ---- */
.about-grid p { color: #f7dde1; font-size: 1.06rem; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.about-cards div { background: rgba(255,255,255,.12); border-radius: 12px; padding: 16px 18px; }
.about-cards strong { display: block; color: #fff; margin-bottom: 4px; }
.about-cards span { color: #f0c9cf; font-size: .94rem; }

/* ---- Booking form ---- */
.booking-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 30px 30px; box-shadow: var(--shadow); }
.booking-form fieldset { border: none; border-top: 1px solid var(--line); margin: 0; padding: 22px 0; }
.booking-form fieldset:first-of-type { border-top: none; }
.booking-form legend { font-weight: 800; color: var(--ink); font-size: 1.1rem; padding: 0; }
.booking-form label { display: block; font-weight: 600; color: var(--ink); margin-top: 16px; font-size: .96rem; }
.field-hint { color: var(--muted); font-size: .92rem; margin: 6px 0 0; }
.booking-form input, .booking-form select {
  display: block; width: 100%; margin-top: 7px; padding: 12px 14px; font-size: 1rem;
  font-family: inherit; color: var(--ink); background: #fff;
  border: 1px solid #d9cdcf; border-radius: 10px; transition: border .15s, box-shadow .15s;
}
.booking-form input:focus, .booking-form select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(200,16,46,.15); }
.booking-form button { margin-top: 24px; }
.form-foot { text-align: center; color: var(--muted); font-size: .9rem; margin: 14px 0 0; }
.form-errors { background: #fdecec; border: 1px solid #f3c2c2; color: #9a2a2a; border-radius: 12px; padding: 16px 18px; margin-bottom: 22px; }
.form-errors ul { margin: 8px 0 0; padding-left: 20px; }

/* ---- Contact ---- */
.contact-email { text-align: center; font-size: 1.4rem; font-weight: 800; margin: 10px 0 6px; }
.contact-area { text-align: center; color: var(--muted); }

/* ---- Thank you / 404 ---- */
.thank-you { padding: 110px 0; }
.ty-check { width: 84px; height: 84px; margin: 0 auto 24px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 2.6rem; font-weight: 800; box-shadow: var(--shadow-lg); }
.ty-check.ty-muted { background: var(--ink); font-size: 1.7rem; }
.thank-you .btn { margin-top: 14px; }

/* ---- Legal ---- */
.legal h2 { font-size: 1.35rem; margin-top: 34px; }
.legal p, .legal li { color: var(--body); }
.legal ul { padding-left: 22px; }

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: #c4d2cb; padding: 44px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.brand-footer { color: #fff; }
.brand-footer span { color: #fff; }
.footer-copy { margin: 0; color: #9fb1a8; font-size: .92rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
.footer-links a { color: #c4d2cb; font-weight: 600; font-size: .92rem; }
.footer-links a:hover { color: #fff; }
.footer-links .sep { color: #4d6157; }

/* ---- Reserve page — mirrors the Vite/React quote form ---- */
.quote-app {
  --qa-green: #c8102e; --qa-green-dark: #9e0c24; --qa-ink: #1a1a1a;
  --qa-muted: #6b7785; --qa-line: #e6e1e2; --qa-bg: #f7f5f5;
  background: var(--qa-bg); color: var(--qa-ink);
}
.qa-hero { background: linear-gradient(135deg, var(--qa-green), var(--qa-green-dark)); color: #fff; padding: 48px 20px 56px; text-align: center; }
.qa-hero h1 { margin: 0 0 12px; font-size: 2rem; color: #fff; }
.qa-hero p { margin: 0 auto; max-width: 620px; opacity: .92; }
.qa-container { max-width: 880px; margin: -32px auto 48px; padding: 0 16px; }

.quote-app .quote { background: #fff; border: 1px solid var(--qa-line); border-radius: 14px; padding: 28px; box-shadow: 0 12px 30px rgba(28,39,51,.08); }
.quote-app .quote h2 { font-size: 1.05rem; margin: 28px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--qa-line); text-align: left; color: var(--qa-ink); }
.quote-app .quote h2:first-child { margin-top: 0; }
.quote-app .grid, .order-actions .grid { display: grid; gap: 14px; }
.quote-app .grid.two, .order-actions .grid.two { grid-template-columns: 1fr 1fr; }
.quote-app .field, .order-actions .field { display: flex; flex-direction: column; gap: 6px; }
.quote-app .field > span, .order-actions .field > span { font-size: .82rem; color: var(--qa-muted); font-weight: 600; }
.quote-app input, .quote-app select,
.order-actions input:not([type=checkbox]), .order-actions select { padding: 11px 12px; border: 1px solid var(--qa-line); border-radius: 9px; font-size: .95rem; background: #fff; color: var(--qa-ink); font-family: inherit; width: 100%; }
.quote-app input:focus, .quote-app select:focus,
.order-actions input:not([type=checkbox]):focus, .order-actions select:focus { outline: none; border-color: var(--qa-green); box-shadow: 0 0 0 3px rgba(200,16,46,.15); }

.quote-app .autocomplete { position: relative; }
.quote-app .suggestions { position: absolute; z-index: 30; top: calc(100% + 4px); left: 0; right: 0; margin: 0; padding: 4px; list-style: none; background: #fff; border: 1px solid var(--qa-line); border-radius: 9px; box-shadow: 0 12px 30px rgba(28,39,51,.14); max-height: 240px; overflow-y: auto; }
.quote-app .suggestions li { padding: 9px 10px; border-radius: 6px; cursor: pointer; font-size: .9rem; }
.quote-app .suggestions li:hover, .quote-app .suggestions li.active { background: #fdeef0; }

.quote-app .packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.quote-app .pkg { position: relative; border: 2px solid var(--qa-line); border-radius: 12px; padding: 14px; cursor: pointer; transition: border-color .15s, box-shadow .15s; display: block; background: #fff; box-shadow: none; transform: none; }
.quote-app .pkg:hover { border-color: #f0c4cb; }
.quote-app .pkg.selected { border-color: var(--qa-green); box-shadow: 0 0 0 3px rgba(200,16,46,.12); }
.quote-app .pkg input { position: absolute; opacity: 0; pointer-events: none; width: auto; }
.quote-app .pkg-head { display: flex; justify-content: space-between; align-items: baseline; }
.quote-app .pkg-name { font-weight: 700; font-size: 1rem; margin: 0; color: var(--qa-ink); }
.quote-app .pkg-price { font-weight: 700; font-size: 1rem; color: var(--qa-green-dark); margin: 0; }
.quote-app .pkg-meta { font-size: .8rem; color: var(--qa-muted); margin-top: 6px; }
.quote-app .pkg-rental { font-size: .74rem; color: var(--qa-muted); margin-top: 4px; }

.quote-app .submit, .order-actions .submit { margin-top: 22px; width: 100%; padding: 14px; border: none; border-radius: 10px; background: var(--qa-green); color: #fff; font-size: 1rem; font-weight: 700; cursor: pointer; }
.quote-app .submit:hover, .order-actions .submit:hover { background: var(--qa-green-dark); }
.quote-app .submit:disabled, .order-actions .submit:disabled { opacity: .6; cursor: progress; }
.quote-app .error, .order-actions .error { margin-top: 14px; color: #b3261e; background: #fdecea; border: 1px solid #f5c2bd; border-radius: 8px; padding: 10px 12px; font-size: .9rem; }
.quote-app .error ul, .order-actions .error ul { margin: 6px 0 0; padding-left: 18px; }

.quote-app .summary { margin-top: 24px; border: 1px solid var(--qa-line); border-radius: 12px; padding: 20px; background: #fdf6f7; }
.quote-app .summary h3 { margin: 0 0 14px; color: var(--qa-ink); }
.quote-app .row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--qa-line); font-size: .95rem; }
.quote-app .row-total { border-bottom: none; border-top: 2px solid var(--qa-ink); margin-top: 6px; padding-top: 12px; font-weight: 800; font-size: 1.1rem; }
.quote-app .route { margin: 12px 0 0; font-size: .82rem; color: var(--qa-muted); }
.quote-app .note, .order-actions .note { margin: 8px 0 0; font-size: .82rem; color: #8a6d1f; }
.quote-app .summary .submit { margin-top: 18px; }
.quote-app .deposit-box { margin-top: 14px; padding: 14px 16px; border: 1px solid #f3ccd3; background: #fdeef0; border-radius: 10px; }
.quote-app .deposit-box .row { border-bottom-color: #f3ccd3; }
.quote-app .deposit-box .row:last-child { border-bottom: none; }
.quote-app .payment-element, .order-actions .payment-element { margin-top: 18px; padding: 13px 14px; border: 1px solid var(--qa-line); border-radius: 10px; background: #fff; }
.quote-app #pay-errors { margin-top: 12px; }

/* Fulfillment toggle (delivery vs self-service) */
.quote-app .fulfillment { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 8px; }
.quote-app .ful-opt { display: block; cursor: pointer; border: 2px solid var(--qa-line); border-radius: 12px; padding: 14px 16px; transition: border-color .15s, background .15s; }
.quote-app .ful-opt input { position: absolute; opacity: 0; }
.quote-app .ful-opt.selected { border-color: #c8102e; background: #fdeef0; }
.quote-app .ful-title { display: block; font-weight: 700; }
.quote-app .ful-sub { display: block; font-size: .82rem; color: var(--qa-muted); margin-top: 3px; }
@media (max-width: 640px) { .quote-app .fulfillment { grid-template-columns: 1fr; } }

/* Thank-you receipt */
.ty-receipt { max-width: 420px; margin: 8px auto 20px; text-align: left; border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; background: #fff; box-shadow: var(--shadow); }
.ty-receipt .row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.ty-receipt .row-total { border-bottom: none; border-top: 2px solid var(--ink); margin-top: 4px; padding-top: 12px; font-weight: 800; }
@media (max-width: 640px) {
  .quote-app .grid.two, .order-actions .grid.two { grid-template-columns: 1fr; }
  .quote-app .packages { grid-template-columns: 1fr 1fr; }
}

/* ---- Auth + account ---- */
.auth-page { padding: 80px 0; }
.account-page { padding: 70px 0; }
.account-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.account-meta { color: var(--muted); margin: 4px 0 0; }
.account-cta { margin: 24px 0 10px; }
.account-sub { font-size: 1.3rem; margin: 30px 0 16px; }
.account-empty { color: var(--muted); }
.reservations { display: grid; gap: 14px; }
.res-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; box-shadow: var(--shadow); }
.res-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.res-pkg { font-weight: 800; color: var(--ink); font-size: 1.1rem; }
.res-total { font-weight: 800; color: var(--green-dark); }
.res-meta { color: var(--body); margin-top: 6px; font-size: .95rem; display: flex; gap: 6px; flex-wrap: wrap; }
.res-addr { color: var(--muted); font-size: .9rem; margin-top: 2px; }
.res-when { color: #9fb1a8; font-size: .82rem; margin-top: 8px; }
.res-view { display: inline-block; margin-top: 10px; }

/* Customer order page — agreement + balance */
.order-actions {
  --qa-green: #c8102e; --qa-green-dark: #9e0c24; --qa-ink: #1a1a1a;
  --qa-muted: #6b7785; --qa-line: #e6e1e2;
  margin: 8px 0 24px;
}
.agreement { max-height: 260px; overflow-y: auto; border: 1px solid var(--line); border-radius: 10px; padding: 14px 18px; background: #fafbfa; font-size: .88rem; }
.agreement p { margin: 0 0 10px; }
.agree-check { display: flex; align-items: flex-start; gap: 8px; margin: 14px 0; font-size: .92rem; }
.agree-check input { margin-top: 3px; }
.approved-badge { color: var(--green-dark); font-weight: 700; }
.order-paid { color: var(--green-dark); font-weight: 800; }
.ext-summary { margin-top: 12px; padding: 10px 14px; border: 1px solid #f3ccd3; background: #fdeef0; border-radius: 10px; }
.pay-date { color: var(--muted); font-size: .82rem; }

/* ---- Admin ops dashboard ---- */
.admin-page { padding: 56px 0; }
.admin-datenav { display: flex; align-items: center; gap: 12px; margin: 12px 0 8px; flex-wrap: wrap; }
.admin-datepick { display: flex; gap: 8px; }
.btn-sm { padding: 4px 10px; font-size: .8rem; }
.admin-windows { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.admin-window { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px; box-shadow: var(--shadow); }
.aw-head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.aw-label { font-weight: 800; }
.aw-time { color: var(--muted); font-size: .8rem; }
.aw-caps { display: grid; gap: 6px; margin: 10px 0; }
.cap-form { display: flex; align-items: center; gap: 6px; font-size: .8rem; }
.cap-label { flex: 1; }
.cap-input { width: 48px; padding: 3px 6px; border: 1px solid var(--line); border-radius: 6px; }
.aw-legs { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 8px; }
.aw-leg { font-size: .85rem; border-left: 3px solid var(--green); padding-left: 8px; }
.aw-leg.leg-pickup { border-left-color: #d99a1f; }
.leg-tag { font-weight: 800; font-size: .68rem; letter-spacing: .04em; color: var(--green-dark); }
.aw-leg.leg-pickup .leg-tag { color: #b07b14; }
.leg-mode { font-size: .68rem; color: var(--muted); margin-left: 4px; }
.leg-sub { color: var(--muted); font-size: .78rem; }
.leg-links { margin-top: 4px; display: flex; gap: 12px; }
.leg-links a, .dir-link { font-size: .78rem; font-weight: 700; color: var(--green-dark); text-decoration: none; }
.leg-links a:hover, .dir-link:hover { text-decoration: underline; }
.res-detail { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 8px 24px 24px; box-shadow: var(--shadow); }
.detail-grid { display: grid; grid-template-columns: 160px 1fr; gap: 6px 16px; margin: 0 0 8px; }
.detail-grid dt { font-weight: 700; color: var(--muted); }
.detail-grid dd { margin: 0; }
@media (max-width: 560px) { .detail-grid { grid-template-columns: 1fr; gap: 2px 0; } .detail-grid dt { margin-top: 8px; } }
.aw-empty { color: #9fb1a8; font-size: .82rem; margin: 8px 0 0; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.admin-table th, .admin-table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.admin-table .muted { color: var(--muted); font-size: .78rem; }
.status { font-size: .72rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; background: #eee; }
.status-deposit_paid { background: #dff3e6; color: #1f7a44; }
.status-pending { background: #fdf0d8; color: #9a6a12; }
.status-requested { background: #e7eef6; color: #2c5b8a; }
@media (max-width: 900px) { .admin-windows { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .admin-windows { grid-template-columns: 1fr; } }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-grid, .totes-grid, .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-media { max-width: 460px; }
  .steps, .cards-4 { grid-template-columns: 1fr 1fr; }
  .packages { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pkg-popular { transform: none; }
  .compare, .cards-2, .about-cards { grid-template-columns: 1fr; }
  .reserve-grid { grid-template-columns: 1fr; }
  .quote-panel { position: static; }
  .site-nav a:not(.nav-cta) { display: none; }
}
@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .steps, .cards-4 { grid-template-columns: 1fr; }
  .hero-checks { gap: 8px 18px; }
}

/* ---- Dark mode (site default) ---- */
:root {
  --green: #f59e0b;
  --green-dark: #d97706;
  --green-700: #b45309;
  --ink: #f3f4f6;
  --body: #d1d5db;
  --muted: #9ca3af;
  --tint: #111827;
  --tint-2: #1f2937;
  --line: #2a3445;
  --amber: #fbbf24;
  --white: #0b1220;
  --shadow: 0 10px 30px rgba(0, 0, 0, .45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .55);
}

body { background: var(--white); color: var(--body); }
a { color: #fbbf24; }
.skip-link { background: #000; color: #fff; }
.btn-primary { box-shadow: 0 8px 18px rgba(245, 158, 11, .32); }
.btn-ghost:hover { background: #1f2937; }

.promo-bar { background: #030712; color: #fde68a; }
.site-header { background: rgba(11,18,32,.92); border-bottom: 1px solid var(--line); }
.brand, .brand-footer, .brand-footer span { color: var(--ink); }
.site-nav a { color: #dbe1ea; }

.section-tint { background: #0f172a; }
.section-green { background: linear-gradient(160deg, #7c2d12 0%, #431407 100%); color: #fed7aa; }
.eyebrow.light { color: #fdba74; }
.section-sub { color: var(--muted); }
.hero { background: radial-gradient(1200px 500px at 80% -10%, #1f2937, #0b1220 60%); }
.hero-lede { color: var(--body); }
.price-badge,
.step,
.mini-card,
.compare-win,
.compare-lose,
.pkg-card,
.booking-form,
.ty-receipt,
.res-card,
.admin-window,
.res-detail { background: #111827; border-color: var(--line); }

.hero-photo { background: linear-gradient(150deg, #374151, #1f2937); }
.hero-photo-b { background: linear-gradient(150deg, #334155, #1f2937); }
.hero-checks { color: #fdba74; }
.compare-lose { background: #0f172a; border-color: #263244; }
.totes-media { background: linear-gradient(150deg, #374151, #1f2937); }
.about-media, .about-cards div { background: rgba(17,24,39,.8); }
.about-grid p, .about-cards span { color: #e5e7eb; }

.booking-form input, .booking-form select,
.cap-input,
.agreement,
.quote-app .quote,
.quote-app input,
.quote-app select,
.order-actions input:not([type=checkbox]),
.order-actions select,
.quote-app .payment-element,
.order-actions .payment-element,
.quote-app .suggestions { background: #0f172a; color: #e5e7eb; border-color: var(--line); }
.booking-form input:focus, .booking-form select:focus { box-shadow: 0 0 0 3px rgba(245,158,11,.2); }
.form-errors,
.quote-app .error,
.order-actions .error { background: #3a1b1b; border-color: #7f1d1d; color: #fecaca; }

.site-footer { background: #030712; color: #cbd5e1; }
.footer-copy { color: #9ca3af; }
.footer-links a { color: #cbd5e1; }
.footer-links .sep { color: #64748b; }

.quote-app,
.order-actions {
  --qa-green: #f59e0b;
  --qa-green-dark: #d97706;
  --qa-ink: #f3f4f6;
  --qa-muted: #9ca3af;
  --qa-line: #2a3445;
  --qa-bg: #0b1220;
}
.qa-hero { background: linear-gradient(135deg, #b45309, #7c2d12); }
.quote-app .quote { box-shadow: var(--shadow); }
.quote-app .pkg,
.quote-app .summary,
.quote-app .deposit-box,
.ext-summary { background: #111827; border-color: var(--qa-line); }
.quote-app .pkg:hover { border-color: #f59e0b; }
.quote-app .pkg.selected { box-shadow: 0 0 0 3px rgba(245,158,11,.24); }
.quote-app .suggestions li:hover,
.quote-app .suggestions li.active,
.quote-app .ful-opt.selected { background: #1f2937; }
.quote-app .note,
.order-actions .note { color: #fcd34d; }
.quote-app .row,
.ty-receipt .row,
.admin-table th,
.admin-table td { border-color: var(--line); }

.agreement { background: #0f172a; border-color: var(--line); }
.status { background: #1f2937; color: #d1d5db; }
.status-deposit_paid { background: #064e3b; color: #a7f3d0; }
.status-pending { background: #78350f; color: #fde68a; }
.status-requested { background: #1e3a8a; color: #bfdbfe; }
.aw-empty, .res-when { color: #94a3b8; }
