/* Architecture freeze — destination, collection & homepage discover grids */

/* ── Hero video intro (session-first visit) ── */
.ml-hero-video {
  position: relative;
  z-index: 5;
  isolation: isolate;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0c1419;
}

.ml-hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(5, 10, 20, 0.18) 0%,
      rgba(5, 10, 20, 0.05) 45%,
      rgba(5, 10, 20, 0.48) 100%
    );
}

.ml-hero-video__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.ml-hero-video__audio {
  position: absolute;
  left: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  z-index: 12;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(200, 169, 106, 0.38);
  border-radius: 999px;
  background: rgba(8, 18, 33, 0.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #f8f5ef;
  cursor: pointer;
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

.ml-hero-video__audio:hover {
  background: rgba(8, 18, 33, 0.68);
  border-color: rgba(200, 169, 106, 0.52);
  color: #fff;
  transform: translateY(-1px);
}

.ml-hero-video__audio:focus-visible {
  outline: 2px solid rgba(200, 169, 106, 0.85);
  outline-offset: 3px;
}

.ml-hero-video__audio.is-on {
  background: rgba(8, 18, 33, 0.28);
  border-color: rgba(248, 245, 239, 0.1);
  color: rgba(248, 245, 239, 0.38);
}

.ml-hero-video__audio.is-on:hover {
  background: rgba(8, 18, 33, 0.42);
  border-color: rgba(248, 245, 239, 0.16);
  color: rgba(248, 245, 239, 0.55);
}

.ml-hero-video__audio-icon {
  width: 1.05rem;
  height: 1.05rem;
}

/* Muted: active/full icon visible */
.ml-hero-video__audio-icon--off {
  display: none;
}

.ml-hero-video__audio-icon--on {
  display: block;
}

/* Playing: subdued/minimal icon visible */
.ml-hero-video__audio.is-on .ml-hero-video__audio-icon--off {
  display: block;
}

.ml-hero-video__audio.is-on .ml-hero-video__audio-icon--on {
  display: none;
}

.ml-hero-video__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 20, 25, 0.18) 0%, rgba(12, 20, 25, 0.52) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}

body.hero-revealed .ml-hero-video__scrim {
  opacity: 1;
}

.ml-hero-video__overlay {
  position: relative;
  z-index: 3;
  width: min(920px, 92vw);
  padding: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 0.82, 0.25, 1),
    visibility 0.85s;
}

body.hero-revealed .ml-hero-video__overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ml-hero-video__title {
  margin: 0;
  font-family: 'El Messiri', 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.ml-hero-video__subtitle {
  margin: 0.55rem 0 0;
  font-family: 'Amiri', 'El Messiri', serif;
  font-size: clamp(1.35rem, 3.8vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: 0.06em;
  color: rgba(234, 236, 232, 0.92);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.38);
}

.ml-hero-video__search {
  margin-top: 1.35rem;
  background: rgba(12, 20, 25, 0.42);
  border-color: rgba(234, 236, 232, 0.22);
}

body.hero-immersive .ml-hero-video__overlay {
  pointer-events: none;
}

body.hero-immersive #header {
  transform: translateY(-115%);
  opacity: 0;
  pointer-events: none;
}

body.hero-revealed #header.home-header-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.ml-hero-video__mobile-intro,
.ml-hero-video__planner-label {
  display: none;
}

.ml-hero-video__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  position: absolute;
  left: 50%;
  bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
  z-index: 12;
  transform: translateX(-50%);
  pointer-events: none;
  color: rgba(234, 236, 232, 0.62);
  transition: opacity 0.5s ease, visibility 0.5s;
}

body.hero-scroll-unlocked .ml-hero-video__scroll-hint {
  opacity: 0;
  visibility: hidden;
}

.ml-hero-video__scroll-rail {
  display: none;
}

.ml-hero-video__scroll-line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgba(234, 236, 232, 0.05), rgba(234, 236, 232, 0.72));
}

