/* ===================================================================
   Tennessee Bounce House — Modern Design System 2026
   =================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Custom Properties --- */
:root {
  /* Brand colors */
  --blue:        #0066aa;
  --blue-dark:   #004d80;
  --blue-light:  #31b6e6;
  --red:         #ee151a;
  --red-dark:    #c91015;
  --orange:      #fc7020;

  /* Neutrals */
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1e293b;
  --gray-900:    #0f172a;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --max-width: 1200px;
  --header-height: 160px;

  /* Shadows */
  --shadow-sm:  0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg:  0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl:  0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 300ms;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}
h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl);  }

p { margin-bottom: var(--space-4); }
p:last-child { margin-bottom: 0; }

strong { color: var(--gray-800); }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* --- Section spacing --- */
.section {
  padding: var(--space-8) 0 var(--space-16);
}
.section--gray {
  background: var(--gray-50);
}
.section--blue {
  background: var(--blue);
  color: var(--white);
}
.section--blue h2,
.section--blue h3,
.section--blue strong {
  color: var(--white);
}
.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section__header h2 {
  margin-bottom: var(--space-4);
}
.section__header p {
  font-size: var(--text-lg);
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
}
.section--blue .section__header p {
  color: rgba(255,255,255,0.8);
}

/* ===================================================================
   HEADER / NAVIGATION
   =================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.header__logo img {
  height: 150px;
  width: auto;
  transition: height var(--duration) var(--ease), filter var(--duration) var(--ease);
}
.site-header.scrolled .header__logo img {
  height: 90px;
}
/* On transparent header, logo can use a brightness filter if needed */

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.header__nav a {
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
  color: var(--white);
  white-space: nowrap;
}
.site-header.scrolled .header__nav a {
  color: var(--gray-700);
}
.header__nav a:hover {
  color: var(--blue-light);
  background: rgba(255,255,255,0.1);
}
.site-header.scrolled .header__nav a:hover {
  color: var(--blue);
  background: var(--gray-100);
}

.header__cta {
  font-size: var(--text-sm) !important;
  font-weight: 700 !important;
  background: var(--blue-light) !important;
  color: var(--white) !important;
  padding: var(--space-2) var(--space-5) !important;
  border-radius: var(--radius-full) !important;
  transition: background var(--duration) var(--ease), transform 150ms var(--ease) !important;
}
.header__cta:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: color var(--duration) var(--ease);
}
.site-header.scrolled .menu-toggle {
  color: var(--gray-700);
}
.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform var(--duration) var(--ease);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
}
.mobile-drawer.open {
  transform: translateX(0);
}
.mobile-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
}
.mobile-drawer__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--gray-500);
}
.mobile-drawer__close:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}
.mobile-drawer nav a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-1);
  transition: background var(--duration) var(--ease);
}
.mobile-drawer nav a:hover {
  background: var(--gray-100);
  color: var(--blue);
}
.mobile-drawer__cta {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: var(--space-4);
  background: var(--blue-light);
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-lg);
  border-radius: var(--radius-md);
  transition: background var(--duration) var(--ease);
}
.mobile-drawer__cta:hover {
  background: var(--orange);
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + var(--space-10)) var(--space-6) var(--space-12);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 77, 128, 0.85) 0%,
    rgba(0, 102, 170, 0.7) 50%,
    rgba(49, 182, 230, 0.6) 100%
  );
  z-index: -1;
}
.hero__content {
  max-width: 800px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-6);
  border: 1px solid rgba(255,255,255,0.2);
}
.hero__title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  color: var(--white);
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.hero__subtitle {
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-8);
  font-weight: 400;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  line-height: 1.5;
}
.btn--primary {
  background: var(--blue-light);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(49, 182, 230, 0.35);
}
.btn--primary:hover {
  background: var(--orange);
  box-shadow: 0 4px 14px rgba(252, 112, 32, 0.35);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--blue);
}
.btn--white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--large {
  font-size: var(--text-lg);
  padding: var(--space-4) var(--space-10);
}

.btn--red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(238, 21, 26, 0.3);
}
.btn--red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

/* ===================================================================
   TRUST BAR
   =================================================================== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-6) 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.trust-item__icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.trust-item__icon svg {
  width: 24px;
  height: 24px;
}
.trust-item__label {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================================================================
   SERVICE CARDS
   =================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.card:hover .card__image img {
  transform: scale(1.05);
}
.card__body {
  padding: var(--space-6);
}
.card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--blue);
}
.card__text {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.6;
}

/* Clickable card link */
a.card--link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.card__cta {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--blue-light);
  transition: color var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.card--link:hover .card__cta {
  color: var(--orange);
  transform: translateX(4px);
}

