/* ============================================================
   STONEWALL GARDEN — Global Stylesheet
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Cormorant+SC:wght@300;400;500;600&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ── Brand Tokens ─────────────────────────────────────────── */
:root {
  --green-dark:  #1E361A;
  --green-mid:   #8BB557;
  --green-light: #C7CDC6;
  --green-muted: #8F9B8D;
  --orange:      #FD6703;
  --cream:       #F5F1EB;
  --white:       #FFFFFF;

  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-display:  'Cormorant SC', 'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Raleway', system-ui, sans-serif;

  --max-w: 1140px;
  --section-pad: 5rem 1.5rem;
  --radius: 2px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--green-dark);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility: Container ───────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Utility: Divider ─────────────────────────────────────── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--green-mid);
  margin: 1rem 0 1.5rem;
}
.divider-center { margin: 1rem auto 1.5rem; }
.divider-white  { background: rgba(255,255,255,.45); }
.section-header .divider { margin-left: auto; margin-right: auto; }

/* ── Utility: Eyebrow ─────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.eyebrow-white { color: rgba(255,255,255,.75); }

/* ── Announcement Banner ──────────────────────────────────── */
.banner {
  background: #E3519E;
  color: var(--white);
  text-align: center;
  padding: .6rem 1rem;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.banner a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid rgba(30,54,26,.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.nav-logo img { width: 40px; height: 40px; }
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-dark);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green-mid); }

.nav-cta {
  background: var(--green-dark);
  color: var(--white) !important;
  padding: .55rem 1.25rem;
  border-radius: var(--radius);
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--green-mid) !important; color: var(--white) !important; }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  transition: all .3s;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}

.footer-brand img { width: 48px; margin-bottom: 1rem; }
.footer-brand p {
  font-family: var(--font-sans);
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--green-mid); }
.footer-col p {
  font-size: .875rem;
  line-height: 1.8;
  color: rgba(255,255,255,.75);
}
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: var(--green-mid); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  transition: all .2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-mid); color: var(--white); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { background: #e05900; color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
}
.btn-ghost:hover { background: var(--green-dark); color: var(--white); }

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.1); }

.btn-white {
  background: var(--white);
  color: var(--green-dark);
}
.btn-white:hover { background: var(--cream); }

/* ── Stat Bar ─────────────────────────────────────────────── */
.stat-bar {
  background: var(--green-dark);
  padding: 2.5rem 1.5rem;
}
.stat-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
/* 3-stat variant (homepage) */
.stat-bar-3 .container {
  grid-template-columns: repeat(3, 1fr);
}
/* Light / green-mid background variant */
.stat-bar-light {
  background: var(--green-mid);
  padding: 2rem 1.5rem;
}
.stat-bar-light .stat-num { color: var(--green-dark); }
.stat-bar-light .stat-label { color: rgba(30,54,26,.65); }

/* Stat item: border separators — replaces inline border styles */
.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,.25);
  padding-left: 2rem;
}
.stat-item:not(:last-child) { padding-right: 2rem; }

/* ── Utility: Stack on Small Screens ─────────────────────── */
/* Applied inline to grids that should collapse to 1-col on mobile */

.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: .35rem;
}

/* Display numerals in card stats (Why It Matters, etc.) */
.display-num {
  font-family: var(--font-display);
}
.stat-label {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ── Italic Emphasis (brand green on all headings) ────────── */
h1 em, h2 em, h3 em {
  color: var(--green-mid);
  font-style: italic;
}
/* Keep hero page em green against dark bg */
.page-hero h1 em { color: var(--green-mid); }

/* ── Leaf Icon Decoration ─────────────────────────────────── */
.leaf-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  vertical-align: middle;
  opacity: .85;
}
.leaf-icon-sm {
  width: 24px;
  height: 24px;
}
.leaf-icon-lg {
  width: 64px;
  height: 64px;
  opacity: .18;
}
/* Watermark leaf on dark sections */
.dark-section-leaf {
  position: relative;
  overflow: hidden;
}
.dark-section-leaf::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 280px;
  height: 280px;
  background: url('images/leaf-icon-white.png') no-repeat center/contain;
  opacity: .06;
  pointer-events: none;
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--green-dark);
  padding: 4.5rem 1.5rem 3.5rem;
  text-align: center;
}
.page-hero .eyebrow { color: var(--green-mid); margin-bottom: .5rem; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.page-hero h1 em { font-style: italic; font-weight: 300; }
.page-hero p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin: 0 auto;
}