.ml-hero-video__scroll-text {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .ml-hero-video__scroll-hint {
    display: none;
  }

  .ml-hero-video__scroll-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    position: fixed;
    top: 50%;
    right: max(0.65rem, env(safe-area-inset-right, 0px));
    z-index: 14;
    transform: translateY(-50%);
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.22s ease;
  }

  body.hero-scroll-locked .ml-hero-video__scroll-rail {
    opacity: 1;
    visibility: visible;
  }

  .ml-hero-video__scroll-rail:hover {
    transform: translateY(calc(-50% - 2px));
  }

  .ml-hero-video__scroll-rail:focus-visible {
    outline: 2px solid rgba(220, 120, 60, 0.9);
    outline-offset: 4px;
    border-radius: 999px;
  }

  .ml-hero-video__scroll-rail-track {
    position: relative;
    width: 10px;
    height: min(50vh, 420px);
    border-radius: 999px 999px 4px 4px;
    background: linear-gradient(180deg, rgba(220, 120, 60, 0.1) 0%, rgba(180, 70, 40, 0.22) 100%);
    border: 1px solid rgba(220, 130, 70, 0.42);
    box-shadow: inset 0 0 0 1px rgba(255, 210, 160, 0.08);
    overflow: hidden;
  }

  .ml-hero-video__scroll-rail-fill {
    position: absolute;
    left: 1px;
    right: 1px;
    bottom: 0;
    height: 42%;
    border-radius: inherit;
    background: linear-gradient(180deg, #ffb36a 0%, #e8743a 52%, #c94828 100%);
    box-shadow: 0 0 16px rgba(232, 100, 45, 0.42);
    animation: mlHeroRailPulse 2.4s ease-in-out infinite;
  }

  .ml-hero-video__scroll-rail-bulb {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    margin-top: -2px;
    background: radial-gradient(circle at 35% 30%, #ffd4a8 0%, #e8743a 52%, #b83220 100%);
    border: 1px solid rgba(255, 170, 90, 0.55);
    box-shadow: 0 0 18px rgba(232, 100, 45, 0.38);
    animation: mlHeroRailBulb 2.4s ease-in-out infinite;
  }

  .ml-hero-video__scroll-rail-label {
    margin-top: 0.15rem;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 190, 130, 0.82);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  body.hero-revealed.hero-scroll-locked .ml-hero-video__scroll-rail-fill {
    height: 58%;
    animation-name: mlHeroRailPulseReveal;
  }
}

@keyframes mlHeroRailPulse {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(-18%); opacity: 1; }
}

@keyframes mlHeroRailPulseReveal {
  0%, 100% { transform: translateY(0); opacity: 0.94; }
  50% { transform: translateY(-24%); opacity: 1; }
}

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

main > #moorishSearch {
  display: none !important;
}

#heroFormSlot #moorishSearch {
  display: grid !important;
}

@media (max-width: 767px) {
  body.home-hero-header.hero-immersive #header {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .ml-hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100svh;
    max-height: 100dvh;
    aspect-ratio: auto;
    display: block;
    overflow: hidden;
  }

  .ml-hero-video__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .ml-hero-video__mobile-intro {
    display: block;
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 110px;
    z-index: 10;
    text-align: center;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s;
  }

  body.hero-revealed .ml-hero-video__mobile-intro {
    opacity: 0;
    visibility: hidden;
  }

  .ml-hero-video__mobile-eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(234, 236, 232, 0.72);
  }

  .ml-hero-video__mobile-title {
    margin: 0;
    font-family: 'El Messiri', 'Cormorant Garamond', serif;
    font-size: clamp(1.65rem, 6.5vw, 2.15rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.04em;
    color: var(--cream);
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
  }

  .ml-hero-video__mobile-tagline {
    margin: 0.45rem 0 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(234, 236, 232, 0.78);
  }

  .ml-hero-video__scroll-hint {
    bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
  }

  .ml-hero-video__overlay {
    position: absolute;
    inset: 0;
    z-index: 11;
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: max(5.25rem, calc(env(safe-area-inset-top, 0px) + 4.5rem)) 1rem 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ml-hero-video__copy {
    display: none;
  }

  .ml-hero-video__planner-label {
    display: block;
    margin: 0 0 0.85rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.65rem, 5.5vw, 2rem);
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    color: var(--cream);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
  }

  .ml-hero-video__search {
    margin-top: 0;
    width: 100%;
    max-width: none;
    background: rgba(12, 20, 25, 0.52);
    border-color: rgba(234, 236, 232, 0.24);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .ml-hero-video__audio {
    left: max(0.75rem, env(safe-area-inset-left, 0px));
    bottom: max(4.5rem, calc(env(safe-area-inset-bottom, 0px) + 3.25rem));
    z-index: 12;
    pointer-events: auto;
  }

  #hero + section {
    position: relative;
  }
}

