/* ============================================================
   Star Fruits & Vegetables — styles.css
   Mobile-first (390px base) · no build step · vanilla CSS
   ============================================================ */

:root {
  --green-950: #0b2e1a;
  --green-900: #14532d;
  --green-800: #166534;
  --green-700: #15803d;
  --green-600: #16a34a;
  --green-100: #dcfce7;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --cream: #faf7f1;
  --cream-dark: #f2ecdf;
  --ink: #1c2a24;
  --muted: #5c6b63;
  --line: #e5dfd2;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5d;

  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: Georgia, "Cambria", "Times New Roman", serif;

  --container: 1120px;
  --radius: 18px;
  --shadow-sm: 0 1px 2px rgba(12, 34, 20, 0.06), 0 1px 3px rgba(12, 34, 20, 0.08);
  --shadow-md: 0 8px 24px rgba(12, 34, 20, 0.1);
  --shadow-lg: 0 18px 40px rgba(12, 34, 20, 0.16);
  --header-h: 64px;
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
iframe,
svg {
  max-width: 100%;
  display: block;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--ink);
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

::selection {
  background: var(--amber-400);
  color: var(--green-950);
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.section {
  padding-block: clamp(3.5rem, 9vw, 6rem);
}

.section-title {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.01em;
}

.section-lede {
  text-align: center;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 44rem;
  margin: 0.75rem auto 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.75rem;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-500);
  flex-shrink: 0;
}

.eyebrow-center {
  display: flex;
  justify-content: center;
}

/* ---------- Icons ---------- */
.icon {
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

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

.btn-lg {
  min-height: 54px;
  padding: 0.9rem 1.75rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--green-800);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--green-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-light:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

/* ---------- Focus visibility ---------- */
a:focus-visible,
button:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 1rem;
  z-index: 100;
  background: var(--green-900);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ============================================================
   1. HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header.scrolled {
  box-shadow: 0 6px 18px rgba(12, 34, 20, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  min-height: 44px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-900);
  color: var(--amber-400);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

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

.brand-name {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-900);
  white-space: nowrap;
}

.brand-tag {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: none;
}

.main-nav {
  display: none;
}

.header-call {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--green-800);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.header-call:hover {
  background: var(--green-900);
  transform: translateY(-1px);
}

.header-call-label,
.header-call-num {
  white-space: nowrap;
}

/* ============================================================
   2. HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2.25rem;
  padding-top: clamp(2.5rem, 7vw, 4.5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.hero-copy h1 {
  font-size: clamp(2.05rem, 6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--green-950);
}

.hero-sub {
  margin-top: 1rem;
  font-size: clamp(1.02rem, 2.5vw, 1.2rem);
  color: var(--muted);
  line-height: 1.6;
  max-width: 34rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-cta .btn {
  width: 100%;
}

.hero-hinglish {
  margin-top: 1.15rem;
  color: var(--amber-600);
  font-weight: 600;
  font-style: italic;
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(4px);
}

.hero-badge-stars {
  color: var(--amber-500);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.hero-badge-score {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.hero-badge-muted {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.hero-badge-count {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ============================================================
   4. TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--green-900);
  color: #fff;
}

.trust-grid {
  display: grid;
  gap: 1.1rem;
  padding-block: 1.4rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 44px;
}

.trust-item .icon {
  color: var(--amber-400);
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.trust-item div span:not(.icon) {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
}

.trust-item div span[aria-hidden="true"] {
  color: var(--amber-400);
  letter-spacing: 2px;
}

/* ============================================================
   5. PRODUCTS
   ============================================================ */
.products-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.product-card img {
  width: 100%;
  aspect-ratio: 640 / 440;
  object-fit: cover;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem 1.2rem;
  flex-grow: 1;
}

.product-body h3 {
  font-size: 1.08rem;
  color: var(--green-950);
}

.product-body p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.text-link {
  margin-top: auto;
  padding-top: 0.5rem;
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.text-link:hover {
  color: var(--green-900);
  text-decoration: underline;
}

/* ============================================================
   6. SERVICES
   ============================================================ */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-800);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.06rem;
  color: var(--green-950);
  margin-bottom: 0.35rem;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   7. ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  gap: 2.5rem;
}

.about-media {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-media img {
  width: 100%;
  aspect-ratio: 800 / 960;
  object-fit: cover;
}

.about-copy .section-title {
  text-align: left;
}

.about-copy p {
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.65;
  max-width: 40rem;
}

.credential-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-sm);
}

.credential .icon {
  color: var(--amber-500);
}

.credential strong {
  font-size: 0.94rem;
  color: var(--green-950);
}

/* ============================================================
   8. REVIEWS
   ============================================================ */
.reviews {
  background: var(--cream);
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.15rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--amber-500);
  letter-spacing: 2px;
  font-size: 1.05rem;
}

.review-card blockquote p {
  margin: 0.7rem 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.review-meta strong {
  font-size: 0.95rem;
  color: var(--green-950);
}

.review-meta em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
}

