/* ============================================================
   The Lawn Edge Company — Saffron Design System
   ============================================================ */
@import url('../saffron.css');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: 1em; }
a { text-decoration: none; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 96px 0; }
.section--alt { background: var(--cream-100); }
.section--dark {
  background: var(--charcoal-800);
  color: var(--cream-50);
}
.section--dark h2, .section--dark h3 { color: var(--cream-50); }
.text-center { text-align: center; }

/* ── Fifi mascot grid ── */
.fifi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.fifi-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.fifi-card:hover {
  transform: translateY(-5px) rotate(0.4deg);
  box-shadow: var(--shadow-md);
}
.fifi-card:nth-child(even):hover { transform: translateY(-5px) rotate(-0.4deg); }
.fifi-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-100);
}
.fifi-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 400ms var(--ease);
}
.fifi-card:hover .fifi-img-wrap img { transform: scale(1.04); }
.fifi-card-body {
  padding: 20px 22px 24px;
}
.fifi-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-900);
  background: var(--saffron-500);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  margin-bottom: 10px;
}
.fifi-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  color: var(--ink-900);
  margin: 0 0 8px;
  line-height: 1.2;
}
.fifi-card-body p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-700);
  margin: 0;
}
.fifi-card-body p em {
  color: var(--ink-500);
  font-style: italic;
}
@media (max-width: 860px) {
  .fifi-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 520px) {
  .fifi-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Hide legacy divider bars */
.divider, .divider-left { display: none; }

/* ── Sticky pill nav ── */
#site-nav {
  position: fixed;
  top: 16px; left: 0; right: 0;
  z-index: 1000;
  padding: 0 16px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 8px 8px 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  gap: 12px;
}
.nav-logo svg { display: none; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-900);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-logo:hover { color: var(--ink-900); text-decoration: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links > li > a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-700);
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: background var(--dur-micro) var(--ease), color var(--dur-micro) var(--ease);
  display: block;
}
.nav-links > li > a:hover { background: var(--cream-100); color: var(--ink-900); text-decoration: none; }

/* Shop Now pill in nav */
.nav-links .btn-primary,
.nav-links li:last-child a.btn {
  background: var(--ink-900) !important;
  color: var(--cream-50) !important;
  border-radius: 999px !important;
  padding: 10px 20px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  min-height: unset !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  border: none !important;
  display: inline-flex;
  align-items: center;
}
.nav-links .btn-primary:hover,
.nav-links li:last-child a.btn:hover {
  background: var(--ink-700) !important;
  color: var(--cream-50) !important;
  text-decoration: none !important;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; opacity: 0.6; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: 8px;
  list-style: none;
  z-index: 10;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block !important;
  padding: 10px 16px !important;
  border-radius: var(--radius-sm) !important;
  color: var(--ink-700) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  background: transparent !important;
}
.nav-dropdown-menu li a:hover { background: var(--cream-100) !important; color: var(--ink-900) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  background: var(--ink-900);
  border: none;
  border-radius: 14px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--cream-50);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-base) var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27,34,53,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--cream-50);
  text-decoration: none;
  letter-spacing: -0.01em;
}
#mobile-nav a:hover { color: var(--saffron-500); text-decoration: none; }
#mobile-nav .mobile-shop-cta {
  background: var(--saffron-500);
  color: var(--ink-900) !important;
  border-radius: 999px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
}
#mobile-nav .mobile-shop-cta:hover { background: var(--saffron-600); color: var(--ink-900) !important; }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--cream-50);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-micro) var(--ease), color var(--dur-micro) var(--ease);
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--ink-900); color: var(--cream-50); }
.btn-primary:hover { background: var(--ink-700); color: var(--cream-50); }
.btn-outline { background: transparent; color: var(--ink-900); border: 1px solid var(--border-strong); }
.btn-outline:hover { background: var(--cream-100); color: var(--ink-900); }
.btn-white { background: var(--white); color: var(--ink-900); }
.btn-white:hover { background: var(--cream-100); color: var(--ink-900); }
.btn-hero-yellow {
  background: var(--saffron-500);
  color: var(--ink-900);
  border-radius: 999px;
  box-shadow: var(--shadow-yellow);
}
.btn-hero-yellow:hover { background: var(--saffron-600); }
.btn-hero-ghost {
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}
.btn-hero-ghost:hover { background: var(--cream-100); }
.btn-pill { border-radius: 999px !important; }

