/* ============================================================
   Food Pantry System — Modern marketing theme
   Helping Our People (helpingourpeople.org)
   Colors: Evergreen & Harvest
   ============================================================ */

:root {
  --pantry-forest: #134E4A;
  --pantry-forest-dark: #0B3532;
  --pantry-leaf: #0F766E;
  --pantry-leaf-hover: #0D9488;
  --pantry-leaf-soft: rgba(15, 118, 110, 0.1);
  --pantry-amber: #D97706;
  --pantry-amber-soft: rgba(217, 119, 6, 0.12);

  --pantry-ink: #1C1917;
  --pantry-body: #57534E;
  --pantry-muted: #78716C;
  --pantry-border: #E7E5E4;
  --pantry-border-strong: #D6D3D1;
  --pantry-cream: #F7F4EF;
  --pantry-cream-soft: #FBF9F6;
  --pantry-white: #FFFFFF;

  --radius-sm: 0.625rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 2px rgba(19, 78, 74, 0.05);
  --shadow-md: 0 8px 24px -8px rgba(19, 78, 74, 0.12);
  --shadow-lg: 0 24px 48px -16px rgba(19, 78, 74, 0.18);
  --shadow-glow: 0 12px 40px -8px rgba(15, 118, 110, 0.35);

  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --nav-h: 4.5rem;
  --max: 72rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--pantry-forest);
  margin: 0;
}

p { margin: 0; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: 5rem;
}

@media (max-width: 768px) {
  .section { padding-block: 3.5rem; }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pantry-leaf);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pantry-leaf), var(--pantry-amber));
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  max-width: 18ch;
}

.section-lead {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--pantry-body);
  max-width: 42rem;
  line-height: 1.7;
}

.section-head {
  margin-bottom: 2.75rem;
}

.section-head.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head.center .section-title { max-width: 22ch; }
.section-head.center .section-lead { text-align: center; }

/* ---------- Top utility bar (sdsinow-like) ---------- */
.topbar {
  background: var(--pantry-forest-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  font-weight: 500;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  min-height: 2.25rem;
  padding-block: 0.35rem;
}

.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--pantry-amber-soft); color: #FBBF24; }

.topbar-right {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
}

/* ---------- Modern navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 246, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--pantry-border);
  box-shadow: var(--shadow-sm);
  background: rgba(251, 249, 246, 0.96);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, var(--pantry-leaf) 0%, var(--pantry-forest) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
  object-fit: cover;
}

img.brand-mark {
  display: block;
  padding: 0;
  background: var(--pantry-white);
  border: 1px solid var(--pantry-border);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--pantry-forest);
}

.brand-text span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pantry-muted);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--pantry-body);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
  background: var(--pantry-leaf-soft);
  color: var(--pantry-forest);
}

.nav-links a.is-active {
  background: var(--pantry-leaf-soft);
  color: var(--pantry-leaf);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
}

@media (min-width: 900px) {
  .nav-actions { display: flex; }
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--pantry-border);
  background: var(--pantry-white);
  color: var(--pantry-forest);
}

@media (min-width: 900px) {
  .menu-toggle { display: none; }
}

/* Mobile drawer */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 40, 36, 0.5);
  z-index: 60;
}

.mobile-overlay.open { display: block; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 20rem);
  background: var(--pantry-white);
  z-index: 70;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--pantry-border);
}

.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.25rem;
}

.mobile-drawer nav a {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--pantry-ink);
}

.mobile-drawer nav a:hover,
.mobile-drawer nav a.is-active {
  background: var(--pantry-cream);
  color: var(--pantry-leaf);
}

.mobile-drawer-foot {
  margin-top: auto;
  padding: 1.25rem;
  border-top: 1px solid var(--pantry-border);
  background: var(--pantry-cream);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.5rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--pantry-leaf);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--pantry-leaf-hover);
  color: #fff;
}

.btn-secondary {
  background: var(--pantry-white);
  color: var(--pantry-forest);
  border-color: var(--pantry-border-strong);
}

