/* =========================================================
   Get Lost — Travel Website
   Palette inspired by the coastal harbor caricature:
   sunny yellow, sky blue, ocean teal, warm sand, fresh green
   ========================================================= */

:root {
  --sky: #4FB3D9;
  --sky-light: #BFE3F2;
  --ocean: #2E86AB;
  --ocean-dark: #1C4F6B;
  --sun: #F5C842;
  --sun-deep: #E8A93A;
  --sand: #F7EFD9;
  --sand-deep: #EAD9A8;
  --grass: #7FB069;
  --coral: #EF6F6C;
  --navy: #1C3144;
  --ink: #2B3A4A;
  --muted: #6B7A88;
  --white: #FFFFFF;
  --off-white: #FBFAF5;
  --border: #E6E1D1;
  --shadow-sm: 0 2px 6px rgba(28, 49, 68, 0.06);
  --shadow-md: 0 8px 20px rgba(28, 49, 68, 0.10);
  --shadow-lg: 0 18px 40px rgba(28, 49, 68, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --maxw: 1200px;
  --font-display: "Georgia", "Iowan Old Style", "Palatino", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--ocean); text-decoration: none; }
a:hover { color: var(--ocean-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(140%) blur(8px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}
.brand .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--sun) 0%, var(--sun-deep) 70%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-weight: 500;
  font-size: .97rem;
  transition: background .2s, color .2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--sky-light);
  color: var(--ocean-dark);
}

.nav-cta {
  background: var(--sun);
  color: var(--navy) !important;
  padding: 10px 18px !important;
  border-radius: var(--radius-pill);
  font-weight: 600 !important;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--sun-deep); }

/* Destinations dropdown */
.nav-links .has-dropdown { position: relative; }
.nav-links .caret { font-size: .6em; margin-left: 3px; vertical-align: middle; }
.nav-links .dropdown {
  position: absolute; top: 100%; left: 0; margin: 6px 0 0; padding: 8px;
  min-width: 230px; list-style: none;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  display: none; z-index: 300;
}
.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown:focus-within .dropdown { display: block; }
.nav-links .dropdown li { margin: 0; }
.nav-links .dropdown a {
  display: block; padding: 9px 12px; border-radius: 8px;
  font-size: .92rem; font-weight: 500; white-space: nowrap; color: var(--ink);
}
.nav-links .dropdown a:hover { background: var(--sky-light); color: var(--ocean-dark); }
.nav-links .dropdown .dd-emoji { margin-right: 8px; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--navy);
}

/* ============ HERO ============ */
.hero {
  background:
    radial-gradient(1200px 400px at 80% 0%, rgba(245, 200, 66, 0.25), transparent 60%),
    linear-gradient(180deg, var(--sky-light) 0%, var(--off-white) 90%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--sun) 0%, var(--sun-deep) 70%, transparent 72%);
  border-radius: 50%;
  filter: drop-shadow(0 0 40px rgba(245, 200, 66, 0.5));
  opacity: .85;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  margin-bottom: .4em;
}
.hero .tagline {
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: .85rem;
  color: var(--navy);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.badge .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grass);
  margin-right: 6px;
  vertical-align: middle;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 0;
  transition: transform .15s, box-shadow .2s, background .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--ocean);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--ocean-dark); color: var(--white); transform: translateY(-1px); }

.btn-sun {
  background: var(--sun);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-sun:hover { background: var(--sun-deep); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--ocean);
  border: 2px solid var(--ocean);
}
.btn-outline:hover { background: var(--ocean); color: var(--white); }

.hero-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
  border: 6px solid var(--white);
}
.hero-figure img { width: 100%; height: auto; display: block; }
.hero-figure .play-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255,255,255,0.94);
  border-radius: var(--radius-pill);
  padding: 10px 16px 10px 12px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.play-badge .play-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
}

/* ============ SECTION ============ */
section {
  padding: 70px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.section-head p { color: var(--muted); max-width: 560px; margin: 0; }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ocean);
  font-weight: 700;
  margin-bottom: 8px;
}