/* ── Section: CTA Orange ──────────────────────────────────── */
.cta-section {
  background: var(--orange);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-section h2 em { font-style: italic; color: var(--white); }
.cta-section p {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* ── Cert Strip ───────────────────────────────────────────── */
.cert-strip {
  background: var(--cream);
  padding: 2.5rem 1.5rem;
}
.cert-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cert-strip img {
  height: 52px;
  width: auto;
  opacity: .75;
  filter: grayscale(20%);
  transition: opacity .2s;
}
.cert-strip img:hover { opacity: 1; }
.cert-label {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-muted);
  text-align: center;
  margin-bottom: 1rem;
}

/* ── Service Area Note ────────────────────────────────────── */
.service-area-note {
  background: var(--cream);
  border-left: 3px solid var(--green-mid);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--green-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

/* ── Card Grid ────────────────────────────────────────────── */
.card-grid {
  display: grid;
  gap: 2rem;
}
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid rgba(30,54,26,.1);
  border-radius: 4px;
  padding: 2rem;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(30,54,26,.1);
  transform: translateY(-2px);
}

.card-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--green-mid);
  font-weight: 500;
  margin: .5rem 0 .75rem;
}
.card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: .6rem;
}
.card-body {
  font-size: .9rem;
  color: #4a5a48;
  line-height: 1.7;
}
.card-list {
  margin-top: .75rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.card-list li {
  font-size: .875rem;
  color: #4a5a48;
  padding-left: 1.2rem;
  position: relative;
}
.card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-size: .75rem;
  top: .1em;
}

/* ── Accordion (FAQ) ──────────────────────────────────────── */
.faq-section { padding: var(--section-pad); }
.faq-category { margin-bottom: 3rem; }
.faq-category-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(30,54,26,.12);
}

.accordion-item {
  border-bottom: 1px solid rgba(30,54,26,.1);
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.accordion-trigger-text {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.4;
}
.accordion-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  color: var(--green-mid);
  font-size: .9rem;
  font-weight: 700;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon {
  background: var(--green-mid);
  color: var(--white);
}
.accordion-trigger[aria-expanded="true"] .accordion-icon::after { content: '−'; }
.accordion-icon::after { content: '+'; }

.accordion-body {
  display: none;
  padding: 0 0 1.25rem;
  font-size: .9rem;
  color: #4a5a48;
  line-height: 1.75;
}
.accordion-body.open { display: block; }
.accordion-body p + p { margin-top: .75rem; }
.accordion-body ul {
  margin: .75rem 0 .75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.accordion-body ul li { list-style: disc; font-size: .875rem; }
.accordion-body a { color: var(--green-mid); text-decoration: underline; text-underline-offset: 2px; }

/* ── Form Styles ──────────────────────────────────────────── */
.form-section { padding: var(--section-pad); }
.form-wrap { max-width: 820px; margin: 0 auto; }
.form-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
.form-intro h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: .75rem;
}
.form-intro p { font-size: .95rem; color: #4a5a48; }

/* ── Prose / Rich text ────────────────────────────────────── */
.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 2rem 0 .75rem;
}
.prose h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 1.5rem 0 .5rem;
}
.prose p { margin-bottom: 1rem; font-size: .95rem; color: #4a5a48; }
.prose ul { margin: .75rem 0 1rem 1.25rem; }
.prose ul li { list-style: disc; margin-bottom: .35rem; font-size: .9rem; color: #4a5a48; }

/* ── Pricing Table ────────────────────────────────────────── */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.pricing-table th {
  background: var(--green-dark);
  color: var(--white);
  text-align: left;
  padding: .75rem 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pricing-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(30,54,26,.08);
  color: #4a5a48;
}
.pricing-table tr:nth-child(even) td { background: var(--cream); }
.pricing-table .price { font-family: var(--font-serif); font-size: 1.1rem; color: var(--green-mid); }

/* ── Section Headings ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: .5rem;
  line-height: 1.2;
}
.section-header h2 em { font-style: italic; font-weight: 300; }
.section-header p {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: #4a5a48;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Dark Section ─────────────────────────────────────────── */
.dark-section {
  background: var(--green-dark);
  color: var(--white);
  padding: var(--section-pad);
}
.dark-section .eyebrow { color: rgba(255,255,255,.55); }
.dark-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: .75rem;
}
.dark-section p {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
}

/* ── Testimonial ──────────────────────────────────────────── */
.testimonial-section {
  background: var(--cream);
  padding: 5rem 1.5rem;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--green-dark);
  max-width: 780px;
  margin: 0 auto 1.5rem;
  line-height: 1.55;
}
.testimonial-cite {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-muted);
}

