/* ============================================================
   Matcha House — shared stylesheet
   US bubble tea shop, ADA-compliant
   ============================================================ */
:root {
  --green-900: #16382a;
  --green-700: #245b42;
  --green-600: #2e6b4f;
  --green-500: #3d8263;
  --green-300: #9cc4ad;
  --green-100: #e7f0e9;
  --cream: #fbf8f1;
  --cream-dark: #f1ead9;
  --ink: #232a26;
  --white: #ffffff;
  --gold: #d9a441;
  --line: #e3ddd0;
  --muted: #5c6b62;
  --h1: clamp(40px, 5vw, 72px);
  --h2: clamp(28px, 3vw, 44px);
  --h3: clamp(20px, 2vw, 26px);
  --body: clamp(16px, 1.1vw, 18px);
  --container: min(1500px, 90vw);
  --radius: 24px;
  --shadow: 0 12px 32px rgba(22, 56, 42, 0.12);
  --shadow-sm: 0 4px 14px rgba(22, 56, 42, 0.08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: var(--body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

img { max-width: 100%; display: block; }
h1, h2, h3 { line-height: 1.15; color: var(--green-900); font-family: Georgia, "Times New Roman", serif; }
h1 { font-size: var(--h1); margin: 0 0 16px; }
h2 { font-size: var(--h2); margin: 0 0 14px; }
h3 { font-size: var(--h3); margin: 0 0 8px; }
p { margin: 0 0 14px; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 1000;
  background: var(--green-900); color: #fff;
  padding: 12px 20px; border-radius: 8px;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: 999px;
  font-weight: 600; font-size: 15px; line-height: 1.2;
  text-decoration: none; border: 2px solid transparent;
  cursor: pointer; transition: transform 0.2s, background 0.2s, color 0.2s;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-green { background: var(--green-600); color: #fff; }
.btn-green:hover, .btn-green:focus-visible { background: var(--green-700); }
.btn-gold { background: var(--gold); color: var(--green-900); }
.btn-gold:hover, .btn-gold:focus-visible { background: #e6b454; }
.btn-outline { border-color: var(--green-900); color: var(--green-900); }
.btn-outline:hover, .btn-outline:focus-visible { background: var(--green-900); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn[aria-disabled="true"], .btn.is-disabled {
  opacity: 0.55; cursor: not-allowed; pointer-events: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 241, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: 24px; padding: 14px 16px;
}
.site-nav { margin-left: auto; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand-name {
  font-family: Georgia, serif; font-size: 24px; font-weight: 700;
  color: var(--green-900); letter-spacing: 0.2px;
}
.site-nav ul { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: inline-block; padding: 8px 14px; border-radius: 999px;
  color: var(--green-900); text-decoration: none; font-weight: 500; font-size: 18px;
}
.site-nav a:hover, .site-nav a:focus-visible { background: var(--green-100); }
.site-nav a.is-active {
  background: var(--green-900); color: #fff;
}
.site-nav a[aria-disabled="true"] { color: var(--muted); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--green-900);
}
.icon-btn:hover, .icon-btn:focus-visible { border-color: var(--green-600); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--gold); color: var(--green-900);
  font-size: 11px; font-weight: 700; min-width: 20px; height: 20px;
  border-radius: 999px; display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-600) 100%);
  color: #fff; text-align: center;
  padding: 84px 16px 64px;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, 0.88); max-width: 64ch; margin: 0 auto; }
.crumb {
  display: inline-block; margin-bottom: 12px;
  color: var(--gold); font-size: 13px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
}
.crumb a { color: var(--gold); text-decoration: underline; }
.crumb a:hover { color: #fff; }

/* ---------- Home hero ---------- */
.hero {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px;
  align-items: center; padding: 72px 16px 80px;
}
.hero h1 { font-size: clamp(44px, 6vw, 84px); }
.hero .sub {
  font-size: 17px; font-weight: 600; color: var(--green-600);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px;
}
.hero p:not(.sub) { color: var(--muted); max-width: 52ch; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-visual { position: relative; }
.hero-ring {
  position: relative; margin: 0 auto;
  width: min(420px, 80vw); aspect-ratio: 1;
  background: radial-gradient(circle at 35% 30%, var(--green-100), var(--cream-dark));
  border: 3px solid var(--green-300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-ring img { width: 88%; height: 88%; object-fit: cover; border-radius: 50%; }
.hero-badge {
  position: absolute; background: var(--white);
  border-radius: 14px; box-shadow: var(--shadow);
  padding: 12px 16px; font-size: 13px; font-weight: 600; color: var(--green-900);
  display: flex; align-items: center; gap: 8px;
}
.hero-badge svg { width: 18px; height: 18px; color: var(--green-600); }
.badge-1 { top: 8%; left: -4%; }
.badge-2 { bottom: 10%; right: -2%; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 40px; }
.hero-stats .stat b {
  display: block; font-family: Georgia, serif;
  font-size: clamp(28px, 3vw, 40px); color: var(--green-900);
}
.hero-stats .stat span { font-size: 13px; color: var(--muted); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; background: var(--green-900); color: #fff;
  padding: 16px 0; white-space: nowrap; text-align: center;
}
.marquee-track {
  display: inline-block;
  font-family: Georgia, serif; font-size: 17px; letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.85);
}
.marquee-track span { margin: 0 18px; }

/* ---------- Section scaffolding ---------- */
.section { padding: 88px 0; }
.section:nth-of-type(even) { background: var(--white); }
.section-inner { max-width: var(--container); margin: 0 auto; padding: 0 16px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head p { color: var(--muted); }
.section-head .eyebrow {
  display: inline-block; color: var(--green-600);
  font-size: 13px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 10px;
}

/* ---------- Product cards ---------- */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; list-style: none; margin: 0; padding: 0;
}
.product-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.product-card .thumb {
  background: var(--white); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; min-height: 190px;
}
.product-card .thumb img { width: 82%; height: 82%; object-fit: cover; border-radius: 12px; }
.product-card h3 { font-size: 20px; margin: 0 0 4px; }
.product-card .desc {
  font-size: 14px; color: var(--muted); line-height: 1.55;
  margin: 0 0 10px; min-height: 3.2em;
}
.product-card .price { color: var(--green-700); font-weight: 700; font-size: 18px; margin: 0 0 12px; }
.product-card .card-actions { display: flex; gap: 8px; margin-top: auto; }
.product-card .card-actions .btn { flex: 1; }
.mini-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--green-900);
}
.mini-btn:hover, .mini-btn:focus-visible { border-color: var(--green-600); }
.mini-btn svg { width: 18px; height: 18px; }

/* ---------- Promo banner ---------- */
.promo {
  background:
    linear-gradient(rgba(238, 244, 232, 0.9), rgba(250, 248, 241, 0.92)),
    url("../images/3.jpg") center/cover no-repeat;
  padding: 64px 0;
}
.promo-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 16px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
}
.promo-text h2 { margin-bottom: 10px; }
.promo-text p { color: var(--green-900); max-width: 52ch; }
.promo-text .btn { margin-top: 10px; }
.promo-img { text-align: center; }
.promo-img img { width: min(520px, 90vw); height: auto; box-shadow: var(--shadow); }

/* ---------- Specials (tabs) ---------- */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.tab-btn {
  padding: 10px 22px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line); background: var(--white);
  color: var(--green-900); font-size: 14px; font-weight: 600;
}
.tab-btn:hover, .tab-btn:focus-visible { border-color: var(--green-600); }
.tab-btn.is-active { background: var(--green-900); color: #fff; border-color: var(--green-900); }
.specials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; list-style: none; margin: 0; padding: 0;
}
.special-card {
  position: relative; background: var(--cream);
  border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.special-card .thumb { background: var(--white); border-radius: 16px; display: flex; align-items: center; justify-content: center; min-height: 180px; margin-bottom: 14px; }
.special-card .thumb img { width: 80%; height: 80%; object-fit: cover; border-radius: 12px; }
.special-card h3 { font-size: 19px; }
.special-card .meta { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.special-card .price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.special-card .price-row .now { color: var(--green-700); font-weight: 700; font-size: 19px; }
.special-card .price-row .was { color: var(--muted); text-decoration: line-through; font-size: 14px; }
.badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--green-900);
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 999px;
}
.badge-new { background: var(--green-600); color: #fff; }

/* ---------- Testimonials ---------- */
.testimonials {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonials li {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.testimonials .stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; margin: 0 0 12px; }
.testimonials .stars svg { width: 18px; height: 18px; display: inline-block; }
.testimonials blockquote {
  margin: 0 0 18px; font-family: Georgia, serif;
  font-size: 20px; line-height: 1.5; color: var(--green-900);
}
.testimonials blockquote::before { content: "\201C"; display: block; font-size: 40px; line-height: 0.6; color: var(--green-300); margin-bottom: 10px; }
.testimonials footer { margin-top: auto; font-size: 13px; color: var(--muted); }
.testimonials footer strong { display: block; color: var(--green-900); font-size: 15px; margin-bottom: 2px; }

/* ---------- Quality / home about ---------- */
.quality-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 16px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
}
.quality-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.features { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.features li { display: flex; gap: 14px; }
.features .f-icon {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
}
.features .f-icon svg { width: 22px; height: 22px; }
.features b { display: block; color: var(--green-900); font-size: 16px; }
.features span { font-size: 14px; color: var(--muted); }

/* ---------- Newsletter ---------- */
.newsletter {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--green-900), var(--green-600));
  color: #fff; text-align: center; padding: 72px 16px;
}
.newsletter h2 { color: #fff; }
.newsletter p { color: rgba(255, 255, 255, 0.85); max-width: 52ch; margin: 0 auto 26px; }
.news-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 520px; margin: 0 auto; }
.news-form input[type="email"] {
  flex: 1; min-width: 240px; padding: 14px 18px;
  border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12); color: #fff; font: inherit;
}
.news-form input::placeholder { color: rgba(255, 255, 255, 0.7); }

/* ---------- Inner page generic ---------- */
.page-section { padding: 80px 0; }
.page-section:nth-of-type(even) { background: var(--white); }
.page-inner { max-width: var(--container); margin: 0 auto; padding: 0 16px; }

/* ---------- About page ---------- */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-story img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.about-story h2 { font-size: clamp(26px, 3vw, 40px); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; margin: 0; padding: 0; }
.value-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
}
.value-card .v-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.value-card .v-icon svg { width: 26px; height: 26px; }
.stats-band {
  background: var(--green-900); color: #fff; padding: 48px 16px;
}
.stats-band .stats { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-band b { display: block; font-family: Georgia, serif; font-size: clamp(30px, 4vw, 48px); color: var(--gold); }
.stats-band span { font-size: 14px; color: rgba(255, 255, 255, 0.85); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; margin: 0; padding: 0; }
.member { text-align: center; background: var(--white); border-radius: var(--radius); padding: 28px 20px; box-shadow: var(--shadow-sm); }
.avatar {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--green-600), var(--green-300));
  color: #fff; font-family: Georgia, serif; font-size: 34px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.member .role { color: var(--green-600); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }
