@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Smooch+Sans:wght@100..900&display=swap");

:root {
  color-scheme: dark;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --paper: #461211;
  --panel: #5a1b19;
  --panel-soft: #68221f;
  --coral: #f6b38c;
  --teal: #f9d46b;
  --gold: #ffd653;
  --blue: #8f3430;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(52, 11, 10, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 1 390px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: clamp(48px, 6vw, 78px);
  max-width: min(390px, 58vw);
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 48px;
}

.menu-toggle span {
  background: #fff;
  display: block;
  height: 2px;
  position: absolute;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
  width: 22px;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: flex-end;
}

nav a {
  color: rgba(255, 255, 255, 0.84);
  font-family: "Smooch Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  text-decoration: none;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(70, 18, 17, 0.92), rgba(70, 18, 17, 0.42)),
    url("https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/View_over_grand_harbour%2C_valletta.JPG/1280px-View_over_grand_harbour%2C_valletta.JPG");
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  min-height: clamp(340px, 40vh, 430px);
  padding: clamp(28px, 4vw, 54px) clamp(18px, 7vw, 88px);
}

.hero-copy {
  max-width: 720px;
  padding-bottom: 0;
}

.eyebrow,
.card-kicker {
  color: var(--coral);
  font-family: "Smooch Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f7c75e;
}

.motion-banner {
  background: var(--paper);
  padding: clamp(18px, 3vw, 34px) clamp(18px, 4vw, 56px) 0;
}

.motion-frame {
  aspect-ratio: 16 / 9;
  background: #2e0b0a;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  contain: paint;
  margin: 0 auto;
  max-height: 720px;
  max-width: 1180px;
  overflow: hidden;
  position: relative;
}

.motion-frame::after {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 70px);
  content: "";
  inset: 0;
  opacity: 0.26;
  position: absolute;
  z-index: 5;
}

.motion-slide {
  animation: carousel-fade 18s infinite;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 214, 83, 0.28), transparent 20%),
    linear-gradient(180deg, #67201e 0%, #461211 58%, #2e0b0a 100%);
  inset: 0;
  opacity: 0;
  position: absolute;
}

.slide-festa {
  animation-delay: 6s;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.16), transparent 11%),
    linear-gradient(180deg, #541816 0%, #461211 54%, #260908 100%);
}

.slide-food {
  animation-delay: 12s;
  background:
    radial-gradient(circle at 22% 28%, rgba(249, 212, 107, 0.2), transparent 18%),
    linear-gradient(135deg, #64201d 0%, #461211 48%, #2d0b0a 100%);
}

.sun {
  animation: sun-pulse 6s ease-in-out infinite;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 80px rgba(255, 214, 83, 0.45);
  height: 16%;
  position: absolute;
  right: 12%;
  top: 12%;
  width: 9%;
}

.sea {
  animation: drift 9s linear infinite;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 7%, transparent 7% 13%);
  height: 12%;
  left: -20%;
  position: absolute;
  right: -20%;
}

.sea-back {
  bottom: 22%;
  opacity: 0.34;
}

.sea-front {
  animation-duration: 6s;
  bottom: 14%;
  opacity: 0.52;
}

