 :root {
  --bg: #fbf7f0;
  --surface: #ffffff;
  --surface-alt: #faf1e2;
  --text: #1f2328;
  --muted: #5f6b6d;
  --border: rgba(31, 35, 40, 0.12);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.12);

  --wheat: #d8a452;
  --crust: #b06b2b;
  --leaf: #2b6e5a;

  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;

  --container: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Arial, sans-serif;
  color: var(--text);
  background: #f5f1e8;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
}

/* Header / Nav */

.site-header {
  background: #fdfbf7;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(176, 107, 43, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
}

.brand-title {
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
  display: block;
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  padding: 11px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.nav-toggle-box {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-box span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 140ms ease, opacity 140ms ease;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  padding: 6px 4px;
  position: relative;
  transition: color 140ms ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a.nav-active {
  color: var(--crust);
  font-weight: 600;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--crust);
  transition: width 140ms ease;
}

.nav a:hover::after {
  width: 100%;
}

/* Hero */

.hero {
  padding: 56px 0 32px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 34px;
  align-items: center;
}

h1,
h2,
h3 {
  font-family: Fraunces, ui-serif, Georgia, serif;
  margin: 0;
}

h1 {
  font-size: clamp(32px, 4.1vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.lede {
  color: var(--muted);
  font-size: 16px;
  margin: 14px 0 18px;
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  color: #151616;
  background: #d8a452;
  box-shadow: var(--shadow-soft);
  border-color: #c48b32;
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(176, 107, 43, 0.3);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.85);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 7px;
  border: 1px solid var(--border);
  background: transparent;
}

.badge-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.badge-value {
  font-weight: 600;
  font-size: 13px;
}

.hero-media {
  position: relative;
  background: #f6eee0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 340px;
  box-shadow: var(--shadow-soft);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.photo-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 22px;
}

.photo-frame {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  border: 1px solid rgba(31, 35, 40, 0.18);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.36);
}

.photo-title {
  font-weight: 800;
  margin-bottom: 6px;
}

.photo-subtitle {
  color: var(--muted);
  font-size: 13px;
}

.hero-media:not(.is-placeholder) .photo-placeholder {
  display: none;
}

/* Sections */

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: -0.4px;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
}

/* Pricing cards */

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.card {
  background: #fdfbf7;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.card.featured {
  border-color: var(--crust);
  background: #fef9f0;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.card-top h3 {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
}

.price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.price-amount {
  font-size: 24px;
  font-weight: 800;
  color: var(--crust);
  line-height: 1;
}

.price-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.card-body {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.custom-quote-card {
  width: 100%;
  max-width: 520px;
  margin: 20px auto 0;
}

.card-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.loaf-stepper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.loaf-stepper-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(31, 29, 26, 0.2);
  border-radius: 7px;
  background: #fffdfa;
  color: #2f2416;
  font: inherit;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.loaf-stepper-btn:hover:not(:disabled) {
  background: #fff1de;
  border-color: rgba(184, 115, 32, 0.38);
}

.loaf-stepper-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.loaf-stepper-count {
  min-width: 26px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #342719;
}

/* Simple gallery */

.home-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f6eee0;
  position: relative;
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-gallery-item .photo-placeholder {
  padding: 18px;
}

.home-gallery-item:not(.is-placeholder) .photo-placeholder {
  display: none;
}

/* Testimonials */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.testimonial {
  background:
    radial-gradient(900px 220px at 20% 0%, rgba(216, 164, 82, 0.16), transparent 60%),
    #ffffff;
  border: 1px solid rgba(31, 35, 40, 0.10);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
  position: relative;
  overflow: hidden;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.testimonial::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wheat), var(--crust));
  opacity: 0.85;
}

.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.14);
  border-color: rgba(176, 107, 43, 0.22);
}

.testimonial-quote {
  margin: 0;
  color: var(--text);
  font-weight: 550;
  line-height: 1.6;
  font-style: normal;
}

.testimonial-quote::before {
  content: "“";
  color: var(--crust);
  font-weight: 900;
  font-size: 22px;
  line-height: 0;
  margin-right: 2px;
}

.testimonial-quote::after {
  content: "”";
  color: var(--crust);
  font-weight: 900;
  font-size: 22px;
  line-height: 0;
  margin-left: 2px;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(31, 35, 40, 0.10);
  color: var(--muted);
  font-size: 13px;
}

.testimonial-name {
  font-weight: 700;
  color: var(--text);
}

.testimonial-detail {
  white-space: nowrap;
}

/* Order form */

.order-form {
  background: #fdfbf7;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.form-group .required {
  color: #d32f2f;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: #ffffff;
  color: var(--text);
  transition: border-color 140ms ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231f2328' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--crust);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.order-items {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.order-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px;
}

.order-item-col {
  display: flex;
  align-items: center;
}

.order-item-bread-col,
.order-item-qty-col {
  width: 100%;
}

.item-bread-label {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 650;
  color: #1f1d1a;
}

.order-item-row .item-bread,
.order-item-row .item-qty {
  width: 100%;
  margin: 0;
}

.order-item-row .item-qty {
  text-align: center;
}

.order-item-action-col {
  justify-content: flex-end;
}

.order-item-row .item-remove {
  white-space: nowrap;
  min-width: 88px;
}

.order-items-empty {
  margin: 0 0 8px 0;
}

.order-summary {
  background: #f8ecda;
  border: 1px solid rgba(216, 164, 82, 0.5);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}

.order-summary h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

.summary-total {
  font-weight: 800;
  font-size: 20px;
  color: var(--crust);
}

.order-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-weight: 500;
}

