:root {
  --navy: #1a2b3c;
  --navy-soft: #243447;
  --ink: #1c1c1c;
  --muted: #7a7f87;
  --line: #e8eaee;
  --sand: #f6f2ea;
  --gold: #c4a574;
  --white: #ffffff;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --script: "Great Vibes", cursive;
  --hand: "Caveat", cursive;
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 14.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
.container { width: min(var(--max), calc(100% - 3rem)); margin-inline: auto; }

/* ========== HEADER ========== */
.site-header {
  position: relative;
  z-index: 100;
}
.site-header--solid {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header--overlay {
  background: transparent;
  border-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.header-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
  min-height: 92px;
  position: relative;
}
.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  color: var(--navy);
  z-index: 2;
  position: relative;
}
.logo-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.logo-top {
  position: relative;
  display: inline-block;
  padding-right: 38px;
}
.logo-name {
  font-family: var(--script);
  font-size: 2.45rem;
  color: var(--navy);
  white-space: nowrap;
}
.logo-plane {
  position: absolute;
  right: 0;
  top: .05rem;
  width: 36px;
  height: 26px;
  color: var(--navy);
}
.logo-plane svg { width: 100%; height: 100%; display: block; }
.logo-word {
  margin-top: .2rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .46em;
  text-transform: uppercase;
  color: var(--navy);
  padding-left: .08rem;
}
.logo-tag {
  margin-top: .28rem;
  font-family: var(--sans);
  font-size: .5rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #555;
  padding-left: .08rem;
  white-space: nowrap;
}
.brand-img { display: none; }

.nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  position: relative;
  min-width: 0;
}
.nav-links--desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .15rem 1.1rem;
  flex-wrap: nowrap;
}
.nav-links--desktop > li { position: relative; }
.nav-links--desktop .nav-link,
.nav-links--desktop a.nav-link,
.nav-links--desktop button.nav-link {
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--navy);
  padding: .35rem 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  transition: color .2s ease;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.nav-links--desktop .nav-link:hover { color: var(--gold); }
.nav-links--desktop .nav-link.active { color: var(--navy); }
.nav-links--desktop .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1.5px;
  background: var(--navy);
}
.nav-links--desktop .caret {
  font-size: .55rem;
  opacity: .75;
  line-height: 1;
  transition: transform .2s ease;
}
.nav-links--desktop .has-drop.open > .nav-link .caret {
  transform: rotate(180deg);
}
.nav-links--desktop .dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(26, 43, 60, .12);
  padding: .4rem 0;
  z-index: 80;
}
.nav-links--desktop .dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-links--desktop .has-drop:hover > .dropdown,
.nav-links--desktop .has-drop:focus-within > .dropdown,
.nav-links--desktop .has-drop.open > .dropdown {
  display: block;
}
.nav-links--desktop .dropdown a {
  display: block;
  padding: .65rem 1rem;
  font-size: .82rem;
  white-space: nowrap;
  color: #222;
}
.nav-links--desktop .dropdown a:hover {
  background: #f7f8fa;
  color: var(--navy);
}

.nav-search {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--navy);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-left: .15rem;
  border-radius: 10px;
  transition: background .2s ease;
}
.nav-search:hover { background: rgba(26, 43, 60, .06); }
.nav-search svg { width: 18px; height: 18px; }
.motto {
  font-family: var(--hand);
  font-size: 1.4rem;
  color: var(--navy);
  white-space: nowrap;
  line-height: 1.1;
  transform: rotate(-3deg);
  text-align: right;
  justify-self: end;
}
.motto span { color: #d64545; }
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--navy);
  border-radius: 10px;
  place-items: center;
  padding: 0;
  flex-shrink: 0;
  transition: background .2s ease;
  z-index: 2;
}
.mobile-toggle:hover { background: rgba(26, 43, 60, .06); }
.mobile-toggle-bars {
  display: grid;
  gap: 5px;
  width: 20px;
}
.mobile-toggle-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
body.nav-open .mobile-toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .mobile-toggle-bars span:nth-child(2) { opacity: 0; }
body.nav-open .mobile-toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer + backdrop (body-level) */
.nav-drawer {
  display: none;
}
.nav-links--mobile {
  display: none;
}
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 34, .5);
  z-index: 1000;
  border: 0;
  cursor: pointer;
}
body.nav-open .nav-backdrop { display: block; }
body.nav-open { overflow: hidden; }
body.nav-open .site-header { z-index: 1002; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 660px;
  height: clamp(620px, 78vh, 780px);
  background-color: #2a3544;
  background-position: center 18%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: visible;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.28) 0%, rgba(255,255,255,.12) 14%, rgba(255,255,255,0) 34%),
    linear-gradient(90deg,
      rgba(255,255,255,.82) 0%,
      rgba(255,255,255,.62) 26%,
      rgba(255,255,255,.22) 48%,
      rgba(255,255,255,0) 64%);
  pointer-events: none;
  border-radius: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(480px, calc(100% - 3rem));
  max-width: 480px;
  margin-left: max(1.75rem, calc((100vw - var(--max)) / 2));
  margin-right: 1.5rem;
  margin-top: clamp(7.5rem, 16vh, 10.5rem);
  padding: 0 0 4.5rem;
  color: var(--navy);
  text-align: left;
}
.hero-eyebrow {
  margin: 0 0 .35rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--navy);
}
.hero-title {
  margin: 0 0 .65rem;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}