.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.reviews-footer .icon {
  color: var(--green-700);
}

/* ============================================================
   9. FAQ
   ============================================================ */
.faq-list {
  max-width: 46rem;
  margin: 2.5rem auto 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
  padding: 1rem 0.25rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--green-950);
}

.faq-toggle:hover {
  color: var(--green-700);
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-100);
  transition: background-color 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transition: opacity 0.2s ease;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
  background: var(--green-800);
}

.faq-toggle[aria-expanded="true"] .faq-icon::before,
.faq-toggle[aria-expanded="true"] .faq-icon::after {
  background: #fff;
}

.faq-toggle[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
}

.faq-panel {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.97rem;
}

.faq-panel p {
  padding: 0 0.25rem 1.25rem;
}

.faq-item.open .faq-panel {
  animation: fade-up 0.25s ease;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   10. MAP + HOURS
   ============================================================ */
.map-hours {
  background: var(--cream);
}

.map-hours-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
}

.hours-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hours-card h3 {
  font-size: 1.35rem;
  color: var(--green-950);
}

.hours-note {
  margin-top: 0.35rem;
  color: var(--amber-600);
  font-weight: 600;
  font-size: 0.95rem;
}

.hours-list {
  margin-top: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}

.hours-row dt {
  color: var(--muted);
}

.hours-row dd {
  font-weight: 700;
  color: var(--green-950);
  margin: 0;
}

.store-address {
  margin-top: 1.25rem;
  font-style: normal;
  font-weight: 600;
  color: var(--green-950);
  line-height: 1.5;
}

.hours-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* ============================================================
   11. CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  color: #fff;
  padding-block: clamp(3rem, 8vw, 4.5rem);
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  color: #fff;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-top: 0.6rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.cta-actions .btn {
  width: 100%;
}

/* ============================================================
   12. FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-950);
  color: #e7efe9;
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
  padding-block: clamp(3rem, 8vw, 4.5rem) 2.5rem;
}

.brand-footer .brand-logo {
  background: rgba(255, 255, 255, 0.08);
}

.brand-footer .brand-name {
  color: #fff;
}

.brand-footer .brand-tag {
  color: rgba(231, 239, 233, 0.7);
}

.footer-blurb {
  margin-top: 1rem;
  color: rgba(231, 239, 233, 0.75);
  line-height: 1.6;
  max-width: 20rem;
}

.footer-rating {
  margin-top: 0.75rem;
  color: var(--amber-400);
  font-size: 0.92rem;
}

.footer-rating strong {
  color: #fff;
}

.footer-heading {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav a {
  color: rgba(231, 239, 233, 0.75);
  text-decoration: none;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: var(--amber-400);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  min-height: 40px;
  font-size: 0.95rem;
  color: rgba(231, 239, 233, 0.85);
}

.footer-contact .icon {
  color: var(--amber-400);
  margin-top: 3px;
}

.footer-contact a {
  color: rgba(231, 239, 233, 0.85);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--amber-400);
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(231, 239, 233, 0.85);
}

.footer-hours strong {
  display: block;
  color: #fff;
  font-size: 1.02rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.25rem 6.25rem;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  color: rgba(231, 239, 233, 0.6);
  font-size: 0.88rem;
}

.footer-credit {
  color: rgba(231, 239, 233, 0.45);
}

/* ============================================================
   3. FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  z-index: -1;
  animation: wa-pulse 2.6s ease-out infinite;
}

.wa-float:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.06);
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70%,
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* ============================================================
   Reveal-on-scroll (added via JS, .js guard prevents FOUC)
   ============================================================ */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   ≥480px  —  phones landscape / large phones
   ============================================================ */
@media (min-width: 480px) {
  .brand-tag {
    display: block;
  }

  .hero-cta {
    flex-direction: row;
  }

  .hero-cta .btn {
    width: auto;
  }

  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }

  .cta-actions .btn {
    width: auto;
  }

  .header-call-label {
    display: inline;
  }
}

/* ============================================================
   ≥560px
   ============================================================ */
@media (min-width: 560px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .credential-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-call-num {
    display: inline;
  }
}

/* ============================================================
   ≥768px  —  tablets
   ============================================================ */
@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

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

  .map-wrap iframe {
    height: 420px;
  }

  .footer-bottom {
    padding-bottom: 1.5rem;
  }
}

/* ============================================================
   ≥960px  —  desktop
   ============================================================ */
@media (min-width: 960px) {
  .main-nav {
    display: flex;
    gap: 1.6rem;
    margin-left: 1.5rem;
  }

  .main-nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: color 0.15s ease;
  }

  .main-nav a:hover {
    color: var(--green-700);
  }

  .header-call {
    padding-inline: 1.25rem;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .hero-media img {
    aspect-ratio: 4 / 5;
  }

  .hero-badge {
    left: auto;
    right: 1rem;
    bottom: 1rem;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .map-hours-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