/* ============ CARDS / GRIDS ============ */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.card-img {
  aspect-ratio: 16/10;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.card-img svg,
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: .75rem;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.card-chip.sun { background: var(--sun); }
.card-chip.grass { background: var(--grass); color: white; }
.card-chip.coral { background: var(--coral); color: white; }
.card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card-meta {
  font-size: .82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-meta span::before {
  content: "•";
  margin-right: 10px;
  color: var(--border);
}
.card-meta span:first-child::before { content: ""; margin: 0; }
.card h3 { margin-bottom: 4px; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: .88rem;
}
.card-footer a { font-weight: 600; }

/* ============ PRACTICAL RATING PILLS ============ */
.rating-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 6px 0 0;
}
.rating {
  background: var(--sand);
  color: var(--navy);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: .75rem;
  font-weight: 600;
}
.rating.easy { background: #DEF0D2; color: #2F6D1B; }
.rating.moderate { background: #FFE8B8; color: #876100; }
.rating.challenging { background: #FFD6D4; color: #A3322F; }

/* ============ FEATURE / SPLIT ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.split .media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
}

/* ============ VIDEO TILES ============ */
.video-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.video-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.video-frame {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--sky) 0%, var(--ocean) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(245,200,66,0.5), transparent 35%);
}
.video-frame .host {
  position: absolute;
  bottom: 0;
  right: 14px;
  width: 46%;
  max-width: 180px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25));
}
.video-frame .play {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--coral);
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.video-frame .city-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,0.45);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.video-body {
  padding: 18px 20px 22px;
}
.video-body h3 { margin-bottom: 6px; }
.video-body p { color: var(--muted); font-size: .92rem; margin: 0; }
.video-body .stops {
  margin-top: 12px;
  font-size: .84rem;
  color: var(--navy);
}
.video-body .stops a {
  display: inline-block;
  margin-right: 8px;
  padding: 3px 10px;
  background: var(--sand);
  border-radius: var(--radius-pill);
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 6px;
}
.video-body .stops a:hover { background: var(--sun); }

/* ============ AFFILIATE ============ */
.affiliate-band {
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-deep) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.affiliate-band .note {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 18px;
}
.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.aff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: var(--navy);
}
.aff-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--navy); }
.aff-card .icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.aff-card strong { display: block; font-size: .95rem; }
.aff-card small { color: var(--muted); font-size: .78rem; }

/* ============ NEWSLETTER ============ */
.newsletter {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  margin: 30px 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245,200,66,0.25), transparent 70%);
  border-radius: 50%;
}
.newsletter h2 { color: white; margin-bottom: 8px; }
.newsletter p { color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto 22px; }
.newsletter form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  border: 0;
  font-size: 1rem;
  font-family: inherit;
}

/* ============ FORMS ============ */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row { grid-column: 1 / -1; }
.form-card label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--off-white);
  color: var(--ink);
  transition: border-color .15s, background .15s;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--ocean);
  background: var(--white);
}
.form-card textarea { min-height: 140px; resize: vertical; }
.form-card .checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.form-card .checkbox-row label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: .9rem;
  background: var(--sand);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  margin: 0;
}
.form-card .checkbox-row input { width: auto; }

.form-success {
  display: none;
  background: #DEF0D2;
  color: #2F6D1B;
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ============ DESTINATION DETAIL ============ */
.dest-header {
  background: linear-gradient(180deg, var(--sky-light), var(--off-white));
  padding: 60px 0 40px;
}
.dest-header h1 { margin-bottom: 8px; }
.dest-header .lede { font-size: 1.12rem; color: var(--muted); max-width: 720px; }
.dest-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.meta-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: .88rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  color: var(--navy);
}
.meta-chip strong { color: var(--ocean-dark); }

.attractions-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-top: 20px;
}
.attractions-table th,
.attractions-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
  vertical-align: top;
}
.attractions-table th {
  background: var(--sand);
  font-weight: 700;
  color: var(--navy);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.attractions-table tr:last-child td { border-bottom: 0; }
.attractions-table .tag { display: inline-block; font-size: .72rem; padding: 2px 8px; border-radius: 99px; background: var(--sky-light); color: var(--ocean-dark); font-weight: 600; margin-right: 4px; }

.stars { color: var(--sun-deep); letter-spacing: 1px; }

/* ============ BLOG POST ============ */
.post {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.post h2 { margin-bottom: 6px; }
.post .post-meta {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.post .post-meta .author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ocean-dark);
}
.post .post-meta .author img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--sun);
  object-fit: cover;
}

.community-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--grass);
}
.community-card h3 { margin-bottom: 4px; }
.community-card .who { font-size: .85rem; color: var(--muted); margin-bottom: 10px; }
.community-card .who strong { color: var(--navy); }

/* ============ FOOTER ============ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 28px;
  margin-top: 60px;
}
footer h4 {
  color: white;
  margin-bottom: 14px;
  font-size: 1rem;
  font-family: var(--font-body);
  letter-spacing: .06em;
  text-transform: uppercase;
}
footer a { color: rgba(255,255,255,0.7); }
footer a:hover { color: var(--sun); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 32px;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li {
  margin-bottom: 8px;
  font-size: .92rem;
}
.footer-brand .brand { color: white; }
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: .9rem;
  max-width: 360px;
  margin-top: 10px;
}
.footer-bottom {
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,0.5);
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom .disclosure {
  max-width: 780px;
  margin: 0 auto 8px;
  font-size: .78rem;
  color: rgba(255,255,255,0.45);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .affiliate-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  section { padding: 50px 0; }
  .hero { padding: 40px 0 50px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .nav-links .dropdown {
    position: static; display: block; box-shadow: none; border: none;
    margin: 0 0 0 10px; padding: 2px 0; min-width: 0;
  }
  .nav-links .dropdown a { padding: 8px 12px; font-size: .9rem; }
  .nav-links .caret { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .affiliate-grid { grid-template-columns: 1fr 1fr; }
  .hero-figure { transform: none; }
  .section-head { align-items: flex-start; }
}
