/* Where's My Holiday — public site */
:root {
  --sand: #ffffff;
  --ink: #22303a;
  --ink-soft: #5c6b76;
  --teal: #4a90c2;
  --teal-dark: #35709c;
  --line: #e9e9e5;
  --card: #ffffff;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--teal); }
img { max-width: 100%; display: block; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}

/* ---- header ---- */
.site-header {
  position: relative;
  text-align: center;
  padding: 44px 20px 0;
}
/* Discreet language switcher — pages open via Google's translate proxy. */
.lang-picker {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 40;
  text-align: left;
}
.lang-picker summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 11px;
}
.lang-picker summary::-webkit-details-marker { display: none; }
.lang-picker summary:hover,
.lang-picker[open] summary {
  color: var(--teal);
  border-color: var(--teal);
}
.lang-picker summary svg { width: 15px; height: 15px; }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(34, 48, 58, 0.13);
  padding: 10px;
}
.lang-search {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 10px;
  font: inherit;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 8px;
}
.lang-search:focus {
  outline: none;
  border-color: var(--teal);
}
.lang-list {
  display: grid;
  max-height: 300px;
  overflow: auto;
  overscroll-behavior: contain;
}
.lang-list a {
  display: block;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
}
.lang-list a:hover { background: #eef5fb; color: var(--teal); }
@media (max-width: 700px) {
  .lang-picker { top: 12px; right: 12px; }
}
/* Google Translate runs invisibly in the page — hide every piece of its
   own UI (top banner iframe, tooltips, highlights, status toasts). */
#gt-holder,
iframe.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
#goog-gt-vt,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe-OiiCO {
  display: none !important;
}
body { top: 0 !important; }
font.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.logo-main {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 4.8vw, 46px);
  line-height: 1.1;
  letter-spacing: 0.005em;
  color: var(--ink);
}
/* Location pin stands in for the apostrophe in "Where's". */
.logo-pin {
  display: inline-block;
  width: 0.44em;
  height: 0.6em;
  margin: 0 0.02em;
  vertical-align: baseline;
  transform: translateY(-0.34em);
}
.tagline {
  margin: 10px 0 26px;
  color: var(--ink-soft);
  font-size: 15px;
  letter-spacing: 0.02em;
}
.cat-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 8px;
  max-width: 920px;
  margin: 0 auto;
}
.cat-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.cat-nav a:hover { color: var(--teal); }
.cat-nav a.active { color: var(--teal); border-bottom-color: var(--teal); }

/* ---- main / cards ---- */
.site-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 44px 20px 70px;
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  text-align: center;
  margin: 0 0 36px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 860px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .cards { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(34, 48, 58, 0.07);
  display: flex;
}
.card:hover .card-title { color: var(--teal); }
.card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  padding: 18px 22px 10px;
}
.card-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.card-cat {
  display: inline-block;
  margin: auto 22px 18px; /* auto top pins the chip to the card foot */
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
}
.empty {
  text-align: center;
  color: var(--ink-soft);
  padding: 40px 0;
}