/* ===================================================================
   EVENT TYPE CARDS
   =================================================================== */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}
.event-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease);
  color: inherit;
}
.event-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.event-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius-full);
  color: var(--blue);
  margin-bottom: var(--space-4);
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}
.event-card:hover .event-card__icon {
  background: var(--blue);
  color: var(--white);
}
.event-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--gray-900);
}
.event-card p {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===================================================================
   CITY / AREA GRID
   =================================================================== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-3);
}
.area-grid a {
  display: block;
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--blue);
  border: 1px solid var(--gray-200);
  transition: all var(--duration) var(--ease);
  text-align: center;
}
.area-grid a:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: var(--space-16) 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}
.cta-banner p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .cta-phone {
  display: block;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  margin-top: var(--space-6);
  transition: color var(--duration) var(--ease);
}
.cta-banner .cta-phone:hover {
  color: var(--blue-light);
}

/* ===================================================================
   REVIEWS
   =================================================================== */
.reviews__wrapper {
  display: flex;
  gap: var(--space-8);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.reviews__text {
  max-width: 500px;
}
.reviews__stars {
  color: #fbbf24;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}
.reviews__rating {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gray-900);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: var(--space-16) 0 var(--space-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer__brand p {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  line-height: 1.8;
}
.footer__brand img {
  height: 48px;
  width: auto;
}
.footer__heading {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: var(--space-4);
}
.footer__links a {
  display: block;
  padding: var(--space-1) 0;
  font-size: var(--text-sm);
  color: var(--gray-400);
  transition: color var(--duration) var(--ease);
}
.footer__links a:hover {
  color: var(--blue-light);
}
.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-800);
  border-radius: var(--radius-full);
  color: var(--gray-400);
  transition: all var(--duration) var(--ease);
}
.footer__social a:hover {
  background: var(--blue);
  color: var(--white);
}
.footer__bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer__bottom a {
  color: var(--gray-400);
  transition: color var(--duration) var(--ease);
}
.footer__bottom a:hover {
  color: var(--blue-light);
}

/* ===================================================================
   FAQ ACCORDION
   =================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration) var(--ease);
}
.faq-item__question:hover {
  color: var(--blue);
}
.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform var(--duration) var(--ease);
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease), padding 400ms var(--ease);
  padding: 0 0 0 0;
}
.faq-item.open .faq-item__answer {
  max-height: 500px;
  padding: 0 0 var(--space-5) 0;
}
.faq-item__answer p {
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===================================================================
   MOBILE STICKY CTA BAR
   =================================================================== */
.sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    padding: var(--space-3) var(--space-4);
    gap: var(--space-3);
  }
  .sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: var(--text-sm);
    text-align: center;
    white-space: nowrap;
  }
  .sticky-cta__call {
    background: var(--blue);
    color: var(--white);
  }
  .sticky-cta__book {
    background: var(--blue-light);
    color: var(--white);
  }
  /* Add padding to body so footer isn't hidden behind sticky bar */
  body { padding-bottom: 72px; }
}

/* ===================================================================
   BREADCRUMBS
   =================================================================== */
.breadcrumbs {
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
  color: var(--gray-400);
}
.breadcrumbs a {
  color: var(--gray-500);
  transition: color var(--duration) var(--ease);
}
.breadcrumbs a:hover {
  color: var(--blue);
}
.breadcrumbs span {
  margin: 0 var(--space-2);
}

/* ===================================================================
   BLOG CARDS
   =================================================================== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.blog-card__body {
  padding: var(--space-6);
}
.blog-card__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
  background: rgba(0,102,170,0.1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}
.blog-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--gray-900);
}
.blog-card p {
  font-size: var(--text-sm);
  color: var(--gray-500);
}
a.blog-card {
  display: block;
  color: inherit;
}
a.blog-card:hover h3 {
  color: var(--blue);
}

/* ===================================================================
   REVEAL ANIMATIONS
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   LOCATION PAGE — article content
   =================================================================== */
.page-content {
  padding: calc(var(--header-height) + var(--space-8)) 0 var(--space-16);
}
.page-content h1 {
  color: var(--blue);
  margin-bottom: var(--space-4);
}
.page-content h2 {
  color: var(--blue);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}
.page-content p {
  max-width: 75ch;
}
.page-content ul {
  margin: var(--space-4) 0;
  padding-left: var(--space-6);
  list-style: disc;
}
.page-content ul li {
  margin-bottom: var(--space-2);
  list-style: disc;
}
.page-content img {
  border-radius: var(--radius-md);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .menu-toggle  { display: flex; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --text-4xl: 1.875rem;
    --text-5xl: 2.25rem;
  }


  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .reviews__wrapper {
    flex-direction: column;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: var(--space-12) 0;
  }
}