.btn-secondary:hover {
  border-color: var(--pantry-leaf);
  background: var(--pantry-cream-soft);
}

.btn-light {
  background: #fff;
  color: var(--pantry-forest);
  box-shadow: var(--shadow-md);
}

.btn-light:hover { background: var(--pantry-cream); color: var(--pantry-forest); }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}

.btn-ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
}

.btn-block { width: 100%; }

/* Legacy alias */
a.btn-outline-light,
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.5rem;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  transition: all 0.15s ease;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

/* ---------- Hero (modern full-bleed) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(15, 118, 110, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(217, 119, 6, 0.15), transparent 50%),
    linear-gradient(145deg, #0B3532 0%, #134E4A 45%, #0F766E 100%);
  color: #fff;
  padding: 4.5rem 0 5rem;
}

@media (min-width: 900px) {
  .hero { padding: 5.5rem 0 6rem; }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: #ECFDF5;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 14ch;
}

.hero h1 .accent {
  color: #FBBF24;
}

.hero-copy {
  margin-top: 1.25rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-meta div strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-meta div span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-float {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--pantry-white);
  color: var(--pantry-forest);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow-lg);
  max-width: 14rem;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
}

.hero-float small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pantry-leaf);
  margin-bottom: 0.25rem;
}

@media (max-width: 640px) {
  .hero-float { display: none; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--pantry-white);
  border-bottom: 1px solid var(--pantry-border);
  padding: 1.25rem 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.trust-strip .label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pantry-muted);
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-pills span {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--pantry-cream);
  border: 1px solid var(--pantry-border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pantry-forest);
}

/* ---------- Cards ---------- */
.card {
  background: var(--pantry-white);
  border: 1px solid var(--pantry-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #D6D3D1;
}

.card-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--pantry-leaf), var(--pantry-forest));
  color: #fff;
  margin-bottom: 1.15rem;
  box-shadow: var(--shadow-glow);
}

.card-icon svg { width: 1.4rem; height: 1.4rem; }

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--pantry-body);
  font-size: 0.975rem;
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--pantry-leaf);
}

.card-link:hover { color: var(--pantry-forest); }

.grid-2 { display: grid; gap: 1.25rem; }
.grid-3 { display: grid; gap: 1.25rem; }
.grid-4 { display: grid; gap: 1.25rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Feature / service style cards (sdsinow core services) */
.service-card {
  background: var(--pantry-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--pantry-border);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card .card-icon {
  margin-inline: auto;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* ---------- Split showcase ---------- */
.showcase {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .showcase {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
  .showcase.reverse .showcase-media { order: 2; }
  .showcase.reverse .showcase-copy { order: 1; }
}

.showcase-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--pantry-border);
  background: var(--pantry-forest-dark);
}

.showcase-media img {
  width: 100%;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--pantry-body);
  font-size: 1rem;
}

.checklist li::before {
  content: "";
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--pantry-leaf) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/0.75rem no-repeat;
}

/* ---------- Stats band ---------- */
.stats-band {
  background: linear-gradient(135deg, var(--pantry-forest-dark), var(--pantry-forest) 50%, var(--pantry-leaf));
  color: #fff;
  padding: 3.5rem 0;
}

.stats-band .grid-4 {
  text-align: center;
}

.stat-value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