/* ---- homepage editing (logged in) ---- */
.edit-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #fff8e8;
  border: 1px solid #eadfb8;
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 24px;
  font-size: 14px;
}
.edit-bar button {
  background: var(--teal);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 8px 18px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.edit-bar button:disabled { opacity: 0.45; cursor: default; }
.cards.editable .card { cursor: grab; }
.cards.editable .card.dragging { opacity: 0.5; }
.card-swap {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.swap-menu {
  position: absolute;
  top: 46px; right: 10px;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(34,48,58,0.16);
  max-height: 260px;
  overflow: auto;
  min-width: 240px;
}
.swap-menu button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 14px;
  font: inherit;
  font-size: 13.5px;
  cursor: pointer;
}
.swap-menu button:hover { background: var(--sand); }

/* ---- post page ---- */
.post { max-width: 760px; margin: 0 auto; }
.post-header { text-align: center; margin-bottom: 30px; }
.post-cat {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
}
.post-title {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  margin: 10px 0 8px;
}
.post-header time { color: var(--ink-soft); font-size: 14px; }
.post-hero {
  margin: 0 0 34px;
  border-radius: 14px;
  overflow: hidden;
}
.post-hero img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
.post-body { font-size: 17px; }
.post-body h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  margin: 38px 0 12px;
}
.post-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin: 28px 0 10px;
}
.post-body p { margin: 0 0 18px; }
/* Entry heading + "Explore destination" pill share a row; pill hugs the right. */
.post-body .entry-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 38px 0 12px;
}
.post-body .entry-head h2 { margin: 0; }
.explore-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  color: var(--teal);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.explore-pill svg { width: 10px; height: 14px; flex-shrink: 0; }
.explore-pill:hover { background: var(--teal); color: #fff; }

/* ---- destination page ---- */
.dest-mention { margin-bottom: 30px; }
.dest-source {
  font-size: 13.5px;
  color: var(--ink-soft);
}
.dest-source a { color: var(--teal); text-decoration: none; }
.dest-source a:hover { text-decoration: underline; }
.post-body ul, .post-body ol { margin: 0 0 18px; padding-left: 24px; }
.post-body li { margin-bottom: 8px; }
.post-body blockquote {
  margin: 26px 0;
  padding: 4px 22px;
  border-left: 3px solid var(--teal);
  color: var(--ink-soft);
  font-style: italic;
}
.post-body img { border-radius: 10px; margin: 10px 0 20px; }
.post-body figure {
  margin: 14px 0 22px;
  border-radius: 12px;
  overflow: hidden;
}
.post-body figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
}
.post-body figcaption {
  font-size: 12.5px;
  color: var(--ink-soft);
  padding: 8px 2px 0;
}
.post-admin { margin-top: 40px; text-align: center; font-size: 14px; }

/* ---- destination guide (rich template) ---- */
/* hero: title block, then photo + zoomed-in map side by side */
.dg-hero { padding-top: 8px; }
.dg-hero-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}
.dg-hero-solo { grid-template-columns: 1fr; }
.dg-hero-media {
  margin: 0;
  height: 420px;
  overflow: hidden;
  border-radius: 18px;
}
.dg-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.dg-hero-map {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #eef3f2;
}
.dg-hero-map iframe { display: block; width: 100%; height: 100%; border: 0; }
.dg-map-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 999px;
  box-shadow: 0 3px 14px rgba(20, 32, 38, 0.18);
  pointer-events: none;
}
.dg-map-tag .dg-icon { width: 15px; height: 15px; color: var(--terracotta, #e56b4e); }
.dg-map-open {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 3px 14px rgba(20, 32, 38, 0.18);
}
.dg-map-open:hover { color: var(--teal); }
.dg-hero-text {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 20px 8px;
  text-align: center;
}
.dg-kicker {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal);
  margin-bottom: 12px;
}
.dg-hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px;
}
.dg-intro {
  font-size: 18.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}
.dg-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
}
.dg-pills li {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  background: var(--card);
}
.dg-pill-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* layout: sticky pill side-nav on the left, sections on the right */
.dg-layout {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.dg-sidenav {
  position: sticky;
  top: 28px;
  margin-top: 76px;
}
.dg-sidenav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dg-sidenav a {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--card);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.dg-sidenav a:hover { color: var(--ink); border-color: #d9d9d3; transform: translateX(3px); }
.dg-sidenav a.active { background: var(--teal); border-color: var(--teal); color: #fff; }

.dg-main { min-width: 0; }
.dg-section { padding: 64px 0 8px; scroll-margin-top: 24px; }
.dg-section-head { text-align: center; margin-bottom: 40px; }
.dg-section-head .dg-kicker { margin-bottom: 8px; }
.dg-section-head h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.6vw, 34px);
  font-weight: 600;
  margin: 0;
}
.dg-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 18px 0 0;
}
.dg-icon { width: 26px; height: 26px; color: var(--teal); }