.order-message.success {
  background: rgba(43, 110, 90, 0.1);
  border: 1px solid rgba(43, 110, 90, 0.3);
  color: var(--leaf);
}

.order-message.error {
  background: rgba(211, 47, 47, 0.1);
  border: 1px solid rgba(211, 47, 47, 0.3);
  color: #d32f2f;
}

.form-actions {
  margin-top: 20px;
}

.venmo-info {
  background: #fdfbf7;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.venmo-info h3 {
  margin-top: 0;
}

.order-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* About page helpers */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
}

.about-photo {
  position: relative;
  min-height: 100%;
}

.about-photo-img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-photo.is-placeholder .photo-placeholder {
  display: grid;
  min-height: 320px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #f6eee0;
}

.about-photo:not(.is-placeholder) .photo-placeholder {
  display: none;
}

/* Footer (Cajun-style columns) */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
  background: #f5ecdd;
}

.footer-inner {
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 24px;
}

.footer-brand {
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.2px;
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-section-title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text);
}

.footer-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 6px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid rgba(31, 35, 40, 0.12);
  padding-top: 16px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-note {
  margin-top: 4px;
  font-size: 12px;
}

/* Admin (basic) */

.admin-login-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f1e8;
  padding: 20px;
}

.admin-login-card {
  background: #fdfbf7;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-soft);
}

.admin-dashboard {
  min-height: 100vh;
  background: #f5f1e8;
}

.admin-header {
  background: #fdfbf7;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.admin-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-main {
  padding: 32px 0;
}

.admin-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.admin-tabs {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 12px;
}

/* 2026-03-23 customer content update */
.hero-subtext {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: #64594b;
  max-width: 60ch;
}

.instagram-hero-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #5c2f57;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.2;
}

.instagram-hero-link:hover {
  text-decoration: underline;
}

.instagram-hero-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(92, 47, 87, 0.25);
  background: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.instagram-hero-icon svg {
  width: 21px;
  height: 21px;
}

.pickup-date-note {
  margin-top: 6px;
}

.testimonials {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feedback-mode-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.feedback-mode-switch .btn.is-active {
  background: #de9838;
  border-color: #b87320;
  color: #241608;
}

@media (max-width: 920px) {
  .hero-subtext {
    font-size: 13px;
  }

  .instagram-hero-link {
    font-size: 18px;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .feedback-mode-switch .btn {
    width: 100%;
  }
}

.admin-tab-btn {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.admin-tab-btn.active {
  color: var(--crust);
  border-color: rgba(176, 107, 43, 0.45);
  background: rgba(216, 164, 82, 0.12);
}

.admin-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 7px;
  font-weight: 600;
  cursor: pointer;
}

.filter-btn.active {
  color: var(--crust);
  border-color: rgba(176, 107, 43, 0.45);
  background: rgba(216, 164, 82, 0.12);
}

.admin-message {
  margin: 14px 0 18px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fdfbf7;
}

.admin-message.success {
  border-color: rgba(43, 110, 90, 0.3);
  background: rgba(43, 110, 90, 0.08);
  color: var(--leaf);
}

.admin-message.error {
  border-color: rgba(211, 47, 47, 0.3);
  background: rgba(211, 47, 47, 0.08);
  color: #d32f2f;
}

.admin-analytics {
  margin: 18px 0 22px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fdfbf7;
}

.admin-analytics-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.admin-analytics-title {
  margin: 0;
  font-size: 18px;
}

.admin-analytics-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-analytics-card {
  border: 1px solid rgba(31, 35, 40, 0.10);
  background: #fbf7f0;
  border-radius: var(--radius-md);
  padding: 14px;
}

.admin-analytics-card-wide {
  grid-column: 1 / -1;
}

.admin-analytics-label {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.admin-analytics-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.admin-analytics-sub {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.admin-orders-table-wrapper {
  overflow: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fdfbf7;
}

.admin-orders-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 880px;
}

.admin-orders-table th,
.admin-orders-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(31, 35, 40, 0.08);
  text-align: left;
  vertical-align: top;
}

.admin-orders-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: #fbf7f0;
}

.admin-orders-table td.loading,
.admin-orders-table td.empty,
.admin-orders-table td.error {
  color: var(--muted);
  text-align: center;
  padding: 22px 14px;
}

.admin-orders-table td.error {
  color: #d32f2f;
}

.order-row.status-pending {
  background: rgba(216, 164, 82, 0.06);
}

.order-row.status-in_progress {
  background: rgba(43, 110, 90, 0.05);
}

.order-row.status-complete {
  background: rgba(31, 35, 40, 0.03);
}

.order-row.status-delivered {
  background: rgba(31, 35, 40, 0.03);
}

/* Stronger order separation in admin */
.admin-orders-table tbody .order-row.row-tone-a td {
  background: #fffdf9;
}

.admin-orders-table tbody .order-row.row-tone-b td {
  background: #f7f1e6;
}

.admin-orders-table tbody .order-row td {
  border-bottom: 1px solid rgba(21, 19, 17, 0.16);
}

.admin-orders-table tbody .order-row:hover td {
  background: #f2eadb;
}

.admin-orders-table tbody .order-details-row.row-tone-a td {
  background: #fff8ec;
}

.admin-orders-table tbody .order-details-row.row-tone-b td {
  background: #efe5d5;
}

.order-actions-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  white-space: normal;
}

.btn-small {
  padding: 8px 10px;
  font-size: 13px;
  border-radius: 7px;
}

.btn-small + .btn-small {
  margin-left: 0;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--border);
  background: #fff;
  line-height: 1;
  white-space: nowrap;
  gap: 6px;
}

