/* ==========================================================================
   Dream Design Travels by Casey
   Static site stylesheet
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy:        #0c2f45;
  --navy-700:    #12405c;
  --navy-500:    #1d5a7d;
  --blue:        #1fa3de;   /* brand blue, from the Dream Design Travels mark */
  --blue-600:    #1789bd;
  --blue-100:    #e8f5fc;
  --sand:        #c8a46b;
  --sand-100:    #f6efe3;
  --cream:       #faf7f2;
  --ink:         #1b2a33;
  --muted:       #5b6e7a;
  --line:        #e5e1da;
  --white:       #ffffff;

  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;

  --wrap:        1200px;
  --wrap-narrow: 860px;
  --radius:      4px;
  --shadow-sm:   0 2px 10px rgba(12, 47, 69, 0.06);
  --shadow-md:   0 10px 30px rgba(12, 47, 69, 0.10);
  --shadow-lg:   0 20px 50px rgba(12, 47, 69, 0.16);
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 .6em;
  letter-spacing: .005em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

::selection { background: var(--blue); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--cream { background: var(--cream); }
.section--blue-tint { background: var(--blue-100); }
.section--navy { background: var(--navy); color: #d7e4ec; }
.section--navy h2, .section--navy h3 { color: #fff; }

.center { text-align: center; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.section--navy .eyebrow { color: var(--sand); }

.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.section--navy .section-head p { color: #a9c1d1; }

.rule {
  width: 54px; height: 2px;
  background: var(--sand);
  border: 0; margin: 0 0 1.5rem;
}
.center .rule, .rule.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 1.05em 2.2em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
}

.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--navy); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--blue); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

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

.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn--ghost:hover { background: #fff; color: var(--navy); }

.link-arrow {
  font-size: .78rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
  display: inline-flex; align-items: center; gap: .5em;
}
.link-arrow::after { content: "\2192"; transition: transform .25s var(--ease); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar {
  background: var(--navy);
  color: #b9cddb;
  font-size: .8rem;
  letter-spacing: .04em;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 44px; flex-wrap: wrap;
}
.topbar a { color: #b9cddb; }
.topbar a:hover { color: #fff; }
.topbar__contact { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.topbar__contact span { display: inline-flex; align-items: center; gap: .5em; }
.topbar__social { display: flex; gap: 14px; align-items: center; }
.topbar svg { width: 15px; height: 15px; fill: currentColor; flex: none; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 88px;
}

/* Wordmark */
.brand { display: flex; flex-direction: column; line-height: 1; flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: .01em;
}
.brand__name em { font-style: normal; color: var(--navy); }
.brand__tag {
  font-size: .58rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--muted); margin-top: .5em;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 30px; }
.nav__list { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; }
.nav__list a {
  font-size: .8rem; font-weight: 400; letter-spacing: .08em;
  text-transform: uppercase; color: var(--navy);
  padding: 6px 0; position: relative; display: block;
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--blue);
  transition: width .25s var(--ease);
}
.nav__list a:hover::after, .nav__list a[aria-current="page"]::after { width: 100%; }
.nav__list a[aria-current="page"] { color: var(--blue); }
.nav .btn { padding: .85em 1.6em; font-size: .72rem; }

/* The CTA lives in the button on desktop and inside the drawer on mobile. */
.nav__cta-item { display: none; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 10px; color: var(--navy);
}
.nav-toggle svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* ==========================================================================
   Hero (static image — no rotation)
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 780px);
  display: flex; align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,32,48,.78) 0%, rgba(8,32,48,.52) 45%, rgba(8,32,48,.22) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 80px 0; }
.hero__content { max-width: 660px; color: #fff; }
.hero .eyebrow { color: #9fd8f4; }
.hero h1 { color: #fff; margin-bottom: .35em; text-shadow: 0 2px 24px rgba(0,0,0,.28); }
.hero__lede {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: #e2edf4; max-width: 46ch; margin-bottom: 2.2rem;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page banner (interior pages) */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex; align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,32,48,.62), rgba(8,32,48,.72));
}
.page-hero__inner { position: relative; z-index: 2; padding: 90px 0 70px; color: #fff; max-width: 720px; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.page-hero p { color: #dbe8f0; font-size: 1.08rem; max-width: 54ch; margin: 0; }
.page-hero .eyebrow { color: #9fd8f4; }

/* Breadcrumb */
.crumbs { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: #9fbdcf; margin-bottom: 1.1rem; }
.crumbs a { color: #9fbdcf; }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: .55; padding: 0 .5em; }

/* ==========================================================================
   Intro / split blocks
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.split--portrait { grid-template-columns: .85fr 1.15fr; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split__media--framed::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid var(--sand); border-radius: var(--radius); z-index: -1;
}
.split__body h2 { margin-bottom: .5em; }

.signature {
  font-family: var(--font-display);
  font-size: 1.7rem; font-style: italic; color: var(--blue);
  margin-top: 1.4rem;
}

/* ==========================================================================
   Ways to travel — feature cards
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 52px; height: 52px; margin-bottom: 22px;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--blue-100); color: var(--blue);
}
.card__icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.card h3 { font-size: 1.35rem; margin-bottom: .45em; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 0; }
.card ul { color: var(--muted); font-size: .95rem; margin-top: 1em; padding-left: 1.1em; }

/* ==========================================================================
   Destination grid (Find Your Travel Escape)
   ========================================================================== */
.escape-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 36px;
}
.escape-head h2 { margin: 0; display: inline-flex; align-items: center; gap: .45em; }
.escape-head h2 svg { width: 26px; height: 26px; fill: var(--blue); flex: none; }

.destinations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense; /* keeps the tall cards from leaving holes */
  gap: 22px;
}
.dest {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
  background: var(--navy);
  grid-row: span 1;
}
.dest--tall { grid-row: span 2; }
.dest img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.dest:hover img { transform: scale(1.07); }
.dest::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,32,48,0) 38%, rgba(8,32,48,.82) 100%);
  transition: background .35s var(--ease);
}
.dest:hover::after { background: linear-gradient(180deg, rgba(8,32,48,.15) 20%, rgba(8,32,48,.88) 100%); }
.dest__label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px 24px; color: #fff;
  display: flex; align-items: flex-start; gap: .6em;
}
.dest__label svg { width: 17px; height: 17px; fill: #fff; flex: none; margin-top: 3px; }
.dest__label span {
  font-size: .82rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; line-height: 1.45;
}

/* ==========================================================================
   Value props / why Casey
   ========================================================================== */
.props { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 44px 36px; }
.prop__num {
  font-family: var(--font-display);
  font-size: 2.6rem; color: var(--sand); line-height: 1;
  display: block; margin-bottom: .3em;
}
.prop h3 { font-size: 1.25rem; margin-bottom: .4em; }
.prop p { color: var(--muted); font-size: .96rem; margin: 0; }
.section--navy .prop p { color: #a9c1d1; }

/* ==========================================================================
   Trip ideas
   ========================================================================== */
.trips { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 30px; }
.trip {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.trip:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.trip__media { aspect-ratio: 3 / 2; overflow: hidden; }
.trip__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.trip:hover .trip__media img { transform: scale(1.06); }
.trip__body { padding: 28px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.trip__kicker {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .8em; font-weight: 500;
}
.trip h3 { font-size: 1.4rem; margin-bottom: .35em; }
.trip p { color: var(--muted); font-size: .95rem; flex: 1; }
.trip__meta {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: .82rem; color: var(--muted); letter-spacing: .04em;
}

/* ==========================================================================
   Quote band
   ========================================================================== */
.quote { text-align: center; max-width: 800px; margin-inline: auto; }
.quote blockquote {
  margin: 0 0 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.4; color: #fff; font-style: italic;
}
.quote figcaption { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sand); }

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 70px); align-items: center; }
.newsletter h2 { margin-bottom: .4em; }
.newsletter p { color: var(--muted); margin-bottom: 0; }

.form-row { display: flex; gap: 12px; flex-wrap: wrap; }
.form-row input { flex: 1; min-width: 220px; }

input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea {
  width: 100%;
  font-family: var(--font-body); font-size: .98rem; font-weight: 300;
  color: var(--ink);
  padding: 1em 1.1em;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31,163,222,.14);
}
textarea { min-height: 150px; resize: vertical; }
label {
  display: block; font-size: .74rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy); margin-bottom: .65em;
}
.field { margin-bottom: 22px; }
.field--half { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 1.2rem; }

/* ==========================================================================
   Contact / detail lists
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(36px, 6vw, 70px); align-items: start; }

.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.info-list svg { width: 20px; height: 20px; fill: var(--blue); flex: none; margin-top: 5px; }
.info-list strong {
  display: block; font-weight: 500; font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--navy);
  margin-bottom: .25em;
}
.info-list a, .info-list span { color: var(--muted); font-size: 1rem; }
.info-list a:hover { color: var(--blue); }

.panel {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px 32px;
}
.panel h3 { font-size: 1.3rem; }
.panel--blue { background: var(--blue-100); border-color: #cbe8f7; }

/* Service areas */
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.chips li {
  margin: 0; font-size: .82rem; letter-spacing: .06em;
  padding: .55em 1.1em; border: 1px solid var(--line);
  border-radius: 999px; color: var(--muted); background: #fff;
}

/* ==========================================================================
   Resources / FAQ
   ========================================================================== */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0; text-align: left;
  font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; color: var(--navy);
}
.faq__q::after {
  content: "+"; font-family: var(--font-body); font-size: 1.5rem;
  font-weight: 300; color: var(--blue); flex: none; transition: transform .3s var(--ease);
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a { display: none; padding: 0 0 28px; color: var(--muted); max-width: 74ch; }
.faq__item.is-open .faq__a { display: block; }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); margin-bottom: .8em; }
.checklist li::before {
  content: "\2713"; color: var(--blue); font-weight: 500; flex: none; line-height: 1.7;
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px 32px; counter-reset: step; }
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--line); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: -14px; left: 0;
  background: #fff; padding-right: 14px;
  font-family: var(--font-display); font-size: 1.5rem; color: var(--sand);
}
.section--cream .step::before { background: var(--cream); }
.step h3 { font-size: 1.2rem; margin-bottom: .4em; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; background: var(--navy); }
.cta-band__media { position: absolute; inset: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__media::after { content: ""; position: absolute; inset: 0; background: rgba(8,32,48,.8); }
.cta-band__inner { position: relative; z-index: 2; text-align: center; padding: clamp(70px, 9vw, 120px) 0; }
.cta-band h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-band p { color: #cfe0ea; max-width: 56ch; margin: 0 auto 2.2rem; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: #9fbdcf; padding: clamp(56px, 7vw, 84px) 0 0; font-size: .93rem; }
.site-footer h4 {
  color: #fff; font-family: var(--font-body);
  font-size: .76rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: 1.5em;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px 36px; }
.site-footer a { color: #9fbdcf; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .7em; }
.site-footer .brand__name { font-size: 1.5rem; color: var(--blue); }
.site-footer .brand__name em { color: #fff; }
.site-footer .brand__tag { color: #7fa3ba; }
.footer-about p { margin-top: 1.5rem; max-width: 38ch; color: #8fb0c4; }

.social { display: flex; gap: 12px; margin-top: 1.6rem; }
.social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center;
  transition: all .25s var(--ease);
}
.social a:hover { background: var(--blue); border-color: var(--blue); }
.social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-legal {
  margin-top: clamp(44px, 6vw, 64px);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 26px 0 32px;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: .8rem; color: #7fa3ba;
}
.footer-legal p { margin: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1040px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  .nav__list {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); padding: 8px 24px 20px;
  }
  .nav__list.is-open { display: flex; }
  .nav__list a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__list a::after { display: none; }
  .nav-toggle { display: block; order: 2; }
  .nav .btn { display: none; }
  .nav__cta-item { display: block; }
  .nav__cta-item a {
    color: var(--blue);
    font-weight: 500;
    border-bottom: 0;
  }
  .site-header .wrap { position: relative; }

  .split, .split--portrait, .newsletter { grid-template-columns: 1fr; }
  .split__media--framed::before { display: none; }
  .destinations { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .topbar .wrap { justify-content: center; min-height: auto; padding-block: 10px; }
  .topbar__contact { gap: 16px; justify-content: center; font-size: .78rem; }
  .destinations { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .dest--tall { grid-row: span 1; }
  .field--half { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .hero__actions .btn, .cta-band__actions .btn { width: 100%; justify-content: center; }
  /* Long button labels have to be allowed to wrap on narrow phones. */
  .btn {
    white-space: normal;
    text-align: center;
    max-width: 100%;
    padding-inline: 1.5em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