.skyline {
  animation: skyline-loop 14s linear infinite;
  background:
    linear-gradient(to top, #fff 0 9%, transparent 9%),
    linear-gradient(to top, transparent 0 38%, #fff 38% 43%, transparent 43%),
    linear-gradient(to top, transparent 0 72%, #fff 72% 76%, transparent 76%);
  bottom: 28%;
  height: 34%;
  left: -5%;
  position: absolute;
  width: 105%;
}

.skyline::before,
.skyline::after {
  background: #fff;
  content: "";
  position: absolute;
}

.skyline::before {
  clip-path: polygon(0 100%, 0 22%, 18% 22%, 18% 48%, 31% 48%, 31% 14%, 46% 14%, 46% 64%, 60% 64%, 60% 30%, 76% 30%, 76% 56%, 100% 56%, 100% 100%);
  inset: 20% 0 0;
  opacity: 0.93;
}

.skyline::after {
  clip-path: polygon(0 100%, 8% 44%, 14% 100%, 26% 22%, 33% 100%, 47% 38%, 54% 100%, 68% 18%, 77% 100%, 90% 46%, 100% 100%);
  inset: 0 0 42%;
  opacity: 0.28;
}

.skyline-two {
  animation-delay: -7s;
  left: 100%;
}

.balcony {
  animation: float-balcony 5s ease-in-out infinite;
  border: 10px solid #fff;
  bottom: 32%;
  display: grid;
  gap: 8%;
  grid-template-columns: repeat(3, 1fr);
  height: 24%;
  left: 10%;
  padding: 3%;
  position: absolute;
  width: 30%;
}

.balcony span {
  border: 7px solid #fff;
  display: block;
}

.motion-slide p {
  bottom: 7%;
  color: #fff;
  font-family: "Smooch Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.7rem, 5vw, 4.8rem);
  font-weight: 500;
  left: 6%;
  line-height: 0.94;
  margin: 0;
  max-width: 760px;
  position: absolute;
  z-index: 1;
}

.moon {
  animation: sun-pulse 5s ease-in-out infinite;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 0 70px rgba(255, 255, 255, 0.34);
  height: 13%;
  position: absolute;
  right: 13%;
  top: 13%;
  width: 7.5%;
}

.festival-lights {
  display: flex;
  gap: 5%;
  left: 8%;
  position: absolute;
  right: 8%;
  top: 15%;
}

.festival-lights span {
  animation: twinkle 1.8s ease-in-out infinite;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(255, 214, 83, 0.65);
  display: block;
  height: 16px;
  width: 16px;
}

.festival-lights span:nth-child(2),
.festival-lights span:nth-child(4) {
  animation-delay: 0.7s;
  background: #fff;
}

.church-front {
  animation: float-balcony 6s ease-in-out infinite;
  border: 10px solid #fff;
  bottom: 26%;
  height: 42%;
  left: 12%;
  position: absolute;
  width: 34%;
}

.church-front::before {
  background: #fff;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  content: "";
  height: 42%;
  left: 12%;
  position: absolute;
  top: -42%;
  width: 76%;
}

.church-front span {
  border: 7px solid #fff;
  display: block;
  position: absolute;
}

.church-front span:nth-child(1) {
  height: 38%;
  left: 10%;
  top: 18%;
  width: 24%;
}

.church-front span:nth-child(2) {
  height: 58%;
  left: 41%;
  top: 30%;
  width: 18%;
}

.church-front span:nth-child(3) {
  height: 38%;
  right: 10%;
  top: 18%;
  width: 24%;
}

.fireworks {
  animation: burst 2.8s ease-out infinite;
  border: 3px solid #fff;
  border-radius: 999px;
  height: 9%;
  opacity: 0;
  position: absolute;
  width: 5%;
}

.fireworks-one {
  right: 31%;
  top: 30%;
}

.fireworks-two {
  animation-delay: 1.2s;
  right: 16%;
  top: 39%;
}

.route-line {
  animation: route-draw 5s ease-in-out infinite;
  border: 8px solid #fff;
  border-left: 0;
  border-radius: 0 999px 999px 0;
  height: 44%;
  left: 13%;
  position: absolute;
  top: 22%;
  width: 54%;
}

.map-pin {
  animation: pin-bounce 2.6s ease-in-out infinite;
  background: var(--gold);
  border: 6px solid #fff;
  border-radius: 50% 50% 50% 0;
  height: 9%;
  position: absolute;
  transform: rotate(-45deg);
  width: 5%;
}

.pin-one {
  left: 18%;
  top: 34%;
}

.pin-two {
  animation-delay: 0.9s;
  left: 60%;
  top: 57%;
}

.plate {
  animation: float-balcony 4.8s ease-in-out infinite;
  border: 10px solid #fff;
  border-radius: 999px;
  bottom: 27%;
  height: 28%;
  position: absolute;
  right: 12%;
  width: 20%;
}

.plate span {
  background: #fff;
  border-radius: 999px;
  display: block;
  height: 8%;
  left: 20%;
  position: absolute;
  right: 20%;
}

.plate span:nth-child(1) {
  top: 32%;
}

.plate span:nth-child(2) {
  top: 48%;
}

.plate span:nth-child(3) {
  top: 64%;
}

.waves {
  animation: drift 7s linear infinite;
  background: repeating-linear-gradient(90deg, transparent 0 4%, #fff 4% 7%, transparent 7% 12%);
  bottom: 18%;
  height: 8%;
  left: -20%;
  opacity: 0.42;
  position: absolute;
  right: -20%;
}

h1,
h2,
h3 {
  font-family: "Smooch Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  margin-top: 0;
}

p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 6rem);
  line-height: 0.9;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.text-button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-family: "Smooch Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  text-decoration: none;
}

.button.primary {
  background: #fff;
  color: var(--paper);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  outline: 1px solid rgba(255, 255, 255, 0.42);
}

.section {
  padding: clamp(46px, 8vw, 100px) clamp(18px, 4vw, 56px);
}

.intro-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.section-card,
.interactive-panel,
.culture-list article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(180px, 20vw, 270px);
  padding: clamp(22px, 3vw, 34px);
  text-decoration: none;
}

.section-card h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.45;
  max-width: 380px;
}

