:root {
  --ink: #08111f;
  --muted: #5e6878;
  --line: #dfe4ec;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --blue: #006eb8;
  --blue-dark: #004f8f;
  --gold: #f4b63f;
  --coral: #df5d3f;
  --shadow: 0 24px 80px rgba(8, 17, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

.dc-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(20px, 4vw, 64px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.dc-header.is-solid {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.dc-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  text-decoration: none;
}

.dc-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.dc-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 850;
}

.dc-header nav a,
.dc-header-action {
  text-decoration: none;
}

.dc-header-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 950;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 24, 0.88), rgba(4, 12, 24, 0.48) 48%, rgba(4, 12, 24, 0.08)),
    linear-gradient(0deg, rgba(4, 12, 24, 0.42), transparent 52%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: min(18vh, 152px) 0 44px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 670px;
  margin: 20px 0 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 260px) 148px;
  max-width: 900px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.search-panel label {
  display: grid;
  gap: 6px;
  border-right: 1px solid var(--line);
  padding: 16px 18px;
}

.search-panel span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-panel input,
.search-panel select {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 850;
  outline: 0;
}

.search-panel button {
  border: 0;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 950;
}

.homepage-live-results {
  max-width: 900px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.homepage-live-results[hidden] {
  display: none;
}

.homepage-live-results .concierge-live-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 12px 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.homepage-live-results .concierge-live-head a {
  color: var(--blue);
  text-decoration: none;
}

.homepage-live-results .concierge-live-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.homepage-live-results .concierge-live-list a,
.homepage-live-results .concierge-live-empty {
  display: grid;
  gap: 5px;
  background: #fff;
  color: var(--ink);
  padding: 14px 16px;
  text-decoration: none;
}

.homepage-live-results .concierge-live-list a:hover {
  color: var(--blue);
}

.homepage-live-results .concierge-live-list strong {
  font-size: 16px;
  line-height: 1.15;
}

.homepage-live-results .concierge-live-list span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.homepage-live-results .concierge-live-list small,
.homepage-live-results .concierge-live-empty {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.intro-strip a {
  display: grid;
  min-height: 132px;
  align-content: center;
  gap: 8px;
  border-right: 1px solid var(--line);
  padding: 24px clamp(18px, 3vw, 34px);
  text-decoration: none;
}

.intro-strip strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.intro-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.section,
.cities-section,
.plan-section,
.magazine-feature,
.now-section,
.curated-section,
.planner-board,
.image-story,
.itinerary-section,
.event-feature {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section,
.cities-section,
.plan-section,
.now-section,
.curated-section,
.planner-board,
.image-story,
.itinerary-section,
.event-feature {
  padding: clamp(72px, 9vw, 124px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 12px 42px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head .kicker {
  grid-column: 1 / -1;
}

.section-head h2 {
  grid-column: 1;
}

.section-head > p:last-child {
  grid-column: 2;
}

.section-head.compact {
  display: block;
}

.section-head.compact .kicker,
.section-head.compact h2,
.section-head.compact > p:last-child {
  grid-column: auto;
  margin-bottom: 12px;
}

.section-head h2,
.feature-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-head > p:last-child,
.feature-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  grid-auto-flow: dense;
}

.now-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(220px, 0.82fr));
  gap: 16px;
  margin-top: 26px;
}

.now-card {
  position: relative;
  display: grid;
  min-height: 470px;
  align-content: end;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 24px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.now-card.main {
  min-height: 570px;
}

.now-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.now-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 10, 20, 0.84), rgba(3, 10, 20, 0.08) 66%);
}

.now-card:hover img {
  transform: scale(1.045);
}

.now-card span,
.now-card strong,
.now-card em {
  position: relative;
  z-index: 1;
}

.now-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.now-card strong {
  max-width: 560px;
  margin-top: 8px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1;
}

.now-card em {
  max-width: 520px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.45;
}

.experience-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.experience-card.wide {
  grid-column: span 2;
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.experience-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 10, 20, 0.82), rgba(3, 10, 20, 0.04) 62%);
}

.experience-card:hover img {
  transform: scale(1.045);
}

.experience-card div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
}

.experience-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-card h3 {
  max-width: 500px;
  margin: 9px 0 12px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.experience-card p {
  max-width: 520px;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.experience-card a,
.feature-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  padding: 0 16px;
  text-decoration: none;
}

.curated-section {
  border-top: 1px solid var(--line);
}

.curated-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.82fr));
  gap: 16px;
}

.curated-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(8, 17, 31, 0.08);
}

.curated-card.feature {
  grid-row: span 2;
  grid-template-rows: minmax(0, 1fr) auto;
}

.curated-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.curated-card.feature img {
  height: 100%;
  min-height: 520px;
  aspect-ratio: auto;
}

.curated-card div {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 18px;
}

.curated-card span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.curated-card strong {
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}

.curated-card.feature strong {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1;
}

.curated-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
}

.planner-board {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.planner-copy {
  position: sticky;
  top: 110px;
}

.planner-copy h2,
.story-list h2,
.event-feature h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.planner-copy p:not(.kicker),
.event-feature p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.planner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.planner-grid a {
  display: grid;
  min-height: 182px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 20px;
  text-decoration: none;
}

.planner-grid span {
  width: fit-content;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 7px 9px;
  text-transform: uppercase;
}

.planner-grid strong {
  color: var(--ink);
  font-size: 25px;
  line-height: 1.08;
}

.planner-grid em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.42;
}

.image-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 56px;
  align-items: center;
}

