:root {
  --bg: #f6f4ec;
  --night: #0b2230;
  --ink: #0b2230;
  --ink-2: #4f5d66;
  --line: rgba(11, 34, 48, 0.12);
  --accent: #e0679a;
  --link: #0f4c5c;
  --about-bg: #fffcf0;
  --warm: #60a8a0;
  --trip-bg: var(--warm);
  --trip-ink: #0b2230;
  --trip-ink-2: rgba(11, 34, 48, 0.7);
  --ig-bg: #fffef8;
  --paths-bg: #0e4466;
  --contact-bg: #2d6cdf;
  --footer-bg: #071821;
  --shade: 7, 24, 33;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

body.dark,
.paths-section,
.contact,
.footer {
  --accent: #ffb1cf;
}

body.dark {
  --bg: var(--night);
  --ink: #f4f2ee;
  --ink-2: rgba(244, 242, 238, 0.62);
  --line: rgba(244, 242, 238, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

body {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1, h2, h3 {
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: block;
  margin-bottom: 1.25rem;
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-2);
}

.text-link {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--accent);
}

.section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
  padding-inline: var(--gutter);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.home .nav:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: transparent;
  color: #fff;
}

.nav-logo {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
}

.nav-links a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.nav-links .nav-cta {
  opacity: 1;
  padding: 0.5rem 1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-links .nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--night);
}


/* ---------- hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.hero-video {
  position: absolute;
  inset: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--shade), 0.35) 0%, rgba(var(--shade), 0) 30%, rgba(var(--shade), 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(2.5rem, 7vw, 5rem);
}

.hero-name {
  font-size: clamp(3.25rem, 10.5vw, 10.5rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.055em;
  animation: fade-up 1.1s var(--ease) both;
}

.hero-tag {
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
  font-family: 'Geist Mono', monospace;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  animation: fade-up 1.1s 0.2s var(--ease) both;
}

.hero-tag span {
  color: var(--warm);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
}

/* ---------- about ---------- */

.home #about {
  background: var(--about-bg);
}

.about {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.about-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}

.about-text p:not(.eyebrow) {
  max-width: 34rem;
  font-size: 1.125rem;
  color: var(--ink-2);
}

.about-text .eyebrow + p {
  text-wrap: balance;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.about-text p + p {
  margin-top: 1.5rem;
}

/* ---------- worked with ---------- */

.logos {
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  background: var(--about-bg);
  text-align: center;
}

.logos .eyebrow {
  margin-bottom: 1.75rem;
}

.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logos 60s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.logo-set {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(3rem, 6vw, 5.5rem);
  padding-right: clamp(3rem, 6vw, 5.5rem);
}

.logo-set img {
  flex-shrink: 0;
  width: auto;
  height: clamp(48px, 5.5vw, 68px);
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.logo-set img:hover {
  opacity: 0.9;
}

.logo-set img.wordmark {
  height: clamp(20px, 2.4vw, 28px);
}

.logo-set img.wordmark.wide {
  height: clamp(26px, 3.2vw, 38px);
}

@keyframes logos {
  to { transform: translateX(-50%); }
}

/* ---------- travel with me ---------- */

.trip {
  background: var(--trip-bg);
  color: var(--trip-ink);
}

.trip-inner {
  display: grid;
  grid-template-columns: 12rem 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-block: 2rem;
}

.trip .eyebrow {
  margin: 0;
  color: var(--trip-ink-2);
}

.trip h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
}

.trip-main p {
  margin-top: 0.4rem;
  font-family: 'Geist Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--trip-ink-2);
}

.trip-main .trip-note {
  max-width: 36rem;
  margin-top: 0.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
}

.trip-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
}

.trip-actions .btn {
  justify-content: center;
}

.btn.btn-outline {
  background: transparent;
  color: var(--night);
  box-shadow: inset 0 0 0 1px var(--night);
}

.btn.btn-outline:hover {
  background: var(--night);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: var(--night);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: #fff;
  color: var(--night);
}

/* ---------- instagram ---------- */

.ig {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--ig-bg);
}

.ig-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.ig-head .eyebrow {
  margin-bottom: 0;
}

.ig-follow {
  font-family: 'Geist Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--link);
  transition: color 0.2s ease;
}