.community-box {
  background: var(--green-100); border-radius: var(--radius);
  padding: 40px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center;
}
.community-box h2 { font-size: clamp(24px, 2.6vw, 36px); }
.community-events { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.community-events li {
  background: var(--white); border-radius: 14px; padding: 14px 18px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 15px;
}
.community-events time { color: var(--green-600); font-weight: 700; white-space: nowrap; }

/* ---------- Menu page ---------- */
.menu-block { margin-bottom: 56px; }
.menu-block > h2 { display: flex; align-items: center; gap: 12px; border-bottom: 2px solid var(--green-300); padding-bottom: 10px; margin-bottom: 22px; }
.menu-block > h2 .cal-note { font-family: inherit; font-size: 13px; font-weight: 500; color: var(--muted); }
.table-wrap { overflow-x: auto; }
.menu-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.menu-table caption { text-align: left; font-size: 13px; color: var(--muted); padding: 0 4px 10px; }
.menu-table th {
  background: var(--green-900); color: #fff; text-align: left;
  padding: 12px 16px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
}
.menu-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.menu-table tbody tr:last-child td { border-bottom: none; }
.menu-table .item-name { font-weight: 600; color: var(--green-900); }
.menu-table .item-desc { font-size: 14px; color: var(--muted); }
.menu-table .cal { white-space: nowrap; color: var(--muted); font-size: 14px; }
.menu-table .price { white-space: nowrap; font-weight: 700; color: var(--green-700); }
.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  display: inline-block; padding: 2px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
}
.tag-vegan { background: #e2f3e4; color: #2e7d32; }
.tag-gf { background: #fdf3e2; color: #a06a13; }
.tag-hot { background: #fdf0e0; color: #a8621c; }
.tag-pop { background: var(--green-100); color: var(--green-700); }

.customize-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; margin: 0; padding: 0; }
.option-card { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.option-card h3 { font-size: 19px; display: flex; align-items: center; gap: 10px; }
.option-card h3 .o-icon { color: var(--green-600); display: inline-flex; }
.option-card h3 .o-icon svg { width: 22px; height: 22px; }
.option-card ul { margin: 12px 0 0; padding: 0 0 0 18px; color: var(--muted); font-size: 15px; }
.option-card li { margin-bottom: 6px; }
.option-card li b { color: var(--green-900); }

.nutrition-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; list-style: none; margin: 0; padding: 0; }
.nutrition-card { background: var(--cream); border-radius: var(--radius); padding: 26px; text-align: center; box-shadow: var(--shadow-sm); }
.nutrition-card .n-icon { width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 50%; background: var(--white); color: var(--green-600); display: flex; align-items: center; justify-content: center; }
.nutrition-card .n-icon svg { width: 26px; height: 26px; }
.nutrition-card h3 { font-size: 17px; }
.nutrition-card p { font-size: 14px; color: var(--muted); margin: 0; }
.allergen-note {
  border-left: 4px solid var(--gold); background: #fdf8ec;
  border-radius: 0 14px 14px 0; padding: 18px 22px; font-size: 14px; color: #5d4a3e;
}

/* ---------- Gallery page ---------- */
.filter-bar { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  list-style: none; margin: 0; padding: 0;
}
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--white); }
.gallery-item img { width: 100%; aspect-ratio: 1 / 0.92; object-fit: cover; transition: transform 0.35s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(22, 56, 42, 0.85));
  color: #fff; padding: 40px 18px 14px; font-size: 15px; font-weight: 600;
}
.gallery-item.tall img { aspect-ratio: auto; height: 100%; }
.gallery-banner {
  margin-top: 48px; background: var(--green-100);
  border-radius: var(--radius); padding: 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.gallery-banner h2 { font-size: clamp(22px, 2.6vw, 34px); margin: 0 0 6px; }
.gallery-banner p { margin: 0; color: var(--muted); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: start; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.contact-form h2 { font-size: clamp(24px, 2.6vw, 34px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; color: var(--green-900); margin-bottom: 6px; }
.form-group .req { color: #b3261e; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; font: inherit;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--cream); color: var(--ink);
}
.form-group input:focus-visible, .form-group select:focus-visible, .form-group textarea:focus-visible { outline-color: var(--green-600); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-status { display: none; background: #e2f3e4; color: #2e7d32; border-radius: 12px; padding: 12px 16px; font-size: 15px; margin-top: 14px; }
.info-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.info-card h2 { font-size: 18px; display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.info-card h2 svg { width: 20px; height: 20px; color: var(--green-600); flex: 0 0 auto; }
.info-card p { margin: 0 0 6px; font-size: 15px; }
.info-card .hours { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; font-size: 15px; }
.info-card .hours span:nth-child(odd) { color: var(--green-900); font-weight: 600; }
.map-embed {
  border-radius: var(--radius); overflow: hidden; position: relative;
  background:
    linear-gradient(rgba(22, 56, 42, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 56, 42, 0.08) 1px, transparent 1px),
    var(--cream-dark);
  background-size: 34px 34px;
  min-height: 240px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.map-pin { text-align: center; background: var(--white); border-radius: 16px; padding: 14px 20px; box-shadow: var(--shadow); font-size: 14px; }
.map-pin svg { width: 26px; height: 26px; color: var(--green-600); margin: 0 auto 6px; }

.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--green-900);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--green-600); font-weight: 400; }
.faq details[open] summary::after { content: "\2212"; }
.faq .faq-body { padding: 0 22px 18px; color: var(--muted); font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--gold), #e6b454); padding: 56px 16px; text-align: center; }
.cta-band h2 { font-size: clamp(26px, 3vw, 40px); }
.cta-band p { color: #4a3d25; max-width: 56ch; margin: 0 auto 24px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #cfe0d6; padding: 64px 0 0; }
.footer-brand {
  max-width: var(--container); margin: 0 auto;
  padding: 0 16px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px 40px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-brand .brand-name { color: #fff; }
.footer-brand img { width: 52px; background: #fff; border-radius: 12px; padding: 6px; }
.footer-brand p { margin: 0; max-width: 52ch; font-size: 14px; text-align: right; }
.footer-contact { list-style: none; margin: 0; padding: 0; font-size: 14px; }
.footer-col .footer-contact { display: grid; gap: 12px; }
.footer-contact li { display: inline-flex; align-items: center; gap: 8px; }
.footer-contact svg { width: 16px; height: 16px; flex: none; color: var(--gold); }
.footer-contact a { color: var(--green-300); text-decoration: none; }
.footer-contact a:hover { color: #fff; text-decoration: underline; }
.footer-contact span { color: var(--green-300); }
.footer-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding: 44px 16px 40px;
}
.footer-col h2 { color: #fff; font-size: 16px; margin: 0 0 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-col a { color: #cfe0d6; text-decoration: none; font-size: 15px; }
.footer-col a:hover, .footer-col a:focus-visible { color: #fff; text-decoration: underline; }
.footer-col a[aria-disabled="true"] { color: rgba(255, 255, 255, 0.45); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 16px; text-align: center; font-size: 13px;
}
.footer-bottom a { color: var(--gold); text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .specials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .quality-inner { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .values-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band .stats { grid-template-columns: repeat(2, 1fr); }
  .nutrition-grid { grid-template-columns: repeat(2, 1fr); }
  .customize-grid { grid-template-columns: repeat(2, 1fr); }
  .community-box { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { justify-content: space-between; }
  .site-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding: 40px 16px 60px; gap: 32px; }
  .promo-inner { grid-template-columns: 1fr; text-align: center; }
  .promo-text .btn { margin-top: 6px; }
  .products-grid, .specials-grid, .testimonials { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .footer-brand { justify-content: center; text-align: center; }
  .footer-brand p { text-align: center; }
  .footer-contact { justify-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid, .team-grid, .customize-grid, .nutrition-grid { grid-template-columns: 1fr; }
  .stats-band .stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .info-card .hours { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .header-actions .icon-btn.search { display: none; }
}