@media (min-width: 769px) and (max-width: 820px) {
  .ml-hero-video__audio {
    left: max(1rem, env(safe-area-inset-left, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    z-index: 12;
    pointer-events: auto;
  }
}

@media (max-width: 560px) {
  .ml-hero-video__overlay {
    width: 100%;
    padding-inline: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ml-hero-video__overlay,
  .ml-hero-video__scrim,
  .ml-hero-video__scroll-hint,
  .ml-hero-video__scroll-rail {
    transition: none;
  }

  .ml-hero-video__scroll-rail-fill,
  .ml-hero-video__scroll-rail-bulb {
    animation: none;
  }
}

.journey-planner-section {
  padding: 3rem 0 1.25rem;
  background: var(--ml-observer);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.journey-planner-section .section-title,
.journey-planner-section .section-lede {
  color: var(--cream);
}

.journey-planner-section .section-eyebrow {
  color: var(--ml-ochre);
}

.journey-planner-section .search-box {
  margin-top: 1.15rem;
}

/* ── Homepage: Discover Morocco ── */
.discover-section {
  padding: 5rem 0;
  background: var(--ml-ivory);
  color: var(--ml-heading);
}

.discover-section .section-eyebrow { color: var(--ml-terracotta); }
.discover-section .section-title { color: var(--ml-heading); }
.discover-section .section-lede { color: var(--ml-body); }

.discover-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.discover-card {
  position: relative;
  display: block;
  border-radius: var(--ml-card-radius);
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--ml-card-shadow);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.discover-card--split {
  display: flex;
  flex-direction: column;
  min-height: auto;
  color: var(--ml-heading);
  background: var(--ml-white);
}

.discover-card--split:nth-child(1) {
  grid-column: 1 / -1;
}

.discover-card--split:nth-child(1) .discover-card-media {
  aspect-ratio: 21 / 9;
}

.discover-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.discover-card-media {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ml-sand);
}

.discover-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

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

.discover-card-scrim {
  display: none;
}

.discover-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.35rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  flex: 1;
}

.discover-card-name {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ml-heading);
}

.discover-card-sub {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--ml-body);
  max-width: 28rem;
  line-height: 1.5;
}

.discover-card-cta {
  margin-top: 0.35rem;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ml-terracotta);
}

/* ── Homepage: Journey Collections ── */
.collections-section {
  padding: 5rem 0;
  background: var(--ml-white);
  color: var(--ml-heading);
}

.collections-section .section-eyebrow { color: var(--ml-terracotta); }
.collections-section .section-title { color: var(--ml-heading); }
.collections-section .section-lede { color: var(--ml-body); }

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.collection-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  border-radius: var(--ml-card-radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ml-heading);
  background: var(--ml-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--ml-card-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collection-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.collection-card.is-highlighted {
  border-color: rgba(198, 155, 79, 0.75);
  box-shadow: 0 18px 46px rgba(198, 155, 79, 0.22);
}

.collection-card.is-filtered-out {
  opacity: 0.38;
  transform: scale(0.985);
}

.collection-card-media {
  flex: 1;
  min-height: 140px;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.collection-card:hover .collection-card-media { transform: scale(1.04); }

.collection-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.collection-card-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.15;
}

.collection-card-desc {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--ml-text-muted);
  flex: 1;
}