.hero-subtitle {
  margin: 0 0 .85rem;
  font-size: .98rem;
  font-weight: 500;
  color: #2a3544;
  max-width: 380px;
  line-height: 1.45;
}
.hero-rule {
  width: 52px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 0 0 .95rem;
}
.hero-text {
  margin: 0 0 1.45rem;
  font-family: var(--serif);
  font-size: .95rem;
  font-style: italic;
  line-height: 1.55;
  color: #3a4554;
  max-width: 400px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--navy);
  color: #fff;
  border: 1.5px solid var(--navy);
  padding: .82rem 1.4rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: .2s ease;
  cursor: pointer;
}
.btn:hover { background: var(--navy-soft); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-radius: 999px;
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.hero-location {
  position: absolute;
  right: 1.6rem;
  bottom: 1.15rem;
  z-index: 1;
  color: #fff;
  font-size: .78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .35rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
}

/* ========== CATEGORIES ========== */
.category-bar {
  background: #fff;
  position: relative;
  z-index: 2;
  margin-top: -34px;
  width: min(var(--max), calc(100% - 3rem));
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 14px 40px rgba(26,43,60,.08);
  border: 1px solid #eef0f3;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.category-item {
  text-align: center;
  padding: 1.45rem 1rem 1.35rem;
  border-right: 1px solid var(--line);
  transition: .2s ease;
}
.category-item:last-child { border-right: 0; }
.category-item:hover { background: #fafafa; }
.category-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto .65rem;
  color: var(--navy);
}
.category-icon svg { width: 100%; height: 100%; }
.category-item h3 {
  margin: 0 0 .2rem;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
}
.category-item p {
  margin: 0;
  color: var(--muted);
  font-size: .74rem;
}

/* ========== SECTIONS ========== */
.section { padding: 4rem 0 3.6rem; }
.section-sand { background: var(--sand); }
.section-head {
  position: relative;
  text-align: center;
  margin-bottom: 2.1rem;
  min-height: 3.2rem;
}
.section-kicker {
  margin: 0;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.section-title {
  margin: .15rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  font-weight: 700;
  color: var(--navy);
  font-style: italic;
}
.section-head .link-arrow,
.section-head .btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.link-arrow {
  font-size: .82rem;
  color: var(--navy);
  font-weight: 500;
  white-space: nowrap;
}
.link-arrow:hover { text-decoration: underline; }

/* Destinations */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .95rem;
}
.dest-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4.35;
  background: #333;
  display: block;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 42%, rgba(10,16,24,.82));
}
.dest-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 1.05rem .85rem 1rem;
  color: #fff;
}
.dest-meta h3 {
  margin: 0 0 .15rem;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
}
.dest-meta span {
  font-size: .72rem;
  opacity: .92;
  letter-spacing: .02em;
}

/* Posts */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.post-card { display: flex; flex-direction: column; gap: .75rem; }
.post-card .thumb {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10.2;
  background: #ddd;
}
.post-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease;
}
.post-card:hover .thumb img { transform: scale(1.04); }
.post-date {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: .04em;
}
.post-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.3;
  color: var(--navy);
  font-weight: 700;
}
.post-card > p {
  margin: 0;
  color: #555;
  font-size: .88rem;
  line-height: 1.55;
}
.read-more {
  color: var(--navy);
  font-size: .82rem;
  font-weight: 600;
  margin-top: .15rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.4rem;
  align-items: center;
}
.about-left {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.6rem;
  align-items: center;
}
.about-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
.about-copy h2 {
  font-family: var(--serif);
  font-size: 2rem;
  margin: 0 0 .7rem;
  color: var(--navy);
}
.about-copy p {
  margin: 0 0 1.15rem;
  color: #444;
  font-size: .92rem;
  line-height: 1.65;
}
.quote-card {
  --quote-ink: #1a2b3c;
  --quote-gold: #c4a574;
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: 16px;
  padding: 2.1rem 2rem 3.4rem;
  background-color: #f4f0e8;
  background-image:
    linear-gradient(180deg, rgba(244,240,232,.55) 0%, rgba(244,240,232,.62) 100%),
    url("/images/world-map-bg.png?v=1");
  background-size: cover, 112% auto;
  background-position: center, center 40%;
  background-repeat: no-repeat;
  box-shadow: 0 12px 34px rgba(26, 43, 60, .07);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.quote-mark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: .55;
  color: var(--quote-gold);
  opacity: .95;
  margin: 0 0 .55rem;
  align-self: center;
}
.quote-card blockquote {
  margin: 0 auto .95rem;
  max-width: 24ch;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--quote-ink);
}
.quote-card cite {
  display: block;
  font-style: normal;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: #5c6570;
}
.quote-flight {
  position: absolute;
  right: .35rem;
  bottom: .4rem;
  width: min(250px, 62%);
  height: 96px;
  pointer-events: none;
  z-index: 5;
}
.quote-flight__path-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.quote-flight__plane {
  position: absolute;
  right: 0;
  top: 18%;
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
  transform: rotate(-28deg);
  filter: none;
}