.status-badge.status-pending {
  color: #6b4a1f;
  background: rgba(216, 164, 82, 0.12);
  border-color: rgba(216, 164, 82, 0.45);
}

.status-badge.status-in_progress {
  color: var(--leaf);
  background: rgba(43, 110, 90, 0.10);
  border-color: rgba(43, 110, 90, 0.35);
}

.status-badge.status-complete {
  color: #1f2328;
  background: rgba(31, 35, 40, 0.06);
  border-color: rgba(31, 35, 40, 0.14);
}

.status-badge.status-delivered {
  color: #1f2328;
  background: rgba(31, 35, 40, 0.06);
  border-color: rgba(31, 35, 40, 0.14);
}

.status-badge.status-accepted {
  color: #1f4f42;
  background: rgba(43, 110, 90, 0.12);
  border-color: rgba(43, 110, 90, 0.35);
}

.status-badge.status-not_accepted {
  color: #7a1e1e;
  background: rgba(211, 47, 47, 0.12);
  border-color: rgba(211, 47, 47, 0.35);
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.quote-actions .btn.is-active {
  color: var(--crust);
  border-color: rgba(176, 107, 43, 0.45);
  background: rgba(216, 164, 82, 0.12);
}

/* Responsive tweaks */

@media (max-width: 920px) {
  .brand-subtitle {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 20;
    min-width: 200px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(253, 251, 247, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .site-header.nav-open .nav {
    display: flex;
  }

  .site-header.nav-open .nav-toggle-box span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle-box span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle-box span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav a {
    padding: 10px 8px;
  }

  .nav a::after {
    bottom: 2px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero {
    padding: 40px 0 24px;
  }

  .hero-media {
    min-height: 260px;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-photo-img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .order-item-row {
    grid-template-columns: minmax(0, 1fr) 110px;
  }

  .order-item-action-col {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .admin-analytics-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .header-inner {
    gap: 12px;
  }

  .brand-title {
    font-size: 16px;
  }

  .nav {
    left: 0;
    right: 0;
    min-width: 0;
  }

  .home-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .home-gallery {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn {
    transition: none;
  }
}


/* 2026-03 polish pass */
:root {
  --bg: #f3efe7;
  --surface: #fffdfa;
  --surface-alt: #f7f0e4;
  --text: #1f1d1a;
  --muted: #5f5a52;
  --border: rgba(31, 29, 26, 0.12);
  --shadow-soft: 0 14px 32px rgba(28, 26, 23, 0.1);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

body {
  font-family: Manrope, "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 380px at 80% -90px, rgba(176, 107, 43, 0.09), transparent 60%),
    radial-gradient(920px 320px at -10% -60px, rgba(216, 164, 82, 0.11), transparent 58%),
    var(--bg);
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
  background: rgba(253, 251, 247, 0.92);
}

.header-inner {
  padding: 13px 0;
}

.brand-title {
  font-size: 19px;
}

.brand-subtitle {
  letter-spacing: 0.01em;
}

.nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero {
  padding: 66px 0 38px;
}

.hero-copy h1 {
  letter-spacing: -0.02em;
}

.lede {
  font-size: 17px;
  line-height: 1.72;
  max-width: 54ch;
}

.hero-actions {
  margin: 22px 0 20px;
}

.btn {
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-primary {
  color: #2f2315;
  background: linear-gradient(180deg, #e3b464, #d29a42);
  border-color: #ba7a23;
  box-shadow: 0 10px 22px rgba(176, 107, 43, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 14px 26px rgba(176, 107, 43, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(31, 29, 26, 0.2);
}

.badge {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(31, 29, 26, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
}

.hero-media {
  border-radius: 20px;
  min-height: 360px;
  background: linear-gradient(145deg, #f8efe0, #f4e5cd);
}

.section {
  padding: 62px 0;
}

.section-head {
  gap: 10px;
  margin-bottom: 26px;
}

h2 {
  letter-spacing: -0.02em;
}

.muted {
  color: #645f57;
}

.cards {
  gap: 16px;
}

.card {
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(31, 29, 26, 0.1);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(28, 26, 23, 0.04);
}

.card-top h3 {
  font-size: 19px;
}

.price-amount {
  color: #9a5c24;
}

.home-gallery {
  gap: 14px;
}

.home-gallery-item {
  border-radius: 14px;
  border-color: rgba(31, 29, 26, 0.14);
}

.testimonials {
  gap: 14px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(31, 29, 26, 0.14);
}

.order-form {
  background: rgba(255, 253, 249, 0.95);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(28, 26, 23, 0.06);
}

.form-group input,
.form-group select,
.form-group textarea {
  min-height: 44px;
  border-color: rgba(31, 29, 26, 0.16);
  border-radius: 10px;
}

.form-group textarea {
  min-height: 96px;
}

.order-item-row {
  border-radius: 10px;
}

.order-summary {
  background: linear-gradient(180deg, rgba(246, 230, 200, 0.75), rgba(245, 224, 187, 0.62));
  border-color: rgba(176, 107, 43, 0.34);
}

.venmo-info {
  background: rgba(255, 253, 249, 0.95);
}

.site-footer {
  background: linear-gradient(180deg, #f4e8d4, #f1e4ce);
}

.footer-grid {
  gap: 26px;
}

.footer-section-title {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-note {
  opacity: 0.85;
}

.mobile-quick-actions {
  display: none;
}

@media (max-width: 920px) {
  body {
    padding-bottom: 86px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-media {
    min-height: 260px;
  }

  .home-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .mobile-quick-actions {
    position: fixed;
    z-index: 70;
    left: 12px;
    right: 12px;
    bottom: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(31, 29, 26, 0.16);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
    background: rgba(255, 253, 249, 0.96);
  }

  .mobile-quick-actions .btn {
    padding: 11px 10px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 24px);
  }

  .hero-copy h1 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .home-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 2026-03 readability refinement */
:root {
  --text: #171613;
  --muted: #4c483f;
  --border: rgba(23, 22, 19, 0.16);
}

body {
  color: var(--text);
  line-height: 1.65;
}

.brand-subtitle {
  color: #5a554c;
  font-weight: 500;
}

.nav a {
  color: #4b4740;
}

.nav a.nav-active {
  color: #965417;
}

h1 {
  line-height: 1.08;
}

.lede {
  color: #4b463e;
  max-width: 58ch;
}

.section-head .muted {
  font-size: 16px;
}

.card-body {
  color: #4f4a42;
  line-height: 1.7;
}

.testimonial-quote {
  color: #201d18;
}

.testimonial-meta {
  color: #575148;
}

.order-form {
  border-color: rgba(23, 22, 19, 0.12);
}

.form-group label {
  font-size: 13px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  color: #1e1c18;
  background: #fffefa;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #746d61;
}

.site-footer {
  border-top-color: rgba(23, 22, 19, 0.14);
}

.footer-text,
.footer-links a,
.footer-links li {
  color: #514c44;
}

@media (max-width: 920px) {
  .section {
    padding: 52px 0;
  }

  .lede {
    font-size: 16px;
  }

  .order-form {
    padding: 18px;
  }
}

/* 2026-03 typography + admin consistency pass */
body {
  font-family: "IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16.5px;
  line-height: 1.72;
}

h1,
h2,
h3,
.brand-title,
.footer-brand,
.admin-login-card h1,
.admin-header h1 {
  font-family: "Merriweather", Georgia, serif;
}

h1 {
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: 1.06;
}

h2 {
  font-size: clamp(31px, 3vw, 42px);
  line-height: 1.15;
}

.brand-title {
  font-size: 20px;
  letter-spacing: 0;
}

.price-amount,
.summary-total,
.admin-analytics-value,
.admin-orders-table td:nth-child(6) {
  font-family: "IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.price-amount {
  font-size: 26px;
  font-weight: 700;
}

.btn {
  border-radius: 6px;
  min-height: 44px;
  padding: 10px 18px;
  border-width: 1px;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  font-weight: 600;
  transition:
    transform 120ms ease,
    box-shadow 120ms ease,
    background-color 140ms ease,
    border-color 140ms ease,
    color 140ms ease;
}

.btn-primary {
  color: #241608;
  background: #de9838;
  border-color: #b87320;
  box-shadow:
    0 2px 4px rgba(157, 97, 36, 0.23),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.btn-primary:hover {
  background: #e7a850;
  border-color: #c48230;
  box-shadow: 0 4px 8px rgba(176, 107, 43, 0.25);
  transform: translateY(-1px);
}

.btn-ghost {
  color: #382f24;
  background: #fffdfa;
  border-color: #d6c7af;
  box-shadow: 0 1px 3px rgba(40, 29, 16, 0.08);
}

.btn-ghost:hover {
  background: #fff6ea;
  border-color: #c8b08b;
}

.btn-small {
  min-height: 34px;
  padding: 6px 11px;
  border-radius: 5px;
  font-size: 12.5px;
}

.section-head {
  gap: 8px;
}

.section-head .muted {
  max-width: 68ch;
  font-size: 17px;
}

.form-group label {
  font-weight: 650;
  color: #2a251f;
  font-size: 14px;
}

.order-summary {
  border-width: 1.5px;
}

/* Admin organization + control consistency */
.admin-login-card {
  max-width: 440px;
}

.admin-header-inner {
  gap: 12px;
}

.admin-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-user-info #adminUsername {
  color: #4e463c;
  font-size: 14px;
  font-weight: 600;
}

.admin-tabs {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 14px;
}

.admin-tab-btn,
.filter-btn {
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.admin-tab-btn {
  background: #fffefa;
  border-color: rgba(31, 29, 26, 0.18);
}

.admin-tab-btn.active,
.filter-btn.active {
  color: #6e4518;
  border-color: rgba(184, 115, 32, 0.45);
  background: rgba(222, 152, 56, 0.13);
}

.admin-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 14px;
  align-items: center;
  margin-bottom: 14px;
}

.admin-filters {
  gap: 8px;
  align-items: center;
}

.admin-controls-right {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-sort-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-sort-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5f564a;
}

.admin-sort-select {
  min-height: 36px;
  padding: 7px 34px 7px 10px;
  border-radius: 6px;
  border: 1px solid rgba(31, 29, 26, 0.22);
  background: #fffefa;
  color: #2a251f;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232a251f' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.admin-sort-select:focus {
  outline: none;
  border-color: rgba(184, 115, 32, 0.52);
  box-shadow: 0 0 0 2px rgba(222, 152, 56, 0.18);
}

#refreshBtn,
#quotesRefreshBtn,
#analyticsRefreshBtn {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 13px;
}

.admin-analytics {
  margin: 14px 0 18px;
  padding: 16px;
  border-radius: 12px;
}

.admin-analytics-head {
  margin-bottom: 10px;
}

.admin-analytics-title {
  font-size: 20px;
}

.admin-analytics-cards {
  gap: 10px;
}

.admin-analytics-label {
  font-size: 12px;
  color: #6b6357;
}

.admin-analytics-sub,
.admin-orders-table td {
  color: #423d35;
  font-size: 13px;
}

.admin-orders-table-wrapper {
  border-radius: 12px;
}

.admin-orders-table th,
.admin-orders-table td {
  padding: 11px 12px;
}

.admin-orders-table th {
  font-size: 11.5px;
  letter-spacing: 0.09em;
  color: #62594d;
}

.admin-orders-table td {
  font-size: 13px;
}

.order-actions-cell {
  position: relative;
  white-space: nowrap;
  text-align: right;
}

.order-action-menu-wrap {
  position: relative;
  display: inline-flex;
  justify-content: flex-end;
}

.order-menu-trigger {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(31, 29, 26, 0.2);
  border-radius: 6px;
  background: #fffefa;
  color: #30281e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(40, 29, 16, 0.08);
}

.order-menu-trigger:hover {
  background: #fff6ea;
  border-color: #c8b08b;
}

.order-menu-trigger:focus {
  outline: none;
  border-color: rgba(184, 115, 32, 0.52);
  box-shadow: 0 0 0 2px rgba(222, 152, 56, 0.18);
}

.order-action-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 50;
  min-width: 198px;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid rgba(31, 29, 26, 0.14);
  background: #fffdf9;
  box-shadow: 0 12px 26px rgba(24, 18, 10, 0.18);
  display: grid;
  gap: 4px;
}

.order-action-menu[hidden] {
  display: none;
}

.order-menu-item {
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  color: #2f2920;
  text-align: left;
  border-radius: 6px;
  padding: 8px 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.order-menu-item:hover {
  background: #fff1de;
  border-color: rgba(184, 115, 32, 0.22);
}

.order-menu-item.is-danger {
  color: #8a231b;
}

.order-menu-item.is-danger:hover {
  background: rgba(211, 47, 47, 0.08);
  border-color: rgba(211, 47, 47, 0.24);
}

.admin-customer-name {
  font-weight: 700;
  color: #211d17;
}

.order-details-row {
  background: #fff8ec;
}

.order-details-row[hidden] {
  display: none;
}

.order-details-row td {
  padding: 0;
  border-bottom-color: rgba(31, 29, 26, 0.08);
}

.order-details-panel {
  padding: 14px 16px 16px;
}

.order-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.order-detail-block {
  border: 1px solid rgba(31, 29, 26, 0.12);
  border-radius: 8px;
  background: #fffdf8;
  padding: 10px 12px;
}

.order-detail-block-wide {
  grid-column: 1 / -1;
}

.order-detail-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #645b4e;
  margin-bottom: 4px;
}

.order-detail-value {
  color: #2f2920;
  font-size: 13px;
  line-height: 1.55;
}

.order-detail-value a {
  color: #7f4a12;
  text-decoration: none;
}

.order-detail-value a:hover {
  text-decoration: underline;
}

.quote-actions {
  gap: 4px;
}

.quote-actions .btn-small {
  min-width: 74px;
}

@media (max-width: 920px) {
  h1 {
    font-size: clamp(36px, 9.5vw, 52px);
  }

  h2 {
    font-size: clamp(26px, 6.2vw, 34px);
  }

  .admin-controls {
    grid-template-columns: 1fr;
  }

  .admin-filters {
    justify-content: flex-start;
  }

  .admin-controls-right {
    justify-content: flex-start;
  }

  .order-details-grid {
    grid-template-columns: 1fr;
  }
}

/* 2026-03 readability scale pass */
body {
  font-size: 18px;
  line-height: 1.78;
}

.nav a,
.footer-text,
.footer-links a,
.card-body,
.muted {
  font-size: 16px;
}

.brand-subtitle {
  font-size: 13.5px;
}

h1 {
  font-size: clamp(46px, 4.7vw, 66px);
}

h2 {
  font-size: clamp(34px, 3.4vw, 46px);
}

h3 {
  font-size: clamp(23px, 2.1vw, 29px);
}

.lede {
  font-size: 18.5px;
  line-height: 1.78;
}

.btn {
  min-height: 48px;
  padding: 12px 20px;
  font-size: 16px;
}

.btn-small {
  min-height: 40px;
  padding: 8px 12px;
  font-size: 14px;
}

.badge-title {
  font-size: 12px;
}

.badge-value {
  font-size: 14px;
}

.section-head .muted {
  font-size: 18px;
}

.form-group label {
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  min-height: 48px;
  font-size: 16px;
}

.summary-line {
  font-size: 17px;
}

.summary-total,
.price-amount {
  font-size: 28px;
}

.order-message,
.admin-message {
  font-size: 15px;
}

.admin-tab-btn,
.filter-btn,
.admin-sort-select,
#refreshBtn,
#quotesRefreshBtn,
#analyticsRefreshBtn {
  min-height: 40px;
  font-size: 14px;
}

.admin-sort-group label,
.admin-analytics-label,
.admin-orders-table th,
.order-detail-label {
  font-size: 12.5px;
}

.admin-orders-table td,
.admin-analytics-sub,
.order-menu-item,
.order-detail-value {
  font-size: 14.5px;
}

.admin-analytics-value {
  font-size: 26px;
}

.order-menu-trigger {
  width: 38px;
  height: 38px;
  font-size: 20px;
}

@media (max-width: 920px) {
  body {
    font-size: 17px;
  }

  .lede {
    font-size: 17.5px;
  }

  h1 {
    font-size: clamp(38px, 9.8vw, 56px);
  }

  h2 {
    font-size: clamp(28px, 6.6vw, 38px);
  }

  .btn {
    min-height: 46px;
    font-size: 15px;
  }
}

/* 2026-03 order card emphasis: names over prices */
.order-page .card-top h3 {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1e1a15;
}

.order-page .price-amount {
  font-size: 22px;
  font-weight: 600;
  color: #9a5c24;
  letter-spacing: 0;
}

.order-page .price-note {
  font-size: 13px;
  font-weight: 500;
  color: #756b5f;
}

/* 2026-03 admin readability + open loaf summary */
.admin-dashboard {
  font-size: 18px;
  line-height: 1.72;
}

.admin-login-card {
  max-width: 500px;
}

.admin-login-card h1 {
  font-size: 42px;
}

.admin-login-card .form-group label,
.admin-login-card .form-group input {
  font-size: 16px;
}

.admin-login-card .btn {
  min-height: 48px;
  font-size: 16px;
}

.admin-login-card form button[type="submit"] {
  margin-top: 12px;
}

.admin-header h1 {
  font-size: 36px;
}

.admin-user-info #adminUsername {
  font-size: 15px;
}

.admin-tab-btn,
.filter-btn,
.admin-sort-select,
#refreshBtn,
#quotesRefreshBtn,
#analyticsRefreshBtn {
  min-height: 44px;
  font-size: 15px;
  padding: 9px 14px;
}

.admin-sort-group label {
  font-size: 13px;
}

.admin-open-loaf-summary {
  margin: 12px 0 16px;
  padding: 16px;
  border: 1px solid rgba(31, 29, 26, 0.13);
  border-radius: 12px;
  background: #fffdf9;
}

.admin-open-loaf-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 12px;
  margin-bottom: 10px;
}

.admin-open-loaf-title {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
}

.admin-open-loaf-subtitle {
  margin: 0;
  color: #5f564a;
  font-size: 14px;
}

.admin-open-loaf-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 10px;
}

.admin-open-loaf-card {
  border: 1px solid rgba(31, 29, 26, 0.12);
  border-radius: 10px;
  background: #fff8ed;
  padding: 11px 12px;
}

.admin-open-loaf-card-total {
  background: #f4e2c5;
  border-color: rgba(176, 107, 43, 0.35);
}

.admin-open-loaf-card-wide {
  grid-column: 1 / -1;
}

.admin-open-loaf-value {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: #2a2218;
}

.admin-open-loaf-label {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #554b3e;
}

.admin-analytics-title {
  font-size: 24px;
}

.admin-analytics-label {
  font-size: 13px;
}

.admin-analytics-value {
  font-size: 30px;
}

.admin-analytics-sub {
  font-size: 15px;
}

.admin-orders-table th {
  font-size: 13px;
}

.admin-orders-table td {
  font-size: 15.5px;
  line-height: 1.62;
}

.status-badge {
  font-size: 13px;
  padding: 7px 11px;
}

.order-menu-item {
  font-size: 14px;
}

.order-detail-label {
  font-size: 12.5px;
}

.order-detail-value {
  font-size: 15px;
}

@media (max-width: 920px) {
  .admin-dashboard {
    font-size: 17px;
  }

  .admin-header h1 {
    font-size: 30px;
  }

  .admin-tab-btn,
  .filter-btn,
  .admin-sort-select,
  #refreshBtn,
  #quotesRefreshBtn,
  #analyticsRefreshBtn {
    min-height: 42px;
    font-size: 14px;
  }

  .admin-open-loaf-title {
    font-size: 22px;
  }

  .admin-open-loaf-value {
    font-size: 26px;
  }
}

/* 2026-03 order stepper + selected items polish */
.order-page .cards .card {
  display: flex;
  flex-direction: column;
}

.order-page .card-body {
  font-size: 15px;
  line-height: 1.65;
}

.order-page .card-actions {
  margin-top: auto;
  padding-top: 14px;
}

.order-page .loaf-stepper {
  gap: 8px;
  border: 1px solid rgba(31, 29, 26, 0.14);
  border-radius: 10px;
  padding: 5px;
  background: rgba(255, 248, 236, 0.8);
  box-shadow: 0 4px 10px rgba(31, 29, 26, 0.08);
}

.order-page .loaf-stepper-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 24px;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.order-page .loaf-stepper-plus {
  background: #e7a850;
  border-color: #b87320;
  color: #2d1f0d;
  box-shadow: 0 2px 6px rgba(176, 107, 43, 0.2);
}

.order-page .loaf-stepper-plus:hover:not(:disabled) {
  background: #efba6f;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(176, 107, 43, 0.28);
}

.order-page .loaf-stepper-minus {
  background: #fffdf9;
  border-color: rgba(31, 29, 26, 0.22);
  color: #453727;
}

.order-page .loaf-stepper-minus:hover:not(:disabled) {
  background: #fff1de;
}

.order-page .loaf-stepper-count {
  min-width: 34px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(31, 29, 26, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.order-page .order-items {
  gap: 12px;
}

.order-page .order-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 84px auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(31, 29, 26, 0.24);
  border-radius: 10px;
  background: #ffffff;
}

.order-page .item-bread-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.order-page .item-bread-col {
  min-width: 0;
}

.order-page .order-item-qty-col {
  align-items: center;
  justify-content: center;
}

.order-page .order-item-row .item-qty {
  width: 76px;
  min-height: 38px;
  border-radius: 7px;
  border: 1px solid rgba(31, 29, 26, 0.32);
  font-size: 17px;
  font-weight: 700;
  background: #fff;
  color: #1c1813;
  padding: 6px 8px;
}

.order-page .order-item-row .item-remove {
  min-width: 82px;
  min-height: 38px;
  padding: 7px 10px;
  font-size: 15px;
  font-weight: 700;
}

.order-page .order-items-empty {
  padding: 10px 12px;
  border: 1px dashed rgba(31, 29, 26, 0.35);
  border-radius: 8px;
  background: #fffdf8;
  color: #4f473d;
}

.order-page .form-group-full > .muted.small {
  color: #4f473d;
  font-weight: 600;
}

.order-page #orderForm .form-group-full > label {
  color: #231f19;
}

/* 2026-03 stronger contrast for loaf selection block */
.order-page .order-loaf-selection-group {
  border: 1px solid rgba(60, 48, 34, 0.2);
  border-radius: 12px;
  background: #fbf7ef;
  padding: 12px;
}

.order-page .order-loaf-selection-group > label {
  color: #1f1a14 !important;
  font-size: 17px;
  font-weight: 700;
}

.order-page .order-loaf-selection-group > .muted.small {
  color: #3f372d !important;
  font-size: 15px;
  font-weight: 500;
}

.order-page .order-loaf-selection-group .order-item-row {
  border: 1px solid rgba(58, 45, 29, 0.26);
  background: #fff;
  box-shadow: 0 1px 3px rgba(34, 26, 15, 0.06);
}

.order-page .order-loaf-selection-group .item-bread-label {
  color: #1b1712;
  font-size: 17px;
}

.order-page .order-loaf-selection-group .item-qty {
  border: 1px solid rgba(58, 45, 29, 0.32);
  background: #fff;
  color: #191510;
}

.order-page .order-loaf-selection-group .item-remove {
  border-color: rgba(88, 67, 41, 0.46);
  background: #fffdf8;
  color: #2a2218;
}

.order-page .order-loaf-selection-group .item-remove:hover {
  background: #fdf1dd;
}

.order-page .order-loaf-selection-group .order-items-empty {
  border: 1px dashed rgba(58, 45, 29, 0.28);
  background: #fff;
  color: #463d31;
}

@media (max-width: 920px) {
  .order-page .loaf-stepper-btn {
    width: 38px;
    height: 38px;
  }

  .order-page .loaf-stepper-count {
    height: 38px;
    min-width: 32px;
  }

  .order-page .order-item-row {
    grid-template-columns: minmax(0, 1fr) 74px auto;
  }

  .order-page .order-item-row .item-qty {
    width: 68px;
  }
}

/* 2026-03 holistic readability + UX polish */
body {
  background:
    radial-gradient(1000px 320px at 85% -120px, rgba(176, 107, 43, 0.08), transparent 62%),
    radial-gradient(980px 280px at -10% -120px, rgba(216, 164, 82, 0.09), transparent 60%),
    #f2ede4;
  color: #151311;
}

.site-header {
  border-bottom: 1px solid rgba(21, 19, 17, 0.16);
  background: rgba(255, 252, 247, 0.95);
}

.brand-subtitle,
.muted,
.lede,
.footer-text,
.footer-links a,
.price-note {
  color: #4a4338;
}

.nav a {
  color: #3f392f;
  font-size: 15px;
}

.nav a.nav-active {
  color: #8f4f17;
}

.section {
  padding: 66px 0;
}

.section-head {
  margin-bottom: 28px;
}

.section-head .muted {
  max-width: 66ch;
}

.cards {
  gap: 18px;
}

.card {
  border: 1px solid rgba(21, 19, 17, 0.14);
  box-shadow: 0 8px 20px rgba(15, 12, 9, 0.07);
}

.card-body {
  color: #4d463b;
}

.btn {
  min-height: 48px;
  font-size: 15.5px;
  font-weight: 700;
}

.hero-actions .btn,
.order-actions .btn,
.form-actions .btn {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}

.btn-ghost {
  color: #2f281f;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(21, 19, 17, 0.24);
}

.btn-ghost:hover {
  background: #fff3e2;
}

.order-form {
  border: 1px solid rgba(21, 19, 17, 0.14);
  box-shadow: 0 10px 24px rgba(18, 14, 10, 0.07);
}

.form-group label {
  color: #26211b;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid rgba(21, 19, 17, 0.26);
  color: #1d1915;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #8e5019;
  box-shadow: 0 0 0 2px rgba(201, 135, 52, 0.2);
}

.order-summary {
  border-color: rgba(176, 107, 43, 0.44);
  background: linear-gradient(180deg, rgba(248, 229, 198, 0.88), rgba(245, 221, 181, 0.75));
}

.summary-line {
  font-size: 16.5px;
}

.summary-total {
  color: #8f4f17;
}

.home-gallery-item,
.hero-media,
.about-photo-img {
  border-color: rgba(21, 19, 17, 0.16);
}

.site-footer {
  border-top-color: rgba(21, 19, 17, 0.17);
}

/* About page consistency */
.about-copy-title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: clamp(30px, 2.6vw, 38px);
}

.about-copy-text {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.76;
  color: #3f392f;
}

.about-copy-text:last-child {
  margin-bottom: 0;
}

.about-contact-actions {
  text-align: center;
  margin-top: 32px;
}

.about-contact-line {
  margin-top: 14px;
  font-size: 16px;
}

.about-contact-link {
  color: #8f4f17;
  text-decoration: none;
  font-weight: 700;
}

.about-contact-link:hover {
  text-decoration: underline;
}

/* Order stepper clarity */
.order-page .loaf-stepper {
  border-color: rgba(21, 19, 17, 0.2);
  background: #fff6e9;
}

.order-page .loaf-stepper-count {
  border-color: rgba(21, 19, 17, 0.22);
}

/* Admin readability and hierarchy */
.admin-main {
  padding: 34px 0 42px;
}

.admin-controls {
  margin-bottom: 16px;
}

.admin-tab-btn,
.filter-btn,
.admin-sort-select,
#refreshBtn,
#quotesRefreshBtn,
#analyticsRefreshBtn {
  min-height: 42px;
  font-size: 14.5px;
}

.admin-open-loaf-summary,
.admin-analytics,
.admin-orders-table-wrapper {
  border-color: rgba(21, 19, 17, 0.18);
  box-shadow: 0 6px 14px rgba(20, 15, 10, 0.06);
}

.admin-open-loaf-label,
.admin-analytics-sub,
.admin-orders-table td {
  color: #332d24;
}

.admin-orders-table th {
  color: #4f463a;
  font-size: 12.5px;
}

.admin-orders-table td {
  font-size: 15px;
}

.order-action-menu {
  border-color: rgba(21, 19, 17, 0.2);
}

.order-menu-item {
  font-size: 14px;
}

@media (max-width: 920px) {
  .section {
    padding: 54px 0;
  }

  .about-copy-text {
    font-size: 16px;
  }

  .admin-open-loaf-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 2026-03 admin header tabs placement */
.admin-header {
  padding: 14px 0 10px;
}

.admin-header-inner {
  margin-bottom: 10px;
}

.admin-header-tabs {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-header-tabs .admin-tab-btn {
  margin-bottom: 0;
}

.admin-main {
  padding-top: 24px;
}

@media (max-width: 920px) {
  .admin-header-inner {
    margin-bottom: 8px;
  }

  .admin-header-tabs {
    width: 100%;
  }
}

/* 2026-03 admin header single-row tabs + logout */
.admin-header-inner {
  justify-content: space-between;
  align-items: center;
  gap: 12px 18px;
  margin-bottom: 0;
}

.admin-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-header-tabs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.admin-header-tabs .admin-tab-btn {
  min-height: 36px;
  padding: 7px 12px;
}

.admin-user-info {
  gap: 8px;
}

.admin-user-info #adminUsername {
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .admin-header-inner {
    align-items: flex-start;
  }

  .admin-header-right {
    width: 100%;
    justify-content: flex-start;
  }
}

/* 2026-03 button color refinement (less mustard) */
.btn-primary {
  color: #24190f;
  background: linear-gradient(180deg, #efbf7d, #e7ab63);
  border-color: #c38845;
  box-shadow:
    0 2px 5px rgba(120, 72, 30, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #f3c98e, #ebb977);
  border-color: #cc9557;
  box-shadow: 0 4px 10px rgba(120, 72, 30, 0.24);
}

.order-page .loaf-stepper-plus {
  background: #ecb472;
  border-color: #c38845;
  color: #2a1b0f;
  box-shadow: 0 2px 6px rgba(120, 72, 30, 0.2);
}

.order-page .loaf-stepper-plus:hover:not(:disabled) {
  background: #f1c289;
  box-shadow: 0 4px 10px rgba(120, 72, 30, 0.24);
}

/* 2026-03 admin header aligned with public site header */
.admin-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
  background: rgba(255, 252, 247, 0.95);
  border-bottom: 1px solid rgba(21, 19, 17, 0.16);
  padding: 10px 0;
}

.admin-header-inner {
  align-items: center;
  justify-content: space-between;
  gap: 14px 18px;
}

.admin-brand {
  min-width: 0;
}

.admin-header-right-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.admin-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-header-tabs .admin-tab-btn {
  min-height: 34px;
  padding: 6px 11px;
}

.admin-user-info #adminUsername {
  color: #4b4235;
}

@media (max-width: 1100px) {
  .admin-header-inner {
    align-items: flex-start;
  }

  .admin-header-right-wrap {
    justify-content: flex-start;
    width: 100%;
  }
}

/* 2026-03 mobile home image sizing */
@media (max-width: 920px) {
  .home-page .hero-media {
    min-height: 340px;
  }

  .home-page .home-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-page .home-gallery-item {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 480px) {
  .home-page .hero-media {
    min-height: 300px;
  }
}

/* 2026-03 professional button pass */
.btn {
  min-height: 50px;
  padding: 11px 22px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.2;
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease,
    transform 80ms ease;
}

.btn-small {
  min-height: 36px;
  padding: 7px 12px;
  font-size: 14px;
  border-radius: 7px;
  font-weight: 600;
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(176, 107, 43, 0.22);
}

.btn-primary {
  color: #2a1d12;
  background: linear-gradient(180deg, #f1c889 0%, #e9bb74 100%);
  border-color: #c3894a;
  box-shadow:
    0 1px 2px rgba(24, 20, 15, 0.1),
    0 2px 8px rgba(176, 107, 43, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #f4d099 0%, #efc07c 100%);
  border-color: #ca9154;
  box-shadow:
    0 2px 5px rgba(24, 20, 15, 0.12),
    0 4px 10px rgba(176, 107, 43, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.btn-ghost {
  color: #322f2b;
  background: #fcfcfb;
  border-color: rgba(31, 29, 26, 0.22);
  box-shadow:
    0 1px 2px rgba(24, 20, 15, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.btn-ghost:hover {
  background: #ffffff;
  border-color: rgba(31, 29, 26, 0.3);
  box-shadow:
    0 2px 6px rgba(24, 20, 15, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset;
}

/* 2026-03 small hero heading reduction on home only */
.home-page .hero-copy h1 {
  font-size: clamp(38px, 3.8vw, 54px);
}

@media (max-width: 920px) {
  .home-page .hero-copy h1 {
    font-size: clamp(32px, 8.2vw, 46px);
  }
}

/* 2026-03 testimonials: masonry-style flow to avoid empty gaps next to shorter reviews */
.testimonials {
  display: block;
  column-count: 2;
  column-gap: 14px;
}

.testimonial {
  display: inline-block;
  width: 100%;
  margin: 0 0 14px;
  break-inside: avoid;
}

@media (max-width: 920px) {
  .testimonials {
    column-count: 1;
  }
}