.collection-card-link {
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ml-atlantic);
  margin-top: 0.35rem;
}

/* ── Architecture pages: shared ── */
.arch-body {
  background: var(--ml-ivory-page);
  color: var(--ml-text);
  min-height: 100vh;
}

.arch-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ml-border-light);
}

.arch-header .logo {
  text-decoration: none;
  display: block;
}

.arch-header .logo-mark {
  display: block;
  height: 34px;
  width: auto;
  max-width: min(220px, 62vw);
}

.arch-header .logo-mark--on-light { display: block; }
.arch-header .logo-mark--on-dark { display: none; }

.arch-header-cta {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ml-ivory-page);
  background: linear-gradient(135deg, var(--ml-green), var(--ml-atlantic));
  padding: 0.55rem 1rem;
  border-radius: 999px;
}

.arch-main { overflow-x: hidden; }

.arch-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.arch-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.arch-section--light { background: var(--ml-white); }
.arch-section--ivory { background: var(--ml-ivory); }
.arch-section--map { background: var(--ml-observer); color: var(--cream); }
.arch-section--map .section-eyebrow { color: var(--ml-ochre); }
.arch-section--map .arch-section-title { color: var(--cream); }

.arch-section--cta {
  background: linear-gradient(145deg, #0f1a22 0%, var(--ml-observer) 100%);
  color: var(--cream);
  text-align: center;
}

.arch-section--cta .section-eyebrow { color: var(--ml-ochre); }
.arch-section--cta .arch-section-title { color: var(--cream); }
.arch-section--cta .arch-prose { color: rgba(234, 236, 232, 0.78); margin-inline: auto; }

.arch-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.arch-prose {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ml-text-muted);
  max-width: 42rem;
}

/* ── Cinematic hero ── */
.arch-hero {
  position: relative;
  min-height: clamp(320px, 55vh, 520px);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}

.arch-hero-media {
  position: absolute;
  inset: 0;
}

.arch-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.arch-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(22, 28, 54, 0.25) 0%, rgba(20, 32, 40, 0.75) 100%);
}

.arch-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 1.5rem;
}

.arch-hero-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ml-ochre);
}

.arch-hero-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 300;
  line-height: 1.05;
  max-width: 14ch;
}

.arch-hero-lede {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(234, 236, 232, 0.82);
}

/* ── Cards & placeholders ── */
.arch-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.arch-card {
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.arch-section--map .arch-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.arch-card-title {
  margin: 0 0 0.35rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.arch-card-desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ml-text-muted);
}

.arch-section--map .arch-card-desc { color: rgba(234, 236, 232, 0.72); }

.arch-card-placeholder {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ml-ochre);
  opacity: 0.75;
}

.arch-highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  max-width: 36rem;
}

.arch-highlights li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ml-text-muted);
}

.arch-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ml-ochre);
}

/* ── Map slot ── */
.arch-map-slot {
  margin-top: 1rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(198, 155, 79, 0.22);
  min-height: 280px;
}

.arch-map-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 280px;
  padding: 2rem;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(43, 140, 143, 0.15) 0%, transparent 55%),
    linear-gradient(145deg, #0f1a22 0%, var(--ml-observer) 100%);
  color: rgba(234, 236, 232, 0.85);
}

.arch-map-pin {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ml-ochre);
  box-shadow: 0 0 16px rgba(198, 155, 79, 0.65);
  margin-bottom: 0.75rem;
}

/* ── Seasons ── */
.arch-seasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.arch-season {
  padding: 1.15rem;
  border-radius: 14px;
  background: var(--ml-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.arch-season-period {
  display: block;
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ml-ochre);
  margin-bottom: 0.35rem;
}

.arch-season-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.arch-season-note {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--ml-text-muted);
}

/* ── Gallery ── */
.arch-gallery {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  max-height: 420px;
  background: var(--ml-observer);
}

.arch-gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.arch-gallery-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.arch-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(20, 32, 40, 0.55);
  color: var(--cream);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.arch-gallery-btn--prev { left: 1rem; }