/* overview */
/* overview copy, demoted to a quiet standfirst paragraph under the hero */
.dg-standfirst {
  max-width: 660px;
  margin: 34px auto 0;
  padding: 0 20px;
  text-align: center;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* stay picks */
.dg-hotels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dg-hotel {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dg-hotel:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(34, 48, 58, 0.1);
}
.dg-hotel:hover .dg-cta { text-decoration: underline; }
.dg-hotel-media { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.dg-hotel-media img { width: 100%; height: 100%; object-fit: cover; }
.dg-photo-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(20, 32, 38, 0.62);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  white-space: nowrap;
  max-width: calc(100% - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.dg-hotel-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.dg-hotel-body h4 { font-family: var(--serif); font-size: 19px; font-weight: 600; margin: 0; }
.dg-hotel-area {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-soft); margin: 6px 0 12px;
}
.dg-hotel-area .dg-icon { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; }
.dg-hotel-body > p { margin: 0 0 18px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }
.dg-cta {
  margin-top: auto;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--teal);
}
.dg-cta:hover { text-decoration: underline; }

/* flights */
.dg-flight-card {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 38px 34px;
  text-align: center;
  background: var(--card);
}
.dg-flight-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  margin: 0 0 10px;
}
.dg-flight-card > p { margin: 0 0 26px; font-size: 15px; color: var(--ink-soft); line-height: 1.7; }