.ig-follow:hover {
  color: var(--accent);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.ig-post {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(11, 34, 48, 0.08);
}

.ig-post img,
.ig-post video {
  transition: transform 0.6s var(--ease), opacity 0.3s ease;
}

.ig-post:hover img,
.ig-post:hover video {
  transform: scale(1.05);
  opacity: 0.85;
}

.ig-post.is-video::after {
  content: '▶';
  position: absolute;
  top: 0.5rem;
  right: 0.55rem;
  font-size: 0.7rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ---------- path cards ---------- */

.paths-section {
  --ink: #f4f2ee;
  --ink-2: rgba(244, 242, 238, 0.62);
  background: var(--paths-bg);
  color: var(--ink);
}

.paths-heading {
  margin-bottom: 1.5rem;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  letter-spacing: -0.015em;
  color: var(--ink-2);
}

.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.path {
  position: relative;
  display: block;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  border-radius: 2px;
  color: #fff;
  isolation: isolate;
}

.path-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform 1s var(--ease);
}

.path::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(var(--shade), 0.8) 0%, rgba(var(--shade), 0.15) 55%, rgba(var(--shade), 0.1) 100%);
}

.path:hover .path-img {
  transform: scale(1.04);
}

.path-body {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.path-for {
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.path-title {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.path-arrow {
  position: absolute;
  top: clamp(1.25rem, 2.5vw, 2rem);
  right: clamp(1.25rem, 2.5vw, 2rem);
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #fff;
  color: var(--night);
  font-size: 1.15rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.path:hover .path-arrow {
  background: var(--accent);
  color: var(--night);
}

/* ---------- contact ---------- */

.contact {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--contact-bg);
  color: #fff;
}

.contact .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.contact h2 {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
}

.email {
  display: inline-block;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 0.2rem;
  font-size: clamp(1.4rem, 4.2vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s ease;
}

.email:hover {
  border-color: var(--accent);
}

.socials {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.socials a {
  font-family: 'Geist Mono', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
}

.socials a:hover {
  color: var(--accent);
}

/* ---------- footer ---------- */

.footer {
  padding-block: 1.75rem;
  background: var(--footer-bg);
  color: rgba(244, 242, 238, 0.55);
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 2rem;
}

.footer a:hover {
  color: #fff;
}

/* ---------- inner pages ---------- */

.page-hero {
  padding-top: clamp(7.5rem, 14vw, 10rem);
}

.back {
  display: inline-block;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  font-family: 'Geist Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  transition: color 0.2s ease;
}

.back:hover {
  color: var(--accent);
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 38rem;
  margin-top: 1.75rem;
  font-size: 1.125rem;
  color: var(--ink-2);
}

.page-media {
  max-width: 1280px;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding-inline: var(--gutter);
}

.page-media img,
.page-media video {
  aspect-ratio: 21 / 9;
  border-radius: 2px;
}

.page-hero + .section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

/* ---------- rows ---------- */

.rows {
  display: flex;
  flex-direction: column;
}

.row {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease);
}

.row:first-child {
  border-top: 1px solid var(--line);
}

a.row:hover {
  padding-left: 0.75rem;
}

.row-num {
  font-family: 'Geist Mono', monospace;
  font-size: 0.75rem;
  color: var(--ink-2);
}

.row-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.row-title {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  transition: color 0.2s ease;
}

a.row:hover .row-title {
  color: var(--accent);
}

.row-desc {
  color: var(--ink-2);
}

.row-cta {
  font-family: 'Geist Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.row-cta.muted {
  color: var(--ink-2);
}

.row-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.row-links a {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, color 0.2s ease;
}

.row-links a:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ---------- campaign callout ---------- */

.campaign {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 2rem;
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.2s ease;
}

.campaign:hover {
  border-color: var(--accent);
}

.campaign-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.campaign-text {
  font-size: 1.1rem;
}

/* ---------- expandable row (discount codes) ---------- */

.row-group summary {
  cursor: pointer;
  list-style: none;
}

.row-group .row:first-child {
  border-top: 0;
}

.row-group summary::-webkit-details-marker {
  display: none;
}

.row-group summary:hover {
  padding-left: 0.75rem;
}

.row-group summary:hover .row-title {
  color: var(--accent);
}

.row-group .when-open,
.row-group[open] .when-closed {
  display: none;
}

.row-group[open] .when-open {
  display: inline;
}

.codes {
  list-style: none;
  padding: 0.5rem 0 1.5rem 5.5rem;
  border-bottom: 1px solid var(--line);
}

.code {
  display: grid;
  grid-template-columns: 12rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
}

.code + .code {
  border-top: 1px dashed var(--line);
}

.code-brand {
  font-size: 1.1rem;
  font-weight: 500;
}

.code-deal {
  color: var(--ink-2);
}

.code-cta {
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.code-cta:hover {
  color: var(--accent);
}

/* ---------- booking embed ---------- */

.booking {
  padding: 0 0 2rem 5.5rem;
  border-bottom: 1px solid var(--line);
}

.booking p {
  max-width: 40rem;
  font-size: 1.05rem;
  color: var(--ink-2);
}

.booking-embed {
  min-height: 520px;
  margin: 1.25rem 0 1rem;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
}

/* ---------- service details ---------- */

.row-group[open] > summary {
  border-bottom-color: transparent;
}

.detail {
  padding: 0 0 2rem 5.5rem;
  border-bottom: 1px solid var(--line);
}

.detail p {
  max-width: 40rem;
  font-size: 1.05rem;
}

.detail-list {
  max-width: 40rem;
  padding-left: 1.1rem;
  font-size: 1.05rem;
}

.detail-list li + li {
  margin-top: 0.4rem;
}

.detail-list strong {
  font-weight: 600;
}

.detail .detail-label {
  margin-top: 1.25rem;
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-2);
}

.detail-examples {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.detail-examples li {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--ink-2);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.detail-btn {
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.detail-btn.primary,
.detail-btn:hover {
  background: var(--ink);
  color: var(--bg);
}

.detail-btn.primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--night);
}

/* ---------- open call ---------- */

.open-call {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  border-top: 1px solid var(--line);
}

.open-call h2 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.open-lead {
  max-width: 40rem;
  margin-top: 1.5rem;
  font-size: 1.15rem;
  color: var(--ink-2);
}

.open-btn {
  margin-top: 2.5rem;
  background: var(--accent);
  color: var(--night);
}

.open-btn:hover {
  background: #fff;
  color: var(--night);
}

/* ---------- next page link ---------- */

.next-section {
  padding-top: 0;
}

.next {
  display: block;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.next .eyebrow {
  margin-bottom: 0.75rem;
}

.next-title {
  font-size: clamp(2.25rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
  transition: color 0.2s ease;
}

.next-title span {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.next:hover .next-title {
  color: var(--accent);
}

.next:hover .next-title span {
  transform: translateX(0.5rem);
}

/* ---------- motion ---------- */

.js .reveal {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 0.9s var(--ease), translate 0.9s var(--ease);
}

.js .reveal.visible {
  opacity: 1;
  translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal { opacity: 1; translate: 0 0; }
  .logo-track { flex-wrap: wrap; justify-content: center; width: auto; }
  .logo-set[aria-hidden] { display: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 1100px) {
  html { scroll-padding-top: 6.5rem; }

  .nav {
    flex-wrap: wrap;
    row-gap: 0.6rem;
    height: auto;
    padding-block: 0.85rem 0.75rem;
  }

  .nav-logo {
    padding-block: 0.25rem;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 0.6rem;
  }

  .nav-links a {
    font-size: min(0.85rem, 3.3vw);
    white-space: nowrap;
  }

  .nav-links li:last-child {
    position: absolute;
    top: 0.85rem;
    right: var(--gutter);
  }

  .nav-links .nav-cta {
    display: block;
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
  }

  .page-hero {
    padding-top: 8.5rem;
  }

  .trip-inner {
    grid-template-columns: 1fr auto;
  }

  .trip .eyebrow {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .paths {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 5rem 1fr;
    grid-template-areas:
      "photo eyebrow"
      "photo lead"
      "text text";
    grid-template-rows: auto 1fr auto;
    gap: 0 1rem;
    align-items: start;
  }

  .home #about { padding-block: 3rem; }

  .about-media { grid-area: photo; }
  .about-text { display: contents; }

  .about-text .eyebrow {
    grid-area: eyebrow;
    margin-bottom: 0.4rem;
  }

  .about-text p:nth-of-type(2) {
    grid-area: lead;
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.3;
  }

  .about-text p:nth-of-type(3) {
    grid-area: text;
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .paths { gap: 0.75rem; }
  .paths-section { padding-block: 3.5rem; }
  .path { aspect-ratio: 16 / 10; }
  .path-body { gap: 0.4rem; padding: 1.25rem; }
  .path-title { font-size: 1.75rem; }
  .path-arrow { top: 1rem; right: 1rem; width: 2.5rem; height: 2.5rem; font-size: 1rem; }

  .trip-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .trip-actions { flex-direction: row; flex-wrap: wrap; justify-self: start; }

  .page-media img,
  .page-media video {
    aspect-ratio: 4 / 3;
  }

  .row {
    grid-template-columns: 2.25rem 1fr;
    row-gap: 0.75rem;
  }

  .row-cta,
  .row-links {
    grid-column: 2;
  }

  .campaign { grid-template-columns: 1fr; gap: 0.5rem; }

  .codes { padding-left: 2.25rem; }
  .detail { padding-left: 3.75rem; }
  .booking { padding-left: 0; }

  .code {
    grid-template-columns: 1fr auto;
    gap: 0.2rem 1rem;
  }

  .code-deal { grid-column: 1; grid-row: 2; }
  .code-cta { grid-column: 2; grid-row: 1 / 3; }
}