.arch-gallery-btn--next { right: 1rem; }

/* ── Destination links (collections) ── */
.arch-dest-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.arch-dest-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  text-decoration: none;
  background: var(--ml-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s, transform 0.2s;
}

.arch-dest-link:hover {
  border-color: rgba(198, 155, 79, 0.45);
  transform: translateY(-2px);
}

.arch-dest-link-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--ml-heading);
}

.arch-dest-link-sub {
  font-size: 0.78rem;
  color: var(--ml-text-muted);
}

/* ── Observer embed on destination pages ── */
.arch-observer-embed {
  padding: 2.75rem 0;
}

.arch-observer-embed .observer-bg-video { display: none; }

/* Observer wrapper on destination pages (v2026-08-04) */
.arch-section--observer {
  position: relative;
  overflow: visible;
}

.arch-section--observer .obs-shell {
  margin-top: 0;
}

/*
 * Destination Observer: keep “Destination Today” in flow after Atlas.
 * Overrides frozen observer-section.css 100svh + vertical centering (which
 * pushed the page-head upward behind the fixed nav).
 */
.arch-body--destination .arch-section--observer {
  scroll-margin-top: calc(var(--dest-nav-h, 64px) + var(--dest-pills-h, 46px) + 14px);
  padding: 0;
  background: linear-gradient(180deg, var(--ml-ivory) 0%, rgba(248, 245, 239, 0.42) 56px, transparent 56px);
}

.arch-body--destination .arch-section--observer .obs-shell:not(.is-intelligence-open) {
  height: auto;
  max-height: none;
  overflow: hidden;
}

.arch-body--destination .arch-section--observer .obs-shell:not(.is-intelligence-open) .obs-shell__inner {
  height: auto;
  min-height: 0;
  justify-content: flex-start;
  padding-top: clamp(1rem, 2.2vw, 1.5rem);
  padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.arch-body--destination .arch-section--observer .obs-shell:not(.is-intelligence-open) .obs-shell__grid {
  flex: 0 0 auto;
  min-height: 0;
}

.arch-body--destination .arch-section--observer .obs-shell:not(.is-intelligence-open) .obs-shell__panel {
  overflow-x: hidden;
  overflow-y: visible;
  max-height: none;
}

@media (min-width: 901px) {
  .arch-body--destination .arch-section--observer .obs-shell:not(.is-intelligence-open) {
    height: auto;
    max-height: none;
  }

  .arch-body--destination .arch-section--observer .obs-shell:not(.is-intelligence-open) .obs-shell__inner {
    height: auto;
    justify-content: flex-start;
  }

  .arch-body--destination .arch-section--observer .obs-shell__toggle {
    position: static;
    box-shadow: none;
  }
}

/* “Destination Today” header — top of Observer shell, same atmosphere as device panel */
.obs-shell__page-head.dest-observer-today {
  max-width: 100%;
  margin: 0 0 clamp(0.65rem, 1.8vw, 1.1rem);
  padding: 0 0 clamp(0.85rem, 2vw, 1.15rem);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
}

.dest-observer-today-eyebrow {
  margin-bottom: 0.55rem;
  color: var(--ml-ochre);
}

.dest-observer-today__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.75rem;
}

.dest-observer-today__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 0.85rem;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.05;
}

.dest-observer-today__place {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  letter-spacing: 0.01em;
  color: var(--cream);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.dest-observer-today__day {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.72rem 0.28rem;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.62rem, 1.4vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #12161f;
  background: linear-gradient(135deg, #d4ad62 0%, #c69b4f 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.1em);
}

.dest-observer-today__live {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin-top: 0.35rem;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(234, 236, 232, 0.72);
}

.dest-observer-today__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #36c878;
  box-shadow: 0 0 0 0 rgba(54, 200, 120, 0.45);
  animation: dest-observer-pulse 2.2s ease-in-out infinite;
}

@keyframes dest-observer-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(54, 200, 120, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(54, 200, 120, 0); }
}