/* ---------- Why / values ---------- */
.why-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.why-tabs button {
  border: 1px solid var(--pantry-border);
  background: var(--pantry-white);
  color: var(--pantry-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  transition: all 0.15s ease;
}

.why-tabs button.is-active {
  background: var(--pantry-forest);
  border-color: var(--pantry-forest);
  color: #fff;
}

.panel-card {
  background: var(--pantry-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--pantry-border);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.panel-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.panel-card p {
  color: var(--pantry-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- FAQ accordion (sdsinow-like) ---------- */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
  margin-inline: auto;
}

.faq-item {
  background: var(--pantry-white);
  border: 1px solid var(--pantry-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.faq-item.is-open {
  border-color: var(--pantry-leaf);
  box-shadow: var(--shadow-sm);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.15rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--pantry-forest);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item button .chev {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--pantry-cream);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
  color: var(--pantry-leaf);
}

.faq-item.is-open button .chev {
  transform: rotate(180deg);
  background: var(--pantry-leaf-soft);
}

.faq-body {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--pantry-body);
  line-height: 1.7;
}

.faq-item.is-open .faq-body { display: block; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(15, 118, 110, 0.5), transparent 50%),
    linear-gradient(135deg, var(--pantry-forest-dark), var(--pantry-forest));
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .cta-banner { padding: 3.5rem 3rem; }
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  max-width: 22ch;
  margin-inline: auto;
}

.cta-banner p {
  margin: 1rem auto 0;
  max-width: 32rem;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
}

.cta-banner .hero-actions {
  justify-content: center;
  margin-top: 1.75rem;
}

.cta-note {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse 70% 80% at 90% 10%, rgba(15, 118, 110, 0.12), transparent 50%),
    var(--pantry-white);
  border-bottom: 1px solid var(--pantry-border);
  padding: 3.5rem 0 3rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 18ch;
}

.page-hero p {
  margin-top: 1rem;
  font-size: 1.15rem;
  color: var(--pantry-body);
  max-width: 40rem;
  line-height: 1.7;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--pantry-white);
  border: 1px solid var(--pantry-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pantry-forest);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--pantry-border-strong);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--pantry-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--pantry-leaf);
  box-shadow: 0 0 0 4px var(--pantry-leaf-soft);
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}

.form-field { margin-bottom: 1.15rem; }

/* ---------- Pricing cards ---------- */
.price-card {
  background: var(--pantry-white);
  border: 1px solid var(--pantry-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  border: 2px solid var(--pantry-leaf);
  box-shadow: var(--shadow-md);
}

.price-badge {
  position: absolute;
  top: -0.7rem;
  right: 1.25rem;
  background: var(--pantry-amber);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

.price-card .eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pantry-leaf);
}

.price-card .amount {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--pantry-forest);
  margin-top: 0.75rem;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.65rem;
  flex: 1;
}

.price-card ul li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--pantry-body);
}

.price-card ul li::before {
  content: "✓";
  color: var(--pantry-leaf);
  font-weight: 800;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pantry-forest-dark);
  color: rgba(255,255,255,0.72);
  padding: 3.5rem 0 1.5rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-brand span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.15rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 22rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s ease;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ---------- Mockup zoom ---------- */
.mockup-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--pantry-border);
  background: var(--pantry-forest-dark);
  cursor: zoom-in;
}

.mockup-frame img { width: 100%; display: block; }

.image-zoomable { cursor: zoom-in; }

/* ---------- Utilities ---------- */
.bg-white { background: var(--pantry-white); }
.bg-cream { background: var(--pantry-cream); }
.text-body { color: var(--pantry-body); }
.text-muted { color: var(--pantry-muted); }
.text-leaf { color: var(--pantry-leaf); }
.text-forest { color: var(--pantry-forest); }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

.text-balance { text-wrap: balance; }

:focus-visible {
  outline: 2px solid var(--pantry-leaf);
  outline-offset: 3px;
}

/* Product subnav (product page) */
.product-subnav {
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  background: rgba(251, 249, 246, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pantry-border);
}

.product-subnav .container {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  padding-block: 0;
}

.product-subnav a {
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pantry-muted);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.product-subnav a.is-active,
.product-subnav a.active {
  color: var(--pantry-forest);
  border-bottom-color: var(--pantry-leaf);
}

/* Contact info cards */
.info-card {
  background: var(--pantry-white);
  border: 1px solid var(--pantry-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.info-card.dark {
  background: var(--pantry-forest);
  border-color: transparent;
  color: #fff;
}

.info-card.dark h3,
.info-card.dark .label { color: rgba(255,255,255,0.7); }
.info-card .label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pantry-leaf);
}

/* Soft media frame */
.media-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--pantry-border);
}

/* Tag chips on feature cards */
.chip {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pantry-leaf);
}
