
  @import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Caveat:wght@400;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

  :root{
    --paper: #E8DCC3;
    --paper-dark: #D8C4A0;
    --ink: #3B2C20;
    --stamp-red: #A13D2C;
    --navy: #2B4257;
    --gold: #B8935F;
  }

  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }

  body{
    margin:0;
    background-color: var(--paper);
    background-image:
      radial-gradient(circle at 20% 30%, rgba(184,147,95,0.08) 0, transparent 45%),
      radial-gradient(circle at 80% 70%, rgba(43,66,87,0.06) 0, transparent 50%),
      repeating-linear-gradient(0deg, rgba(59,44,32,0.03) 0px, transparent 1px, transparent 2px);
    color: var(--ink);
    font-family: 'Crimson Text', serif;
    min-height: 100vh;
  }

  a{ color: inherit; }

  /* ============ NAV ============ */
  .site-header{
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--paper);
    border-bottom: 2px solid var(--navy);
    box-shadow: 0 4px 10px rgba(59,44,32,0.12);
  }

  .nav-inner{
    max-width: 1180px;
    margin: 0 auto;
    padding: .75rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav-logo{
    display:flex;
    align-items:center;
    gap:.55rem;
    text-decoration:none;
    font-family: 'Special Elite', monospace;
    font-size: 1.05rem;
    color: var(--navy);
    white-space: nowrap;
  }
  .nav-logo svg{ width: 26px; height: 26px; flex-shrink:0; }

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

  .nav-links a{
    font-family: 'Special Elite', monospace;
    font-size: .74rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration:none;
    color: var(--ink);
    padding: .55rem .85rem;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: .2s ease;
    display:inline-block;
  }
  .nav-links a:hover{ color: var(--navy); }
  .nav-links a.active{
    border-color: var(--navy);
    background: rgba(43,66,87,0.08);
    color: var(--navy);
  }

  .nav-right{ display:flex; align-items:center; gap: 1rem; }

  .nav-social{ display:flex; gap:.55rem; }
  .nav-social a{
    width: 32px; height:32px;
    border-radius:50%;
    border: 1.5px solid var(--navy);
    display:flex; align-items:center; justify-content:center;
    color: var(--navy);
    text-decoration:none;
    transition:.2s ease;
  }
  .nav-social a:hover{ background: var(--navy); color: var(--paper); }
  .nav-social svg{ width:15px; height:15px; }

  .nav-toggle{
    display:none;
    background:none;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    width: 38px; height:34px;
    cursor:pointer;
    border-radius:2px;
  }

  @media (max-width: 760px){
    .nav-links{
      position: absolute;
      top: 100%; left:0; right:0;
      flex-direction: column;
      background: var(--paper);
      border-bottom: 2px solid var(--navy);
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
      gap:0;
    }
    .nav-links.open{ max-height: 400px; }
    .nav-links a{ padding: .9rem 1.6rem; border-radius:0; border-bottom: 1px solid rgba(59,44,32,0.1); }
    .nav-toggle{ display:block; }
  }

  /* ============ PAGE FADE-IN ============ */
  main{ animation: fadeIn .4s ease; }
  @keyframes fadeIn{ from{ opacity:0; transform: translateY(8px);} to{ opacity:1; transform:translateY(0);} }

  /* ============ SHARED: SECTION HEADINGS ============ */
  .page-heading{
    text-align:center;
    padding: 3rem 1.5rem 1.5rem;
  }
  .stamp-title{
    display:inline-block;
    font-family: 'Special Elite', monospace;
    font-size: clamp(1.7rem, 4.2vw, 2.6rem);
    letter-spacing: 2px;
    color: var(--navy);
    padding: .5rem 1.2rem;
    border: 3px double var(--navy);
    transform: rotate(-1deg);
  }
  .subtitle{
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: var(--stamp-red);
    margin-top: 1rem;
  }

  /* ============ HOME: HERO ============ */
  .hero{
    max-width: 1180px;
    margin: 0 auto;
    padding: 3rem 1.6rem 1rem;
    display:grid;
    grid-template-columns: 340px 1fr;
    gap: 3rem;
    align-items:center;
  }

  .hero-photo{
    position:relative;
  }
  .hero-photo img{
    width:100%;
    display:block;
    border: 10px solid #fff8ec;
    box-shadow: 0 22px 44px -16px rgba(0,0,0,.45);
    filter: sepia(.25) saturate(1.1) contrast(1.03);
    transform: rotate(-2.5deg);
  }
  .hero-photo .verified-stamp{
    position:absolute;
    bottom: -16px; right: -16px;
    width: 84px; height:84px;
    border-radius:50%;
    border: 2px solid var(--stamp-red);
    color: var(--stamp-red);
    display:flex; align-items:center; justify-content:center;
    text-align:center;
    font-family: 'Special Elite', monospace;
    font-size: .55rem;
    letter-spacing: .5px;
    line-height: 1.2;
    transform: rotate(-12deg);
    background: rgba(251,244,228,0.92);
    padding: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,.25);
  }

  .hero-text .eyebrow{
    font-family: 'Special Elite', monospace;
    font-size: .78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0 0 .4rem;
  }
  .hero-text h1{
    font-family: 'Special Elite', monospace;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--ink);
    margin: 0 0 .5rem;
    line-height:1.3;
  }
  .hero-text .tagline{
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--stamp-red);
    margin: 0 0 1.1rem;
  }
  .hero-text p.lead{
    font-size: 1.08rem;
    line-height: 1.65;
    margin: 0 0 1.6rem;
  }
  .hero-cta{ display:flex; gap: 1rem; flex-wrap:wrap; }

  .btn{
    font-family: 'Special Elite', monospace;
    font-size: .8rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: .8rem 1.5rem;
    border: 2px solid var(--navy);
    color: var(--navy);
    text-decoration:none;
    display:inline-block;
    background: transparent;
    cursor:pointer;
    transition: .2s ease;
  }
  .btn:hover{ background: var(--navy); color: var(--paper); }
  .btn.primary{ background: var(--stamp-red); border-color: var(--stamp-red); color:#fbf4e4; }
  .btn.primary:hover{ background:#8a3225; border-color:#8a3225; }

  @media (max-width: 760px){
    .hero{ grid-template-columns: 1fr; text-align:center; padding-top: 2rem; }
    .hero-photo{ max-width: 260px; margin: 0 auto; }
    .hero-cta{ justify-content:center; }
  }

  /* ============ HOME: WALL OF PLACES ============ */
  .wall-section{
    max-width: 1180px;
    margin: 0 auto;
    padding: 2.5rem 1.6rem 1rem;
  }
  .wall-frame{
    position: relative;
    background: var(--paper-dark);
    border: 1px solid rgba(59,44,32,0.25);
    padding: 2.4rem 1.6rem;
    box-shadow: 0 18px 34px -16px rgba(59,44,32,0.4);
  }
  .wall-frame::before{
    content:"";
    position:absolute;
    inset: 8px;
    border: 1px dashed rgba(59,44,32,0.4);
    pointer-events:none;
  }
  .wall-heading{ text-align:center; margin-bottom: 1.8rem; position:relative; z-index:1; }
  .wall-heading h2{
    font-family: 'Special Elite', monospace;
    font-size: 1.3rem;
    color: var(--navy);
    margin:0;
  }
  .wall-heading p{
    font-family: 'Caveat', cursive;
    font-size: 1.15rem;
    color: var(--stamp-red);
    margin: .4rem 0 0;
  }

  .wall-tags{
    display:flex;
    flex-wrap:wrap;
    gap: .9rem 1rem;
    justify-content:center;
    position:relative;
    z-index:1;
  }
  .wall-tag{
    position:relative;
    background: #fff8ec;
    border: 1px solid rgba(59,44,32,0.25);
    padding: .55rem 1rem .55rem 1.3rem;
    font-family: 'Caveat', cursive;
    font-weight:600;
    font-size: 1.3rem;
    color: var(--ink);
    box-shadow: 0 5px 10px rgba(0,0,0,.18);
    cursor:pointer;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:.4rem;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .wall-tag::before{
    content:"";
    position:absolute;
    top:-6px; left: 10px;
    width: 10px; height:10px;
    border-radius:50%;
    background: radial-gradient(circle at 35% 30%, #d95c47, var(--stamp-red) 75%);
    box-shadow: 0 2px 3px rgba(0,0,0,.35);
  }
  .wall-tag:nth-child(3n){ transform: rotate(-3deg); }
  .wall-tag:nth-child(3n+1){ transform: rotate(2deg); }
  .wall-tag:nth-child(3n+2){ transform: rotate(-1.5deg); }
  .wall-tag:hover{ transform: scale(1.08) rotate(0deg); box-shadow: 0 8px 16px rgba(0,0,0,.22); z-index:2; }

  /* ============ HOME: STATS ============ */
  .stats-bar{
    max-width: 1180px;
    margin: 2.5rem auto 0;
    padding: 0 1.6rem;
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
    gap: 1.2rem;
  }
  .stat-box{
    background: #fbf4e4;
    border: 1px solid rgba(59,44,32,0.18);
    text-align:center;
    padding: 1.3rem 1rem;
    box-shadow: 0 8px 16px -10px rgba(59,44,32,.3);
  }
  .stat-box .stat-value{
    font-family: 'Special Elite', monospace;
    font-size: 1.6rem;
    color: var(--navy);
  }
  .stat-box .stat-label{
    font-family: 'Caveat', cursive;
    font-size: 1.05rem;
    color: var(--stamp-red);
    margin-top: .25rem;
  }

  /* ============ HOME: TEASER SECTIONS ============ */
  .teaser-section{
    max-width: 1180px;
    margin: 0 auto;
    padding: 3rem 1.6rem 1rem;
  }
  .teaser-header{
    display:flex;
    justify-content:space-between;
    align-items:baseline;
    flex-wrap:wrap;
    gap:.6rem;
    margin-bottom: 1.6rem;
    border-bottom: 2px solid var(--navy);
    padding-bottom: .7rem;
  }
  .teaser-header h2{
    font-family: 'Special Elite', monospace;
    font-size: 1.3rem;
    color: var(--navy);
    margin:0;
  }
  .teaser-header a{
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--stamp-red);
    text-decoration:none;
  }
  .teaser-header a:hover{ text-decoration: underline; }

  .teaser-grid{
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.8rem 1.6rem;
  }

  /* ============ POSTCARD (shared: home teaser + itineraries page) ============ */
  .postcard{
    position: relative;
    background: #fff8ec;
    border: 1px solid rgba(59,44,32,0.15);
    padding: 14px 14px 20px;
    box-shadow: 0 10px 18px -8px rgba(59,44,32,0.35);
    cursor: pointer;
    transform: rotate(var(--r, 0deg));
    transition: transform .35s ease, box-shadow .35s ease;
    opacity: 0;
    animation: settle .6s ease forwards;
  }
  .postcard:nth-child(6n+1){ --r: -3deg; }
  .postcard:nth-child(6n+2){ --r: 2deg; }
  .postcard:nth-child(6n+3){ --r: -1.5deg; }
  .postcard:nth-child(6n+4){ --r: 3deg; }
  .postcard:nth-child(6n+5){ --r: -2.5deg; }
  .postcard:nth-child(6n+6){ --r: 1.5deg; }

  @keyframes settle{
    from{ opacity: 0; transform: translateY(16px) rotate(var(--r,0deg)); }
    to{ opacity: 1; transform: translateY(0) rotate(var(--r,0deg)); }
  }
  .postcard:hover, .postcard:focus-visible{
    transform: rotate(0deg) translateY(-6px) scale(1.02);
    box-shadow: 0 20px 28px -10px rgba(59,44,32,0.45);
    z-index: 2;
  }
  .pin{
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    width: 18px; height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #d95c47, var(--stamp-red) 70%);
    box-shadow: 0 3px 4px rgba(0,0,0,.35);
  }
  .postcard img{
    display:block;
    width: 100%;
    height: 160px;
    object-fit: cover;
    filter: sepia(.35) saturate(1.05) contrast(1.02);
    border: 1px solid rgba(59,44,32,0.2);
  }
  .stamp-corner{
    position: absolute;
    top: 10px; right: 10px;
    width: 52px; height: 52px;
    border: 2px dashed var(--navy);
    border-radius: 4px;
    background: rgba(232,220,195,0.9);
    display:flex; align-items:center; justify-content:center;
    flex-direction: column;
    transform: rotate(9deg);
    font-family: 'Special Elite', monospace;
    font-size: .53rem;
    color: var(--navy);
    text-align:center;
    line-height: 1.1;
    padding: 2px;
  }
  .stamp-corner .flag{ font-size: 1.05rem; }
  .postcard h3{
    font-family: 'Special Elite', monospace;
    font-size: 1.1rem;
    margin: .9rem 0 .2rem;
    color: var(--ink);
  }
  .postcard .dates{
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: var(--stamp-red);
  }
  .postcard .tap-hint{
    margin-top: .5rem;
    font-size: .76rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    opacity: .5;
  }

  /* ============ ITINERARIES PAGE: MAP ============ */
  .map-wrap{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.6rem 3rem;
  }
  .map-heading{ text-align:center; margin-bottom: 1.6rem; }
  .map-heading .stamp-title{ font-size: clamp(1.3rem, 3vw, 1.8rem); padding: .4rem 1rem; }
  .map-heading .subtitle{ font-size: 1.2rem; margin-top: .6rem; }

  .map-frame{
    position: relative;
    background: var(--paper-dark);
    padding: 14px;
    box-shadow: 0 20px 40px -16px rgba(59,44,32,0.45);
    border: 1px solid rgba(59,44,32,0.25);
  }
  .map-frame::before{
    content:"";
    position: absolute;
    inset: 7px;
    border: 1px dashed rgba(59,44,32,0.5);
    pointer-events: none;
    z-index: 2;
  }
  .map-corner{
    position: absolute;
    width: 26px; height: 26px;
    border: 2px solid var(--stamp-red);
    z-index: 3;
    opacity: .8;
  }
  .map-corner.tl{ top: 4px; left: 4px; border-right:none; border-bottom:none; }
  .map-corner.tr{ top: 4px; right: 4px; border-left:none; border-bottom:none; }
  .map-corner.bl{ bottom: 4px; left: 4px; border-right:none; border-top:none; }
  .map-corner.br{ bottom: 4px; right: 4px; border-left:none; border-top:none; }

  .map-inner{
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    background: #ece0c4;
    overflow: hidden;
  }
  .world-svg{ position:absolute; inset:0; width:100%; height:100%; }
  .graticule{ stroke: rgba(59,44,32,0.18); stroke-width:1; stroke-dasharray:3 4; fill:none; }
  .landmass{ fill:#c9a877; stroke:#3B2C20; stroke-width:1.4; stroke-linejoin:round; paint-order:fill; }

  .route-lines{ position:absolute; inset:0; width:100%; height:100%; pointer-events:none; }

  .map-pin{
    position:absolute;
    transform: translate(-50%, -100%);
    cursor:pointer;
    background:none;
    border:none;
    padding:0;
    z-index:4;
  }
  .map-pin .dot{
    position:relative;
    width:22px; height:22px;
    border-radius:50%;
    background: radial-gradient(circle at 35% 30%, #d95c47, var(--stamp-red) 75%);
    border: 2px solid #fbf4e4;
    box-shadow: 0 3px 6px rgba(0,0,0,.4);
    display:flex; align-items:center; justify-content:center;
    font-family:'Special Elite', monospace;
    font-size:.6rem;
    color:#fbf4e4;
    transition: transform .25s ease;
  }
  .map-pin .dot::after{
    content:"";
    position:absolute;
    inset:-8px;
    border-radius:50%;
    border: 1px solid var(--stamp-red);
    opacity:0;
    animation: pulse-ring 2.6s ease-out infinite;
  }
  .map-pin:nth-of-type(2n) .dot::after{ animation-delay:.9s; }
  .map-pin:nth-of-type(3n) .dot::after{ animation-delay:1.6s; }
  @keyframes pulse-ring{ 0%{transform:scale(.6);opacity:.6;} 100%{transform:scale(1.7);opacity:0;} }
  .map-pin:hover .dot, .map-pin:focus-visible .dot{ transform: scale(1.25); }
  .map-pin .tag{
    position:absolute;
    bottom:130%; left:50%;
    transform: translateX(-50%) translateY(4px);
    background:#fbf4e4;
    border:1px solid var(--navy);
    color:var(--ink);
    font-family:'Caveat', cursive;
    font-size:1rem;
    padding:.2rem .6rem;
    white-space:nowrap;
    opacity:0;
    pointer-events:none;
    transition: opacity .2s ease, transform .2s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,.25);
  }
  .map-pin:hover .tag, .map-pin:focus-visible .tag{ opacity:1; transform: translateX(-50%) translateY(0); }
  .map-hint{ text-align:center; font-size:.82rem; opacity:.55; font-style:italic; margin-top:1rem; }
  @media (max-width: 640px){ .map-inner{ aspect-ratio: 4/3; } }

  /* ============ ITINERARIES: BOARD ============ */
  .board-wrap{ max-width: 1180px; margin:0 auto; padding: 0 1.6rem 5rem; }
  .board{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 3rem 2.2rem;
  }

  /* ============ MODAL: JOURNAL / BLOG SHARED ============ */
  .overlay{
    position: fixed; inset:0;
    background: rgba(20,26,32,0.72);
    display:flex; align-items:center; justify-content:center;
    padding: 2rem 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 300;
  }
  .overlay.open{ opacity:1; pointer-events:auto; }

  .journal-page{
    background: #fbf4e4;
    background-image: repeating-linear-gradient(0deg, rgba(59,44,32,0.025) 0px, transparent 1px, transparent 2px);
    max-width: 760px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    padding: 0 0 2.4rem;
    box-shadow: 0 30px 70px rgba(0,0,0,.55);
    transform: translateY(20px) scale(.97);
    transition: transform .35s ease;
    border-left: 8px solid var(--paper-dark);
  }
  .overlay.open .journal-page{ transform: translateY(0) scale(1); }

  .washi{ position:absolute; top:-10px; width:90px; height:26px; opacity:.8; z-index:3; }
  .washi.left{ left:30px; background: rgba(161,61,44,0.55); transform: rotate(-6deg); }
  .washi.right{ right:30px; background: rgba(43,66,87,0.55); transform: rotate(5deg); }

  .journal-banner{ position:relative; height:240px; overflow:hidden; }
  .journal-banner img{ width:100%; height:100%; object-fit:cover; filter: sepia(.4) saturate(1.05) contrast(1.05); display:block; }
  .journal-banner::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(20,20,15,0.05) 40%, rgba(20,20,15,0.55)); }

  .postmark{
    position:absolute; bottom:-22px; right:24px;
    width:92px; height:92px; border-radius:50%;
    border: 2px solid #fbf4e4;
    background: rgba(43,66,87,0.88);
    color:#fbf4e4;
    display:flex; align-items:center; justify-content:center; flex-direction:column;
    text-align:center;
    font-family:'Special Elite', monospace;
    font-size:.56rem; letter-spacing:.5px; line-height:1.25;
    transform: rotate(-10deg);
    box-shadow: 0 6px 14px rgba(0,0,0,.4);
    z-index:2;
  }
  .postmark .pm-flag{ font-size:1.3rem; margin-bottom:2px; }

  .close-btn{
    position:absolute; top:14px; right:18px;
    width:34px; height:34px; border:none;
    background: var(--stamp-red); color:#fbf4e4;
    font-size:1.1rem; font-family:'Special Elite', monospace;
    border-radius:50%; cursor:pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,.3);
    z-index:4;
  }
  .close-btn:hover{ filter:brightness(1.1); }

  .journal-body{ padding: 2.6rem 2.8rem 0; }
  .journal-header{ margin-bottom:.6rem; }
  .journal-title{ font-family:'Special Elite', monospace; font-size:1.9rem; color:var(--navy); margin:0; }
  .journal-dates{ font-family:'Caveat', cursive; font-size:1.35rem; color:var(--stamp-red); margin:.2rem 0 0; }
  .journal-blurb{
    font-style: italic; font-size:1.08rem; line-height:1.65; color:var(--ink);
    border-left: 3px solid var(--gold); padding-left:1rem; margin: 1.1rem 0 1.6rem;
  }
  .journal-meta{
    font-family:'Special Elite', monospace;
    font-size:.78rem;
    letter-spacing:.5px;
    text-transform:uppercase;
    color: var(--navy);
    margin: -.6rem 0 1.2rem;
  }
  .journal-divider{ border:none; border-top:1px dashed var(--navy); opacity:.4; margin:0 0 1.6rem; }

  .journal-section-title{
    font-family:'Special Elite', monospace;
    font-size: 1rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--navy);
    margin: 2.2rem 0 1.2rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--navy);
  }

  .day-entry{ position:relative; padding-left:2.6rem; margin-bottom:1.8rem; }
  .day-entry:not(:last-child)::after{
    content:""; position:absolute; left:15px; top:34px; bottom:-26px;
    border-left: 2px dashed var(--gold);
  }
  .day-entry:last-child{ margin-bottom:0; }
  .day-icon{
    position:absolute; left:0; top:0; width:32px; height:32px; border-radius:50%;
    background:var(--navy); color:#fbf4e4;
    display:flex; align-items:center; justify-content:center; font-size:1rem;
    box-shadow: 0 3px 6px rgba(0,0,0,.3);
  }
  .day-label{ font-family:'Special Elite', monospace; font-size:.78rem; color:var(--navy); text-transform:uppercase; letter-spacing:1px; margin:.1rem 0 .15rem; }
  .day-date{ font-family:'Caveat', cursive; font-size:1.1rem; color:var(--stamp-red); margin-left:.5rem; }
  .day-title{ font-size:1.25rem; font-weight:600; margin:0 0 .5rem; font-style:italic; }
  .day-badges{ display:flex; flex-wrap:wrap; gap:.4rem; margin:0 0 .7rem; }
  .day-badge{
    font-family:'Special Elite', monospace;
    font-size:.68rem;
    letter-spacing:.3px;
    text-transform:uppercase;
    padding:.2rem .55rem;
    border:1px solid var(--gold);
    color:var(--ink);
    background: rgba(184,147,95,0.12);
  }
  .day-entry ul{ margin:0; padding-left:1.1rem; }
  .day-entry li{ margin-bottom:.35rem; font-size:1.02rem; line-height:1.5; }
  .journal-end{ text-align:center; font-family:'Caveat', cursive; font-size:1.3rem; color:var(--navy); opacity:.7; margin-top:2.2rem; }

  /* budget table */
  .budget-table{ width:100%; border-collapse:collapse; }
  .budget-table tr{ border-bottom: 1px dashed rgba(59,44,32,0.25); }
  .budget-table td{ padding: .6rem .2rem; font-size:1rem; vertical-align:top; }
  .budget-table td.b-label{ color:var(--ink); }
  .budget-table td.b-amount{ text-align:right; font-family:'Special Elite', monospace; color:var(--navy); white-space:nowrap; }
  .budget-table td.b-note{ display:block; font-size:.85rem; font-style:italic; opacity:.75; margin-top:.15rem; }
  .budget-table tr.b-total{ border-bottom:none; border-top: 2px solid var(--navy); }
  .budget-table tr.b-total td{ padding-top:.8rem; font-weight:700; font-size:1.1rem; }
  .budget-note{ font-size:.85rem; font-style:italic; opacity:.7; margin: .6rem 0 0; }

  /* contacts */
  .contacts-list{ list-style:none; margin:0; padding:0; display:grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: .8rem 1.2rem; }
  .contacts-list li{
    display:flex; justify-content:space-between; align-items:baseline; gap:.5rem;
    background: rgba(184,147,95,0.1); padding:.6rem .8rem; border:1px solid rgba(59,44,32,0.15);
  }
  .contacts-list .c-name{ font-size:.98rem; }
  .contacts-list .c-phone{ font-family:'Special Elite', monospace; font-size:.85rem; color:var(--navy); text-decoration:none; }

  /* tips */
  .tips-group{ margin-bottom: 1.4rem; }
  .tips-group:last-child{ margin-bottom:0; }
  .tips-heading{ font-family:'Special Elite', monospace; font-size:.95rem; color:var(--stamp-red); margin:0 0 .5rem; }
  .tips-group ul{ margin:0; padding-left:1.2rem; }
  .tips-group li{ margin-bottom:.4rem; font-size:1rem; line-height:1.55; }

  /* download button */
  .download-wrap{ text-align:center; margin-top:2.4rem; }
  .download-btn{
    font-family:'Special Elite', monospace;
    font-size:.85rem;
    letter-spacing:.5px;
    text-transform:uppercase;
    padding:.85rem 1.8rem;
    border: 2px solid var(--navy);
    background: var(--navy);
    color:#fbf4e4;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    transition:.2s ease;
  }
  .download-btn:hover{ background:#1c2e3d; }

  /* blog article body inside journal-page */
  .blog-article p{ margin: 0 0 1.1rem; line-height:1.75; font-size: 1.05rem; }
  .blog-article p:first-of-type::first-letter{
    font-family:'Special Elite', monospace;
    font-size: 2.6rem;
    float:left;
    line-height:1;
    padding: .05em .12em 0 0;
    color: var(--stamp-red);
  }

  @media (max-width: 600px){
    .journal-body{ padding: 2.2rem 1.4rem 0; }
    .contacts-list{ grid-template-columns: 1fr; }
  }

  /* ============ UPCOMING PAGE: TICKETS ============ */
  .upcoming-grid{
    max-width: 1180px; margin:0 auto; padding: 0 1.6rem 5rem;
    display:grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
  .ticket{
    position:relative;
    background:#fff8ec;
    border: 1px solid rgba(59,44,32,.2);
    box-shadow: 0 10px 20px -10px rgba(59,44,32,.35);
    display:flex;
    opacity:0;
    animation: settle .5s ease forwards;
  }
  .ticket-main{ flex:1; padding: 1.4rem 1.3rem; min-width:0; }
  .ticket-stub{
    width: 92px; flex-shrink:0;
    background: var(--navy); color:#fbf4e4;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    font-family:'Special Elite', monospace; font-size:.65rem; text-align:center;
    padding:.5rem; position:relative;
    border-left: 2px dashed rgba(251,244,228,.45);
  }
  .ticket-stub .plane{ font-size:1.5rem; margin-bottom:.35rem; }
  .status-badge{
    display:inline-block;
    font-family:'Special Elite', monospace;
    font-size:.62rem; text-transform:uppercase; letter-spacing:.5px;
    padding:.2rem .55rem;
    border: 1px solid var(--stamp-red);
    color: var(--stamp-red);
    margin-bottom:.6rem;
  }
  .ticket h3{ font-family:'Special Elite', monospace; font-size:1.15rem; margin:.1rem 0; color:var(--ink); }
  .ticket .when{ font-family:'Caveat', cursive; font-size:1.15rem; color:var(--stamp-red); margin-bottom:.6rem; }
  .ticket p.notes{ font-size:.96rem; line-height:1.55; margin:0; }

  /* ============ BLOG PAGE ============ */
  .blog-grid{
    max-width: 1180px; margin:0 auto; padding: 0 1.6rem 5rem;
    display:grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
  }
  .blog-card{
    background:#fff8ec;
    border: 1px solid rgba(59,44,32,.18);
    box-shadow: 0 10px 18px -10px rgba(59,44,32,.35);
    cursor:pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    display:flex; flex-direction:column;
    opacity:0;
    animation: settle .5s ease forwards;
  }
  .blog-card:hover{ transform: translateY(-5px); box-shadow: 0 18px 28px -12px rgba(59,44,32,.45); }
  .blog-card img{ width:100%; height:170px; object-fit:cover; filter: sepia(.3) saturate(1.05) contrast(1.02); }
  .blog-card .content{ padding: 1.1rem 1.2rem 1.4rem; }
  .blog-card .meta{ font-family:'Caveat', cursive; color:var(--stamp-red); font-size:1.05rem; margin-bottom:.3rem; }
  .blog-card h3{ font-family:'Special Elite', monospace; font-size:1.12rem; margin:.2rem 0 .55rem; color:var(--ink); }
  .blog-card p.excerpt{ font-size:.97rem; line-height:1.5; margin:0 0 .9rem; opacity:.9; }
  .blog-card .read-more{ font-family:'Special Elite', monospace; font-size:.72rem; text-transform:uppercase; letter-spacing:.5px; color:var(--navy); }

  /* ============ FOOTER ============ */
  .site-footer{
    text-align:center;
    padding: 2.6rem 1rem 2.4rem;
    border-top: 1px solid rgba(59,44,32,.2);
    margin-top: 2rem;
  }
  .footer-social{ display:flex; justify-content:center; gap:1rem; margin-bottom: 1rem; }
  .footer-social a{
    width: 38px; height:38px; border-radius:50%;
    border: 1.5px solid var(--navy);
    display:flex; align-items:center; justify-content:center;
    color: var(--navy); text-decoration:none;
    transition:.2s ease;
  }
  .footer-social a:hover{ background: var(--navy); color: var(--paper); }
  .footer-social svg{ width:17px; height:17px; }
  .footer-tagline{ font-family:'Caveat', cursive; font-size:1.3rem; color:var(--navy); opacity:.75; margin:0; }

  @media (prefers-reduced-motion: reduce){
    .postcard, .ticket, .blog-card, .journal-page, .overlay, .page{ transition:none; animation:none; opacity:1; }
  }

  @media (max-width: 480px){
    .stamp-title{ font-size: 1.5rem; padding: .5rem 1rem; }
    .journal-page{ }
    .journal-body{ padding: 2.2rem 1.3rem 0; }
  }
