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

    :root {
      --brown: #8B4513;
      --cream: #FDF5E6;
      --gold: #C8922A;
      --dark: #1a1008;
      --brown-light: #a0522d;
      --cream-dark: #f0e6cc;
    }

    body {
      font-family: 'Lato', sans-serif;
      background: var(--cream);
      color: var(--dark);
      line-height: 1.7;
    }

    h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.25; }

    a { color: var(--brown); text-decoration: none; }
    a:hover { color: var(--gold); }

    /* NAV */
    nav {
      background: var(--dark);
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }
    .nav-brand {
      font-family: 'Playfair Display', serif;
      color: var(--gold);
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: 0.5px;
    }
    .nav-links { display: flex; gap: 24px; }
    .nav-links a {
      color: var(--cream);
      font-size: 0.9rem;
      font-weight: 400;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    .nav-links a:hover { color: var(--gold); }

    /* HERO */
    .hero {
      background: linear-gradient(135deg, var(--dark) 0%, #3d1f0a 60%, #5c2d0e 100%);
      padding: 80px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(200,146,42,0.04) 10px,
        rgba(200,146,42,0.04) 20px
      );
    }
    .hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
    .hero-eyebrow {
      display: inline-block;
      background: var(--gold);
      color: var(--dark);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 6px 16px;
      margin-bottom: 20px;
    }
    .hero h1 {
      font-size: 3rem;
      color: var(--cream);
      margin-bottom: 20px;
    }
    .hero p {
      font-size: 1.2rem;
      color: rgba(253,245,230,0.8);
      max-width: 600px;
      margin: 0 auto 32px;
    }
    .btn {
      display: inline-block;
      background: var(--gold);
      color: var(--dark);
      padding: 14px 32px;
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: background 0.2s;
    }
    .btn:hover { background: var(--brown-light); color: var(--cream); }
    .btn-outline {
      background: transparent;
      border: 2px solid var(--gold);
      color: var(--gold);
    }
    .btn-outline:hover { background: var(--gold); color: var(--dark); }

    /* SECTIONS */
    section { padding: 64px 24px; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-title {
      font-size: 2rem;
      color: var(--brown);
      margin-bottom: 8px;
    }
    .section-subtitle {
      color: #5a4030;
      margin-bottom: 40px;
      font-size: 1.05rem;
    }
    .divider {
      width: 60px;
      height: 3px;
      background: var(--gold);
      margin: 12px 0 32px;
    }

    /* CATEGORIES */
    .categories { background: var(--cream-dark); }
    .cat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 20px;
    }
    @media (max-width: 900px) {
      .cat-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .cat-grid { grid-template-columns: 1fr; }
    }
    .cat-card {
      background: var(--cream);
      border: 2px solid transparent;
      padding: 32px 24px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: border-color 0.2s;
      cursor: pointer;
    }
    .cat-card:hover { border-color: var(--gold); }
    .cat-icon { font-size: 2.5rem; margin-bottom: 12px; }
    .cat-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--brown);
      margin-bottom: 8px;
    }
    .cat-card p { font-size: 0.9rem; color: #6b4c35; margin-bottom: 16px; flex-grow: 1; }
    .cat-card a { margin-top: auto; }

    /* STAMPEDE SECTION */
    .stampede {
      background: linear-gradient(135deg, var(--brown) 0%, #6b2f0a 100%);
      color: var(--cream);
    }
    .stampede .section-title { color: var(--gold); }
    .stampede .section-subtitle { color: rgba(253,245,230,0.85); }
    .stampede .divider { background: var(--gold); }
    .stampede-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
    }
    @media (max-width: 900px) {
      .stampede-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      .stampede-grid { grid-template-columns: 1fr; }
    }
    .pick-card {
      background: rgba(253,245,230,0.1);
      border: 1px solid rgba(200,146,42,0.4);
      padding: 28px 22px;
      display: flex;
      flex-direction: column;
    }
    .pick-card h3 {
      font-family: 'Playfair Display', serif;
      color: var(--gold);
      font-size: 1.2rem;
      margin-bottom: 10px;
    }
    .pick-card p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 18px; flex-grow: 1; }
    .pick-card a { margin-top: auto; }
    .urgency-badge {
      display: inline-block;
      background: var(--gold);
      color: var(--dark);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      padding: 4px 10px;
      margin-bottom: 16px;
    }

    /* WHERE TO BUY */
    .where-to-buy { background: var(--cream); }
    .retailer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    @media (max-width: 680px) {
      .retailer-grid { grid-template-columns: 1fr; }
    }
    .retailer-card {
      background: var(--cream-dark);
      border-left: 4px solid var(--gold);
      padding: 24px;
      display: flex;
      flex-direction: column;
    }
    .retailer-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--brown);
      margin-bottom: 8px;
    }
    .retailer-card p { font-size: 0.9rem; color: #5a3f28; margin-bottom: 16px; flex-grow: 1; }
    .retailer-card a { margin-top: auto; }

    /* GUIDE CTA */
    .guide-cta {
      background: var(--cream-dark);
      border-top: 4px solid var(--gold);
    }
    .guide-cta-inner {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    @media (max-width: 680px) {
      .guide-cta-inner { flex-direction: column; gap: 20px; }
    }
    .guide-cta-text { flex: 1; }
    .guide-cta-text h2 { color: var(--brown); margin-bottom: 12px; font-size: 1.8rem; }
    .guide-cta-text p { color: #5a3f28; margin-bottom: 20px; }
    .guide-topics { list-style: none; padding: 0; margin-bottom: 24px; }
    .guide-topics li {
      padding: 6px 0;
      padding-left: 20px;
      position: relative;
      color: #4a3020;
      font-size: 0.95rem;
    }
    .guide-topics li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: 700;
    }

    /* FOOTER */
    footer {
      background: var(--dark);
      color: rgba(253,245,230,0.7);
      padding: 40px 24px;
    }
    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      color: var(--gold);
      font-size: 1.3rem;
      font-weight: 700;
    }
    .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
    .footer-links a { color: rgba(253,245,230,0.7); font-size: 0.9rem; }
    .footer-links a:hover { color: var(--gold); }
    .footer-disclosure {
      font-size: 0.8rem;
      color: rgba(253,245,230,0.5);
      border-top: 1px solid rgba(253,245,230,0.1);
      padding-top: 16px;
    }

    @media (max-width: 680px) {
      .hero h1 { font-size: 2rem; }
      .hero p { font-size: 1rem; }
      nav { padding: 0 16px; }
      .nav-links { gap: 12px; }
    }

/* ===================== */
/* HAMBURGER NAV (MOBILE) */
/* ===================== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream, #FDF5E6);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

@media (max-width: 768px) {
  /* Nav collapse */
  .nav-toggle { display: block; }
  .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark, #1a1008);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 99;
    list-style: none;
  }
  .nav-links.open {
    display: flex !important;
  }
  nav { position: relative; }

  /* Hero responsive */
  .hero { min-height: 280px; padding: 3rem 1.2rem; }
  .hero h1 { font-size: 1.75rem !important; }
  .page-hero, .page-header { padding: 2.5rem 1rem 2rem; }

  /* Content padding */
  section { padding: 3rem 1rem; }
  .container { padding: 0 4px; }
  .wrap { padding: 0 16px; margin: 24px auto; }
  .main-content, .content, article { padding-left: 16px; padding-right: 16px; }

  /* ALL grids single column */
  .reasons-grid, .cards-grid, .considerations-grid,
  .cost-grid, .comparison-grid, .info-grid,
  .community-grid, .features-grid, .benefit-grid,
  .stat-grid, .town-grid, .explore-grid,
  .trip-grid, .season-grid, .resource-grid,
  .verdict-columns, .bestfor-grid, .airport-grid,
  .beach-grid, .region-cards, .month-grid,
  .compare-grid, .pros-cons, .place-grid,
  .region-grid, .shops-grid, .calendar-grid,
  .neighbourhood-grid, .info-grid, .card-grid,
  .product-grid, .feature-grid, .category-grid,
  .article-grid, .boot-grid, .why-grid,
  .services-grid, .etf-grid, .mat-card-grid,
  .benefit-cards, .furniture-grid, .gallery-grid,
  .article-wrap, .content-wrap, .two-col,
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr !important;
  }

  /* Flex wrapping */
  .hero-ctas, .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Tables scroll horizontally */
  table, .comparison-table-wrap, .table-wrap, .price-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Images responsive */
  img { max-width: 100%; height: auto; }

  /* Footer single column */
  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Text sizing */
  body { font-size: 16px; }
  h1 { font-size: 1.75rem !important; }
  h2 { font-size: 1.35rem !important; }
  h3 { font-size: 1.15rem !important; }

  /* Sidebar layouts */
  .article-wrap, .content-wrap { display: block !important; }
  .sidebar { 
    position: static !important;
    width: 100% !important; 
    margin-top: 2rem; 
  }
  .main-content { width: 100% !important; }

  /* Cards */
  .card-header { height: auto; min-height: 80px; }

  /* Callouts */
  .tip-box, .callout, .warning, .info-box, .warning-box, .warning-card {
    padding: 12px 14px;
    margin: 16px 0;
  }

  /* Prevent horizontal overflow */
  body { overflow-x: hidden; }
  pre, code { overflow-x: auto; white-space: pre-wrap; word-wrap: break-word; }
}
