*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --green: #2D5016;
      --wood: #8B6914;
      --cream: #FAF6EF;
      --dark: #1C1407;
      --green-light: #3d6b20;
      --cream-dark: #ede6d8;
      --wood-light: #a07820;
    }
    body {
      font-family: 'Source Sans 3', sans-serif;
      background: var(--cream);
      color: var(--dark);
      line-height: 1.75;
    }
    h1, h2, h3 { font-family: 'Merriweather', serif; line-height: 1.3; font-weight: 700; }
    a { color: var(--green); text-decoration: none; }
    a:hover { color: var(--wood); }

    /* NAV */
    nav{border-bottom:1px solid var(--border);padding:14px 20px}
    .nav-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between}
    .nav-logo{font-weight:700;font-size:18px;color:var(--primary);text-decoration:none}
    .nav-links{display:flex;gap:20px;font-size:14px}
    .nav-links a{color:var(--muted);text-decoration:none}
    @media(max-width:600px){.nav-links{display:none}}
    .nav-brand {
      font-family: 'Merriweather', serif;
      color: var(--wood-light);
      font-size: 1.3rem;
      font-weight: 700;
    }
    .nav-links { display: flex; gap: 28px; }
    .nav-links a {
      color: rgba(250,246,239,0.8);
      font-size: 0.9rem;
      font-weight: 300;
    }
    .nav-links a:hover { color: var(--wood-light); }

    /* HERO */
    .hero {
      background: linear-gradient(160deg, var(--dark) 0%, #2a1f0a 40%, var(--green) 100%);
      padding: 96px 28px 80px;
      position: relative;
      overflow: hidden;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--wood), var(--green), var(--wood));
    }
    .hero-inner {
      max-width: 720px;
    }
    .hero-tag {
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--wood-light);
      font-weight: 600;
      margin-bottom: 20px;
    }
    .hero h1 {
      font-size: 2.8rem;
      color: var(--cream);
      margin-bottom: 20px;
    }
    .hero p {
      font-size: 1.1rem;
      color: rgba(250,246,239,0.8);
      font-weight: 300;
      max-width: 540px;
      margin-bottom: 36px;
    }
    .btn {
      display: inline-block;
      padding: 14px 32px;
      font-family: 'Source Sans 3', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      transition: all 0.2s;
    }
    .btn-primary {
      background: var(--wood);
      color: var(--cream);
    }
    .btn-primary:hover { background: var(--wood-light); color: var(--cream); }
    .btn-outline {
      background: transparent;
      border: 2px solid var(--wood-light);
      color: var(--wood-light);
      margin-left: 12px;
    }
    .btn-outline:hover { background: var(--wood); color: var(--cream); }

    /* SECTIONS */
    section { padding: 72px 28px; }
    .container { max-width: 1120px; margin: 0 auto; }
    .section-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--wood);
      font-weight: 600;
      margin-bottom: 10px;
    }
    .section-title {
      font-size: 2rem;
      color: var(--green);
      margin-bottom: 8px;
    }
    .gold-rule {
      width: 48px;
      height: 3px;
      background: var(--wood);
      margin: 14px 0 36px;
    }

    /* CATEGORIES */
    .categories { background: var(--cream-dark); }
    .cat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
      gap: 16px;
    }
    @media (max-width: 960px) {
      .cat-grid { grid-template-columns: 1fr 1fr 1fr; }
    }
    @media (max-width: 560px) {
      .cat-grid { grid-template-columns: 1fr 1fr; }
    }
    .cat-card {
      background: var(--cream);
      padding: 28px 16px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 3px solid transparent;
      transition: border-color 0.2s;
    }
    .cat-card:hover { border-color: var(--wood); }
    .cat-icon { font-size: 2.2rem; margin-bottom: 10px; }
    .cat-card h3 {
      font-family: 'Merriweather', serif;
      font-size: 1rem;
      color: var(--green);
      margin-bottom: 8px;
    }
    .cat-card p { font-size: 0.85rem; color: #4a3c20; margin-bottom: 16px; flex-grow: 1; }
    .cat-card a { margin-top: auto; font-size: 0.8rem; }

    /* WHY LOG */
    .why-log { background: var(--cream); }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }
    @media (max-width: 760px) {
      .why-grid { grid-template-columns: 1fr; }
    }
    .why-text h2 { font-size: 1.8rem; color: var(--green); margin-bottom: 12px; }
    .why-text p { margin-bottom: 18px; font-weight: 300; }
    .why-points { list-style: none; padding: 0; }
    .why-points li {
      padding: 14px 0;
      border-bottom: 1px solid var(--cream-dark);
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }
    .why-points li:last-child { border-bottom: none; }
    .why-icon { color: var(--wood); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
    .why-detail strong { color: var(--green); display: block; margin-bottom: 4px; font-size: 0.95rem; }
    .why-detail span { font-size: 0.9rem; color: #4a3c20; }

    .why-featured {
      background: var(--green);
      color: var(--cream);
      padding: 36px;
    }
    .why-featured h3 {
      font-size: 1.4rem;
      color: var(--wood-light);
      margin-bottom: 16px;
    }
    .why-featured p { font-weight: 300; margin-bottom: 20px; line-height: 1.7; font-size: 0.95rem; }
    .why-featured .stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 24px;
    }
    .stat-box { text-align: center; }
    .stat-num {
      font-family: 'Merriweather', serif;
      font-size: 2rem;
      color: var(--wood-light);
      font-weight: 700;
    }
    .stat-label { font-size: 0.8rem; color: rgba(250,246,239,0.7); text-transform: uppercase; letter-spacing: 1px; }

    /* SHOP SECTION */
    .shop-section { background: var(--cream-dark); }
    .shop-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    @media (max-width: 680px) {
      .shop-grid { grid-template-columns: 1fr; }
    }
    .shop-card {
      background: var(--cream);
      padding: 28px;
      border-left: 4px solid var(--wood);
      display: flex;
      flex-direction: column;
    }
    .shop-card h3 { font-size: 1.1rem; color: var(--green); margin-bottom: 10px; }
    .shop-card p { font-size: 0.9rem; color: #4a3c20; margin-bottom: 20px; flex-grow: 1; font-weight: 300; }
    .shop-card a { margin-top: auto; }

    /* GUIDE BANNER */
    .guide-banner {
      background: var(--dark);
      color: var(--cream);
      padding: 56px 28px;
    }
    .guide-inner {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    .guide-inner h2 { color: var(--wood-light); margin-bottom: 14px; font-size: 1.8rem; }
    .guide-inner p { font-weight: 300; margin-bottom: 28px; font-size: 1rem; }

    /* FOOTER */
    footer {
      background: #100e06;
      color: rgba(250,246,239,0.6);
      padding: 48px 28px;
    }
    .footer-inner { max-width: 1120px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
    .footer-brand { font-family: 'Merriweather', serif; color: var(--wood-light); font-size: 1.2rem; }
    .footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
    .footer-links a { color: rgba(250,246,239,0.6); font-size: 0.9rem; }
    .footer-links a:hover { color: var(--wood-light); }
    .footer-disclosure { font-size: 0.8rem; color: rgba(250,246,239,0.4); border-top: 1px solid rgba(250,246,239,0.1); padding-top: 16px; }

    @media (max-width: 680px) {
      .hero h1 { font-size: 2rem; }
      nav { padding: 0 16px; }
      .nav-links { gap: 16px; }
      .btn-outline { margin-left: 0; margin-top: 12px; }
    }

/* ===================== */
/* HAMBURGER NAV (MOBILE) */
/* ===================== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream, #FAF6EF);
  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(--green, #2D5016);
    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; }
}