/* Sticky Shop Now */
#sticky-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  display: none;
  animation: slideUp 0.3s ease;
  background: var(--ink-900);
  color: var(--cream-50);
  border-radius: 999px;
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ── Hero ── */
#hero {
  padding: 120px 0 96px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,210,63,.28), transparent 70%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 999px;
  padding: 6px 16px 6px 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint-600);
  animation: mintPulse 2s infinite;
  flex-shrink: 0;
}
@keyframes mintPulse {
  0%   { box-shadow: 0 0 0 0 rgba(90,148,102,.6); }
  70%  { box-shadow: 0 0 0 12px rgba(90,148,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(90,148,102,0); }
}
#hero h1 {
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 1.02;
  font-weight: 500;
  max-width: 900px;
  margin: 0 auto 24px;
}
.swatch {
  background: var(--saffron-500);
  padding: 0 14px;
  border-radius: 12px;
  display: inline-block;
  transform: rotate(-1.5deg);
}
.hero-sub {
  font-size: 20px;
  color: var(--ink-700);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}
.hero-cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 24px;
  font-size: 15px;
  color: var(--ink-700);
  align-items: center;
}
.hero-trust-sep { color: var(--ink-300); }

/* ── Section heads ── */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-700);
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(36px, 4.4vw, 56px); margin-bottom: 16px; }
.section-head .sub { font-size: 19px; color: var(--ink-700); margin: 0; }

/* ── Country cards ── */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.country-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--ink-900);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-micro) var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.country-card::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 110px; height: 110px;
  background: var(--saffron-300);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
  pointer-events: none;
}
.country-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); text-decoration: none; color: var(--ink-900); }
.country-card:hover::after { opacity: 0.5; }
.country-card .flag { font-size: 2.5rem; line-height: 1; }
.country-card .name { font-family: var(--font-sans); font-weight: 600; font-size: 16px; color: var(--ink-900); text-transform: none; letter-spacing: 0; }
.country-card .visit { font-size: 14px; color: var(--ink-700); font-family: var(--font-sans); font-weight: 500; }
.country-card[data-featured="true"] { background: var(--ink-900); border-color: var(--ink-900); color: var(--cream-50); }
.country-card[data-featured="true"] .name,
.country-card[data-featured="true"] .visit { color: var(--cream-100); }
.country-card[data-featured="true"]:hover { border-color: var(--ink-700); }

/* Search bar */
.search-bar {
  display: flex;
  max-width: 500px;
  margin: 28px auto 0;
  background: var(--white);
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 6px 6px 6px 20px;
  align-items: center;
  gap: 8px;
}
.search-bar input {
  flex: 1;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 15px;
  font-family: var(--font-sans);
  outline: none;
  color: var(--ink-900);
  min-width: 0;
}
.search-bar input::placeholder { color: var(--ink-500); }
.search-bar button {
  height: 40px;
  padding: 0 20px;
  background: var(--ink-900);
  color: var(--cream-50);
  border: none;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--dur-micro) var(--ease);
}
.search-bar button:hover { background: var(--ink-700); }

/* ── Benefits ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.benefit-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.benefit-icon { width: 48px; height: 48px; margin: 0 auto 20px; color: var(--ink-700); }
.benefit-card h3 { font-size: clamp(20px, 2vw, 24px); color: var(--ink-900); }

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 3px solid var(--saffron-500);
}
.stars { color: var(--saffron-600); font-size: 1.1rem; margin-bottom: 12px; }
.reviewer { font-weight: 600; color: var(--ink-900); margin-top: 16px; font-family: var(--font-sans); font-size: 15px; }
.reviewer-loc { color: var(--ink-500); font-size: 14px; font-weight: 400; display: block; }

/* ── FAQ ── */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  transition: border-color var(--dur-micro) var(--ease);
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item.open { border-color: var(--ink-900); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16.5px;
  color: var(--ink-900);
  line-height: 1.4;
}
.faq-question h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--ink-900);
  margin: 0;
  flex: 1;
  text-wrap: balance;
}
.faq-icon,
.faq-question > .icon {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-100);
  border-radius: 50%;
  color: var(--ink-700);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease), background var(--dur-micro) var(--ease), color var(--dur-micro) var(--ease);
}
.faq-item.open .faq-icon,
.faq-item.open .faq-question > .icon {
  transform: rotate(45deg);
  background: var(--saffron-500);
  color: var(--ink-900);
}
.faq-answer {
  display: none;
  padding: 4px 20px 20px;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.6;
}
.faq-answer p { margin-bottom: 0; color: var(--ink-700); }
.faq-answer.open { display: block; }