.dest-observer-today__lede {
  margin: 0 0 0.85rem;
  max-width: 40rem;
  font-size: clamp(0.86rem, 1.7vw, 0.94rem);
  line-height: 1.6;
  color: rgba(234, 236, 232, 0.76);
}

.dest-observer-today__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dest-observer-today__signals li {
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(234, 236, 232, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.arch-section--observer .arch-weather-map-wrap {
  margin-top: 1.25rem;
}

@media (max-width: 720px) {
  .arch-section--observer {
    padding: 0;
  }

  .obs-shell__page-head.dest-observer-today {
    padding-bottom: 0.85rem;
  }

  .dest-observer-today__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .dest-observer-today__live {
    margin-top: 0;
  }

  .dest-observer-today__signals li {
    font-size: 0.52rem;
  }
}

/* ── CTA ── */
.arch-cta-block { max-width: 36rem; }

.arch-cta-btn {
  margin-top: 1.25rem;
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ml-ivory-page);
  background: linear-gradient(135deg, var(--ml-green), var(--ml-atlantic));
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.arch-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(83, 98, 74, 0.35);
}

/* ── Footer ── */
.arch-footer {
  background: var(--ml-indigo);
  color: var(--cream);
  padding: 2.5rem 1.5rem;
}

.arch-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.arch-footer-logo img {
  height: 36px;
  width: auto;
  opacity: 0.9;
}

.arch-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin: 1.25rem 0;
}

.arch-footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(234, 236, 232, 0.72);
  text-decoration: none;
}

.arch-footer-links a:hover { color: var(--cream); }

.arch-footer-meta {
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: rgba(234, 236, 232, 0.45);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .collections-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .discover-grid { grid-template-columns: 1fr; }
  .discover-card:nth-child(1) { grid-column: auto; }
}

@media (max-width: 560px) {
  .journey-planner-section {
    padding-top: 2.4rem;
  }
  .collections-grid { grid-template-columns: 1fr; }
  .arch-gallery { aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
  .discover-card-media,
  .discover-card-img,
  .collection-card-media,
  .arch-gallery-track,
  .arch-atlas-gallery-track,
  .discover-card,
  .collection-card,
  .arch-hero-video,
  .arch-atlas-video {
    transition: none;
  }
}

/* ── Destination Atlas (inner pages) ── */

/* Premium destination navigation */
.arch-dest-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.65rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.arch-dest-nav.is-scrolled {
  background: var(--ml-nav-surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ml-nav-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  padding: 0.45rem 0;
}

.arch-dest-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.arch-dest-nav-start {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.arch-dest-nav-logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  background: transparent;
  transition: transform 0.25s ease;
}

.arch-dest-nav-logo img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
  transition: width 0.3s ease, height 0.3s ease;
}

.arch-dest-nav.is-scrolled .arch-dest-nav-logo img {
  width: 44px;
  height: 44px;
}

.arch-dest-nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
}

.arch-dest-nav-link {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ml-nav-text-muted);
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.arch-dest-nav.is-scrolled .arch-dest-nav-link {
  color: var(--ml-nav-text-muted);
}

.arch-dest-nav-link:hover,
.arch-dest-nav-link.is-active {
  color: var(--ml-nav-text);
  background: rgba(43, 140, 143, 0.18);
}

.arch-dest-nav.is-scrolled .arch-dest-nav-link:hover,
.arch-dest-nav.is-scrolled .arch-dest-nav-link.is-active {
  color: var(--ml-nav-accent);
  background: rgba(43, 140, 143, 0.2);
}

.arch-dest-nav-cta {
  appearance: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  font-family: inherit;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ml-nav-navy);
  background: var(--ml-nav-accent);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.arch-dest-nav-cta:hover {
  transform: translateY(-1px);
  background: #d4ab63;
  box-shadow: 0 10px 28px rgba(198, 155, 79, 0.35);
}

.arch-dest-nav-cta--mobile { display: none; }

.arch-dest-nav-toggle {
  display: none;
  appearance: none;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.55rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  margin-left: auto;
}