/* ── Important Notice ─────────────────────────────────────── */
.notice {
  background: #fff8f0;
  border: 1px solid #fde8c0;
  border-left: 4px solid var(--orange);
  padding: 1.25rem 1.5rem;
  border-radius: 0 4px 4px 0;
  margin: 1.5rem 0;
}
.notice strong {
  font-family: var(--font-sans);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  display: block;
  margin-bottom: .4rem;
}
.notice p { font-size: .9rem; color: #5a4520; margin: 0; }

/* ── Contact Info Block ───────────────────────────────────── */
.contact-block {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: #4a5a48;
  margin-bottom: .5rem;
}
.contact-block a { color: var(--green-mid); text-decoration: underline; text-underline-offset: 2px; }

/* ── Shop Card ────────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid rgba(30,54,26,.12);
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-width: 860px;
  margin: 0 auto;
}
.product-card-img {
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  min-height: 380px;
}
/* product-card-img images sized by inline styles in HTML */
.product-card-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-price-tag {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--green-dark);
  font-weight: 400;
  margin: .5rem 0 1rem;
}
.product-includes {
  margin: 1.25rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.product-includes li {
  font-size: .875rem;
  color: #4a5a48;
  padding-left: 1.2rem;
  position: relative;
}
.product-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-size: .8rem;
}

/* ── Two-col layout ───────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.two-col-wide { grid-template-columns: 1.3fr 1fr; }

/* ── Portfolio Grid ───────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

/* ── ============ RESPONSIVE ================================ */
@media (max-width: 900px) {
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col, .two-col-wide { grid-template-columns: 1fr; gap: 2rem; }
  .product-card { grid-template-columns: 1fr; }
  .product-card-img { min-height: 200px; }
  .stat-bar .container { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stat-bar-3 .container { grid-template-columns: repeat(3, 1fr); }
  /* Portfolio grid: 2 columns on tablet */
  .portfolio-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 640px) {
  :root { --section-pad: 3.5rem 1.25rem; }
  .portfolio-grid { grid-template-columns: 1fr 1fr !important; }

  /* Navigation hamburger */
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid rgba(30,54,26,.1); padding: 1.5rem; gap: 1.25rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { width: 100%; text-align: center; margin-top: .5rem; }

  /* Grids */
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .stat-bar .container { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

  /* 3-stat (home): stay 3 cols but shrink font so it fits */
  .stat-bar-3 .container { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .stat-bar-3 .stat-num  { font-size: 1.5rem; }
  .stat-bar-3 .stat-label { font-size: .6rem; letter-spacing: .08em; }

  /* Stat separators: remove borders on mobile — grid gap handles spacing */
  .stat-item + .stat-item { border-left: none; padding-left: 0; }
  .stat-item:not(:last-child) { padding-right: 0; }

  /* Inline grids that need to collapse to 1 column */
  .stack-sm { grid-template-columns: 1fr !important; gap: 1.5rem !important; }

  /* Footer: brand full width, Pages + Contact side-by-side below */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }

  /* Typography */
  .testimonial-quote { font-size: 1.25rem; }
  .product-card-body { padding: 2rem 1.5rem; }
  .product-card-img { padding: 2rem; }

  /* Buttons: full-width on small screens */
  .hero-buttons { flex-direction: column; gap: .75rem; }
  .hero-buttons .btn { width: 100%; text-align: center; }
}

@media (max-width: 420px) {
  /* On very small phones, collapse the 3-stat to a single column */
  .stat-bar-3 .container { grid-template-columns: 1fr; gap: .75rem; }
  .stat-bar-3 .stat-num  { font-size: 2rem; }
  .stat-bar-3 .stat-label { font-size: .68rem; letter-spacing: .1em; }
  .stat-bar .container { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr !important; }
  .nav-logo-text { font-size: .95rem; }
}