.about-hero {
  padding: clamp(64px, 10vw, 130px) clamp(18px, 7vw, 88px) clamp(28px, 5vw, 60px);
}

.about-hero h1 {
  font-size: clamp(4.2rem, 12vw, 10rem);
}

.about-hero p {
  max-width: 840px;
}

.about-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 0;
}

.about-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 46px);
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: clamp(34px, 5vw, 62px);
}

.gallery-item {
  align-items: center;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  font-family: "Smooch Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.gallery-item.video-placeholder::before {
  border-bottom: 22px solid transparent;
  border-left: 34px solid rgba(255, 255, 255, 0.72);
  border-top: 22px solid transparent;
  content: "";
  margin-right: 18px;
}

.gallery-item.wide {
  grid-column: 1 / -1;
}

.locals-page-hero {
  padding-bottom: 0;
}

.locals-page {
  padding-top: clamp(34px, 5vw, 62px);
}

.locals-ad-section {
  padding-bottom: 0;
  padding-top: clamp(28px, 4vw, 48px);
}

.ad-slot {
  aspect-ratio: 16 / 9;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  max-width: 980px;
  overflow: hidden;
  position: relative;
}

.ad-slot img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.search-label {
  color: #fff;
  display: block;
  font-family: "Smooch Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.search-input {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  font: inherit;
  margin-bottom: 18px;
  min-height: 54px;
  padding: 0 16px;
  width: 100%;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.search-empty {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  padding: 22px;
}

.split-section,
.itinerary-section,
.culture-section {
  align-items: start;
  display: grid;
  gap: clamp(26px, 5vw, 72px);
  grid-template-columns: minmax(230px, 0.85fr) minmax(300px, 1.4fr);
}

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

.interactive-panel {
  min-height: 440px;
  padding: clamp(18px, 3vw, 30px);
}

.panel-header {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.panel-header h3 {
  margin: 0;
}

.text-button {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  min-height: 38px;
  padding: 9px 13px;
}

.hidden {
  display: none;
}

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

.option-card {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  min-height: 132px;
  padding: 20px;
  text-align: left;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
  width: 100%;
}

.category-card {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 34px minmax(0, 1fr);
  min-height: 96px;
}

.category-icon {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.category-icon svg {
  display: block;
  height: 28px;
  width: 28px;
}

.category-icon path,
.category-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.option-card-copy {
  display: block;
  min-width: 0;
}

.option-card:hover,
.option-card:focus-visible {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.option-card strong {
  display: block;
  font-family: "Smooch Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.category-card strong,
.subcategory-card strong {
  font-size: clamp(1.65rem, 4.8vw, 2.25rem);
  line-height: 1;
  margin-bottom: 0;
}

.option-card span {
  color: var(--muted);
  display: block;
  line-height: 1.5;
}

.place-list {
  display: grid;
  gap: 14px;
}

.place-card {
  align-items: center;
  border-left: 6px solid var(--gold);
  display: grid;
  gap: 18px;
  grid-template-columns: 112px 1fr;
  min-height: 122px;
}

.place-card-media {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  height: 96px;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  width: 112px;
}

.place-logo {
  display: block;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.fallback-logo {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--teal);
  display: inline-flex;
  font-family: "Smooch Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  height: 64px;
  justify-content: center;
  width: 64px;
}

.place-card-copy {
  min-width: 0;
}

.tag {
  color: var(--teal);
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 12px;
}

.tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tab {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font-family: "Smooch Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  min-height: 40px;
  padding: 9px 13px;
}

.tab.active {
  background: #fff;
  border-color: #fff;
  color: var(--paper);
}

.progress-label {
  color: var(--teal);
  font-weight: 500;
}

.progress-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  height: 12px;
  margin-bottom: 22px;
  overflow: hidden;
}

.progress-fill {
  background: linear-gradient(90deg, #fff, var(--gold));
  height: 100%;
  transition: width 180ms ease;
  width: 0%;
}

.checklist {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist label {
  align-items: start;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: 24px 1fr;
  min-height: 72px;
  padding: 16px;
}

.checklist input {
  accent-color: var(--teal);
  height: 20px;
  margin-top: 3px;
  width: 20px;
}

.checklist strong {
  display: block;
  margin-bottom: 4px;
}

.checklist span {
  color: var(--muted);
  display: block;
  line-height: 1.45;
}

.culture-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.culture-list article {
  box-shadow: none;
  min-height: 190px;
  padding: 24px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px clamp(18px, 4vw, 56px);
}

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(14%);
  }
}

@keyframes carousel-fade {
  0%,
  30% {
    opacity: 1;
  }
  35%,
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes skyline-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-105%);
  }
}

@keyframes sun-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(0) scale(0.92);
  }
  50% {
    opacity: 1;
    transform: translateY(8px) scale(1.08);
  }
}