.arch-dest-nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ml-nav-text);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.arch-dest-nav.is-scrolled .arch-dest-nav-toggle {
  background: rgba(255, 255, 255, 0.1);
}

.arch-dest-nav.is-scrolled .arch-dest-nav-toggle span {
  background: var(--ml-nav-text);
}

.arch-dest-nav.is-open .arch-dest-nav-toggle span:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}

.arch-dest-nav.is-open .arch-dest-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.arch-dest-nav.is-open .arch-dest-nav-toggle span:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* Highlight editorial cards */
.arch-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.arch-highlight-card {
  position: relative;
  display: flex;
  gap: 0.85rem;
  padding: 1.35rem 1.25rem;
  border-radius: 18px;
  background: var(--ml-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.arch-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(198, 155, 79, 0.28);
}

.arch-highlight-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(198, 155, 79, 0.1);
  color: var(--ml-ochre);
  margin-top: 0.05rem;
}

.arch-highlight-svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.arch-highlight-body {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.arch-highlight-title {
  margin: 0 0 0.35rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ml-heading);
}

.arch-highlight-desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--ml-text-muted);
}

.arch-highlight-accent {
  position: absolute;
  right: -20%;
  bottom: -30%;
  width: 55%;
  height: 80%;
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.arch-highlight-card:hover .arch-highlight-accent {
  opacity: 0.12;
}

.arch-body--atlas .arch-hero--atlas {
  min-height: clamp(380px, 62vh, 580px);
  padding-top: 4.5rem;
}

.arch-body--atlas .arch-hero-content {
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.arch-body--atlas .arch-hero-subtitle {
  margin-top: 0.85rem;
  max-width: 28rem;
}

.arch-hero-subtitle {
  margin: 0.65rem 0 0;
  max-width: 32rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: rgba(234, 236, 232, 0.88);
}

.arch-hero-cta {
  appearance: none;
  border: none;
  cursor: pointer;
  margin-top: 1.35rem;
  font-family: inherit;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ml-ivory-page);
  background: linear-gradient(135deg, var(--ml-green), var(--ml-atlantic));
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.arch-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.arch-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease;
}

.arch-hero-video.is-loaded { opacity: 1; }
.arch-hero-video.is-loaded + .arch-hero-image { opacity: 0; }

.arch-section-lede {
  margin: -0.35rem 0 1.25rem;
  max-width: 36rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ml-text-muted);
}

.arch-atlas-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

.arch-atlas-intro-p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ml-text-muted);
}

.arch-atlas-intro-p:last-child { margin-bottom: 0; }

.arch-atlas-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 420px;
  background: var(--ml-observer);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.arch-atlas-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arch-highlights--atlas {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: none;
}

.arch-atlas-mood-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.arch-atlas-mood-tab {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--ml-white);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-family: inherit;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ml-text-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.arch-atlas-mood-tab.is-active,
.arch-atlas-mood-tab:hover {
  border-color: rgba(198, 155, 79, 0.55);
  color: var(--ml-heading);
  background: rgba(198, 155, 79, 0.08);
}

.arch-atlas-experience-grid,
.arch-atlas-journey-grid,
.arch-atlas-stay-grid,
.arch-atlas-culinary-grid,
.arch-atlas-essential-grid,
.arch-atlas-nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.arch-atlas-exp-card,
.arch-atlas-journey-card,
.arch-atlas-stay-card,
.arch-atlas-culinary-card,
.arch-atlas-essential-card {
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.arch-section--ivory .arch-atlas-exp-card,
.arch-section--ivory .arch-atlas-journey-card,
.arch-section--ivory .arch-atlas-stay-card,
.arch-section--ivory .arch-atlas-culinary-card,
.arch-section--ivory .arch-atlas-essential-card {
  background: var(--ml-white);
}

.arch-atlas-exp-mood,
.arch-atlas-journey-tag,
.arch-atlas-stay-type,
.arch-atlas-culinary-type {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ml-ochre);
  margin-bottom: 0.4rem;
}