.story-image img {
  width: 100%;
  min-height: 600px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.story-list ul {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.story-list li {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.story-list strong {
  color: var(--ink);
  font-size: 22px;
}

.story-list span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.48;
}

.cities-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.city-list {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.city-list a {
  display: grid;
  grid-template-columns: 56px minmax(310px, 340px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  text-decoration: none;
}

.city-list span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.city-list strong {
  color: var(--ink);
  min-width: 0;
  font-size: clamp(30px, 2.65vw, 42px);
  line-height: 1;
}

.city-list em {
  color: var(--muted);
  font-style: normal;
  font-size: 18px;
  line-height: 1.45;
  min-width: 0;
}

.city-visual {
  position: sticky;
  top: 110px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.city-visual img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.city-visual div {
  padding: 20px;
}

.city-visual span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.city-visual strong {
  display: block;
  margin-top: 8px;
  font-size: 27px;
  line-height: 1.02;
}

.city-visual p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
}

.itinerary-section {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 0 0 100vmax var(--ink);
  clip-path: inset(0 -100vmax);
}

.itinerary-section .section-head h2 {
  color: #fff;
}

.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.itinerary-grid article {
  display: grid;
  min-height: 260px;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.itinerary-grid span {
  width: fit-content;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.itinerary-grid strong {
  font-size: 28px;
  line-height: 1.05;
}

.itinerary-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.magazine-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
  padding: clamp(74px, 9vw, 124px) 0;
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.feature-actions a:first-child {
  background: var(--blue);
  color: #fff;
}

.feature-actions a:last-child {
  border: 1px solid var(--line);
}

.feature-stack {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.feature-tile {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.feature-tile.tall {
  grid-row: span 2;
  min-height: 560px;
}

.feature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 10, 20, 0.74), rgba(3, 10, 20, 0.04) 66%);
}

.feature-tile figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 6px;
  padding: 18px;
}

.feature-tile span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-tile strong {
  max-width: 360px;
  font-size: 22px;
  line-height: 1.08;
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.84fr);
  gap: 52px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(64px, 7vw, 96px);
}

.event-feature > img {
  width: 100%;
  min-height: 540px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.event-feature > div {
  display: grid;
  align-content: start;
}

.event-feature h2 {
  max-width: 560px;
}

.event-columns {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.event-columns a {
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  text-decoration: none;
}

.event-columns strong {
  color: var(--ink);
  font-size: 21px;
}

.event-columns span {
  color: var(--muted);
  line-height: 1.38;
}

.plan-section {
  background: var(--soft);
  box-shadow: 0 0 0 100vmax var(--soft);
  clip-path: inset(0 -100vmax);
}

.plan-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.68fr);
  gap: 42px;
  align-items: center;
}

.plan-hero h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 0.98;
}

.plan-hero p:not(.kicker) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.plan-hero img {
  width: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.plan-grid a {
  display: grid;
  min-height: 210px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  text-decoration: none;
}

.plan-grid a > span {
  width: fit-content;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 7px 9px;
  text-transform: uppercase;
}

.plan-grid strong {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.08;
}

.plan-grid em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.42;
}

.homepage-footer {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) repeat(3, minmax(160px, 0.34fr));
  gap: 34px;
  background: var(--ink);
  color: #fff;
  padding: 52px clamp(20px, 4vw, 64px);
}

.homepage-footer p {
  max-width: 470px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.homepage-footer nav,
.homepage-footer > div:last-child {
  display: grid;
  align-content: start;
  gap: 12px;
}

.homepage-footer a,
.homepage-footer strong {
  color: var(--gold);
  font-weight: 950;
  text-decoration: none;
}

.homepage-footer nav a,
.homepage-footer > div:last-child a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .dc-header nav {
    display: none;
  }

  .search-panel,
  .intro-strip,
  .section-head,
  .experience-grid,
  .now-grid,
  .curated-grid,
  .cities-section,
  .magazine-feature,
  .plan-hero,
  .plan-grid,
  .planner-board,
  .planner-grid,
  .image-story,
  .itinerary-grid,
  .event-feature {
    grid-template-columns: 1fr;
  }

  .search-panel label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .search-panel button {
    min-height: 58px;
  }

  .homepage-live-results .concierge-live-list {
    grid-template-columns: 1fr;
  }

  .section-head .kicker,
  .section-head h2,
  .section-head > p:last-child {
    grid-column: 1;
  }

  .experience-card.wide {
    grid-column: auto;
  }

  .curated-card.feature {
    grid-row: auto;
  }

  .city-list a {
    grid-template-columns: 52px 1fr;
  }

  .city-list em {
    grid-column: 2;
  }

  .feature-stack {
    grid-template-columns: 1fr;
  }

  .feature-tile,
  .feature-tile.tall {
    min-height: 360px;
  }

  .feature-tile.tall {
    grid-row: auto;
  }

  .curated-card.feature {
    grid-template-rows: auto 1fr;
  }

  .curated-card.feature img {
    min-height: 0;
    height: auto;
    aspect-ratio: 1.2;
  }

  .planner-copy {
    position: static;
  }

  .city-visual {
    position: relative;
    top: auto;
  }

  .story-image img,
  .event-feature > img,
  .plan-hero img {
    min-height: 360px;
  }

  .homepage-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .dc-header-action {
    display: none;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding-top: 128px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .section,
  .cities-section,
  .plan-section,
  .magazine-feature,
  .now-section,
  .curated-section,
  .planner-board,
  .image-story,
  .itinerary-section,
  .event-feature {
    width: min(100% - 28px, 1180px);
  }

  .intro-strip a {
    min-height: 104px;
  }

  .experience-card {
    min-height: 360px;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

  .plan-grid a {
    min-height: 178px;
  }

  .plan-hero h2 {
    font-size: 42px;
  }

  .homepage-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
}
