/* Inter loaded via <link> in HTML for faster render (no blocking @import) */

:root {
  --primary: #0f5a35;
  --primary-dark: #0a3d24;
  --primary-light: #92c957;
  --bg: #f8faf9;
  --text: #111827;
  --muted: #6b7280;
  --white: #ffffff;
  --border: rgba(15, 90, 53, 0.12);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px -5px rgba(15, 90, 53, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-lg: 16px;
  --tap-min: 44px;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(15, 90, 53, 0.15);
}

a:hover { text-decoration: underline; }

body.nav-open {
  overflow: hidden;
}

.container { width: min(1160px, 92%); margin: 0 auto; }

/* Header & Nav */
.topbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--primary);
  text-decoration: none;
}

.brand:hover { text-decoration: none; }

.brand-logo-img {
  height: 52px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

.brand span { display: none; }

.brand img.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo {
  width: 260px;
  max-width: 100%;
  height: auto;
  display: block;
}

nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

@media (min-width: 961px) {
  nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  nav > ul {
    justify-content: center;
  }

  .nav-toggle {
    display: none;
  }

  .nav-dropdown .dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
  }
}

nav > ul > li > a,
.nav-dropdown > .dropdown-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: var(--tap-min);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #153f29;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  touch-action: manipulation;
}

nav > ul > li > a:hover,
.nav-dropdown:hover > .dropdown-trigger {
  background: #e8f4e4;
  text-decoration: none;
}

.nav-dropdown { position: relative; }

.dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  margin: 0;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap-min);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  touch-action: manipulation;
}

.dropdown-menu li a:hover {
  background: #f0f7ed;
  color: var(--primary);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: var(--primary);
  color: white;
  border: none;
  min-height: var(--tap-min);
  min-width: var(--tap-min);
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  touch-action: manipulation;
}

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-color: var(--primary-dark);
  background-image:
    linear-gradient(105deg, rgba(10, 45, 28, 0.72) 0%, rgba(15, 90, 53, 0.55) 50%, rgba(10, 61, 36, 0.7) 100%),
    url('/assets/hero-bg.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 96px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(146, 201, 87, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  margin: 0 auto 16px;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
}

.hero p {
  margin: 0 auto 20px;
  max-width: 680px;
  font-size: 18px;
  opacity: 0.95;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-light);
  color: #12371f;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  min-height: var(--tap-min);
  padding: 13px 22px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  box-shadow: var(--shadow-sm);
  touch-action: manipulation;
}

.btn:hover {
  background: #a8d96a;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-block { width: 100%; }

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--white); }

.section h2 {
  margin: 0 auto 12px;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
  max-width: 900px;
}

.section h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 24px auto 10px;
  text-align: center;
}

.section > .container > p:not(.card p):not(.price-note p) {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #374151;
}

.lead { color: var(--muted); font-size: 17px; max-width: 720px; margin: 0 auto 32px; }

/* Site-wide centered page content */
.section > .container { text-align: center; }

.section > .container > h2,
.section > .container > h3,
.section > .container > p.lead {
  margin-left: auto;
  margin-right: auto;
}

