/* ============================================================
   I Forgot Souvenirs! — Global Styles
   Updated May 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Nunito:ital,wght@0,400;0,700;0,800;0,900;1,700;1,800&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --navy:   #05164a;
  --ink:    #0b1a55;
  --pink:   #f0197f;
  --teal:   #009aab;
  --aqua:   #13c4d8;
  --sand:   #fff1d0;
  --paper:  #fff9ed;
  --orange: #ff7a20;
  --green:  #3d9622;
  --yellow: #ffd84d;
  --wood:   #b56626;
  --sky:    #a8e4f7;
  --white:  #ffffff;

  --r: 22px;
  --shadow-sm: 0 4px 14px rgba(5,22,74,.10);
  --shadow:    0 10px 32px rgba(5,22,74,.14);
  --shadow-lg: 0 18px 48px rgba(5,22,74,.18);

  --font-display: 'Lilita One', cursive;
  --font-body:    'Nunito', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { line-height: 1.1; margin: 0; }
p { margin: 0; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 9999;
  background: var(--pink); color: white; padding: 10px 20px; border-radius: var(--r);
  font-weight: 800;
}
.skip-link:focus { left: 12px; }

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   NAV
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--sand);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: auto; padding: 10px 24px; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: 22px; line-height: 1;
  color: var(--navy); white-space: nowrap;
}
.brand .palm { font-size: 28px; }
.brand .brand-sub { color: var(--teal); font-size: 0.78em; display: block; }

.navlinks {
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.navlinks a {
  font-weight: 800; font-size: 14.5px; padding: 6px 11px;
  border-radius: 999px; transition: background 0.18s, color 0.18s;
  color: var(--ink);
}
.navlinks a:hover,
.navlinks a.active {
  background: var(--sand); color: var(--navy);
}
.navlinks a.nav-guide {
  background: var(--yellow);
  border: 2px solid #e6b800;
  border-radius: 20px;
  padding: 4px 12px;
  color: var(--navy) !important;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: .01em;
}
.navlinks a.nav-guide:hover { background: #ffca00 !important; color: var(--navy) !important; }
.nav-shop {
  background: var(--pink); color: white !important; margin-left: 6px;
}
.navlinks a.nav-shop:hover { background: #cc116b; color: white !important; }

/* Mobile hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span {
  display: block; width: 26px; height: 3px; background: var(--ink);
  border-radius: 3px; margin: 5px 0; transition: transform 0.2s;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; padding: 13px 26px;
  font-family: var(--font-body); font-weight: 900; font-size: 16px;
  border: none; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  line-height: 1; text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.18); }
.btn:active { transform: translateY(0); }
.btn-primary   { background: var(--pink);   color: white; }
.btn-primary:hover { background: #cc116b; }
.btn-teal      { background: var(--teal);   color: white; }
.btn-teal:hover { background: #007d8c; }
.btn-orange    { background: var(--orange); color: white; }
.btn-navy      { background: var(--navy);   color: white; }
.btn-green     { background: var(--green);  color: white; }
.btn-outline   { background: transparent; color: var(--navy); border: 3px solid var(--navy); padding: 10px 22px; }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-sm        { padding: 9px 18px; font-size: 14px; }

/* ============================================================
   HERO — HOME PAGE
   ============================================================ */
.hero-home {
  position: relative; overflow: hidden;
  background: linear-gradient(175deg, #7ed6f5 0%, #c9f2ff 30%, #fff5d6 55%, #ffd68a 100%);
  min-height: 600px;
}
.hero-home::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--paper);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.hero-home-inner {
  max-width: 1280px; margin: auto;
  display: grid; grid-template-columns: 1fr 1.6fr 1fr;
  gap: 24px; padding: 36px 24px 60px; align-items: start;
}

/* LEFT: sign stack */
.sign-column {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding-top: 10px;
}
.logo-board {
  background: #f7d39d;
  border: 5px solid var(--wood);
  border-radius: 16px;
  padding: 14px 16px;
  text-align: center;
  transform: rotate(-2deg);
  box-shadow: var(--shadow);
  width: 100%;
}
.logo-board .lb-title {
  font-family: var(--font-display);
  font-size: 30px; color: var(--navy); line-height: 1;
}
.logo-board .lb-title span { color: var(--teal); }
.logo-board .lb-sub {
  font-weight: 900; font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--wood); margin-top: 4px;
}

