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

    :root {
      --teal:       #1B4F4A;
      --teal-light: #2A6B64;
      --coral:      #E8725A;
      --coral-soft: #F0957F;
      --sage:       #8AAF9F;
      --cream:      #F7F4EF;
      --white:      #FFFFFF;
      --ink:        #2C2C2C;
      --ink-muted:  #6B6B6B;
      --rule:       #D8D3CB;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--ink);
      font-size: 16px;
      line-height: 1.6;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--teal);
      padding: 0 5vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--cream);
      letter-spacing: 0.01em;
      text-decoration: none;
    }

    .nav-logo span {
      color: var(--coral);
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--sage);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--cream); }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--cream);
      border-radius: 2px;
    }

    /* ── HERO ── */
    .hero {
      background: var(--teal);
      padding: 80px 5vw 70px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      min-height: 540px;
    }

    .hero-text {}

    .hero-eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 1.5rem;
    }

    /* SIGNATURE ELEMENT: headline splits weight mid-sentence */
    .hero-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4.5vw, 3.6rem);
      line-height: 1.12;
      color: var(--cream);
      margin-bottom: 1.8rem;
    }

    .hero-headline .light {
      font-weight: 400;
      font-style: italic;
      color: var(--sage);
    }

    .hero-headline .bold {
      font-weight: 700;
      color: var(--white);
    }

    .hero-body {
      font-size: 1.05rem;
      line-height: 1.75;
      color: var(--sage);
      max-width: 480px;
      margin-bottom: 2.5rem;
    }

    .hero-body strong {
      color: var(--cream);
      font-weight: 500;
    }

    .hero-cta-row {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--coral);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      padding: 14px 28px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-primary:hover {
      background: var(--coral-soft);
      transform: translateY(-1px);
    }

    .btn-ghost {
      background: transparent;
      color: var(--cream);
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      padding: 14px 28px;
      border: 1.5px solid rgba(255,255,255,0.25);
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-ghost:hover {
      border-color: var(--sage);
      color: var(--sage);
    }

    /* Hero right — story card */
    .hero-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 2.2rem 2.4rem;
      position: relative;
    }

    .hero-card::before {
      content: '\201C';
      font-family: 'Playfair Display', serif;
      font-size: 5rem;
      line-height: 1;
      color: var(--coral);
      opacity: 0.5;
      position: absolute;
      top: 1rem;
      left: 1.8rem;
    }

    .hero-card-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-style: italic;
      line-height: 1.7;
      color: var(--cream);
      padding-top: 1.5rem;
    }

    .hero-card-attr {
      margin-top: 1.5rem;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--sage);
    }

    /* ── CATEGORY STRIP ── */
    .cat-strip {
      background: var(--white);
      border-bottom: 1px solid var(--rule);
      padding: 0 5vw;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .cat-strip::-webkit-scrollbar { display: none; }

    .cat-strip-inner {
      display: flex;
      gap: 0;
      white-space: nowrap;
    }

    .cat-link {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-muted);
      text-decoration: none;
      padding: 16px 20px;
      border-bottom: 2px solid transparent;
      transition: color 0.2s, border-color 0.2s;
      display: inline-block;
    }

    .cat-link:hover,
    .cat-link.active {
      color: var(--teal);
      border-bottom-color: var(--coral);
    }

    /* ── SECTION SHARED ── */
    section { padding: 60px 5vw; }

    .section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--rule);
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--ink);
    }

    .section-link {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--coral);
      text-decoration: none;
    }

    .section-link:hover { text-decoration: underline; }

    /* ── FEATURED GRID ── */
    .featured-section { background: var(--cream); }

    .featured-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      grid-template-rows: auto auto;
      gap: 1.5rem;
    }

    /* Cards */
    .card {
      background: var(--white);
      border-radius: 6px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s, box-shadow 0.2s;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s;
    }

    .card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .card-img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      display: block;
      background: var(--teal);
      position: relative;
      overflow: hidden;
    }

    /* Placeholder image pattern */
    .card-img-placeholder {
      width: 100%;
      aspect-ratio: 16/9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
    }

    .card-body {
      padding: 1.4rem 1.6rem 1.8rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .card-cat {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 0.6rem;
    }

    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      line-height: 1.3;
      color: var(--ink);
      margin-bottom: 0.8rem;
    }

    .card--large .card-title {
      font-size: 1.5rem;
    }

    .card-excerpt {
      font-size: 0.88rem;
      line-height: 1.65;
      color: var(--ink-muted);
      flex: 1;
    }

    .card-meta {
      margin-top: 1.2rem;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--ink-muted);
      display: flex;
      gap: 1rem;
    }

    .card--large { grid-row: span 2; }

    .card--large .card-img-placeholder { aspect-ratio: 4/3; }

    /* ── CITY SECTION ── */
    .city-section { background: var(--white); }

    .city-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
    }

    .city-card {
      background: var(--teal);
      border-radius: 6px;
      padding: 1.8rem 1.4rem;
      text-decoration: none;
      color: var(--cream);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.6rem;
      transition: background 0.2s, transform 0.2s;
      opacity: 0;
      transform: translateY(12px);
    }

    .city-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .city-card:hover {
      background: var(--teal-light);
      transform: translateY(-2px);
    }

    .city-emoji { font-size: 1.6rem; }

    .city-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
    }

    .city-count {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--sage);
    }

    /* ── DRINKS ROW ── */
    .drinks-section { background: var(--cream); }

    .drinks-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
    }

    .drink-card {
      background: var(--white);
      border-radius: 6px;
      padding: 1.6rem;
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s, box-shadow 0.2s;
      opacity: 0;
      transform: translateY(12px);
    }

    .drink-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .drink-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    }

    .drink-icon {
      font-size: 2rem;
      margin-bottom: 0.8rem;
      display: block;
    }

    .drink-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 0.4rem;
    }

    .drink-title {
      font-family: 'Playfair Display', serif;
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.3;
      color: var(--ink);
      margin-bottom: 0.5rem;
    }

    .drink-snippet {
      font-size: 0.8rem;
      line-height: 1.55;
      color: var(--ink-muted);
    }

    /* ── GUIDE BANNER ── */
    .guide-banner {
      background: var(--teal);
      padding: 70px 5vw;
    }

    .guide-banner-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      max-width: 1100px;
    }

    .guide-banner h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .guide-banner p {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--sage);
      margin-bottom: 2rem;
    }

    .guide-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .guide-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
    }

    .guide-list-link {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-style: italic;
      color: var(--cream);
      text-decoration: none;
      line-height: 1.4;
      border-bottom: 1px solid rgba(255,255,255,0.15);
      padding-bottom: 0.8rem;
      flex: 1;
      transition: color 0.2s;
    }

    .guide-list-link:hover { color: var(--coral-soft); }

    .guide-arrow {
      color: var(--coral);
      font-size: 0.9rem;
      margin-top: 3px;
      flex-shrink: 0;
    }

    /* ── NEWSLETTER ── */
    .newsletter {
      background: var(--coral);
      padding: 60px 5vw;
      text-align: center;
    }

    .newsletter h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.8rem;
    }

    .newsletter p {
      font-size: 1rem;
      color: rgba(255,255,255,0.85);
      margin-bottom: 2rem;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.65;
    }

    .newsletter-form {
      display: flex;
      gap: 0.8rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .newsletter-input {
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      padding: 14px 20px;
      border: none;
      border-radius: 4px;
      width: 280px;
      outline: none;
      background: var(--white);
      color: var(--ink);
    }

    .newsletter-input::placeholder { color: var(--ink-muted); }

    .btn-newsletter {
      background: var(--teal);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      padding: 14px 28px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.2s;
    }

    .btn-newsletter:hover { background: var(--teal-light); }

    .newsletter-note {
      margin-top: 1rem;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.65);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      padding: 50px 5vw 30px;
      color: rgba(255,255,255,0.5);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 0.8rem;
    }

    .footer-brand span { color: var(--coral); }

    .footer-tagline {
      font-size: 0.85rem;
      line-height: 1.65;
      color: rgba(255,255,255,0.45);
      max-width: 240px;
    }

    .footer-col h4 {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 1rem;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .footer-col a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col a:hover { color: var(--white); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 50px 5vw;
        min-height: auto;
      }
      .hero-card { display: none; }
      .featured-grid { grid-template-columns: 1fr; }
      .card--large { grid-row: span 1; }
      .card--large .card-img-placeholder { aspect-ratio: 16/9; }
      .city-grid { grid-template-columns: repeat(3, 1fr); }
      .drinks-row { grid-template-columns: repeat(2, 1fr); }
      .guide-banner-inner { grid-template-columns: 1fr; gap: 2rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
    }

    @media (max-width: 560px) {
      section { padding: 44px 5vw; }
      .city-grid { grid-template-columns: repeat(2, 1fr); }
      .drinks-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    }

    @media (prefers-reduced-motion: reduce) {
      .card, .city-card, .drink-card { opacity: 1; transform: none; transition: none; }
    }