:root {
  --background: #f5f3ed;
  --surface: #fffefb;
  --surface-muted: #ebe9e1;
  --surface-strong: #1d2a22;
  --border: #d8d6cd;
  --border-strong: #bcbab0;
  --text: #1b241e;
  --text-secondary: #586159;
  --text-muted: #7a817b;
  --primary: var(--gn-primary, #315c3b);
  --primary-hover: var(--gn-primary-dark, #23472d);
  --accent: var(--gn-accent, #d87824);
  --accent-soft: #f6e6d5;
  --success: #2e6840;
  --success-soft: #e1eee4;
  --warning: #8a5b16;
  --warning-soft: #f5ead4;
  --danger: #9b3535;
  --danger-soft: #f5e1df;
  --radius-sm: 6px;
  --radius-md: 9px;
  --radius-lg: 12px;
  --shadow-float: 0 18px 50px rgba(25, 35, 28, .12);
  --font-ui: Inter, Geist, "Aptos", "Segoe UI", sans-serif;
  --container: 1180px;
}

html { font-size: 16px; max-width: 100%; min-height: 100%; overflow-x: clip; scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--text);
  font-family: var(--font-ui);
  line-height: 1.55;
  min-height: 100%;
  max-width: 100%;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body, button, input, select, textarea { font-feature-settings: "cv02", "cv03", "cv04", "cv11"; }
a { color: var(--primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--primary-hover); }
h1, h2, h3, h4, h5, h6 { color: var(--text); font-weight: 670; letter-spacing: -.025em; line-height: 1.14; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.45rem, 2.4vw, 2rem); }
p:last-child { margin-bottom: 0; }
.site-container { max-width: var(--container); }
.site-container, .site-main { min-width: 0; }
.site-main { min-height: 65vh; padding: 0 0 64px; }
.text-secondary { color: var(--text-secondary) !important; }
.small, small { font-size: .8125rem; }
.fw-bold { font-weight: 680 !important; }

/* Brand and navigation */
.site-header {
  background: rgba(255, 254, 251, .94);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1020;
}
.site-header .navbar { min-height: 68px; padding: 8px 0; }
.brand {
  align-items: center;
  color: var(--text);
  display: inline-flex;
  font-size: .96rem;
  font-weight: 720;
  gap: 10px;
  letter-spacing: -.015em;
  text-decoration: none;
  white-space: nowrap;
}
.brand:hover { color: var(--text); }
.brand-mark {
  align-items: center;
  background: var(--primary);
  border-radius: var(--radius-sm);
  color: #fff;
  display: inline-flex;
  font-size: .66rem;
  height: 32px;
  justify-content: center;
  letter-spacing: .06em;
  width: 32px;
}
.navbar-nav { gap: 4px; }
.navbar .nav-link {
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: .875rem;
  font-weight: 560;
  padding: 8px 10px !important;
}
.navbar .nav-link:hover, .navbar .nav-link:focus { background: var(--surface-muted); color: var(--text); }
.navbar-toggler { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 6px 8px; }
.site-actions { align-items: center; display: flex; gap: 12px; }
.account-nav { align-items: center; display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.account-link { color: var(--text-secondary); display: inline-block; font-size: .8125rem; padding: 7px 8px; text-decoration: none; }
.account-link:hover { color: var(--text); }
.account-button { background: none; border: 0; }

/* Buttons */
.btn {
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 630;
  min-height: 40px;
  padding: 8px 15px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.btn-sm { font-size: .8rem; min-height: 32px; padding: 5px 10px; }
.btn-lg { border-radius: var(--radius-md); font-size: .95rem; min-height: 48px; padding: 11px 20px; }
.btn-primary {
  --bs-btn-bg: var(--primary); --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-hover); --bs-btn-hover-border-color: var(--primary-hover);
  --bs-btn-active-bg: var(--primary-hover); --bs-btn-active-border-color: var(--primary-hover);
}
.btn-outline-primary {
  --bs-btn-color: var(--primary); --bs-btn-border-color: var(--border-strong);
  --bs-btn-hover-bg: var(--surface-muted); --bs-btn-hover-color: var(--text); --bs-btn-hover-border-color: var(--border-strong);
  background: var(--surface);
}
.btn-outline-secondary { --bs-btn-color: var(--text-secondary); --bs-btn-border-color: var(--border); background: transparent; }
.btn-danger { --bs-btn-bg: var(--danger); --bs-btn-border-color: var(--danger); }
.btn:focus-visible, .nav-link:focus-visible, .account-link:focus-visible,
.form-control:focus, .form-select:focus, .form-check-input:focus, summary:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 22%, transparent);
  outline: none;
}

/* Forms */
.form-label { color: var(--text); font-size: .8125rem; font-weight: 650; margin-bottom: 6px; }
.form-control, .form-select {
  background-color: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: .9375rem;
  min-height: 42px;
  padding: 9px 11px;
}
textarea.form-control { min-height: 96px; }
.form-control::placeholder { color: #929891; }
.form-text { color: var(--text-muted); font-size: .75rem; margin-top: 5px; }
.form-check { min-height: 22px; }
.form-check-input { border-color: var(--border-strong); }
.form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }
.input-group-text { background: var(--surface-muted); border-color: var(--border-strong); color: var(--text-secondary); }
.validation-summary-valid { display: none; }
.field-validation-error, .text-danger { color: var(--danger) !important; font-size: .78rem; }

/* Panels, cards and feedback */
.card, .content-panel, .info-card, .empty-state, .summary-tile {
  background: var(--surface);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: none !important;
}
.card-header, .card-footer { background: transparent; border-color: var(--border); }
.content-panel, .info-card, .empty-state { padding: 24px; }
.empty-state { color: var(--text-secondary); text-align: left; }
.alert { border: 1px solid; border-radius: var(--radius-sm); font-size: .875rem; padding: 12px 14px; }
.alert-success { background: var(--success-soft); border-color: #bfd6c5; color: #245431; }
.alert-warning { background: var(--warning-soft); border-color: #dfc998; color: #71480d; }
.alert-danger { background: var(--danger-soft); border-color: #dfb5b1; color: #7e2929; }
.badge { border-radius: 999px; font-size: .7rem; font-weight: 650; letter-spacing: .01em; padding: 5px 8px; }
.text-bg-light { background: var(--surface-muted) !important; color: var(--text-secondary) !important; }
.text-bg-success { background: var(--success-soft) !important; color: var(--success) !important; }
.text-bg-secondary { background: #e7e7e3 !important; color: #5d625e !important; }
.dropdown-menu { border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-float); padding: 6px; }
.dropdown-item { border-radius: 4px; font-size: .875rem; padding: 8px 10px; }
.dropdown-item:active { background: var(--primary); }
.modal-content { border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-float); }
.shadow, .shadow-sm, .shadow-lg { box-shadow: none !important; }
.rounded-3, .rounded-4 { border-radius: var(--radius-md) !important; }

/* Public editorial system */
.eyebrow, .campaign-kicker {
  color: #9a541b;
  display: block;
  font-size: .72rem;
  font-weight: 720;
  letter-spacing: .13em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.page-hero { max-width: 780px; padding: 64px 0 52px; }
.page-hero h1 { font-size: clamp(2.35rem, 6vw, 4.4rem); letter-spacing: -.055em; margin-bottom: 18px; }
.page-hero .lead { color: var(--text-secondary); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 680px; }
.section-heading { margin-bottom: 24px; max-width: 680px; }
.section-heading h2 { margin-bottom: 8px; }
.campaign-hero {
  border-bottom: 1px solid var(--border);
  display: flex;
  min-height: 560px;
  padding: 80px 0 72px;
  position: relative;
}
.campaign-hero::after {
  background: var(--accent);
  bottom: -1px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: min(22vw, 260px);
}
.campaign-hero h1 { font-size: clamp(3.2rem, 7.4vw, 6.5rem); letter-spacing: -.068em; line-height: .92; max-width: 860px; }
.campaign-hero .lead { color: var(--text-secondary); font-size: 1.16rem; margin: 24px 0 30px; max-width: 650px; }
.reservation-progress {
  border-left: 1px solid var(--border-strong);
  margin-left: 20px;
  padding: 8px 0 8px 32px;
}
.reservation-progress h2 { font-size: 1.25rem; }
.progress-value { color: var(--text-secondary); font-size: .92rem; margin: 28px 0 12px; }
.progress-value strong { color: var(--text); display: block; font-size: 2.8rem; letter-spacing: -.055em; line-height: 1; }
.progress { background: #deddd5; border-radius: 2px; height: 5px; }
.progress-bar { background: var(--accent); }
.availability-note { border-left: 3px solid var(--accent); color: var(--text-secondary); padding: 10px 14px; }
.campaign-benefits { border-bottom: 1px solid var(--border); display: grid; grid-template-columns: repeat(5, 1fr); }
.campaign-benefits article { border-right: 1px solid var(--border); min-height: 190px; padding: 30px 22px 30px 0; }
.campaign-benefits article + article { padding-left: 22px; }
.campaign-benefits article:last-child { border-right: 0; }
.campaign-benefits article > span { color: var(--accent); font-size: .7rem; font-weight: 750; letter-spacing: .1em; }
.campaign-benefits h2 { font-size: 1.05rem; margin: 30px 0 8px; }
.campaign-benefits p { color: var(--text-secondary); font-size: .875rem; }
.campaign-benefits a { font-size: .8125rem; font-weight: 650; }
.purchase-steps { border-bottom: 1px solid var(--border); border-top: 1px solid var(--border); display: grid; grid-template-columns: repeat(3, 1fr); }
.purchase-steps article { padding: 30px 30px 30px 0; }
.purchase-steps article + article { border-left: 1px solid var(--border); padding-left: 30px; }
.purchase-steps h2 { font-size: 1.15rem; margin-bottom: 8px; }
.purchase-steps p { color: var(--text-secondary); font-size: .875rem; }
.simple-how-it-works { border-bottom: 1px solid var(--border); border-top: 1px solid var(--border); max-width: 780px; padding: 30px 0; }
.simple-how-it-works h2 { font-size: 1.35rem; margin-bottom: 10px; }
.simple-how-it-works p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin: 0; }
.step-number {
  color: var(--accent); display: block; font-size: .75rem; font-weight: 750;
  letter-spacing: .1em; margin-bottom: 28px;
}
.process-list { max-width: 880px; }
.process-list li { border-top: 1px solid var(--border); display: grid; gap: 24px; grid-template-columns: 48px 1fr; padding: 28px 0; }
.process-list li:last-child { border-bottom: 1px solid var(--border); }
.process-list li > span { color: var(--accent); font-size: .78rem; font-weight: 750; padding-top: 4px; }
.process-list h2 { font-size: 1.3rem; margin-bottom: 8px; }
.process-list p { color: var(--text-secondary); margin: 0; }
.faq-list { max-width: 900px; }
.accordion-item { background: transparent; border-color: var(--border); }
.accordion-button { background: transparent; color: var(--text); font-weight: 620; padding: 20px 0; }
.accordion-button:not(.collapsed) { background: transparent; box-shadow: none; color: var(--primary); }
.accordion-body { color: var(--text-secondary); padding: 0 0 24px; }
.legal-page { max-width: 850px; }

/* Product objects */
.package-card { height: 100%; position: relative; transition: border-color 160ms ease, transform 160ms ease; }
.package-card:hover { border-color: var(--border-strong) !important; transform: translateY(-2px); }
.package-card.featured { border-top: 3px solid var(--accent) !important; }
.package-weight { font-size: 2.6rem; font-weight: 670; letter-spacing: -.055em; line-height: 1; }
.package-price-row { align-items: end; display: flex; gap: 16px; justify-content: space-between; }
.price { color: var(--text); font-size: 1.65rem; font-weight: 680; letter-spacing: -.04em; }
.harvest-card { overflow: hidden; }
.harvest-cover { aspect-ratio: 16 / 9; object-fit: cover; }
.confirmation-icon {
  align-items: center; background: var(--success-soft); border-radius: 50%; color: var(--success);
  display: flex; font-size: 1.4rem; height: 48px; justify-content: center; width: 48px;
}
.summary-tile { display: flex; flex-direction: column; height: 100%; padding: 18px; }
.summary-tile span { color: var(--text-muted); font-size: .75rem; margin-bottom: 5px; }
.reservation-speed { color: var(--text-muted); display: flex; flex-wrap: wrap; font-size: .78rem; gap: 0; }
.reservation-speed span + span::before { color: var(--border-strong); content: "\00b7"; margin: 0 9px; }
.simple-reservation-page { margin: 0 auto; max-width: 760px; padding-bottom: 72px; }
.reservation-header { padding: 52px 0 28px; }
.reservation-header h1 { font-size: clamp(2.2rem, 5vw, 3.35rem); letter-spacing: -.045em; margin-bottom: 12px; }
.reservation-header > p { color: var(--text-secondary); font-size: 1.1rem; margin: 0; max-width: 620px; }
.reservation-layout { align-items: start; display: grid; gap: clamp(32px, 6vw, 76px); grid-template-columns: minmax(0, 720px) minmax(220px, 1fr); }
.reservation-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); }
.reservation-form, .form-section, .form-section .row, .form-section .row > * { min-width: 0; }
.form-section { border: 0; border-bottom: 1px solid var(--border); margin: 0; padding: 30px 34px 34px; }
.form-section legend { color: var(--text); float: none; font-size: 1.3rem; font-weight: 680; margin-bottom: 22px; width: auto; }
.form-section legend span { color: var(--accent); font-size: .68rem; letter-spacing: .08em; margin-right: 8px; }
.optional { color: var(--text-muted); font-size: .7rem; font-weight: 500; margin-left: 4px; }
.package-choice-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, 1fr); }
.package-choice { background: #fff; border: 2px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; display: flex; flex-direction: column; min-height: 108px; padding: 16px; position: relative; transition: border-color 120ms ease, background-color 120ms ease; }
.package-choice:hover { border-color: var(--border-strong); }
.package-choice:has(.package-choice-input:checked) { background: #f3f7f1; border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.package-choice-input { height: 20px; margin: 0 0 12px; width: 20px; }
.package-choice-weight { color: var(--text); font-size: 1.25rem; font-weight: 720; line-height: 1.1; }
.package-choice-price { color: var(--text-secondary); font-size: .95rem; margin-top: 5px; }
.reservation-form .form-label { font-size: .95rem; font-weight: 650; }
.reservation-form .form-control, .reservation-form .form-select { font-size: 1rem; min-height: 52px; }
.reservation-total-box { align-self: end; background: #f2f1eb; border-radius: var(--radius-sm); display: flex; flex: 1; flex-direction: column; justify-content: center; min-height: 76px; padding: 12px 18px; }
.reservation-total-box span { color: var(--text-secondary); font-size: .8rem; }
.reservation-total-box strong { font-size: 1.35rem; }
.reservation-consent { padding: 22px 34px 6px; }
.reservation-consent .form-check-input { height: 22px; margin-right: 8px; width: 22px; }
.reservation-consent .form-check-label { color: var(--text-secondary); font-size: .9rem; padding-top: 2px; }
.consent-section { border-bottom: 0; }
.consent-section .form-check-label { color: var(--text-secondary); font-size: .85rem; }
.marketing-consents { border-top: 1px solid var(--border); margin-top: 20px; padding-top: 16px; }
.marketing-consents summary { color: var(--text-secondary); cursor: pointer; font-size: .82rem; font-weight: 620; }
.marketing-consents summary span { color: var(--text-muted); font-size: .72rem; font-weight: 500; }
.reservation-submit { align-items: center; display: flex; gap: 20px; justify-content: space-between; padding: 22px 34px 28px; }
.reservation-submit .btn { font-size: 1.05rem; min-height: 54px; padding-inline: 26px; }
.reservation-submit p { color: var(--text-secondary); font-size: .84rem; margin: 0; max-width: 270px; }
.reservation-aside { border-top: 2px solid var(--text); padding-top: 22px; position: sticky; top: 100px; }
.reservation-aside ol { list-style: none; margin: 22px 0 26px; padding: 0; }
.reservation-aside li { border-top: 1px solid var(--border); display: grid; gap: 12px; grid-template-columns: 24px 1fr; padding: 16px 0; }
.reservation-aside li:last-child { border-bottom: 1px solid var(--border); }
.reservation-aside li > span { color: var(--accent); font-size: .7rem; font-weight: 720; }
.reservation-aside li p { color: var(--text-secondary); font-size: .82rem; margin: 0; }
.reservation-privacy-note { color: var(--text-muted); font-size: .75rem; }
.confirmation-page { margin: 0 auto; max-width: 820px; padding: 70px 0; }
.confirmation-heading { max-width: 680px; }
.confirmation-heading .confirmation-icon { margin-bottom: 22px; }
.confirmation-heading h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); letter-spacing: -.06em; }
.confirmation-heading > p { color: var(--text-secondary); font-size: 1rem; }
.confirmation-reference { align-items: center; border-bottom: 1px solid var(--border); border-top: 1px solid var(--border); display: grid; gap: 12px; grid-template-columns: 1fr auto auto; margin: 38px 0 0; padding: 22px 0; }
.confirmation-reference > span:first-child { color: var(--text-secondary); font-size: .8rem; }
.confirmation-reference > strong { font-size: 1.35rem; letter-spacing: -.025em; }
.confirmation-details { margin: 0; }
.confirmation-details > div { border-bottom: 1px solid var(--border); display: grid; gap: 20px; grid-template-columns: minmax(150px, 1fr) 2fr; padding: 16px 0; }
.confirmation-details dt { color: var(--text-muted); font-size: .76rem; font-weight: 570; }
.confirmation-details dd { font-size: .9rem; font-weight: 620; margin: 0; }
.confirmation-actions { align-items: center; display: flex; gap: 18px; margin-top: 30px; }
.confirmation-actions p { color: var(--text-muted); font-size: .75rem; max-width: 260px; }
.reservation-timeline { display: grid; grid-template-columns: repeat(9, minmax(7rem, 1fr)); overflow-x: auto; padding: 8px 0 12px; }
.timeline-step { align-items: center; color: var(--text-muted); display: flex; flex-direction: column; font-size: .72rem; gap: 8px; min-width: 7rem; text-align: center; }
.timeline-dot { align-items: center; background: var(--surface-muted); border-radius: 50%; display: flex; font-weight: 650; height: 32px; justify-content: center; width: 32px; }
.timeline-step.complete, .timeline-step.current { color: var(--primary); font-weight: 620; }
.timeline-step.complete .timeline-dot { background: var(--success-soft); }
.timeline-step.current .timeline-dot { background: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 16%, transparent); color: #fff; }

/* Admin shell */
.admin-body { background: #f3f3f0; }
.admin-shell { min-height: 100vh; }
.admin-sidebar { background: var(--surface-strong); color: #dce2dd; width: 236px; }
.admin-sidebar-inner { display: flex; flex-direction: column; min-height: 100vh; padding: 24px 16px; }
.brand-inverse { color: #fff; margin: 0 8px 32px; }
.brand-inverse:hover { color: #fff; }
.brand-inverse .brand-mark { background: var(--accent); color: #24180e; }
.admin-nav-label { color: #839087; font-size: .64rem; font-weight: 700; letter-spacing: .14em; margin: 18px 10px 6px; text-transform: uppercase; }
.admin-nav { display: grid; gap: 2px; }
.admin-nav a { border-radius: var(--radius-sm); color: #cbd3cd; font-size: .82rem; font-weight: 540; padding: 8px 10px; text-decoration: none; }
.admin-nav a:hover, .admin-nav a:focus { background: rgba(255,255,255,.07); color: #fff; }
.admin-nav a.active { background: #34463a; color: #fff; font-weight: 650; }
.admin-account { border-top: 1px solid rgba(255,255,255,.12); margin-top: auto; padding-top: 14px; }
.admin-account .account-nav { align-items: flex-start; flex-direction: column; }
.admin-account .account-link { color: #cbd3cd; max-width: 190px; overflow: hidden; text-overflow: ellipsis; }
.admin-mobile-header { align-items: center; background: var(--surface-strong); display: none; justify-content: space-between; padding: 12px 16px; }
.admin-mobile-header .brand { color: #fff; }
.admin-menu-button { background: transparent; border: 1px solid #536058; border-radius: var(--radius-sm); color: #fff; font-size: .8rem; padding: 7px 10px; }
.admin-main { min-width: 0; padding: 40px clamp(20px, 4vw, 56px) 64px; }
.admin-main > .row:first-child, .admin-main > div:first-child { max-width: 1440px; }
.admin-main h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -.045em; }
.admin-main .eyebrow { color: var(--text-muted); }

/* Tables */
.table-responsive { background: var(--surface) !important; border: 1px solid var(--border); border-radius: var(--radius-md) !important; box-shadow: none !important; overflow-x: auto; }
.table { color: var(--text); font-size: .8125rem; margin: 0; }
.table > :not(caption) > * > * { border-bottom-color: var(--border); padding: 12px 14px; vertical-align: middle; }
.table thead th { background: #efeee9; color: var(--text-secondary); font-size: .68rem; font-weight: 720; letter-spacing: .055em; text-transform: uppercase; white-space: nowrap; }
.table tbody tr { transition: background-color 120ms ease; }
.table tbody tr:hover { background: #f8f7f3; }
.table tbody tr:last-child td { border-bottom: 0; }
.table td.text-end, .table th.text-end { font-variant-numeric: tabular-nums; }

/* Operational mobile UI */
.fulfillment-mobile { margin: 0 auto; max-width: 760px; }
.fulfillment-mobile-header, .fulfillment-tools { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; }
.route-status-pill, .fulfillment-status { background: var(--surface-muted); border-radius: 999px; color: var(--text-secondary); flex: 0 0 auto; font-size: .7rem; font-weight: 680; padding: 5px 8px; }
.fulfillment-status.success { background: var(--success-soft); color: var(--success); }
.fulfillment-status.danger { background: var(--danger-soft); color: var(--danger); }
.fulfillment-progress { display: grid; gap: 6px; }
.fulfillment-stop-list { display: grid; gap: 10px; }
.fulfillment-stop-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; scroll-margin-block: 9rem; }
.fulfillment-stop-card.is-delivered { opacity: .68; }
.fulfillment-stop-card.scan-match { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent); }
.stop-sequence { align-items: center; background: var(--surface-strong); border-radius: var(--radius-sm); color: #fff; display: inline-flex; flex: 0 0 42px; font-size: .95rem; font-weight: 720; height: 42px; justify-content: center; }
.fulfillment-address { background: var(--surface-muted); border-radius: var(--radius-sm); display: grid; gap: 4px; padding: 11px; }
.fulfillment-address > span { color: var(--text-secondary); font-size: .82rem; }
.problem-note { background: var(--danger-soft); border-radius: var(--radius-sm); color: var(--danger); margin-top: 5px; padding: 9px; }
.fulfillment-contact-grid { display: grid; gap: 8px; grid-template-columns: 1fr 1fr; }
.fulfillment-actions { display: grid; gap: 8px; }
.fulfillment-touch, .fulfillment-primary-action { align-items: center; display: inline-flex; font-size: .95rem; font-weight: 650; justify-content: center; min-height: 50px; }
.problem-report { border: 1px solid #d9aaa6; border-radius: var(--radius-sm); overflow: hidden; }
.problem-report summary { align-items: center; color: var(--danger); cursor: pointer; display: flex; font-weight: 650; min-height: 50px; padding: 11px 14px; }
.problem-report form { border-top: 1px solid #ead0ce; padding: 0 14px 14px; }
.qr-scanner-panel { background: #18201a; border-radius: var(--radius-md); color: #fff; padding: 12px; }
.qr-scanner-panel video { aspect-ratio: 4/3; background: #000; border-radius: var(--radius-sm); display: block; margin-bottom: 12px; object-fit: cover; width: 100%; }

.reservation-honeypot { block-size: 1px !important; clip-path: inset(50%) !important; inline-size: 1px !important; overflow: hidden !important; position: absolute !important; white-space: nowrap !important; }
.site-footer { background: #ebe9e1; border-top: 1px solid var(--border); }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 2fr 1fr 1fr; }
.footer-grid h2 { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-note { color: var(--text-secondary); font-size: .875rem; margin-top: 14px; max-width: 340px; }
.footer-links { display: grid; gap: 7px; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: var(--text-secondary); font-size: .82rem; text-decoration: none; }
.footer-links a:hover { color: var(--text); text-decoration: underline; }

/* ASP.NET Identity pages inherit the product system instead of Bootstrap defaults. */
.identity-body .site-main > .site-container { max-width: 620px; padding-top: 64px; }
.identity-body .site-main .row { display: block; margin: 0; }
.identity-body .site-main [class*="col-md-"] { margin: 0; padding: 0; width: 100%; }
.identity-body .site-main h1 { font-size: clamp(2.25rem, 6vw, 3.5rem); margin-bottom: 10px; }
.identity-body .site-main h2, .identity-body .site-main h3 { color: var(--text-secondary); font-size: 1rem; font-weight: 520; letter-spacing: 0; }
.identity-body .site-main section > form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); margin-top: 24px; padding: 28px; }
.identity-body .form-floating { margin-bottom: 14px !important; }
.identity-body .form-floating > .form-control { height: 54px; }
.identity-body .site-main hr { border-color: var(--border); margin: 18px 0; }
.identity-body #external-account { margin-top: 36px; }

@media (min-width: 992px) {
  .admin-shell { display: grid; grid-template-columns: 236px minmax(0, 1fr); }
  .admin-sidebar { display: block !important; height: 100vh; position: sticky; top: 0; }
}

@media (max-width: 991.98px) {
  .site-header .navbar-collapse { border-top: 1px solid var(--border); margin-top: 10px; padding: 12px 0 6px; }
  .site-actions { align-items: stretch; border-top: 1px solid var(--border); flex-direction: column; margin-top: 10px; padding-top: 12px; }
  .site-actions .account-nav { justify-content: space-between; }
  .admin-mobile-header { display: flex; }
  .admin-sidebar { width: 100%; }
  .admin-sidebar-inner { min-height: auto; padding: 16px; }
  .admin-sidebar .brand { display: none; }
  .admin-account { margin-top: 20px; }
  .admin-main { padding-top: 28px; }
  .campaign-benefits { grid-template-columns: repeat(2, 1fr); }
  .campaign-benefits article { border-bottom: 1px solid var(--border); }
  .campaign-benefits article:nth-child(even) { border-right: 0; }
  .reservation-layout { grid-template-columns: 1fr; }
  .reservation-aside { position: static; }
}

@media (max-width: 767.98px) {
  .site-main { padding-bottom: 48px; }
  .page-hero { padding: 44px 0 36px; }
  .campaign-hero { min-height: auto; padding: 52px 0 48px; }
  .campaign-hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .reservation-progress { border-left: 0; border-top: 1px solid var(--border); margin: 12px 0 0; padding: 28px 0 0; }
  .campaign-benefits { grid-template-columns: 1fr; }
  .campaign-benefits article, .campaign-benefits article + article { border-bottom: 1px solid var(--border); border-right: 0; min-height: 0; padding: 24px 0; }
  .campaign-benefits h2 { margin-top: 18px; }
  .purchase-steps { grid-template-columns: 1fr; }
  .purchase-steps article, .purchase-steps article + article { border-bottom: 1px solid var(--border); border-left: 0; padding: 24px 0; }
  .simple-reservation-page { padding-bottom: 24px; }
  .reservation-header { padding: 36px 0 22px; }
  .package-choice-grid { grid-template-columns: repeat(2, 1fr); }
  .form-section { padding: 24px 20px 28px; }
  .reservation-consent { padding: 20px 20px 4px; }
  .reservation-submit { align-items: stretch; flex-direction: column; padding: 16px 20px; }
  .reservation-submit p { text-align: center; }
  .confirmation-reference { align-items: start; grid-template-columns: 1fr auto; }
  .confirmation-reference > span:first-child { grid-column: 1 / -1; }
  .confirmation-actions { align-items: stretch; flex-direction: column; }
  .confirmation-actions p { max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .form-control, .form-select { min-height: 46px; }
  .form-check-input { height: 20px; width: 20px; }
  .reservation-submit { background: var(--surface) !important; border-top: 1px solid var(--border) !important; bottom: 0; padding-top: 12px !important; position: sticky; z-index: 5; }
  .table { min-width: 720px; }
  .table > :not(caption) > * > * { padding: 10px 12px; }
  .fulfillment-mobile-header { border-radius: 0 0 var(--radius-md) var(--radius-md); margin-inline: -12px; position: sticky; top: 0; z-index: 10; }
}

@media (max-width: 480px) {
  .site-container { padding-left: 18px; padding-right: 18px; }
  .admin-main { padding: 24px 14px 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .process-list li { gap: 12px; grid-template-columns: 32px 1fr; }
  .campaign-hero h1 { font-size: 2.65rem; overflow-wrap: anywhere; }
  .reservation-header h1 { font-size: 2.25rem; overflow-wrap: anywhere; }
  .identity-body .site-main > .site-container { padding-top: 40px; }
  .identity-body .site-main section > form { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* Modern public homepage */
.public-body { background: #f7f4ec; }
.public-body .site-header { backdrop-filter: blur(18px); background: rgba(247, 244, 236, .88); border-bottom-color: rgba(31, 63, 43, .12); }
.public-body .site-header .navbar { min-height: 76px; }
.public-body .brand-mark { background: #f28c28; border-radius: 50% 50% 46% 54%; box-shadow: inset -5px -4px 0 rgba(160, 73, 5, .14); }
.public-body .site-main { padding-top: 22px; }
.public-body .btn { border-radius: 999px; }
.btn-accent { --bs-btn-bg: #f28c28; --bs-btn-border-color: #f28c28; --bs-btn-color: #172d20; --bs-btn-hover-bg: #ffa23f; --bs-btn-hover-border-color: #ffa23f; --bs-btn-hover-color: #172d20; font-weight: 750; }

.home-hero { border-radius: 30px; color: #fff; min-height: 720px; overflow: hidden; position: relative; }
.home-hero-image { height: 100%; inset: 0; object-fit: cover; position: absolute; width: 100%; }
.home-hero-shade { background: linear-gradient(90deg, rgba(8, 26, 15, .9) 0%, rgba(8, 26, 15, .58) 42%, rgba(8, 26, 15, .05) 73%), linear-gradient(0deg, rgba(8, 26, 15, .5), transparent 45%); inset: 0; position: absolute; }
.home-hero-content { max-width: 760px; padding: clamp(72px, 9vw, 120px) clamp(28px, 7vw, 84px) 210px; position: relative; z-index: 1; }
.home-kicker { align-items: center; color: #f5eee0; display: flex; font-size: .72rem; font-weight: 760; gap: 10px; letter-spacing: .16em; margin-bottom: 22px; text-transform: uppercase; }
.home-kicker > span { background: #f28c28; border-radius: 50%; height: 8px; width: 8px; }
.home-kicker-dark { color: #587061; }
.home-kicker-light { color: #b8cabc; }
.home-hero h1 { color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.5rem, 7vw, 6.7rem); font-weight: 500; letter-spacing: -.055em; line-height: .92; margin-bottom: 28px; }
.home-hero-lead { color: rgba(255,255,255,.83); font-size: clamp(1.05rem, 1.7vw, 1.28rem); line-height: 1.6; max-width: 590px; }
.home-hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 26px; margin-top: 34px; }
.home-text-link { color: #fff; font-size: .9rem; font-weight: 680; text-decoration: none; }
.home-text-link:hover { color: #ffd09e; }
.home-text-link span { margin-left: 7px; }
.hero-progress { backdrop-filter: blur(14px); background: rgba(250, 248, 240, .94); border-radius: 18px; bottom: 26px; color: var(--text); padding: 22px 24px; position: absolute; right: 26px; width: min(390px, calc(100% - 52px)); z-index: 2; }
.hero-progress-heading, .hero-progress-numbers { align-items: flex-start; display: flex; justify-content: space-between; }
.hero-progress h2 { font-size: 1rem; margin: 0; }
.live-badge { align-items: center; background: #e6f0e8; border-radius: 999px; color: #2c673b; display: flex; font-size: .68rem; font-weight: 720; gap: 6px; padding: 5px 9px; text-transform: uppercase; }
.live-badge i { background: #4d945e; border-radius: 50%; height: 6px; width: 6px; }
.hero-progress-numbers { align-items: baseline; margin: 20px 0 8px; }
.hero-progress-numbers strong { font-size: 1.4rem; }
.hero-progress-numbers span, .hero-progress-date { color: var(--text-secondary); font-size: .76rem; }
.hero-progress .progress { background: #dce5dc; height: 7px; }
.hero-progress .progress-bar { background: #f28c28; border-radius: 999px; }
.hero-progress-date { margin: 9px 0 0; }

.home-promises { background: #fffdf8; border: 1px solid #e2ded1; border-radius: 18px; display: grid; grid-template-columns: repeat(3, 1fr); margin: 22px 0 0; padding: 26px 10px; }
.home-promises article { align-items: center; display: flex; gap: 16px; padding: 0 26px; }
.home-promises article + article { border-left: 1px solid #e5e0d5; }
.promise-icon { align-items: center; background: #edf1e8; border-radius: 50%; color: #315c3b; display: flex; flex: 0 0 42px; font-size: 1.15rem; height: 42px; justify-content: center; }
.home-promises strong { display: block; font-size: .9rem; margin-bottom: 3px; }
.home-promises p { color: var(--text-secondary); font-size: .75rem; line-height: 1.35; margin: 0; }

.home-section { margin-top: clamp(82px, 10vw, 132px); }
.home-section-heading { align-items: end; display: flex; gap: 60px; justify-content: space-between; margin-bottom: 40px; }
.home-section-heading h2, .origin-copy h2, .process-intro h2, .home-cta h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 500; letter-spacing: -.045em; line-height: .98; margin: 0; }
.home-section-heading > p { color: var(--text-secondary); font-size: .95rem; line-height: 1.7; margin: 0 0 4px; max-width: 420px; }
.home-section-heading.compact { align-items: center; }

.orchard-gallery { align-items: center; display: grid; gap: clamp(40px, 6vw, 76px); grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr); }
.gallery-copy h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.7rem, 5vw, 4.6rem); font-weight: 500; letter-spacing: -.045em; line-height: .98; margin: 0 0 26px; }
.gallery-copy > p:not(.home-kicker) { color: var(--text-secondary); line-height: 1.75; margin-bottom: 24px; max-width: 420px; }
.orchard-photo-grid { display: grid; gap: 12px; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 245px 245px; }
.orchard-photo { border-radius: 18px; margin: 0; overflow: hidden; position: relative; }
.orchard-photo::after { background: linear-gradient(0deg, rgba(10,35,18,.16), transparent 50%); content: ""; inset: 0; pointer-events: none; position: absolute; }
.orchard-photo img { height: 100%; object-fit: cover; transition: transform .5s ease; width: 100%; }
.orchard-photo:hover img { transform: scale(1.035); }
.orchard-photo-wide { grid-row: 1 / 3; }
.orchard-photo-landscape { grid-column: 2 / 4; }

.home-package-card { background: #fffdf8; border-color: #e1dccf !important; border-radius: 20px !important; min-height: 350px; overflow: hidden; }
.home-package-card.featured { border-color: #f28c28 !important; border-top-width: 1px !important; }
.home-package-card .card-body { padding: 22px 24px 24px; }
.home-package-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 3rem; font-weight: 500; line-height: 1; margin: 0; }
.home-package-card h3 small { font-family: var(--font-ui); font-size: 1rem; font-weight: 650; }
.package-name { color: var(--text-secondary); font-size: .78rem; margin: 7px 0 22px; }
.package-badge { background: #f28c28; border-radius: 999px; color: #183120; font-size: .65rem; font-weight: 760; padding: 7px 11px; position: absolute; right: 12px; text-transform: uppercase; top: 12px; z-index: 2; }
.package-fruit { align-items: center; background: #e7ecdf; display: flex; height: 140px; justify-content: center; overflow: hidden; position: relative; }
.package-fruit::before, .package-fruit::after { background: #d5e0cc; border-radius: 50%; content: ""; height: 180px; position: absolute; width: 180px; }
.package-fruit::before { left: -110px; top: -90px; }.package-fruit::after { bottom: -115px; right: -90px; }
.package-fruit span { background: radial-gradient(circle at 34% 27%, #ffb243 0 8%, #f28c28 38%, #d36a10 100%); border-radius: 50% 48% 52% 48%; box-shadow: 0 12px 22px rgba(93, 64, 13, .18); height: 70px; margin: 0 -6px; position: relative; width: 70px; z-index: 1; }
.package-fruit span:nth-child(2) { height: 84px; transform: translateY(-5px); width: 84px; z-index: 2; }
.package-fruit span::before { background: #37633c; border-radius: 100% 0 100% 0; content: ""; height: 18px; left: 42%; position: absolute; top: -8px; transform: rotate(-20deg); width: 27px; }
.package-price-row { align-items: center; border-top: 1px solid #ebe6da; display: flex; justify-content: space-between; padding-top: 18px; }
.package-add { align-items: center; background: #244b32; border-radius: 50%; color: #fff; display: inline-flex; flex: 0 0 42px; font-size: 1.55rem; height: 42px; justify-content: center; text-decoration: none; transition: transform .16s ease, background-color .16s ease; }
.package-add:hover { background: #f28c28; color: #172d20; transform: rotate(8deg); }
.package-add.disabled { background: #adb5bd; cursor: not-allowed; }

.origin-story { align-items: center; display: grid; gap: clamp(50px, 8vw, 100px); grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); }
.origin-gallery { min-height: 680px; position: relative; }
.origin-gallery img { object-fit: cover; }
.origin-image-main { border-radius: 220px 220px 24px 24px; height: 610px; width: 68%; }
.origin-image-detail { border: 9px solid #f7f4ec; border-radius: 24px; bottom: 0; height: 290px; object-position: 35% center; position: absolute; right: 0; width: 48%; }
.origin-seal { align-items: center; background: #f28c28; border: 6px solid #f7f4ec; border-radius: 50%; color: #183120; display: flex; flex-direction: column; font-family: Georgia, serif; font-size: 1.4rem; height: 112px; justify-content: center; left: 57%; position: absolute; top: 35%; transform: rotate(8deg); width: 112px; }
.origin-seal small { font-family: var(--font-ui); font-size: .6rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.origin-copy h2 { margin-bottom: 26px; }
.origin-lead { color: var(--text-secondary); font-size: 1.02rem; line-height: 1.8; }
.origin-facts { border-bottom: 1px solid #dcd7ca; border-top: 1px solid #dcd7ca; display: grid; grid-template-columns: repeat(3, 1fr); margin: 32px 0; padding: 20px 0; }
.origin-facts div { display: flex; flex-direction: column; }
.origin-facts strong { font-family: Georgia, serif; font-size: 1.2rem; font-weight: 500; }
.origin-facts span { color: var(--text-secondary); font-size: .7rem; text-transform: uppercase; }

.process-section { background: #173622; border-radius: 28px; color: #fff; padding: clamp(42px, 7vw, 78px); }
.process-intro h2 { color: #fff; }
.process-cards { display: grid; gap: 0; grid-template-columns: repeat(3, 1fr); margin-top: 54px; }
.process-cards article { border-top: 1px solid rgba(255,255,255,.2); padding: 26px 30px 0 0; }
.process-cards article + article { border-left: 1px solid rgba(255,255,255,.16); padding-left: 30px; }
.process-cards span { color: #f28c28; font-size: .75rem; font-weight: 750; letter-spacing: .12em; }
.process-cards h3 { color: #fff; font-size: 1.1rem; margin: 28px 0 10px; }
.process-cards p { color: #b8c9bc; font-size: .86rem; line-height: 1.65; }
.home-arrow-link { color: var(--text); font-size: .86rem; font-weight: 700; text-decoration: none; }
.home-arrow-link span { color: #f28c28; font-size: 1.2rem; margin-left: 6px; }
.harvests-section .harvest-card { border-radius: 18px !important; transition: transform .18s ease, box-shadow .18s ease; }
.harvests-section .harvest-card:hover { box-shadow: 0 18px 45px rgba(20, 45, 29, .1) !important; transform: translateY(-5px); }
.home-cta { align-items: center; background: #e8ecdf; border-radius: 28px; display: flex; gap: 40px; justify-content: space-between; margin-top: clamp(82px, 10vw, 132px); overflow: hidden; padding: clamp(38px, 6vw, 66px); position: relative; }
.home-cta::after { background: #f28c28; border-radius: 50%; content: ""; height: 260px; opacity: .18; position: absolute; right: -90px; top: -140px; width: 260px; }
.home-cta .btn { position: relative; white-space: nowrap; z-index: 1; }

@media (max-width: 991.98px) {
  .home-hero { min-height: 680px; }
  .home-promises { grid-template-columns: 1fr; padding: 4px 24px; }
  .home-promises article { padding: 20px 0; }
  .home-promises article + article { border-left: 0; border-top: 1px solid #e5e0d5; }
  .origin-story { gap: 50px; grid-template-columns: 1fr; }
  .origin-gallery { max-width: 690px; }
  .orchard-gallery { grid-template-columns: 1fr; }
  .gallery-copy { max-width: 620px; }
}

@media (max-width: 767.98px) {
  .public-body .site-main { padding-top: 12px; }
  .home-hero { border-radius: 20px; min-height: 720px; }
  .home-hero-shade { background: linear-gradient(0deg, rgba(8,26,15,.9) 0%, rgba(8,26,15,.45) 70%, rgba(8,26,15,.08)); }
  .home-hero-content { bottom: 0; padding: 200px 24px 220px; position: absolute; }
  .home-hero h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .home-hero-lead { font-size: 1rem; }
  .hero-progress { bottom: 14px; left: 14px; right: 14px; width: auto; }
  .home-section-heading { align-items: start; flex-direction: column; gap: 22px; }
  .home-section-heading h2, .origin-copy h2, .process-intro h2, .home-cta h2 { font-size: 2.65rem; }
  .origin-gallery { min-height: 510px; }
  .origin-image-main { height: 470px; width: 76%; }
  .origin-image-detail { height: 220px; width: 48%; }
  .origin-seal { height: 90px; left: 61%; top: 36%; width: 90px; }
  .process-cards { grid-template-columns: 1fr; }
  .process-cards article { padding: 24px 0; }
  .process-cards article + article { border-left: 0; }
  .home-cta { align-items: flex-start; flex-direction: column; }
  .orchard-photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 210px 220px; }
  .orchard-photo-wide { grid-column: 1 / 3; grid-row: auto; }
  .orchard-photo-landscape { grid-column: 1 / 3; }
}

@media (max-width: 480px) {
  .home-hero-content { padding-inline: 20px; }
  .home-hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-progress { padding: 18px; }
  .origin-gallery { min-height: 430px; }
  .origin-image-main { border-radius: 150px 150px 18px 18px; height: 400px; }
  .origin-image-detail { border-width: 6px; height: 180px; }
  .origin-seal { font-size: 1.1rem; height: 78px; width: 78px; }
  .origin-facts { gap: 10px; }
  .origin-facts strong { font-size: 1rem; }
  .orchard-photo-grid { gap: 8px; grid-template-rows: 280px 180px 190px; }
  .orchard-photo { border-radius: 13px; }
}
.login-shell { min-height: 68vh; display: grid; place-items: center; padding: 3rem 1rem; background: radial-gradient(circle at top right, rgba(238,149,46,.18), transparent 40%); }
.login-card { width: min(100%, 460px); padding: 2.5rem; text-align: center; background: #fff; border-radius: 1.5rem; box-shadow: 0 1rem 3rem rgba(31,81,46,.12); }
.login-card .form-label { text-align: left; display: block; font-weight: 600; }
.qr-share-box { width: min(100%, 320px); padding: 1rem; background: #fff; border: 1px solid #e6ece7; border-radius: 1rem; box-shadow: 0 .5rem 2rem rgba(31,81,46,.1); }
.qr-share-box svg { display: block; width: 100%; height: auto; }
.whatsapp-float { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 1050; display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.1rem; border-radius: 999px; background: #25d366; color: #fff; font-weight: 700; text-decoration: none; box-shadow: 0 .5rem 1.25rem rgba(0,0,0,.2); transition: transform .16s ease, background-color .16s ease; }
.whatsapp-float span:first-child { display: grid; width: 1.5rem; height: 1.5rem; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-size: 1rem; line-height: 1; }
.whatsapp-float:hover { background: #1ebe5d; color: #fff; transform: translateY(-3px); }
@media (max-width: 575.98px) { .whatsapp-float { right: .8rem; bottom: .8rem; padding: .75rem; } .whatsapp-float span:last-child { display: none; } }