.plank-list { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.plank {
  display: block; text-align: center;
  font-family: var(--font-display); font-size: 18px; letter-spacing: .04em;
  color: white; border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 5px 0 rgba(0,0,0,.18);
  transition: transform .15s;
}
.plank:hover { transform: translateX(4px) rotate(0.5deg); }
.plank-1 { background: var(--teal);   transform: rotate(-2.5deg); }
.plank-2 { background: var(--orange); transform: rotate(2deg); }
.plank-3 { background: #0078c7;       transform: rotate(-1deg); }
.plank-4 { background: var(--pink);   transform: rotate(2.5deg); }
.plank-5 { background: var(--green);  transform: rotate(-1.5deg); }
.plank-6 { background: #c8961b;       transform: rotate(2deg); color: #111; }

/* CENTER: hero copy */
.hero-copy { text-align: center; padding-top: 24px; }
.hero-eyebrow {
  font-weight: 900; font-size: 15px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 98px);
  line-height: .92; color: var(--navy);
}
.hero-h1 .accent { color: var(--pink); }
.hero-sub {
  font-size: 20px; font-weight: 800; max-width: 520px;
  margin: 18px auto 0; color: var(--ink);
}
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* RIGHT: postcard stamp */
.postcard {
  margin-top: 30px;
  background: #fffdf5;
  border: 3px solid #d4b07a;
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  transform: rotate(3.5deg);
  box-shadow: var(--shadow);
  font-weight: 900;
}
.postcard .pc-tag {
  font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: #9a7342;
}
.postcard .pc-main {
  font-family: var(--font-display);
  font-size: 26px; color: var(--pink); line-height: 1; margin: 6px 0;
}
.postcard .pc-sub { font-size: 14px; color: var(--ink); }
.postcard .stamp-circle {
  display: inline-flex; flex-direction: column; align-items: center;
  justify-content: center; width: 90px; height: 90px;
  border: 3px solid var(--navy); border-radius: 50%;
  font-size: 11px; font-weight: 900; letter-spacing: .08em;
  text-transform: uppercase; line-height: 1.2; text-align: center;
  margin-top: 14px; transform: rotate(-12deg); color: var(--navy);
}

/* SHELF: product artwork row */
.merch-shelf {
  grid-column: 2 / 4;
  display: flex; justify-content: center; align-items: flex-end;
  gap: 14px; flex-wrap: wrap;
  margin-top: -40px; position: relative; z-index: 5;
}
.product-tile {
  width: 145px; height: 138px;
  border-radius: 18px; border: 3px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 4px;
  font-weight: 900; line-height: 1.15; font-size: 13px;
  overflow: hidden; cursor: default;
  transition: transform .2s, box-shadow .2s;
}
.product-tile:hover { transform: translateY(-5px) rotate(1deg); box-shadow: 0 22px 40px rgba(5,22,74,.22); }
.product-tile .tile-name { font-size: 18px; font-family: var(--font-display); }

.tile-mug-isla     { background: #fff; color: var(--ink); }
.tile-shirt-holbox { background: var(--teal); color: var(--yellow); clip-path: polygon(18% 12%,33% 0,67% 0,82% 12%,96% 26%,82% 42%,82% 100%,18% 100%,18% 42%,4% 26%); }
.tile-sticker-coz  { background: #e5f7ff; color: #005cae; border-radius: 50%; }
.tile-mug-cancun   { background: #fff; color: var(--ink); }
.tile-shirt-selva  { background: #062f33; color: var(--yellow); clip-path: polygon(18% 12%,33% 0,67% 0,82% 12%,96% 26%,82% 42%,82% 100%,18% 100%,18% 42%,4% 26%); }
.tile-mouse        { background: linear-gradient(135deg, #063d73, #ff709b); color: white; }

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.section { max-width: 1280px; margin: auto; padding: 60px 24px; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px); color: var(--navy);
}
.section-title .subtitle {
  font-size: 19px; font-weight: 800; color: var(--ink); opacity: .75;
  max-width: 680px; margin: 12px auto 0;
}

/* ============================================================
   EXCUSES SECTION
   ============================================================ */
.excuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.excuse-card {
  background: white; border-radius: var(--r); padding: 26px 24px;
  border: 3px dashed #e5c07a;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.excuse-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.excuse-card .excuse-emoji { font-size: 34px; margin-bottom: 10px; }
.excuse-card .excuse-title {
  font-family: var(--font-display); font-size: 20px; color: var(--pink); margin-bottom: 8px;
}
.excuse-card .excuse-body { font-size: 15px; font-weight: 700; color: var(--ink); opacity: .82; }

/* ============================================================
   DESTINATION CARDS
   ============================================================ */
.dest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.dest-card {
  background: white; border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 3px solid var(--sand);
  transition: transform .2s, box-shadow .2s;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dest-card-header {
  height: 140px; display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 18px; position: relative;
  background: linear-gradient(175deg, #6fd4f8 0%, #d0f4ff 55%, #ffe5a8 100%);
}
.dest-card-header .dest-sign {
  font-family: var(--font-display); font-size: 22px;
  color: white; padding: 8px 22px; border-radius: 10px;
  box-shadow: 0 5px 0 rgba(0,0,0,.15); letter-spacing: .04em;
  transform: rotate(-1.5deg);
}
.dest-card-body { padding: 20px 22px; }
.dest-card-body h3 { font-family: var(--font-display); font-size: 26px; color: var(--navy); margin-bottom: 6px; }
.dest-card-body p  { font-size: 15px; font-weight: 700; opacity: .75; margin-bottom: 18px; }

/* ============================================================
   SHOP GRID
   ============================================================ */
.shop-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.shop-card {
  background: white; border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.shop-card-art {
  height: 200px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #54d7e7 0%, #fff0c9 100%);
  font-family: var(--font-display); font-size: 28px; text-align: center;
  padding: 20px; flex-direction: column;
}
.shop-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.shop-card-body h3 { font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.shop-card-body p  { font-size: 14px; font-weight: 700; opacity: .72; flex: 1; margin-bottom: 14px; }
.shop-card-footer {
  display: flex; align-items: center; justify-content: center;
  padding: 0 20px 18px;
}
.shop-price { font-family: var(--font-display); font-size: 26px; color: var(--pink); }

/* ============================================================
   PROMISES BAR
   ============================================================ */
.promises {
  background: white;
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  border: 3px solid var(--sand);
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.promise-item {
  padding: 28px 24px;
  border-right: 2px solid var(--sand);
}
.promise-item:last-child { border-right: none; }
.promise-icon { font-size: 30px; margin-bottom: 10px; }
.promise-title { font-weight: 900; font-size: 18px; color: var(--navy); margin-bottom: 5px; }
.promise-desc  { font-size: 14px; font-weight: 700; opacity: .72; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, #009aab, #f0197f);
  border-radius: var(--r);
  padding: 52px 24px; text-align: center; color: white;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px); margin-bottom: 12px;
}
.cta-band p { font-size: 20px; font-weight: 800; opacity: .9; margin-bottom: 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy); color: white; margin-top: 80px;
  padding: 56px 0 28px;
}
.footer-inner {
  max-width: 1280px; margin: auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand { font-family: var(--font-display); font-size: 28px; margin-bottom: 12px; }
.footer-brand span { color: var(--aqua); }
.footer-tagline { font-size: 14px; font-weight: 700; opacity: .7; max-width: 280px; line-height: 1.5; }
.footer-col h4 { font-weight: 900; font-size: 16px; margin-bottom: 14px; letter-spacing: .06em; text-transform: uppercase; opacity: .55; }
.footer-col a { display: block; font-size: 15px; font-weight: 700; color: white; margin-bottom: 9px; opacity: .8; }
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom {
  max-width: 1280px; margin: 36px auto 0; padding: 18px 24px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 700; opacity: .55;
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #7ed6f5 0%, #c5f0ff 40%, #ffefc8 100%);
  padding: 56px 24px 80px;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: var(--paper); clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero-inner {
  max-width: 1280px; margin: auto;
  display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: center;
}
.page-hero-copy .eyebrow {
  font-weight: 900; font-size: 14px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
}
.page-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 78px); color: var(--navy); margin-bottom: 16px;
}
.page-hero-copy h1 .accent { color: var(--pink); }
.page-hero-copy .sub {
  font-size: 19px; font-weight: 800; max-width: 560px;
  color: var(--ink); margin-bottom: 24px;
}
.page-hero-copy .hero-actions { justify-content: flex-start; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; }
.contact-panel {
  background: white; border-radius: var(--r);
  padding: 36px 32px; box-shadow: var(--shadow-sm);
  border: 3px solid var(--sand);
}
.contact-panel h3 {
  font-family: var(--font-display); font-size: 30px; color: var(--navy); margin-bottom: 18px;
}
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block; font-weight: 900; font-size: 14px; margin-bottom: 5px;
  text-transform: uppercase; letter-spacing: .08em; color: var(--ink); opacity: .7;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 13px 16px;
  background: var(--paper); border: 3px solid var(--sand);
  border-radius: 12px; font-family: var(--font-body);
  font-size: 16px; font-weight: 700; color: var(--ink);
  transition: border-color .2s; outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,154,171,.12); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ============================================================
   DESTINATION PAGE SPECIFICS
   ============================================================ */
.dest-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.dest-intro-img {
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--sky), var(--sand));
  height: 300px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 40px; color: white;
  text-shadow: 0 3px 12px rgba(0,0,0,.3);
}
.dest-intro-copy h2 {
  font-family: var(--font-display); font-size: 40px; color: var(--navy); margin-bottom: 14px;
}
.dest-intro-copy p { font-size: 17px; font-weight: 700; line-height: 1.65; opacity: .82; }
.dest-vibes { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.vibe-tag {
  background: var(--sand); border-radius: 999px;
  padding: 7px 16px; font-weight: 900; font-size: 14px; color: var(--navy);
}

/* ============================================================
   SCROLLING TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--navy); color: white; padding: 13px 0;
  overflow: hidden; white-space: nowrap;
}
.ticker-track {
  display: inline-flex; animation: ticker 36s linear infinite;
  transform: translateZ(0); -webkit-font-smoothing: antialiased;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: var(--font-display); font-size: 17px; letter-spacing: .04em;
  padding: 0 32px; opacity: .9;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
.ticker-sep { color: var(--pink); opacity: 1; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-track { animation: ticker 106s linear infinite; }

/* ============================================================
   WE-GET-IT BOX (sticky note style)
   ============================================================ */
.we-get-it-box {
  background: var(--yellow);
  border-radius: 4px 18px 18px 18px;
  padding: 32px 28px;
  box-shadow: var(--shadow), 4px -4px 0 #d4a900;
  transform: rotate(-1.5deg);
  max-width: 360px;
}
.we-get-it-box h3 { font-family: var(--font-display); font-size: 28px; color: var(--navy); margin-bottom: 14px; }
.we-get-it-box ul { padding-left: 0; list-style: none; margin: 0; }
.we-get-it-box li {
  font-weight: 800; font-size: 16px; padding: 5px 0;
  border-bottom: 2px dashed rgba(0,0,0,.12);
}
.we-get-it-box li::before { content: '✓ '; color: var(--pink); font-weight: 900; }
.we-get-it-box .fix-it { font-family: var(--font-display); font-size: 26px; margin-top: 16px; color: var(--navy); }
.we-get-it-box .fix-heart { color: var(--pink); }

/* ============================================================
   COMING SOON PAGE
   ============================================================ */
.cs-hero {
  background: linear-gradient(160deg, #0a2540, #1a3a5c, #2e6b8a);
  color: white;
  text-align: center;
  padding: 72px 24px 56px;
}
.cs-eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 16px;
}
.cs-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1.1;
  margin: 0 0 16px;
}
.cs-hero h1 span { color: var(--yellow); }
.cs-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  opacity: .85;
  max-width: 560px;
  margin: 0 auto 12px;
}
.cs-hero-note {
  font-size: 0.9rem;
  opacity: .65;
  font-weight: 700;
  max-width: 480px;
  margin: 0 auto;
}

/* Use case pills */
.cs-uses {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 32px 24px 0;
  max-width: 780px;
  margin: 0 auto;
}
.cs-use {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.20);
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: background .2s;
}
.cs-use:hover { background: rgba(255,255,255,0.16); }
.cs-use-emoji { font-size: 1.3rem; }

/* Form section */
.cs-form-section {
  max-width: 620px;
  margin: 0 auto;
  padding: 52px 24px 0;
}
.cs-form-heading {
  text-align: center;
  margin-bottom: 32px;
}
.cs-form-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--navy);
  margin: 0 0 10px;
}
.cs-form-heading p {
  font-weight: 700;
  opacity: .7;
  font-size: 0.95rem;
  margin: 0;
}
.cs-panel {
  background: white;
  border-radius: var(--r);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 3px solid var(--sand);
}
.cs-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fffbf0;
  border: 2px solid var(--yellow);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 4px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.cs-checkbox-row:hover { background: #fff7e0; border-color: #e6b800; }
.cs-checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--navy);
  cursor: pointer;
}
.cs-checkbox-label {
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.4;
  cursor: pointer;
}
.cs-checkbox-label span {
  display: block;
  font-weight: 700;
  opacity: .65;
  font-size: 0.82rem;
  margin-top: 3px;
}
.cs-submit-note {
  font-size: 12px;
  font-weight: 700;
  opacity: .5;
  text-align: center;
  margin-top: 12px;
}

/* Divider */
.cs-divider {
  max-width: 620px;
  margin: 52px auto 0;
  padding: 0 24px;
  text-align: center;
}
.cs-divider-line {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #aaa;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cs-divider-line::before,
.cs-divider-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

/* Destination preview */
.cs-coming {
  max-width: 780px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.cs-coming h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-align: center;
  color: var(--navy);
  margin: 0 0 28px;
}
.cs-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cs-dest-card {
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform .2s, box-shadow .2s;
}
.cs-dest-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cs-dest-card .cs-dest-emoji { font-size: 2rem; display: block; margin-bottom: 8px; }
.cs-dest-card .cs-dest-name { font-family: var(--font-display); font-size: 1rem; display: block; margin-bottom: 4px; color: var(--navy); }
.cs-dest-card .cs-dest-items { font-size: 0.78rem; opacity: .65; font-weight: 700; }

/* Promise strip */
.cs-promise-strip {
  max-width: 780px;
  margin: 48px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cs-promise {
  text-align: center;
  padding: 20px 16px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--sand);
  transition: transform .2s;
}
.cs-promise:hover { transform: translateY(-2px); }
.cs-promise-icon { font-size: 1.8rem; margin-bottom: 8px; }
.cs-promise-title { font-family: var(--font-display); font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.cs-promise-desc { font-size: 0.8rem; font-weight: 700; opacity: .6; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-40  { margin-top: 40px; }
.mb-8   { margin-bottom: 8px; }
.gap-section { margin-top: 80px; }

/* ============================================================
   RESPONSIVE — 1060px
   ============================================================ */
@media (max-width: 1060px) {
  .hero-home-inner { grid-template-columns: 260px 1fr; }
  .postcard { display: none !important; }
  .merch-shelf { grid-column: 2 / 3; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid  { grid-template-columns: repeat(2, 1fr); }
  .excuses-grid { grid-template-columns: repeat(2, 1fr); }
  .promises { grid-template-columns: repeat(2, 1fr); }
  .promises .promise-item:nth-child(2) { border-right: none; }
  .promises .promise-item:nth-child(3) { border-top: 2px solid var(--sand); }
  .promises .promise-item:nth-child(4) { border-right: none; border-top: 2px solid var(--sand); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .dest-intro { grid-template-columns: 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .cs-dest-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-promise-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  body { font-size: 16px; }

  .hero-home { min-height: auto; }
  .hero-home-inner { grid-template-columns: 1fr; }
  .sign-column { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .logo-board { width: auto; flex: 0 0 100%; }
  .merch-shelf { grid-column: auto; margin-top: 20px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid  { grid-template-columns: 1fr; }
  .excuses-grid { grid-template-columns: 1fr; }
  .we-dest-grid { grid-template-columns: 1fr !important; }
  .gap-section { margin-top: 40px; }

  /* Nav */
  .nav-toggle { display: block; }
  .navlinks {
    display: none; flex-direction: column; align-items: flex-start;
    padding: 12px 0; gap: 2px; width: 100%;
  }
  .navlinks.open { display: flex; }
  .navlinks a { width: 100%; border-radius: 10px; padding: 10px 14px; }
  .nav { flex-wrap: wrap; }
  .nav-shop { margin-left: 0; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* Hero copy */
  .hero-copy { padding-top: 0; }
  .hero-sub { font-size: 17px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { font-size: 15px; padding: 11px 20px; }

  /* Page hero */
  .page-hero { padding: 40px 20px 60px; }
  .page-hero-copy h1 { font-size: clamp(36px, 8vw, 56px); }
  .page-hero-copy .sub { font-size: 16px; }

  /* Forms */
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-panel { padding: 24px 20px; }
  .cs-panel { padding: 24px 20px; }

  /* Coming soon */
  .cs-hero { padding: 48px 20px 40px; }
  .cs-uses { gap: 8px; padding: 24px 20px 0; }
  .cs-use { font-size: 0.85rem; padding: 8px 14px; }
  .cs-form-section { padding: 36px 20px 0; }
  .cs-dest-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cs-promise-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cs-coming { padding: 0 20px; }

  /* Sections */
  .section { padding: 40px 20px; }
  .section-title h2 { font-size: clamp(28px, 6vw, 44px); }
  .promises { grid-template-columns: 1fr 1fr; }
  .promises .promise-item { padding: 20px 16px; }
  .cta-band { padding: 36px 20px; }
  .cta-band p { font-size: 17px; }
}

/* ============================================================
   RESPONSIVE — 480px (small phones)
   ============================================================ */
@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }
  .cs-dest-grid { grid-template-columns: 1fr; }
  .cs-promise-strip { grid-template-columns: 1fr; }
  .promises { grid-template-columns: 1fr; }
  .promises .promise-item { border-right: none; border-bottom: 2px solid var(--sand); }
  .promises .promise-item:last-child { border-bottom: none; }
  .hero-h1 { font-size: clamp(42px, 11vw, 68px); }
  .dest-card-body h3 { font-size: 22px; }
  .product-tile { width: 120px; height: 114px; }
}

/* ============================================================
   EARLY ACCESS BANNER
   ============================================================ */
.early-banner {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 10px 48px 10px 24px;
  font-size: 14px;
  font-weight: 800;
  position: relative;
  line-height: 1.4;
}
.early-banner a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  margin-left: 10px;
  transition: opacity .15s;
}
.early-banner a:hover { opacity: .8; }
.early-banner-close {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none; color: white;
  font-size: 18px; cursor: pointer; opacity: .6;
  line-height: 1; padding: 4px 6px;
  transition: opacity .15s;
}
.early-banner-close:hover { opacity: 1; }
.early-banner.hidden { display: none; }




/* ===== GUIDES PAGE FIX ===== */

.guide-hero{
  background: linear-gradient(180deg,#f8f3e8 0%,#fffaf1 100%);
  padding: 48px 20px;
}

.guide-hero-inner{
  max-width: 1200px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap:32px;
  align-items:start;
}

.guide-kicker{
  font-size:.95rem;
  color:#0a2a6b;
  font-weight:800;
  margin-bottom:10px;
}

.guide-hero h1{
  font-size:3rem;
  line-height:1.1;
  margin-bottom:18px;
  color:#08245c;
}

.guide-hero p{
  font-size:1.2rem;
  line-height:1.7;
  color:#223;
}

.guide-card{
  background:#ffffff;
  border-radius:24px;
  padding:28px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.06);
}

.guide-card h3{
  margin-top:0;
  color:#08245c;
}

.guide-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:50px 20px 70px;
}

.guide-section{
  margin-bottom:40px;
}

.guide-section h2{
  font-size:2.3rem;
  color:#08245c;
  margin-bottom:16px;
}

.guide-section p{
  font-size:1.08rem;
  line-height:1.8;
  margin-bottom:18px;
}

.guide-disclaimer{
  background:#fff7d6;
  border-left:5px solid #f0c000;
  padding:16px 18px;
  border-radius:12px;
}

.guide-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:28px;
}

.guide-tile{
  background:#fff;
  border-radius:24px;
  padding:30px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.05);
}

.guide-tile h2{
  margin-top:0;
  color:#08245c;
  font-size:2rem;
}

.guide-tile p{
  line-height:1.7;
  margin-bottom:22px;
}

.guide-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.guide-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  background:#ffd54d;
  color:#08245c;
  text-decoration:none;
  font-weight:800;
  transition:.2s ease;
}

.guide-links a:hover{
  transform:translateY(-2px);
  background:#ffca1c;
}

@media (max-width:900px){

  .guide-hero-inner{
    grid-template-columns:1fr;
  }

  .guide-hero h1{
    font-size:2.3rem;
  }

  .guide-section h2,
  .guide-tile h2{
    font-size:1.8rem;
  }

}


/* ===== RELATED GUIDES LINK FIX - applies to all destination guide pages ===== */

.related-box {
  margin-top: 42px;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
}

.related-box h2 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #08245c;
}

.related-box p {
  margin-bottom: 16px;
}

.related-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 6px 8px 6px 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffd54d;
  color: #08245c;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  transition: .2s ease;
}

.related-box a:hover {
  background: #ffca1c;
  transform: translateY(-2px);
}

@media (max-width: 650px) {
  .related-box a {
    width: 100%;
    margin-right: 0;
  }
}