/* Instagram */
.ig-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}
.ig-title {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
}
.ig-icon {
  width: 28px;
  height: 28px;
  margin-top: .2rem;
  color: var(--navy);
}
.ig-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--navy);
}
.ig-title p {
  margin: .2rem 0 0;
  color: var(--muted);
  font-size: .86rem;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .55rem;
}
.ig-grid a {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #ddd;
}
.ig-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s ease;
}
.ig-grid a:hover img { transform: scale(1.05); }

/* Page shells */
.page-hero {
  background: var(--sand);
  padding: 3rem 0 2.3rem;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--navy);
}
.page-hero p { margin: .45rem 0 0; color: var(--muted); max-width: 560px; }
.content-wrap { padding: 3rem 0 4rem; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2, .prose h3 { font-family: var(--serif); color: var(--navy); }
.post-feature {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  max-height: 420px;
}
.post-feature img { width: 100%; height: 420px; object-fit: cover; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
}
.form-card, .info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: .78rem;
  letter-spacing: .04em;
  margin-bottom: .35rem;
  color: #444;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #d7dbe3;
  border-radius: 8px;
  padding: .75rem .85rem;
  background: #fff;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.alert { padding: .85rem 1rem; border-radius: 8px; margin-bottom: 1rem; }
.alert-success { background: #e8f6ee; color: #146c43; }
.alert-error { background: #fdecea; color: #b42318; }

/* Footer */
/* Footer */
.site-footer {
  background: #0f1a28;
  color: #fff;
  padding: 2.8rem 0 2.1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.6fr 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
}
.footer-logo-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  color: #fff;
}
.footer-logo-top {
  position: relative;
  display: inline-block;
  padding-right: 34px;
}
.footer-logo-name {
  font-family: var(--script);
  font-size: 2.2rem;
  color: #fff;
  white-space: nowrap;
}
.footer-logo-plane {
  position: absolute;
  right: 0;
  top: .05rem;
  width: 32px;
  height: 24px;
  color: #fff;
}
.footer-logo-plane svg { width: 100%; height: 100%; display: block; }
.footer-logo-word {
  margin-top: .22rem;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: #fff;
  padding-left: .05rem;
}
.footer-logo-tag {
  margin-top: .28rem;
  font-family: var(--sans);
  font-size: .48rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  padding-left: .05rem;
  white-space: nowrap;
}
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}
.footer-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: .82rem;
  letter-spacing: .01em;
  white-space: nowrap;
  max-width: 100%;
}
.footer-nav a {
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  padding: 0 .55rem;
}
.footer-nav a:hover { color: #fff; }
.footer-sep {
  color: rgba(255,255,255,.35);
  font-size: .8rem;
  line-height: 1;
  user-select: none;
  flex: 0 0 auto;
}
.socials {
  display: flex;
  gap: .7rem;
  justify-content: center;
  margin: 1.05rem 0 .85rem;
}
.socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: .2s ease;
}
.socials a svg { width: 15px; height: 15px; display: block; }
.socials a:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.55);
}
.copyright {
  text-align: center;
  color: rgba(255,255,255,.55);
  font-size: .74rem;
  margin: 0;
}
.footer-motto {
  font-family: var(--hand);
  font-size: 1.55rem;
  text-align: right;
  color: #fff;
  line-height: 1.2;
  transform: rotate(-2deg);
  justify-self: end;
}
.footer-motto span { color: #ff8a80; }

/* Search */
.search-panel {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12,16,24,.55);
  z-index: 300;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
}
.search-panel.open { display: flex; }
.search-box {
  width: min(560px, calc(100% - 2rem));
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  gap: .6rem;
}
.search-box input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .8rem .9rem;
}
.pager {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  justify-content: center;
}
.pager a, .pager span {
  display: inline-flex;
  min-width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 .7rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: .85rem;
}
.pager a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.pager .current { background: var(--navy); color: #fff; border-color: var(--navy); }
.pager .disabled { opacity: .45; }

@media (max-width: 1100px) {
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
  .logo-name { font-size: 2.1rem; }
  .nav-links--desktop { gap: .1rem .75rem; }
  .nav-links--desktop .nav-link { font-size: .78rem; }
  .motto { font-size: 1.15rem; }
}
@media (max-width: 1024px) {
  .motto { display: none; }
  .header-bar {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .5rem .75rem;
    min-height: 64px;
    padding: .65rem 0;
  }
  .mobile-toggle { display: grid; }
  .nav-links--desktop { display: none !important; }
  .site-header--overlay .header-bar {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    margin: .4rem 0 0;
    padding: .55rem .85rem;
    border-radius: 14px;
  }

  .nav-drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(300px, 86vw);
    z-index: 1001;
    background: #fff;
    box-shadow: 8px 0 40px rgba(16, 24, 34, .2);
    transform: translate3d(-105%, 0, 0);
    transition: transform .28s cubic-bezier(.22, 1, .36, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.nav-open .nav-drawer {
    transform: translate3d(0, 0, 0);
  }
  .nav-links--mobile {
    display: flex;
    flex-direction: column;
    padding: 1.1rem 0 2rem;
    margin: 0;
  }
  .nav-links--mobile > li {
    width: 100%;
    border-bottom: 1px solid #eef0f3;
  }
  .nav-links--mobile .nav-link,
  .nav-links--mobile a.nav-link,
  .nav-links--mobile button.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.05rem 1.25rem;
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--navy);
    background: none;
    border: 0;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
  }
  .nav-links--mobile .nav-link.active {
    color: var(--gold);
    font-weight: 600;
    background: #faf8f4;
  }
  .nav-links--mobile .caret {
    font-size: .75rem;
    opacity: .7;
    transition: transform .2s ease;
  }
  .nav-links--mobile .has-drop.open > .nav-link .caret {
    transform: rotate(180deg);
  }
  .nav-links--mobile .dropdown {
    display: none;
    background: #f6f7f9;
    padding: 0;
  }
  .nav-links--mobile .has-drop.open > .dropdown {
    display: block;
  }
  .nav-links--mobile .dropdown a {
    display: block;
    padding: .85rem 1.25rem .85rem 1.85rem;
    font-size: .94rem;
    color: #445;
    border-top: 1px solid #e8eaee;
  }
  .nav-links--mobile .dropdown a:hover,
  .nav-links--mobile .dropdown a:active {
    background: #eceff3;
    color: var(--navy);
  }
  .logo-name { font-size: 1.85rem; }
  .logo-word { letter-spacing: .36em; font-size: .64rem; }
  .logo-tag { font-size: .42rem; letter-spacing: .12em; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-left { grid-template-columns: 140px 1fr; }
  .section-head .link-arrow,
  .section-head .btn {
    position: static;
    transform: none;
    display: inline-flex;
    margin-top: .85rem;
  }
  .posts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 1.6rem; }
  .footer-motto { text-align: center; justify-self: center; transform: none; }
  .footer-logo-stack { align-items: center; }
  .footer-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: .15rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .footer-nav::-webkit-scrollbar { display: none; }
  .footer-nav a { padding: 0 .4rem; font-size: .78rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .category-bar { margin-top: 0; width: 100%; border-left: 0; border-right: 0; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-item:nth-child(2n) { border-right: 0; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .hero {
    min-height: 560px;
    height: auto;
    background-position: center 12%;
    align-items: flex-start;
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.08) 16%, rgba(255,255,255,0) 36%),
      linear-gradient(90deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.7) 55%, rgba(255,255,255,.25) 100%);
  }
  .hero-content {
    max-width: 100%;
    width: calc(100% - 2.5rem);
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    margin-top: 6.75rem;
    padding: 0 0 2.5rem;
  }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-head { flex-direction: column; align-items: flex-start; }
  .about-left { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .about-page-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .container { width: min(var(--max), calc(100% - 1.5rem)); }
  .logo-name { font-size: 1.55rem; }
  .logo-plane { width: 28px; height: 20px; }
  .logo-top { padding-right: 30px; }
  .logo-tag { display: none; }
  .nav-drawer { width: min(290px, 88vw); }
  .site-header--overlay .header-bar {
    margin: .35rem 0 0;
    padding: .5rem .7rem;
  }
}
