/* Beehive Can Sanitation — concept design system (Archivo · parchment · gold) */
:root {
  --bg: #FAF9F4;
  --bg-alt: #F2EFE7;
  --bg-deep: #EDE9DC;
  --line: #E9E4D4;
  --line2: #E0DBCB;
  --ink: #26251F;
  --body: #57534A;
  --muted: #8A8574;
  --faint: #B3AE9E;
  --gold: #B0882F;
  --gold-deep: #8F6D1F;
  --gold-lite: #D9B860;
  --cream: #F8F1DE;
  --cream2: #EFE4C4;
  --paper-dark: #26251F;
  --red: #C0574A;
  --red-bg: #F9E9E6;
  --green: #2E7D32;
  --green-soft: #7FA05B;
  --green-bg: #E7F3E7;
}

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

body {
  font-family: "Archivo", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; }
.narrow-xs { max-width: 420px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

h1, h2, h3 { font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--ink); }

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-h { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 40px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* Announcement bar */
.announce {
  background: var(--paper-dark); color: var(--cream2); text-align: center;
  padding: 9px 16px; font-size: 12.5px; letter-spacing: 0.06em; font-weight: 500;
}
.announce a { color: var(--gold-lite); font-weight: 700; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 249, 244, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; padding: 14px 28px; max-width: 1180px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 44px; mix-blend-mode: multiply; display: block; }
.brand-words { line-height: 1.05; }
.brand-title { font-weight: 900; letter-spacing: 0.04em; font-size: 16px; color: var(--ink); }
.brand-sub { font-size: 9.5px; letter-spacing: 0.28em; color: var(--muted); font-weight: 600; }
.nav-links { display: flex; gap: 26px; margin-left: auto; font-size: 14px; font-weight: 600; align-items: center; }
.nav-links a { color: var(--body); }
.nav-links a:hover { color: var(--gold); }
.nav-links .subtle { color: var(--faint); }

/* Buttons */
.btn {
  display: inline-block; border: none; border-radius: 999px; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 14px;
  padding: 11px 22px; letter-spacing: 0.02em; text-align: center;
  transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-deep); color: #fff; }
.btn-dark { background: var(--paper-dark); color: #F7F3E8; }
.btn-dark:hover { background: var(--gold); color: #fff; }
.btn-outline { background: none; border: 1px solid var(--line2); color: var(--body); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-lg { padding: 16px 34px; font-weight: 800; font-size: 16px; box-shadow: 0 8px 24px rgba(176, 136, 47, 0.35); }
.btn-block { display: block; width: 100%; }
.btn-mini { padding: 6px 14px; font-size: 12.5px; }
.btn-danger { background: var(--red-bg); color: var(--red); }
.btn-danger:hover { background: var(--red); color: #fff; }

/* Flash toasts */
.flashes { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 90; display: flex; flex-direction: column; gap: 8px; }
.flash {
  background: var(--paper-dark); color: #F7F3E8; border-radius: 14px;
  padding: 15px 24px; font-size: 14px; font-weight: 600; white-space: nowrap;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  animation: toastIn 0.25s ease; display: flex; align-items: center; gap: 10px;
}
.flash::before { content: "✓"; color: var(--gold-lite); }
.flash-error::before { content: "✕"; color: #E58A7D; }

/* Hero */
.hero { max-width: 1180px; margin: 0 auto; padding: 84px 28px 72px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.hero-copy { animation: fadeUp 0.6s ease both; }
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4rem); letter-spacing: -0.025em; }
.hero .lead { font-size: 19px; line-height: 1.55; color: var(--body); max-width: 520px; margin: 22px 0 30px; }
.hero-cta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.hero-link { font-weight: 700; font-size: 15px; color: var(--ink); border-bottom: 2px solid var(--gold-lite); padding-bottom: 2px; }
.hero-proof { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; font-size: 13.5px; font-weight: 600; color: var(--body); }
.hero-proof .stars { color: var(--gold); }
.hero-art { display: flex; justify-content: center; animation: fadeUp 0.6s 0.12s ease both; }
.hero-logo-card {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 24px;
  padding: 40px 48px; box-shadow: 0 24px 60px rgba(38, 37, 31, 0.08);
}
.hero-logo-card img { width: 300px; mix-blend-mode: multiply; display: block; }

/* Band sections */
.band { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-inner, .section { max-width: 1180px; margin: 0 auto; padding: 72px 28px; }

/* How it works */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { background: var(--bg); border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.step-num { font-size: 13px; font-weight: 800; color: var(--gold); margin-bottom: 14px; }
.step-card h3 { font-size: 19px; font-weight: 800; letter-spacing: 0; margin-bottom: 8px; }
.step-card p { font-size: 14.5px; line-height: 1.6; color: var(--body); }

/* Pricing */
.pricing-head { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin-bottom: 44px; }
.pricing-head h2 { margin: 0; }
.pricing-note { font-size: 14.5px; color: var(--muted); font-weight: 600; }
.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.plan-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 30px 26px; transition: transform 0.15s ease;
  display: block; color: inherit;
}
.plan-card:hover { transform: translateY(-4px); color: inherit; }
.plan-hot { background: var(--paper-dark); border-color: var(--paper-dark); }
.plan-badge {
  position: absolute; top: -11px; left: 24px; background: var(--gold); color: #fff;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.12em; padding: 5px 12px;
  border-radius: 999px;
}
.plan-name { font-size: 15px; font-weight: 800; color: var(--ink); }
.plan-hot .plan-name { color: #F7F3E8; }
.plan-cadence { font-size: 12.5px; color: var(--muted); margin: 4px 0 18px; font-weight: 500; }
.plan-hot .plan-cadence { color: var(--faint); }
.plan-price { display: flex; align-items: baseline; gap: 4px; }
.plan-price strong { font-size: 42px; font-weight: 900; letter-spacing: -0.03em; color: var(--ink); }
.plan-hot .plan-price strong { color: var(--gold-lite); }
.plan-price span { font-size: 13px; font-weight: 600; color: var(--muted); }
.plan-blurb { font-size: 13px; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.plan-hot .plan-blurb { color: var(--faint); }
.pricing-cta { margin-top: 28px; text-align: center; }

/* Eco stats band */
.eco { background: var(--paper-dark); color: #F7F3E8; }
.eco-grid { max-width: 1180px; margin: 0 auto; padding: 70px 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.eco-num { font-size: 46px; font-weight: 900; color: var(--gold-lite); letter-spacing: -0.02em; }
.eco-label { font-size: 13px; color: var(--faint); font-weight: 600; letter-spacing: 0.06em; margin-top: 6px; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.review-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 15.5px; line-height: 1.65; color: #3B392F; font-style: italic; }
.review-who { margin-top: 18px; font-size: 13px; font-weight: 700; }
.review-who span { color: var(--muted); font-weight: 500; }
.review-cta { margin-top: 28px; text-align: center; }

/* Story */
.story-grid { max-width: 1180px; margin: 0 auto; padding: 80px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.story-grid img { width: 100%; border-radius: 22px; border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(38, 37, 31, 0.12); }
.story-grid p { font-size: 16px; line-height: 1.7; color: var(--body); margin-bottom: 14px; }
.story-follow { font-weight: 700; font-size: 14.5px; }

/* Service area */
.area-grid { max-width: 1180px; margin: 0 auto; padding: 80px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.county-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.county-label { font-size: 13px; font-weight: 800; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 12px; }
.city-list { display: flex; flex-direction: column; gap: 8px; font-size: 15px; font-weight: 600; color: #3B392F; }
.area-note { margin-top: 26px; font-size: 13.5px; color: var(--muted); }
.map-ph {
  border-radius: 22px; border: 1px dashed #C9C2AC; min-height: 380px;
  background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 12px, var(--bg-deep) 12px, var(--bg-deep) 24px);
  display: flex; align-items: center; justify-content: center;
}
.map-ph span { font-family: ui-monospace, Menlo, monospace; font-size: 12.5px; color: var(--muted); background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 10px 16px; }

/* Footer */
.site-footer { background: var(--paper-dark); color: var(--faint); }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 56px 28px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand-title { font-weight: 900; letter-spacing: 0.04em; font-size: 17px; color: #F7F3E8; }
.footer-brand-title span { font-weight: 600; color: var(--gold-lite); font-size: 12px; letter-spacing: 0.24em; }
.footer-meta { font-size: 13px; margin-top: 8px; }
.footer-meta a { color: var(--faint); }
.footer-meta a:hover { color: var(--gold-lite); }
.footer-links { display: flex; gap: 22px; font-size: 13.5px; font-weight: 600; }
.footer-links a { color: var(--faint); }
.footer-links a:hover { color: var(--gold-lite); }

/* ---------- Forms & booking ---------- */
.page-hero { max-width: 1180px; margin: 0 auto; padding: 64px 28px 20px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .lead { font-size: 17px; color: var(--body); margin-top: 14px; max-width: 620px; }

.card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px; margin-bottom: 40px; }
.form label { display: block; font-size: 12px; font-weight: 700; color: var(--body); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.form input, .form select, .form textarea {
  width: 100%; margin-top: 6px; border: 1px solid #C9C2AC; border-radius: 12px;
  padding: 13px 15px; font-size: 14.5px; background: #fff; outline: none;
  font-family: inherit; color: var(--ink);
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.step-label { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; color: var(--gold); margin: 30px 0 16px; text-transform: uppercase; }
.step-label:first-child { margin-top: 0; }

.consent-note { font-size: 12.5px; line-height: 1.6; margin: -4px 0 18px; }
.addr-row { display: grid; grid-template-columns: 2fr 88px 1fr; gap: 14px; }
.terms-box {
  display: flex !important; align-items: center; gap: 12px; cursor: pointer;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 20px; margin-top: 22px !important;
  text-transform: none !important; letter-spacing: 0 !important;
  font-size: 14px !important; color: var(--ink) !important;
}
.terms-box input { width: 20px; height: 20px; margin: 0; accent-color: var(--gold); flex-shrink: 0; }
.terms-box a { font-weight: 700; text-decoration: underline; }
.btn:disabled { background: #D8D2BF; color: #fff; cursor: not-allowed; box-shadow: none; transform: none; }

/* Plan picker */
.plan-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.plan-option { cursor: pointer; margin: 0 !important; text-transform: none !important; letter-spacing: 0 !important; }
.plan-option input { display: none; }
.plan-option-body { display: block; border: 1px solid var(--line2); background: #fff; border-radius: 16px; padding: 18px 20px; }
.plan-option input:checked + .plan-option-body { border: 2px solid var(--gold); background: var(--cream); padding: 17px 19px; }
.plan-option-top { display: flex; justify-content: space-between; align-items: baseline; }
.plan-option-top strong { font-weight: 800; font-size: 15.5px; color: var(--ink); }
.plan-option-top em { font-style: normal; font-weight: 900; font-size: 20px; color: var(--gold); }
.plan-option-sub { font-size: 12.5px; color: var(--muted); margin-top: 4px; font-weight: 500; }

/* Cans stepper */
.cans-box { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 16px 20px; }
.cans-box h4 { font-weight: 800; font-size: 15px; }
.cans-box .sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.stepper { display: flex; align-items: center; gap: 16px; }
.stepper button { width: 36px; height: 36px; border-radius: 999px; border: 1px solid #C9C2AC; background: #fff; font-size: 18px; cursor: pointer; color: var(--ink); font-family: inherit; }
.stepper button:hover { border-color: var(--gold); }
.stepper .val { font-weight: 900; font-size: 20px; min-width: 20px; text-align: center; }

/* Day grid + windows */
.day-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.day-cell { border: 1px solid var(--line2); background: #fff; border-radius: 12px; padding: 10px 6px; text-align: center; cursor: pointer; font-family: inherit; }
.day-cell .dow { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.08em; }
.day-cell .num { font-size: 19px; font-weight: 900; margin: 2px 0; color: var(--ink); }
.day-cell .tag { font-size: 10px; font-weight: 700; color: var(--green-soft); }
.day-cell.full { opacity: 0.45; cursor: not-allowed; background: #F4F2EA; }
.day-cell.full .tag { color: var(--red); }
.day-cell.selected { border: 2px solid var(--gold); background: var(--cream); padding: 9px 5px; }
.day-cell.selected .tag { color: var(--gold-deep); }
.window-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.window-cell { border: 1px solid var(--line2); background: #fff; border-radius: 14px; padding: 14px; text-align: center; cursor: pointer; font-family: inherit; }
.window-cell .w-name { font-weight: 800; font-size: 14.5px; color: var(--ink); }
.window-cell .w-time { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.window-cell.selected { border: 2px solid var(--gold); background: var(--cream); padding: 13px; }
.window-cell:disabled { opacity: 0.4; cursor: not-allowed; }

.summary-box { margin-top: 18px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; font-size: 13.5px; color: var(--body); line-height: 1.6; }
.summary-box strong { color: var(--ink); }
.total-bar { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; gap: 16px; flex-wrap: wrap; }
.total-bar .amt { font-size: 14px; color: var(--body); }
.total-bar .amt strong { color: var(--ink); font-size: 17px; }

/* Confirmation */
.confirm-check { width: 64px; height: 64px; border-radius: 999px; background: var(--cream2); color: var(--gold-deep); font-size: 30px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.confirm-title { font-size: 26px; font-weight: 900; letter-spacing: -0.02em; text-align: center; }
.confirm-sub { font-size: 15px; color: var(--body); margin: 8px 0 24px; text-align: center; }
.sms-mock { max-width: 400px; margin: 0 auto; }
.sms-mock-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 8px; text-align: center; }
.sms-bubble { background: #E9E9EB; border-radius: 20px 20px 20px 6px; padding: 14px 18px; font-family: -apple-system, "Helvetica Neue", sans-serif; font-size: 14px; line-height: 1.5; color: #1c1c1e; word-break: break-word; }
.sms-bubble a { color: #0a60c2; text-decoration: underline; }
.confirm-list { display: flex; flex-direction: column; gap: 0; margin-top: 22px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; font-size: 13.5px; color: var(--body); }
.confirm-list div { display: flex; justify-content: space-between; gap: 16px; line-height: 2; }
.confirm-list dt { font-weight: 500; }
.confirm-list dd { font-weight: 800; color: var(--ink); text-align: right; }

/* Status pills */
.status { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.status-pending, .status-unpaid { background: var(--red-bg); color: var(--red); }
.status-confirmed, .status-paid { background: var(--cream); color: var(--gold-deep); }
.status-completed { background: var(--green-bg); color: var(--green); }
.status-cancelled { background: #eee; color: var(--muted); }
.status-refunded { background: #eee; color: var(--muted); }

/* ---------- Owner portal ---------- */
.portal-body { background: var(--bg-alt); min-height: 100vh; }
.portal-header { background: var(--paper-dark); color: #F7F3E8; position: sticky; top: 0; z-index: 40; }
.portal-header-inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; height: 64px; display: flex; align-items: center; gap: 28px; }
.portal-brand { display: flex; align-items: center; gap: 10px; }
.portal-brand .b1 { font-weight: 900; letter-spacing: 0.05em; font-size: 15px; }
.portal-brand .b2 { font-size: 10px; letter-spacing: 0.2em; color: var(--gold-lite); font-weight: 700; }
.portal-tabs { display: flex; gap: 6px; }
.portal-tab { border-radius: 999px; padding: 9px 18px; font-weight: 700; font-size: 13.5px; color: var(--faint); }
.portal-tab:hover { color: #F7F3E8; }
.portal-tab.active { background: var(--gold); color: #fff; }
.portal-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.portal-right .view-site { color: var(--faint); font-size: 13px; font-weight: 600; }
.portal-avatar { width: 34px; height: 34px; border-radius: 999px; background: var(--gold); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; }
.portal-signout { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.portal-main { max-width: 1280px; margin: 0 auto; padding: 28px; }
.portal-h-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 12px; }
.portal-h-row h1 { font-size: 26px; }
.portal-h-sub { font-size: 13.5px; color: var(--body); font-weight: 600; }
.week-nav { display: inline-flex; gap: 6px; margin-left: 12px; }
.week-nav a { font-weight: 800; color: var(--body); border: 1px solid var(--line2); border-radius: 999px; padding: 2px 12px; font-size: 13px; background: var(--bg); }
.week-nav a:hover { border-color: var(--gold); color: var(--gold-deep); }

/* Schedule week view */
.week-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; align-items: start; }
.day-col { background: var(--bg-deep); border: 1px solid #E5E0D0; border-radius: 16px; padding: 12px; min-height: 220px; }
.day-col.today { background: var(--bg); border: 2px solid var(--gold); padding: 11px; }
.day-col-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.day-col-head .dw { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; color: var(--muted); }
.day-col-head .dn { font-size: 15px; font-weight: 900; color: var(--ink); }
.day-col.today .dw, .day-col.today .dn { color: var(--gold); }
.job-stack { display: flex; flex-direction: column; gap: 8px; }
.job-card {
  display: block; background: #fff; border: 1px solid #E5E0D0; border-radius: 10px;
  padding: 9px 10px; color: inherit; border-left: 4px solid var(--gold);
}
.job-card:hover { border-color: var(--gold); color: inherit; }
.job-card.s-completed { border-left-color: var(--green-soft); }
.job-card.s-pending { border-left-color: var(--red); }
.job-card .j-name { font-size: 12.5px; font-weight: 800; line-height: 1.2; }
.job-card .j-meta { font-size: 11px; color: var(--muted); margin-top: 2px; font-weight: 600; }
.job-card .status { margin-top: 6px; font-size: 9.5px; padding: 3px 8px; }

/* Portal tables */
.portal-table { background: var(--bg); border: 1px solid #E5E0D0; border-radius: 18px; overflow: hidden; }
.pt-head, .pt-row { display: grid; grid-template-columns: 1.4fr 1fr 0.9fr 0.6fr 0.9fr 0.8fr; gap: 12px; padding: 15px 22px; align-items: center; }
.pt-head { background: var(--bg-deep); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; color: var(--muted); padding: 14px 22px; }
.pt-row { border-top: 1px solid var(--bg-deep); font-size: 14px; }
.pt-row .c-name { font-weight: 800; }
.pt-row .c-sub { font-size: 12px; color: var(--muted); margin-top: 1px; }
.pt-plan { font-size: 11px; font-weight: 800; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 999px; background: var(--cream); color: var(--gold-deep); display: inline-block; }

/* Revenue */
.rev-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px; }
.rev-card { background: var(--bg); border: 1px solid #E5E0D0; border-radius: 18px; padding: 22px; }
.rev-card.dark { background: var(--paper-dark); border-color: var(--paper-dark); color: #F7F3E8; }
.rev-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; color: var(--muted); }
.rev-card.dark .rev-label { color: var(--faint); }
.rev-num { font-size: 34px; font-weight: 900; letter-spacing: -0.02em; margin-top: 8px; }
.rev-card.dark .rev-num { color: var(--gold-lite); }
.rev-num.bad { color: var(--red); }
.rev-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.chart-card { background: var(--bg); border: 1px solid #E5E0D0; border-radius: 18px; padding: 26px; }
.chart-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 22px; }
.chart-head h3 { font-size: 15px; font-weight: 800; }
.chart-head span { font-size: 12px; color: var(--muted); font-weight: 600; }
.bars { display: flex; align-items: flex-end; gap: 14px; height: 160px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.bar-amt { font-size: 11.5px; font-weight: 800; color: var(--body); }
.bar { width: 100%; border-radius: 8px 8px 3px 3px; background: #DFD8C2; }
.bar.hot { background: var(--gold); }
.bar-label { font-size: 10.5px; font-weight: 700; color: var(--muted); letter-spacing: 0.05em; }

/* Job detail / drawer-style card */
.job-detail { max-width: 560px; }
.jd-id { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 8px; }
.jd-name { font-size: 24px; font-weight: 900; letter-spacing: -0.02em; }
.jd-addr { font-size: 14px; color: var(--body); margin-top: 4px; font-weight: 600; }
.jd-pills { margin: 12px 0 22px; display: flex; gap: 8px; }
.jd-facts { background: var(--bg-alt); border: 1px solid #E5E0D0; border-radius: 14px; padding: 16px 18px; font-size: 13.5px; color: var(--body); }
.jd-facts div { display: flex; justify-content: space-between; gap: 16px; line-height: 2.1; }
.jd-facts strong { color: var(--ink); text-align: right; }
.jd-refs { margin-top: 16px; font-size: 11.5px; color: var(--muted); line-height: 1.8; font-family: ui-monospace, Menlo, monospace; }
.jd-actions { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.jd-actions .btn { border-radius: 12px; padding: 14px; font-size: 15px; font-weight: 800; width: 100%; }

/* SMS composer */
.sms-card { max-width: 460px; }
.sms-templates { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.sms-templates button { background: var(--bg-alt); border: 1px solid var(--line2); border-radius: 999px; padding: 7px 14px; font-family: inherit; font-weight: 700; font-size: 12px; cursor: pointer; color: var(--body); }
.sms-templates button:hover { border-color: var(--gold); color: var(--gold-deep); }
.sms-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
.sms-foot code { font-size: 11.5px; color: var(--muted); font-family: ui-monospace, Menlo, monospace; }

/* Login */
.login-page { min-height: 100vh; background: var(--paper-dark); display: flex; align-items: center; justify-content: center; padding: 24px; font-family: "Archivo", sans-serif; }
.login-box { width: 400px; max-width: 100%; }
.login-brand { text-align: center; margin-bottom: 26px; }
.login-logo-card { display: inline-block; background: var(--bg-alt); border-radius: 20px; padding: 16px 22px; }
.login-logo-card img { height: 72px; mix-blend-mode: multiply; display: block; }
.login-title { color: #F7F3E8; font-weight: 900; letter-spacing: 0.05em; font-size: 18px; margin-top: 16px; }
.login-sub { color: var(--muted); font-size: 13px; margin-top: 4px; }
.login-sub a { color: var(--gold-lite); }
.login-card { background: var(--bg); border-radius: 20px; padding: 28px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4); }
.login-hint { margin-top: 14px; text-align: center; font-size: 12px; color: var(--muted); }
.gate-error { color: var(--red); font-weight: 700; font-size: 13.5px; margin: -4px 0 12px; }

/* Demo checkout */
.checkout-page { min-height: 100vh; background: rgba(20, 20, 24, 0.94); display: flex; align-items: center; justify-content: center; padding: 24px; font-family: "Archivo", sans-serif; }
.checkout-card { background: #fff; border-radius: 18px; width: 840px; max-width: 100%; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.checkout-left { background: var(--paper-dark); color: #F7F3E8; padding: 36px; }
.co-brand { font-weight: 800; font-size: 14px; letter-spacing: 0.06em; }
.co-invoice { margin-top: 36px; font-size: 13px; color: var(--faint); font-weight: 600; }
.co-amount { font-size: 44px; font-weight: 900; letter-spacing: -0.02em; margin-top: 6px; }
.co-lines { margin-top: 28px; border-top: 1px solid rgba(247, 243, 232, 0.15); padding-top: 20px; font-size: 13.5px; line-height: 2; color: #D8D3C4; }
.co-lines div { display: flex; justify-content: space-between; }
.co-lines .co-due { font-weight: 800; color: #F7F3E8; }
.co-note { margin-top: 40px; font-size: 11.5px; color: var(--muted); line-height: 1.6; }
.co-test { color: var(--gold-lite); font-weight: 800; letter-spacing: 0.08em; }
.checkout-right { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.co-form-title { font-size: 14px; font-weight: 700; color: #3B392F; margin-bottom: 16px; }
.co-form { display: flex; flex-direction: column; gap: 10px; }
.co-form input { border: 1px solid #D8D5CB; border-radius: 10px; padding: 12px 14px; font-size: 14px; font-family: inherit; background: #FAFAF8; color: var(--ink); outline: none; }
.co-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.co-secure { margin-top: 12px; text-align: center; font-size: 11.5px; color: var(--muted); }
@media (max-width: 700px) { .checkout-card { grid-template-columns: 1fr; } }

/* Messages */
.message-card { margin-bottom: 14px; padding: 20px 24px; background: var(--bg); }
.message-head { display: flex; justify-content: space-between; align-items: baseline; }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-art { display: none; }
  .step-grid, .review-grid, .rev-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr 1fr; }
  .story-grid, .area-grid { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 14px; font-size: 13px; }
  .nav-links .hide-m { display: none; }
  .week-grid { grid-template-columns: repeat(2, 1fr); }
  .day-grid { grid-template-columns: repeat(4, 1fr); }
  .form-row, .plan-picker { grid-template-columns: 1fr; }
  .addr-row { grid-template-columns: 1fr; }
  .pt-head { display: none; }
  .pt-row { grid-template-columns: 1fr 1fr; }
  .portal-header-inner { flex-wrap: wrap; height: auto; padding: 12px 20px; }
  .portal-right { margin-left: 0; }
}
