:root {
      --navy: #1a2744;
      --navy-light: #253461;
      --orange: #e8650a;
      --orange-light: #f97316;
      --bg: #ffffff;
      --bg-alt: #f5f6f8;
      --text: #1e2329;
      --muted: #5a6472;
      --border: #dde1e8;
      --max: 1100px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      font-size: 16px;
    }
    a { color: var(--orange); text-decoration: none; }
    a:hover { text-decoration: underline; }

    /* NAV */
    nav {
      background: var(--navy);
      padding: 0 20px;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }
    .nav-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 52px;
    }
    .nav-logo {
      color: #fff;
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: -0.01em;
    }
    .nav-logo span { color: var(--orange); }
    .nav-links { display: flex; gap: 24px; list-style: none; }
    .nav-links a { color: rgba(255,255,255,0.82); font-size: 0.9rem; font-weight: 500; }
    .nav-links a:hover { color: #fff; text-decoration: none; }

    /* HERO */
    .hero {
      background: var(--navy);
      color: #fff;
      padding: 36px 20px 32px;
    }
    .hero-inner {
      max-width: var(--max);
      margin: 0 auto;
    }
    .hero h1 {
      font-size: 1.85rem;
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 10px;
    }
    .hero h1 span { color: var(--orange); }
    .hero p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.78);
      max-width: 600px;
    }
    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }
    .badge {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 500;
      padding: 4px 12px;
      border-radius: 20px;
    }

    /* MAIN */
    main {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 20px 60px;
    }

    /* SECTIONS */
    section { padding: 36px 0 8px; border-bottom: 1px solid var(--border); }
    section:last-of-type { border-bottom: none; }
    h2 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 14px;
    }
    h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    p { margin-bottom: 12px; color: var(--text); }

    /* QUICK PICKS */
    .picks-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 4px;
    }
    .pick-card {
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 18px 16px;
      background: var(--bg-alt);
    }
    .pick-card .pick-label {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--orange);
      margin-bottom: 6px;
    }
    .pick-card h3 { font-size: 0.97rem; margin-bottom: 6px; }
    .pick-card p { font-size: 0.87rem; color: var(--muted); margin-bottom: 12px; }
    .btn {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      font-weight: 700;
      font-size: 0.85rem;
      padding: 8px 16px;
      border-radius: 5px;
      text-decoration: none;
    }
    .btn:hover { background: var(--orange-light); text-decoration: none; }
    .btn-outline {
      display: inline-block;
      border: 2px solid var(--navy);
      color: var(--navy);
      font-weight: 700;
      font-size: 0.85rem;
      padding: 7px 16px;
      border-radius: 5px;
      text-decoration: none;
    }
    .btn-outline:hover { background: var(--navy); color: #fff; text-decoration: none; }

    /* TABLES */
    .table-wrap { overflow-x: auto; margin-top: 4px; }
    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
    }
    th {
      background: var(--navy);
      color: #fff;
      text-align: left;
      padding: 10px 12px;
      font-weight: 600;
      white-space: nowrap;
    }
    td {
      padding: 9px 12px;
      border-bottom: 1px solid var(--border);
      vertical-align: top;
    }
    tr:nth-child(even) td { background: var(--bg-alt); }
    tr:last-child td { border-bottom: none; }
    .tag-best {
      display: inline-block;
      background: #e8f5e9;
      color: #2e7d32;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 10px;
    }

    /* CHITCHATS CALLOUT */
    .callout {
      background: #fff8f0;
      border-left: 4px solid var(--orange);
      padding: 16px 20px;
      border-radius: 0 6px 6px 0;
      margin: 16px 0;
    }
    .callout strong { color: var(--orange); }

    /* FOOTER */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,0.6);
      font-size: 0.82rem;
      padding: 24px 20px;
      text-align: center;
      line-height: 1.7;
    }
    footer a { color: rgba(255,255,255,0.75); }
    footer p { color: rgba(255,255,255,0.6); margin-bottom: 6px; }

    /* RESPONSIVE */
    @media (max-width: 720px) {
      .picks-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .hero h1 { font-size: 1.45rem; }
      th, td { padding: 8px 10px; }
    }
    @media (max-width: 480px) {
      table { font-size: 0.82rem; }
    }
  
/* 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: rgba(255,255,255,0.85);
  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(--navy, #1a2744);
    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; }
}