.page-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-content p { margin-bottom: 18px; color: #374151; }

.page-content ul,
.page-content ol {
  margin: 0 auto 18px;
  padding-left: 20px;
  display: inline-block;
  text-align: left;
}

.page-content li { margin-bottom: 8px; color: #374151; }

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
  background: var(--white);
  border: 1px solid rgba(15, 90, 53, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
  color: var(--primary-dark);
  text-align: left;
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p,
.legal-content li {
  text-align: left;
  color: #374151;
  line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
  display: block;
}

.legal-content li { margin-bottom: 8px; }

.legal-updated {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  text-align: left;
}

@media (max-width: 640px) {
  .legal-content { padding: 24px 20px; }
}

.grid-2,
.grid-3,
.grid-4,
.sod-grid,
.blog-grid {
  text-align: center;
}

.card,
.sod-card-body,
.blog-card-body {
  text-align: center;
}

.card p,
.sod-card-body p {
  text-align: center;
}

.faq .container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq details { text-align: left; }

.price-note {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section > .container > .card[style*="max-width"] {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Modern Cards (Next.js style) */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }

/* Google-style reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(15, 90, 53, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.review-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(15, 90, 53, 0.2);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  border: 2px solid rgba(15, 90, 53, 0.12);
  background: #e8f0ea;
}

.review-meta h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
}

.review-meta p {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--muted);
  text-align: left;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #fbbc04;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.review-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  text-align: left;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: auto;
}

.review-source svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.card {
  background: var(--white);
  border: 1px solid rgba(15, 90, 53, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s, border-color 0.22s;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(15, 90, 53, 0.18), 0 8px 16px -8px rgba(0, 0, 0, 0.08);
  border-color: rgba(15, 90, 53, 0.22);
}

.card h2, .card h3 { margin-top: 0; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; text-align: center; }
.card p { color: var(--muted); margin-bottom: 0; font-size: 15px; line-height: 1.65; text-align: center; }

.card img,
.card-img,
.service-card-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
  height: 240px;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: #e8f0ea;
}

.card.service-card,
.grid-2 .card:has(.service-card-img) {
  padding: 0;
  overflow: hidden;
}

.grid-2 .card:has(.service-card-img) .service-card-img {
  margin-bottom: 0;
  border-radius: 12px 12px 0 0;
  height: 260px;
}

.grid-2 .card:has(.service-card-img) h2,
.grid-2 .card:has(.service-card-img) h3,
.grid-2 .card:has(.service-card-img) p,
.grid-2 .card:has(.service-card-img) .btn {
  margin-left: 20px;
  margin-right: 20px;
}

.grid-2 .card:has(.service-card-img) h2,
.grid-2 .card:has(.service-card-img) h3 {
  margin-top: 20px;
}

.grid-2 .card:has(.service-card-img) .btn {
  margin-bottom: 24px;
}

.service-feature-img,
.page-feature-img {
  width: 100%;
  max-height: 440px;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
  margin: 0 auto 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
  background: #e8f0ea;
}

.card .btn {
  margin-top: 12px;
}

/* SaaS-style blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border: 1px solid rgba(15, 90, 53, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -12px rgba(15, 90, 53, 0.2);
  text-decoration: none;
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  flex-wrap: wrap;
}

.blog-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto;
}

.blog-card-tag {
  background: linear-gradient(135deg, #e8f4e4, #f0f9eb);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card h2 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
}

.blog-card p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.blog-card:hover .blog-card-link { text-decoration: none; }

/* Article page card */
.article-card {
  background: var(--white);
  border: 1px solid rgba(15, 90, 53, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.article-card h3 {
  text-align: center;
  margin-top: 28px;
}

.article-card ul,
.article-card ol {
  display: inline-block;
  text-align: left;
  margin: 0 auto 18px;
  padding-left: 20px;
}

.article-card p {
  text-align: center;
  color: #374151;
  margin-bottom: 18px;
  line-height: 1.75;
}

.article-card h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.article-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e8f4e4 0%, #f0f9eb 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
  border: 1px solid rgba(15, 90, 53, 0.1);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* Sod product cards */
.sod-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sod-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.sod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sod-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.sod-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sod-card-body h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
}

.sod-card-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  flex: 1;
}

.sod-badge {
  display: inline-block;
  background: #e8f4e4;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* Content page layout */

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #176f42 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  margin: 40px auto 0;
  max-width: 900px;
}

.cta-banner h2 { color: white; margin-bottom: 12px; }
.cta-banner p { opacity: 0.9; margin-bottom: 24px; }
.cta-banner .btn { background: var(--primary-light); }

.price-note {
  background: linear-gradient(135deg, #e8f4e4 0%, #f0f9eb 100%);
  border: 1px solid rgba(146, 201, 87, 0.4);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px auto;
}

/* FAQ */
.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  min-height: var(--tap-min);
  display: flex;
  align-items: center;
  touch-action: manipulation;
}

.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { color: var(--primary); margin-bottom: 10px; }

/* Footer */
.footer {
  background: var(--primary-dark);
  color: #c8e6c9;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer h4 { margin: 0 0 14px; color: #fff; font-size: 15px; font-weight: 700; }
.footer a { color: #a5d6a7; display: block; margin-bottom: 8px; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer p { font-size: 14px; line-height: 1.7; opacity: 0.85; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: background 0.15s, transform 0.15s, color 0.15s;
  touch-action: manipulation;
}

.social-icon:hover {
  background: var(--primary-light);
  color: #12371f;
  text-decoration: none;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.footer a.social-icon {
  display: inline-flex;
  margin-bottom: 0;
  font-size: inherit;
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  text-align: center;
}

/* Service area grid on index page */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.city-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap-min);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.15s;
  text-decoration: none;
  color: var(--primary);
  touch-action: manipulation;
}

.city-link:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Mobile & tap-friendly */
@media (max-width: 960px) {
  .container { width: min(1160px, 94%); }

  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .nav-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
  }

  .brand-logo-img { height: 44px; }

  nav { width: 100%; order: 3; }

  nav > ul {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 8px 0 12px;
    gap: 4px;
    text-align: left;
  }

  nav > ul.open { display: flex; }

  nav > ul > li > a,
  .nav-dropdown > .dropdown-trigger {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
    font-size: 16px;
  }

  .dropdown-menu li a {
    justify-content: flex-start;
    font-size: 15px;
    padding: 14px 16px 14px 28px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 4px 0 8px;
    display: none;
    width: 100%;
  }

  .nav-dropdown.open .dropdown-menu { display: block; }

  .section { padding: 48px 0; }

  .grid-2, .grid-3, .grid-4, .sod-grid, .blog-grid, .split, .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .hero {
    padding: 56px 0 48px;
    min-height: 380px;
  }

  .hero h1 { font-size: clamp(28px, 8vw, 40px); }

  .hero p { font-size: 16px; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .article-card { padding: 28px 20px; }

  .btn { width: 100%; max-width: 100%; }

  .section > .container > .btn,
  .card .btn {
    width: auto;
    max-width: 100%;
  }

  .footer-grid { text-align: center; }

  .footer-social { justify-content: center; }

  .footer a { padding: 6px 0; min-height: var(--tap-min); display: flex; align-items: center; justify-content: center; }

  .footer-logo { margin: 0 auto 12px; }
}

@media (max-width: 560px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  align-items: start;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  text-align: left;
}

.contact-card h2 {
  text-align: center;
  margin-top: 0;
}

.contact-card p,
.contact-card li {
  text-align: left;
  color: #374151;
}

.contact-list {
  margin: 0 0 16px;
  padding-left: 20px;
}

.contact-list li {
  margin-bottom: 8px;
  color: #374151;
}

.contact-form-card {
  text-align: left;
  padding: 32px;
}

.contact-form-card h2 {
  text-align: center;
  margin-top: 0;
}

.contact-form-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: var(--tap-min);
  padding: 12px 14px;
  border: 1px solid rgba(15, 90, 53, 0.18);
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 90, 53, 0.12);
}

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 8px 0 0;
  line-height: 1.5;
}

.form-alert {
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 15px;
  text-align: center;
}

.form-alert-success {
  background: linear-gradient(135deg, #e8f4e4 0%, #f0f9eb 100%);
  border: 1px solid rgba(146, 201, 87, 0.5);
  color: #153f29;
}

@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 24px 20px;
  }
}

.video-embed {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  border-radius: var(--radius, 12px);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}