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

    :root {
      --blue:  #1a3a5c;
      --green: #2d5016;
      --stone: #c8b89a;
      --snow:  #f8f8f6;
      --dark:  #1a1a1a;
      --mid:   #4a4a4a;
      --light-stone: #ede7dc;
    }

    body {
      font-family: 'Source Sans 3', sans-serif;
      font-weight: 400;
      color: var(--dark);
      background: var(--snow);
      line-height: 1.7;
    }

    a { color: var(--blue); text-decoration: none; }
    a:hover { text-decoration: underline; }

    /* NAV */
    nav {
      background: var(--blue);
      padding: 0 2rem;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .nav-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
    }
    .nav-brand {
      font-family: 'Playfair Display', serif;
      color: var(--snow);
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      color: rgba(248,248,246,0.85);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--stone); text-decoration: none; }
    .nav-links a.active { color: var(--snow); border-bottom: 2px solid var(--stone); padding-bottom: 2px; }

    /* HERO */
    .hero {
      background: linear-gradient(160deg, var(--blue) 0%, #0e2338 100%);
      color: var(--snow);
      padding: 5rem 2rem 4rem;
      text-align: center;
    }
    .hero-inner { max-width: 780px; margin: 0 auto; }
    .hero-eyebrow {
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--stone);
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      color: var(--snow);
    }
    .hero-lead {
      font-size: 1.2rem;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(248,248,246,0.88);
      max-width: 640px;
      margin: 0 auto;
    }
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 3rem;
      margin-top: 3rem;
      flex-wrap: wrap;
    }
    .stat { text-align: center; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--stone);
      display: block;
    }
    .stat-label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(248,248,246,0.65);
    }

    /* MAIN CONTENT */
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .section { padding: 4rem 0; }
    .section + .section { border-top: 1px solid #e5dfd6; }

    .section-tag {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 0.5rem;
    }
    .section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      color: var(--blue);
      line-height: 1.25;
      margin-bottom: 1.5rem;
    }
    .section p { max-width: 720px; margin-bottom: 1rem; color: var(--mid); font-size: 1.05rem; }
    .section p:last-child { margin-bottom: 0; }

    /* TWO-COL LAYOUT for tradeoffs */
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }
    @media (max-width: 720px) {
      .two-col { grid-template-columns: 1fr; gap: 2rem; }
    }

    /* TRADEOFFS BOX */
    .tradeoffs-box {
      background: var(--blue);
      color: var(--snow);
      padding: 2.5rem;
      border-radius: 4px;
    }
    .tradeoffs-box .section-tag { color: var(--stone); }
    .tradeoffs-box h2 { color: var(--snow); }
    .tradeoffs-box p { color: rgba(248,248,246,0.85); max-width: none; }
    .tradeoffs-list {
      list-style: none;
      margin-top: 1.25rem;
    }
    .tradeoffs-list li {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      margin-bottom: 0.85rem;
      color: rgba(248,248,246,0.88);
      font-size: 1rem;
    }
    .tradeoffs-list li::before {
      content: "—";
      color: var(--stone);
      flex-shrink: 0;
      margin-top: 0.1em;
    }

    /* WHO LIVES HERE */
    .who-section { background: var(--light-stone); }
    .who-inner { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }

    /* CARDS */
    .cards-section { padding: 4rem 0; }
    .cards-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.4rem, 2.5vw, 1.9rem);
      color: var(--blue);
      margin-bottom: 2rem;
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    @media (max-width: 768px) {
      .cards { grid-template-columns: 1fr; }
    }
    .card {
      background: #fff;
      border: 1px solid #e0d9cf;
      border-radius: 4px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .card:hover {
      box-shadow: 0 4px 20px rgba(26,58,92,0.12);
      transform: translateY(-2px);
      text-decoration: none;
    }
    .card-tag {
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--green);
      margin-bottom: 0.5rem;
    }
    .card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--blue);
      margin-bottom: 0.75rem;
    }
    .card p {
      font-size: 0.95rem;
      color: var(--mid);
      line-height: 1.6;
      flex: 1;
      margin-bottom: 1.25rem;
    }
    .card-link {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* FOOTER */
    footer {
      background: var(--dark);
      color: rgba(248,248,246,0.55);
      text-align: center;
      padding: 2rem;
      font-size: 0.85rem;
    }
    footer a { color: rgba(248,248,246,0.65); }

    @media (max-width: 600px) {
      .nav-links { gap: 1rem; }
      .nav-links a { font-size: 0.8rem; }
      .hero { padding: 3.5rem 1.5rem 3rem; }
      .hero-stats { gap: 1.5rem; }
    }

/* ===================== */
/* HAMBURGER NAV (MOBILE) */
/* ===================== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--stone, 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(--blue, #1a3a5c);
    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; }
}