.arch-atlas-exp-title,
.arch-atlas-journey-title,
.arch-atlas-stay-title,
.arch-atlas-culinary-title,
.arch-atlas-essential-title {
  margin: 0 0 0.35rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ml-heading);
}

.arch-atlas-exp-desc,
.arch-atlas-journey-desc,
.arch-atlas-stay-desc,
.arch-atlas-culinary-desc,
.arch-atlas-essential-desc {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ml-text-muted);
}

.arch-atlas-exp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.arch-atlas-exp-select,
.arch-atlas-book-btn {
  appearance: none;
  border: 1px solid rgba(83, 98, 74, 0.25);
  background: transparent;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-family: inherit;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ml-green);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.arch-atlas-exp-select.is-selected {
  background: var(--ml-green);
  color: var(--cream);
  border-color: var(--ml-green);
}

.arch-atlas-exp-book {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ml-terracotta);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 155, 79, 0.35);
}

.arch-atlas-book-btn {
  margin-top: 0.75rem;
  background: linear-gradient(135deg, var(--ml-green), var(--ml-atlantic));
  color: var(--cream);
  border: none;
}

.arch-atlas-places {
  display: grid;
  gap: 0.65rem;
}

.arch-atlas-place-card {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--ml-white);
  overflow: hidden;
}

.arch-atlas-place-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  list-style: none;
}

.arch-atlas-place-summary::-webkit-details-marker { display: none; }

.arch-atlas-place-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-color: var(--ml-sand);
}

.arch-atlas-place-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.arch-atlas-place-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ml-heading);
}

.arch-atlas-place-teaser {
  font-size: 0.78rem;
  color: var(--ml-text-muted);
}

.arch-atlas-place-body {
  padding: 0 1rem 1rem 6.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ml-text-muted);
}

.arch-atlas-gallery {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  max-height: 440px;
  background: var(--ml-observer);
}

.arch-atlas-gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.arch-atlas-gallery-item {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.arch-atlas-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arch-atlas-gallery-item--video {
  background: var(--ml-observer);
}

.arch-atlas-gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arch-atlas-gallery-video-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(20, 32, 40, 0.55);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.arch-atlas-nearby-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--ml-white);
  transition: transform 0.2s, box-shadow 0.2s;
}

.arch-atlas-nearby-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.arch-atlas-nearby-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.arch-atlas-nearby-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
}

.arch-atlas-nearby-copy strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ml-heading);
}

.arch-atlas-nearby-copy span {
  font-size: 0.78rem;
  color: var(--ml-text-muted);
}

.arch-observer-embed .section-title {
  font-family: 'Cormorant Garamond', serif;
}

@media (max-width: 900px) {
  .arch-atlas-overview-grid { grid-template-columns: 1fr; }
  .arch-atlas-visual { max-height: 320px; aspect-ratio: 16 / 10; }
  .arch-atlas-place-body { padding-left: 1rem; }
}

@media (max-width: 960px) {
  .arch-dest-nav-inner {
    grid-template-columns: 1fr auto;
  }

  .arch-dest-nav-start {
    justify-content: space-between;
    width: 100%;
    grid-column: 1 / -1;
  }

  .arch-dest-nav-menu {
    grid-column: 1 / -1;
  }

  .arch-dest-nav-toggle {
    display: flex;
  }

  .arch-dest-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(248, 246, 241, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .arch-dest-nav.is-open .arch-dest-nav-menu {
    display: flex;
  }

  .arch-dest-nav-link {
    color: var(--ml-text-muted);
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
  }

  .arch-dest-nav-link:hover,
  .arch-dest-nav-link.is-active {
    color: var(--ml-heading);
    background: rgba(198, 155, 79, 0.1);
  }

  .arch-dest-nav-cta--mobile {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
  }

  .arch-dest-nav-inner > .arch-dest-nav-cta:not(.arch-dest-nav-cta--mobile) {
    display: none;
  }

  .arch-highlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .arch-dest-nav-logo img {
    width: 44px;
    height: 44px;
  }
}