@keyframes burst {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(2.4);
  }
}

@keyframes route-draw {
  0%,
  100% {
    clip-path: inset(0 100% 0 0);
  }
  45%,
  78% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes pin-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(-12px) rotate(-45deg);
  }
}

@keyframes float-balcony {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .intro-grid,
  .split-section,
  .itinerary-section,
  .culture-section,
  .about-grid,
  .gallery-grid,
  .culture-list {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    min-height: 68px;
    padding: 10px 18px;
  }

  .brand {
    flex-basis: 246px;
  }

  .brand-logo {
    height: 56px;
    max-width: 246px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  nav {
    background: rgba(52, 11, 10, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 18px;
    left: 0;
    padding: 18px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .site-header.menu-open nav {
    display: flex;
  }

  nav a {
    font-size: 1.7rem;
  }

  .hero {
    height: auto;
    min-height: 210px;
    padding: 28px 18px 22px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.8rem);
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .intro-grid {
    margin-top: 0;
  }

  .section-card {
    min-height: 190px;
    padding: 26px;
  }

  .section-card h2 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
    margin-bottom: 18px;
  }

  .section-card p {
    font-size: 1rem;
  }

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

  .category-card {
    gap: 14px;
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .category-icon {
    height: 32px;
    width: 32px;
  }

  .category-icon svg {
    height: 26px;
    width: 26px;
  }

  .place-card {
    grid-template-columns: 84px 1fr;
  }

  .place-card-media {
    height: 74px;
    width: 84px;
  }
}
