*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --primary: #1a5c38;
      --primary-light: #2d7a50;
      --accent: #e8f5ee;
      --text: #1a202c;
      --muted: #4a5568;
      --border: #e2e8f0;
      --white: #ffffff;
      --max-width: 1100px;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      color: var(--text);
      line-height: 1.7;
      background: var(--white);
    }
    a { color: var(--primary); text-decoration: none; }
    a:hover { text-decoration: underline; }
    img { max-width: 100%; }

    /* NAV */
    nav {
      border-bottom: 1px solid var(--border);
      padding: 16px 20px;
    }
    .nav-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .nav-logo span { font-size: 24px; }
    .nav-links { display: flex; gap: 24px; font-size: 15px; }
    .nav-links a { color: var(--muted); }
    .nav-links a:hover { color: var(--primary); text-decoration: none; }

    /* HERO */
    .hero {
      background: var(--accent);
      padding: 64px 20px;
      text-align: center;
    }
    .hero h1 {
      font-size: clamp(28px, 5vw, 48px);
      font-weight: 800;
      color: var(--primary);
      max-width: 700px;
      margin: 0 auto 16px;
      line-height: 1.2;
    }
    .hero p {
      font-size: 18px;
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto;
    }

    /* MAIN CONTENT */
    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }
    .section { padding: 56px 0; }
    .section-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 32px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--accent);
    }

    /* ARTICLE GRID */
    .article-grid {
      display: grid;
      grid-template-columns:repeat(3,1fr);
      gap: 28px;
      align-items: stretch;
    }
    .article-card {
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      transition: box-shadow 0.2s;
      display: flex;
      flex-direction: column;
    }
    .card-body {
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .card-read-more { margin-top: auto; }
    .article-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
    .card-body { padding: 20px; }
    .card-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--primary);
      background: var(--accent);
      padding: 3px 8px;
      border-radius: 4px;
      margin-bottom: 10px;
    }
    .card-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .card-title a { color: var(--text); }
    .card-title a:hover { color: var(--primary); text-decoration: none; }
    .card-excerpt { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
    .card-read-more { font-size: 14px; font-weight: 600; color: var(--primary); }

    /* FEATURED */
    .featured-card {
      background: var(--accent);
      border-radius: 10px;
      padding: 32px;
      margin-bottom: 48px;
      display: flex;
      gap: 32px;
      align-items: center;
    }
    .featured-card .featured-text { flex: 1; }
    .featured-card .featured-emoji { font-size: 72px; flex-shrink: 0; }
    .featured-card h2 { font-size: 26px; font-weight: 800; margin-bottom: 10px; color: var(--primary); }
    .featured-card p { color: var(--muted); margin-bottom: 18px; }
    .btn {
      display: inline-block;
      background: var(--primary);
      color: white;
      padding: 10px 24px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 15px;
    }
    .btn:hover { background: var(--primary-light); text-decoration: none; }

    /* TOPICS */
    .topic-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }
    .topic-item {
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 16px;
      text-align: center;
      font-weight: 600;
      font-size: 15px;
      color: var(--text);
      transition: background 0.15s;
    }
    .topic-item:hover { background: var(--accent); text-decoration: none; }
    .topic-item .topic-emoji { display: block; font-size: 28px; margin-bottom: 8px; }

    /* DISCLAIMER */
    .disclaimer {
      background: #fffbeb;
      border: 1px solid #fde68a;
      border-radius: 6px;
      padding: 14px 18px;
      font-size: 13px;
      color: #92400e;
      margin: 40px 0 0;
    }

    /* FOOTER */
    footer {
      background: #f7fafc;
      border-top: 1px solid var(--border);
      padding: 32px 20px;
      margin-top: 64px;
    }
    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 14px;
      color: var(--muted);
    }
    .footer-links { display: flex; gap: 20px; }

    @media (max-width: 640px) {
      .featured-card { flex-direction: column; }
      .featured-card .featured-emoji { font-size: 48px; }
      .nav-links { display: none; }
    }
  
  @media(max-width:860px){ .card-grid,.etf-grid,.product-cards,.feature-grid,.mat-card-grid,.features-grid { grid-template-columns:repeat(2,1fr) !important; } }
  @media(max-width:560px){ .card-grid,.etf-grid,.product-cards,.feature-grid,.mat-card-grid,.features-grid { grid-template-columns:1fr !important; } }

/* Equal-height card fix */
.card-grid, .etf-grid, .features-grid, .mat-card-grid, .why-grid, .services-grid {
  align-items: stretch;
}
.card, .etf-card, .mat-card, .feature, .point-card, .why-card, .service-card {
  display: flex;
  flex-direction: column;
}
.card > p:last-of-type, .card > a:last-child,
.etf-card > p:last-of-type, .etf-card > a:last-child,
.feature > a:last-child, .why-card > p:last-of-type {
  margin-top: auto;
}

/* ===================== */
/* HAMBURGER NAV (MOBILE) */
/* ===================== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary, #1a5c38);
  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(--white, #fff);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--border, #e2e8f0);
    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; }

  /* Topic grid - 3 cols on mobile instead of 6 */
  .topic-grid { grid-template-columns: repeat(3, 1fr) !important; }

}