/* ── Buying Guide ── */
.buying-guide {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 72px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  max-width: 980px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
}
.buying-guide h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin: 1.6em 0 0.5em;
  padding-top: 0.6em;
  border-top: 1px solid var(--border);
  color: var(--ink-900);
}
.buying-guide > h2:first-of-type {
  font-size: clamp(34px, 4vw, 48px);
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.buying-guide > h2:first-of-type + p { font-size: 20px; line-height: 1.55; }
.buying-guide h3 { font-size: clamp(22px, 2vw, 26px); font-weight: 500; color: var(--ink-900); margin: 1.4em 0 0.5em; }
.buying-guide h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-700);
  margin: 1.2em 0 0.4em;
}
.buying-guide p { color: var(--ink-700); }
.buying-guide ul { list-style: none; padding: 0; display: grid; gap: 8px; margin-bottom: 1em; }
.buying-guide ul li {
  position: relative;
  padding: 12px 16px 12px 44px;
  background: var(--cream-50);
  border-left: 3px solid var(--saffron-500);
  border-radius: 6px;
}
.buying-guide ul li::before {
  content: "";
  position: absolute; left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--saffron-500);
}
.buying-guide a { color: var(--ink-900); border-bottom: 2px solid var(--saffron-500); text-decoration: none; }
.buying-guide a:hover { background: rgba(255,210,63,0.15); }

/* ── Blog cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-family: var(--font-mono); font-size: 13px; color: var(--ink-500); margin-bottom: 10px; }
.blog-card h3 { font-size: 18px; line-height: 1.4; margin-bottom: 12px; color: var(--ink-900); }
.blog-card h3 a { color: var(--ink-900); text-decoration: none; }
.blog-card h3 a:hover { color: var(--ink-700); }
.blog-card p { font-size: 15px; flex: 1; color: var(--ink-700); }
.blog-card-footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.read-more { font-family: var(--font-sans); font-size: 14px; font-weight: 600; color: var(--ink-700); text-decoration: none; }
.read-more:hover { color: var(--ink-900); }

/* ── Post pages (articles & blog index) ── */
.post-header {
  background: var(--cream-50);
  background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,210,63,.22), transparent 70%);
  padding: 100px 0 56px;
  color: var(--ink-900);
}
.post-header h1,
.post-header h2 { color: var(--ink-900) !important; }
.post-meta-bar { display: flex; gap: 20px; align-items: center; margin-top: 16px; flex-wrap: wrap; }
.post-meta-bar span { font-family: var(--font-mono); font-size: 14px; color: var(--ink-500) !important; }
.post-body { max-width: 760px; margin: 0 auto; padding: 56px 32px; }
.post-body h2 { font-size: clamp(24px, 2.8vw, 36px); color: var(--ink-900); margin: 1.6em 0 0.6em; }
.post-body h3 { font-size: clamp(20px, 2vw, 26px); color: var(--ink-900); margin: 1.4em 0 0.5em; }
.post-body h4 { font-family: var(--font-sans); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-700); margin: 1.2em 0 0.4em; }
.post-body p { color: var(--ink-700); line-height: 1.7; }
.post-body ul, .post-body ol { padding-left: 1.6em; margin-bottom: 1em; color: var(--ink-700); }
.post-body li { margin-bottom: 0.4em; }
.post-body a { color: var(--ink-900); border-bottom: 2px solid var(--saffron-500); text-decoration: none; }
.post-body a:hover { background: rgba(255,210,63,0.15); }
.post-body table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; font-size: 15px; }
.post-body th, .post-body td { padding: 10px 14px; text-align: left; border: 1px solid var(--border); }
.post-body th { background: var(--cream-100); font-weight: 600; color: var(--ink-900); }

/* Breadcrumb */
.breadcrumb { font-size: 14px; color: var(--ink-500); font-family: var(--font-sans); padding: 14px 0; }
.breadcrumb a { color: var(--ink-700); border-bottom: 1px solid var(--saffron-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink-900); }

/* ── Footer ── */
footer {
  background: var(--charcoal-800);
  color: rgba(250,246,236,0.85);
  padding: 80px 0 40px;
}
footer h3 {
  color: var(--saffron-500) !important;
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  margin-bottom: 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
footer a { color: rgba(250,246,236,0.85); font-size: 15px; text-decoration: none; }
footer a:hover { color: var(--cream-50); text-decoration: none; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer p { color: rgba(250,246,236,0.70); font-size: 15px; line-height: 1.6; margin-bottom: 0.5em; }
footer strong { color: rgba(250,246,236,0.90); }
.footer-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--saffron-500) !important;
  margin-top: 12px;
}
.footer-brand-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--saffron-500);
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: rgba(250,246,236,0.55);
}

/* ── Responsive ── */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-inner { padding: 8px 8px 8px 18px; gap: 8px; }
  .nav-logo { font-size: 18px; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  #hero { padding: 80px 0 64px; }
  .country-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .container { padding: 0 20px; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-trust { font-size: 14px; }
  .search-bar { padding: 4px 4px 4px 16px; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .nav-logo { font-size: 16px; }
}