/* "Flying from" airport search */
.dg-fly-from { max-width: 460px; margin: 0 auto 22px; text-align: left; }
.dg-fly-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 6px 4px;
}
.dg-fly-box { position: relative; }
.dg-fly-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 22px;
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.dg-fly-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(74, 144, 194, 0.15); }
.dg-fly-list {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(34, 48, 58, 0.14);
  max-height: 330px;
  overflow-y: auto;
}
.dg-fly-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "city iata" "name iata";
  column-gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
}
.dg-fly-list li:hover, .dg-fly-list li.active { background: #eef5fb; }
.dg-fly-city { grid-area: city; font-weight: 600; font-size: 14.5px; }
.dg-fly-name { grid-area: name; font-size: 12.5px; color: var(--ink-soft); }
.dg-fly-iata {
  grid-area: iata;
  align-self: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--teal);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 8px;
}
.dg-fly-hint { margin: 8px 4px 0; font-size: 12.5px; color: var(--ink-soft); }
.dg-months {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.dg-month {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 6px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.dg-month:hover { border-color: var(--teal); background: #eef5fb; transform: translateY(-2px); }
.dg-month-year { font-size: 11.5px; font-weight: 500; color: var(--ink-soft); }
.dg-flight-card .dg-note { margin-top: 22px; }

/* flight tabs: pick exact dates vs flexible whole months */
.dg-flight-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  margin: 24px 0 22px;
}
.dg-ftab {
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 2px 12px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.dg-ftab:hover { color: var(--ink); }
.dg-ftab.active { color: var(--teal); border-bottom-color: var(--teal); }
.dg-fpanel-hint { margin: 0 0 16px; font-size: 13.5px; color: var(--ink-soft); }

/* two-month date-picker calendar */
.dg-cal { display: flex; align-items: flex-start; gap: 10px; }
.dg-cal-months {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  min-width: 0;
}
.dg-cal-month h4 {
  text-align: center;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 4px 0 12px;
}
.dg-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.dg-cal-dow {
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 4px 0 6px;
}
.dg-day {
  appearance: none;
  border: 0;
  background: none;
  font: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
}
.dg-day:hover:not(.disabled):not(.selected) { background: #eef6f5; }
.dg-day.disabled { color: #c6cfd3; cursor: default; }
.dg-day.in-range { background: #e3f0ee; border-radius: 0; }
.dg-day.selected { background: var(--teal); color: #fff; font-weight: 700; }
.dg-cal-nav {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  margin-top: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.dg-cal-nav:hover:not(:disabled) { border-color: var(--teal); color: var(--teal); }
.dg-cal-nav:disabled { opacity: 0.35; cursor: default; }
.dg-cal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.dg-cal-summary { margin: 0; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.dg-cal-search {
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 999px;
}
.dg-cal-search:hover { opacity: 0.9; }
.dg-cal-search[aria-disabled="true"] { opacity: 0.4; pointer-events: none; }

/* things to do */
.dg-todo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dg-todo-media { margin: 0 0 14px; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 14px; }
.dg-todo-media img { width: 100%; height: 100%; object-fit: cover; }
.dg-todo h3 { font-family: var(--serif); font-size: 19px; font-weight: 600; margin: 0 0 6px; }
.dg-todo p { margin: 0; font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }

/* getting around */
.dg-map-caption {
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 14px 0 0;
}
.dg-transport {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.dg-transport-card { border: 1px solid var(--line); border-radius: 14px; padding: 26px; background: var(--card); }
/* an odd card at the end (e.g. the 5th of 5) stretches across both columns */
.dg-transport-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
.dg-transport-card h3 { font-family: var(--serif); font-size: 18px; font-weight: 600; margin: 12px 0 8px; }
.dg-transport-card p { margin: 0; font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }
.dg-transport-card .dg-cta { display: inline-block; margin-top: 12px; }
.dg-tr-options {
  list-style: none;
  margin: 16px 0 0;
  padding: 14px 0 0;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 11px;
}
.dg-tr-options li { font-size: 14px; line-height: 1.5; }
.dg-tr-options a { color: var(--teal); font-weight: 600; text-decoration: none; }
.dg-tr-options a:hover { text-decoration: underline; }
.dg-tr-note { display: block; color: var(--ink-soft); font-size: 13px; margin-top: 2px; }
.dg-tr-note .dg-tr-phone { font-weight: 600; white-space: nowrap; }

/* related */
.dg-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dg-related-articles { grid-template-columns: repeat(3, 1fr); }
.dg-related-card { text-decoration: none; color: inherit; }
.dg-related-card figure { margin: 0 0 12px; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 14px; }
.dg-related-card img { width: 100%; height: 100%; object-fit: cover; }
.dg-related-card h3 { font-family: var(--serif); font-size: 17.5px; font-weight: 600; margin: 0 0 4px; }
.dg-related-card:hover h3 { color: var(--teal); }
.dg-read { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }

@media (max-width: 940px) {
  /* side nav becomes a slim sticky pill bar above the content */
  .dg-layout { display: block; }
  .dg-sidenav {
    top: 0;
    z-index: 20;
    margin: 28px -20px 0;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
  }
  .dg-sidenav ul { flex-direction: row; gap: 8px; overflow-x: auto; scrollbar-width: none; }
  .dg-sidenav ul::-webkit-scrollbar { display: none; }
  .dg-sidenav a { white-space: nowrap; padding: 8px 15px; font-size: 13px; }
  .dg-sidenav a:hover { transform: none; }
  .dg-section { scroll-margin-top: 76px; }
  .dg-hotels, .dg-todo-grid { grid-template-columns: 1fr 1fr; }
  .dg-related-grid { grid-template-columns: 1fr 1fr; }
  .dg-months { grid-template-columns: repeat(3, 1fr); }
  .dg-hero-duo { grid-template-columns: 1fr; }
  .dg-hero-media, .dg-hero-map { height: 320px; }
}
@media (max-width: 600px) {
  .dg-hotels, .dg-todo-grid, .dg-related-grid, .dg-transport { grid-template-columns: 1fr; }
  .dg-section { padding: 44px 0 4px; }
  .dg-months { grid-template-columns: repeat(2, 1fr); }
  .dg-cal-months { grid-template-columns: 1fr; gap: 22px; }
  .dg-day { height: 32px; }
  .dg-hero-media, .dg-hero-map { height: 260px; }
  .dg-flight-card { padding: 30px 22px 26px; }
}

/* ---- footer ---- */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 70px;
  padding: 52px 20px 34px;
  color: var(--ink-soft);
  font-size: 13.5px;
  background: #fbfaf7;
}
.site-footer a { color: var(--ink-soft); text-decoration: none; }
.site-footer a:hover { color: var(--teal); }
.footer-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
}
.footer-logo .logo-pin { width: 11px; height: 15px; margin: 0 1px; transform: translateY(1px); }
.footer-brand p {
  margin-top: 12px;
  max-width: 340px;
  line-height: 1.75;
}
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col h3 {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.footer-bottom {
  max-width: 1060px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-disclosure { max-width: 560px; color: #9aa5a6; }
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ---- info pages (about / contact / privacy) ---- */
.info-page { max-width: 680px; margin: 0 auto; padding: 46px 20px 30px; }
.info-header .post-title { font-size: clamp(30px, 4.5vw, 42px); }
.info-lead {
  margin-top: 14px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.info-body { margin-top: 30px; }
.info-body h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 34px 0 10px;
}
.info-body p { margin: 0 0 16px; font-size: 15.5px; line-height: 1.85; color: var(--ink-soft); }
.info-body a { color: var(--teal); text-decoration: none; border-bottom: 1px solid rgba(74, 144, 194, 0.4); }
.info-body a:hover { border-bottom-color: var(--teal); }

/* contact form */
.contact-form { margin-top: 6px; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label {
  display: block;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 11px 14px;
  font: 400 15px/1.5 var(--sans);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74, 144, 194, 0.15);
}
.contact-form textarea { resize: vertical; }
.contact-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-privacy { font-size: 13px; color: #9aa5a6; margin: 2px 0 20px; }
.contact-privacy a { color: var(--teal); }
.contact-submit {
  display: inline-block;
  padding: 13px 30px;
  font: 600 14.5px var(--sans);
  color: #fff;
  background: var(--teal);
  border: none;
  border-radius: 999px;
  cursor: pointer;
}
.contact-submit:hover { background: #24605e; }
.contact-sent h2 { font-family: var(--serif); font-size: 24px; margin-bottom: 12px; }
.contact-sent a { color: var(--teal); }
@media (max-width: 600px) {
  .contact-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---- homepage: hero + trust strip ---- */
.home-hero {
  text-align: center;
  padding: 18px 20px 0;
  max-width: 700px;
  margin: 0 auto;
}
.home-hero h1 {
  font-family: var(--serif);
  font-size: clamp(27px, 3.6vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
.home-hero p {
  margin: 14px auto 0;
  max-width: 560px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.home-section-title {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  text-align: center;
  margin: 46px 0 26px;
}
.home-trust {
  text-align: center;
  max-width: 620px;
  margin: 66px auto 0;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}
.home-trust h2 { font-family: var(--serif); font-size: 24px; font-weight: 600; margin: 0 0 12px; }
.home-trust p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; margin: 0 0 16px; }
.home-trust-link { font-weight: 600; font-size: 14.5px; color: var(--teal); text-decoration: none; }
.home-trust-link:hover { text-decoration: underline; }
/* ---- about page (brand story) ---- */
.about-page { max-width: 1000px; margin: 0 auto; padding: 30px 20px 20px; }
.about-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 14px;
}
.about-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 46px;
  align-items: center;
}
.about-hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 18px;
}
.about-question {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 18px;
}
.about-question em { color: #e56b4e; }
.about-hero-text p { font-size: 15.5px; line-height: 1.85; color: var(--ink-soft); margin: 0 0 14px; }
.about-founding { font-weight: 600; color: var(--ink) !important; }
.about-hero-media {
  margin: 0;
  height: 400px;
  border-radius: 18px;
  overflow: hidden;
}
.about-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Four destinations, one picture — beach, mountains, city, tropics. */
.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  border-radius: 0;
  overflow: visible;
}
.about-collage img { border-radius: 14px; min-height: 0; }
.about-section { margin-top: 84px; text-align: center; }
.about-section h2,
.about-money h2,
.about-promise h2,
.about-contact h2 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  margin: 0 0 16px;
}
.about-lede { max-width: 620px; margin: 0 auto 34px; font-size: 15.5px; line-height: 1.8; color: var(--ink-soft); }
.about-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}
.about-point {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px;
  background: var(--card);
}
.about-point-icon {
  display: inline-flex;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: #e7f1f9;
  color: var(--teal);
  margin-bottom: 14px;
}
.about-point-icon svg { width: 21px; height: 21px; }
.about-point h3 { font-size: 15px; font-weight: 600; margin: 0 0 8px; }
.about-point p { font-size: 13.5px; line-height: 1.7; color: var(--ink-soft); margin: 0; }
.about-money {
  margin-top: 84px;
  background: #f2f7fc;
  border-radius: 20px;
  padding: 46px 48px;
  text-align: center;
}
.about-money p { max-width: 640px; margin: 0 auto 14px; font-size: 15.5px; line-height: 1.85; color: var(--ink-soft); }
.about-money a { color: var(--teal); }
.about-promise { margin-top: 84px; text-align: center; }
.about-promise blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.6vw, 24px);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
  color: var(--ink);
}
.about-contact { margin: 84px 0 40px; text-align: center; }
.about-contact p { max-width: 520px; margin: 0 auto 24px; font-size: 15.5px; line-height: 1.8; color: var(--ink-soft); }
a.contact-submit { text-decoration: none; }
@media (max-width: 860px) {
  .about-hero { grid-template-columns: 1fr; gap: 30px; }
  .about-hero-media { height: 300px; }
  .about-points { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .about-points { grid-template-columns: 1fr; }
  .about-money { padding: 36px 24px; }
}
