:root {
  --ivory: #f8f4ed;
  --warm-white: #fffaf3;
  --stone: #d8d0c3;
  --charcoal: #1e1c19;
  --muted: #6f675e;
  --gold: #b99a55;

  --serif: "Instrument Serif", serif;
  --sans: "Work Sans", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
}

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

.scene {
  position: relative;
  min-height: 100vh;
  padding: 8vw;
}

.tiny-label {
  margin: 0 0 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.95;
  margin: 0;
}

p {
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Premium image */

.story-image,
.art-image-main,
.art-image-floating,
.stay-image,
.morning-image,
.destination-grid article img {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.10);
}

/* Scene 1 */

.arrival {
  min-height: 100vh;
  background: #050505;
  color: #f5efe6;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
}

.arrival-stage {
  position: relative;
  width: 100%;
  height: 100vh;
}

.arrival-word,
.arrival-union,
.arrival-final,
.arrival-scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.arrival-word {
  top: 43%;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 8.5rem);
  letter-spacing: 0.06em;
  opacity: 0;
  animation: arrivalWord 4.8s ease forwards;
}

.arrival-word.hotel { left: 33%; }

.arrival-word.gallery {
  left: 67%;
  animation-delay: 0.35s;
}

.arrival-union {
  top: 43%;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 7rem);
  letter-spacing: 0.04em;
  opacity: 0;
  white-space: nowrap;
  animation: arrivalUnion 4.8s ease forwards;
}

.arrival-final {
  top: 38%;
  text-align: center;
  opacity: 0;
  filter: blur(14px);
  animation: arrivalFinal 6.2s cubic-bezier(.16, 1, .3, 1) forwards;
}

.arrival-final h1 {
  font-size: clamp(4rem, 10vw, 10rem);
  letter-spacing: 0.18em;
  text-shadow: 0 0 42px rgba(245, 239, 230, 0.18);
}

.arrival-final p {
  margin: 1.4rem 0 0.7rem;
  color: #f5efe6;
  font-size: 0.85rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.arrival-final span {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.arrival-scroll {
  bottom: 8vh;
  color: var(--gold);
  font-size: 2rem;
  opacity: 0;
  animation: arrivalScroll 4.8s ease forwards;
}

/* Nav */

.floating-nav {
  position: fixed;
  top: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  z-index: 20;
  width: min(92%, 1180px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: rgba(245, 239, 230, 0.58);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(245, 239, 230, 0.22);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.floating-nav.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.floating-nav a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-nav nav {
  display: flex;
  gap: 1.6rem;
}

.brand {
  font-family: var(--serif);
  font-size: 1.1rem !important;
  letter-spacing: 0.18em !important;
}

.book-link { color: var(--gold) !important; }

/* Scene 2 */

.hero-reveal {
  min-height: 100vh;
  padding: 0;
  background: #050505;
  overflow: hidden;
}

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

.hero-image img {
  object-position: center center;
  filter: brightness(0.86) contrast(1.03);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 55% 45%, rgba(0,0,0,0.03), rgba(0,0,0,0.46) 72%),
    linear-gradient(to bottom, rgba(0,0,0,0.02), rgba(0,0,0,0.36)),
    linear-gradient(to right, rgba(0,0,0,0.58), rgba(0,0,0,0.08) 55%);
}

.hero-title {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  width: min(90%, 520px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 7vw 7vw;
  color: var(--warm-white);
}

.hero-title h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
  text-shadow: 0 12px 35px rgba(0,0,0,.35);
}

.hero-subtitle {
  font-size: .9rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  line-height: 2;
}

/* Scene 3 */

.silence {
  min-height: 100vh;
  background: var(--warm-white);
  display: grid;
  place-items: center;
}

.silence-inner {
  width: min(92vw, 980px);
  margin: 0 auto;
  text-align: center;
}

.silence-inner span {
  display: block;
  margin-bottom: 3rem;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--gold);
}

.silence p {
  margin: 0 auto;
  max-width: 980px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.2vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--charcoal);
}

/* Scene 4 */

.story {
  min-height: 100vh;
  background: var(--ivory);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 7vw;
  align-items: center;
}

.story-image { height: 74vh; }

.story-text { max-width: 560px; }

.story-text span,
.art-intro span,
.city-intro span,
.destinations-heading span,
.stay-copy span,
.morning-copy span {
  display: block;
  margin-bottom: 2.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--gold);
}

.story-text h2 {
  font-size: clamp(3rem, 5.8vw, 6.8rem);
  letter-spacing: -0.035em;
  margin-bottom: 2rem;
}

.story-text p:last-child { max-width: 460px; }

/* Scene 5 */

.art {
  min-height: 110vh;
  background: var(--charcoal);
  color: var(--warm-white);
  padding: 7vw 8vw;
  overflow: hidden;
}

.art-intro {
  max-width: 900px;
  margin-bottom: 5vw;
}

.art-intro h2 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 6.8rem);
  letter-spacing: -0.04em;
}

.art-stage {
  position: relative;
  min-height: 70vh;
}

.art-image-main {
  width: 64%;
  height: 62vh;
}

.art-image-main img {
  filter: brightness(0.88) contrast(1.06);
}

.art-image-floating {
  position: absolute;
  right: 0;
  top: 16vh;
  width: 34%;
  height: 42vh;
  border: 12px solid var(--charcoal);
}

.art-note {
  position: absolute;
  right: 4vw;
  bottom: 0;
  max-width: 340px;
}

.art-note p {
  color: rgba(255, 250, 243, 0.68);
}

/* Scene 6 */

.city {
  background: var(--warm-white);
  padding: 7vw 8vw 5vw;
  min-height: auto;
}

.city-intro {
  max-width: 1080px;
  margin-bottom: 2rem;
}

.city-intro h2 {
  max-width: 1080px;
  font-size: clamp(2.8rem, 5.8vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.full-bleed {
  width: min(96vw, 1800px);
  margin-left: calc(50% - min(48vw, 900px));
  margin-top: 5rem;
  margin-bottom: 3rem;
}

.city-photo {
  overflow: hidden;
  border-radius: 42px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .12);
}

.city-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0.96) contrast(1.04);
}

/* Scene 7 */

.destinations {
  background: var(--ivory);
  padding: 7vw 8vw;
  min-height: auto;
}

.destinations-heading {
  max-width: 900px;
  margin-bottom: 4vw;
}

.destinations-heading h2 {
  font-size: clamp(3rem, 6vw, 6.8rem);
  letter-spacing: -0.04em;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.destination-grid article img {
  height: 340px;
  margin-bottom: 1.6rem;
}

.destination-grid article span {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.destination-grid article h3 {
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.destination-grid article p {
  margin: 0;
}

/* Scene 8 */

.stay {
  background: var(--ivory);
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 7vw;
  align-items: center;
}

.stay-copy {
  max-width: 520px;
}

.stay-copy h2 {
  font-size: clamp(3rem, 5.8vw, 6.6rem);
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

.stay-image { height: 82vh; }

/* Scene 9 */

.morning {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 7vw;
  align-items: center;
}

.morning-image { height: 78vh; }

.morning-copy {
  max-width: 560px;
}

.morning-copy h2 {
  font-size: clamp(3.4rem, 6.4vw, 7rem);
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

/* Scene 10 */

.guest-story {
  min-height: 90vh;
  background: var(--charcoal);
  color: var(--warm-white);
  display: grid;
  place-items: center;
  text-align: center;
}

.guest-story blockquote {
  margin: 0;
  max-width: 980px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 8rem);
  line-height: 0.98;
}

/* Scene 11 */

.booking {
  min-height: 95vh;
  background: var(--warm-white);
  display: grid;
  place-items: center;
  text-align: center;
}

.booking-inner { max-width: 920px; }

.booking h2 {
  font-size: clamp(3rem, 6vw, 7rem);
  letter-spacing: -0.04em;
}

.booking p {
  max-width: 620px;
  margin: 2rem auto;
}

.primary-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 1.7rem;
  background: var(--charcoal);
  color: var(--warm-white);
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  border-radius: 999px;
}

/* Scene 12 */

.ending {
  min-height: 100vh;
  background:
    linear-gradient(rgba(30,28,25,0.24), rgba(30,28,25,0.88)),
    var(--charcoal);
  color: var(--warm-white);
  display: flex;
  align-items: flex-end;
}

.ending-inner { width: 100%; }

.ending h2 {
  max-width: 1000px;
  font-size: clamp(3.4rem, 7vw, 8rem);
  letter-spacing: -0.04em;
}

.footer-details {
  margin-top: 4rem;
  display: flex;
  gap: 6vw;
}

.footer-details p { color: var(--stone); }

.footer-bottom {
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 250, 243, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: rgba(255, 250, 243, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Animation */

@keyframes arrivalWord {
  0% { opacity: 0; transform: translateX(-50%) translateY(20px); }
  15% { opacity: 1; transform: translateX(-50%) translateY(0); }
  38% { opacity: 1; }
  48% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes arrivalUnion {
  0%, 42% { opacity: 0; transform: translateX(-50%) scale(0.96); }
  55% { opacity: 1; transform: translateX(-50%) scale(1); }
  68% { opacity: 1; }
  78% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes arrivalFinal {
  0%, 62% {
    opacity: 0;
    filter: blur(18px);
    transform: translateX(-50%) translateY(34px) scale(0.94);
    letter-spacing: 0.28em;
  }

  78% {
    opacity: 0.35;
    filter: blur(8px);
  }

  92%, 100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(-50%) translateY(0) scale(1);
    letter-spacing: 0.18em;
  }
}

@keyframes arrivalScroll {
  0%, 86% {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Responsive */

@media (max-width: 900px) {
  .scene {
    padding: 6rem 1.4rem;
    min-height: auto;
  }

  .arrival,
  .hero-reveal,
  .silence,
  .guest-story,
  .booking,
  .ending {
    min-height: 100vh;
  }

  .arrival-word.hotel {
    left: 50%;
    top: 34%;
  }

  .arrival-word.gallery {
    left: 50%;
    top: 48%;
  }

  .arrival-union {
    font-size: clamp(2rem, 11vw, 4rem);
  }

  .arrival-final h1 {
    font-size: clamp(3rem, 13vw, 5rem);
    letter-spacing: 0.12em;
  }

  .floating-nav {
    top: 14px;
    width: calc(100% - 24px);
  }

  .floating-nav nav {
    display: none;
  }

  .hero-title {
    padding: 0 1.4rem 12vh;
  }

  .hero-title h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.32em;
  }

  .silence p {
    font-size: clamp(2.4rem, 11vw, 4.6rem);
  }

  .story,
  .stay,
  .morning {
    grid-template-columns: 1fr;
  }

  .story-image,
  .stay-image,
  .morning-image {
    height: 60vh;
    border-radius: 28px;
  }

  .story-text h2,
  .stay-copy h2,
  .morning-copy h2,
  .destinations-heading h2,
  .booking h2 {
    font-size: clamp(2.7rem, 12vw, 4.8rem);
  }

  .art {
    min-height: auto;
    padding: 6rem 1.4rem;
  }

  .art-intro h2 {
    font-size: clamp(2.8rem, 12vw, 4.8rem);
  }

  .art-stage {
    min-height: auto;
  }

  .art-image-main {
    width: 100%;
    height: 58vh;
    border-radius: 28px;
  }

  .art-image-floating {
    position: relative;
    right: auto;
    top: auto;
    width: 74%;
    height: 36vh;
    margin: 1rem 0 3rem auto;
    border-width: 8px;
    border-radius: 24px;
  }

  .art-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 100%;
  }

  .city,
  .destinations {
    padding: 6rem 1.4rem;
  }

  .city-intro h2 {
    font-size: clamp(2.7rem, 12vw, 4.8rem);
  }

  .full-bleed {
    width: 100%;
    margin-left: 0;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .city-photo {
    border-radius: 24px;
  }

  .destination-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .destination-grid article img {
    height: 48vh;
    border-radius: 28px;
  }

  .footer-details,
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  /* v0.4.1 hotfix — Scene 5, 6, 7 */

  /* Scene 5 shorter */
  .art {
    min-height: auto !important;
    padding: 7rem 8vw 8rem !important;
  }

  .art-stage {
    min-height: 68vh !important;
  }

  .art-image-main {
    height: 58vh !important;
  }

  .art-image-floating {
    top: 14vh !important;
    height: 38vh !important;
  }

  /* Scene 6 true full-bleed panorama */
  .city {
    min-height: auto !important;
    padding: 7rem 0 4rem !important;
  }

  .city-intro {
    padding: 0 8vw !important;
    margin-bottom: 3rem !important;
  }

  .city-photo.full-bleed {
    width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 4rem !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .city-photo.full-bleed img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
  }

  /* Scene 7 spacing + cards */
  .destinations {
    min-height: auto !important;
    padding: 7rem 8vw 8rem !important;
  }

  .destinations-heading {
    margin-bottom: 4rem !important;
  }

  .destinations-heading h2 {
    font-size: clamp(2.8rem, 5.4vw, 6rem) !important;
  }

  .destination-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
  }

  .destination-grid article {
    min-width: 0 !important;
  }

  .destination-grid article img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    border-radius: 32px !important;
    display: block !important;
    margin-bottom: 1.5rem !important;
  }

  /* mobile */
  @media (max-width: 900px) {
  .art,
  .city,
  .destinations {
    padding: 5rem 1.4rem !important;
  }

  .city-intro {
    padding: 0 !important;
  }

  .city-photo.full-bleed {
    width: 100% !important;
    border-radius: 24px !important;
  }

  .destination-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =======================================================
   Simoncini Final Responsive + Layout Pass
======================================================= */

.art {
  min-height: auto !important;
  padding: 7rem 8vw 8rem !important;
}

.art-stage {
  min-height: 68vh !important;
}

.art-image-main {
  height: 58vh !important;
}

.art-image-floating {
  top: 14vh !important;
  height: 38vh !important;
}

.city {
  min-height: auto !important;
  padding: 7rem 0 4rem !important;
}

.city-intro {
  padding: 0 8vw !important;
  margin-bottom: 3rem !important;
}

.city-photo.full-bleed {
  width: 100vw !important;
  margin-left: 0 !important;
  margin-top: 4rem !important;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.city-photo.full-bleed img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

.destinations {
  min-height: auto !important;
  padding: 7rem 8vw 8rem !important;
}

.destination-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem !important;
}

.destination-grid article img {
  height: 300px !important;
  border-radius: 32px !important;
}

@media (max-width: 1100px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 900px) {
  .scene {
    padding: 5rem 1.25rem !important;
  }

  .arrival,
  .hero-reveal,
  .silence,
  .guest-story,
  .booking,
  .ending {
    min-height: 100vh !important;
  }

  .floating-nav {
    width: calc(100% - 24px) !important;
    padding: 12px 16px !important;
  }

  .floating-nav nav {
    display: none !important;
  }

  .hero-title {
    padding: 0 1.25rem 12vh !important;
  }

  .hero-title h2 {
    font-size: clamp(2.4rem, 12vw, 4rem) !important;
    letter-spacing: 0.12em !important;
  }

  .story,
  .stay,
  .morning {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .story-image,
  .stay-image,
  .morning-image {
    height: 56vh !important;
    border-radius: 28px !important;
  }

  .art {
    padding: 5rem 1.25rem !important;
  }

  .art-image-main {
    width: 100% !important;
    height: 54vh !important;
    border-radius: 28px !important;
  }

  .art-image-floating {
    position: relative !important;
    width: 74% !important;
    height: 34vh !important;
    top: auto !important;
    right: auto !important;
    margin: 1rem 0 3rem auto !important;
    border-width: 8px !important;
    border-radius: 24px !important;
  }

  .art-note {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    max-width: 100% !important;
  }

  .city {
    padding: 5rem 0 3rem !important;
  }

  .city-intro {
    padding: 0 1.25rem !important;
  }

  .city-photo.full-bleed {
    width: 100vw !important;
    margin-top: 3rem !important;
  }

  .destinations {
    padding: 5rem 1.25rem !important;
  }

  .destination-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .destination-grid article img {
    height: 46vh !important;
    border-radius: 28px !important;
  }

  .footer-details,
  .footer-bottom {
    flex-direction: column !important;
    gap: 1rem !important;
  }
}

  /* Emergency layout fix v0.4.2 */

.art.scene,
.city.scene,
.destinations.scene {
  min-height: 0 !important;
}

.art {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.art-stage {
  min-height: 0 !important;
}

.city {
  padding-top: 5rem !important;
  padding-bottom: 3rem !important;
}

.destinations {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.city-photo.full-bleed {
  display: block !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  border-radius: 0 !important;
}

/* Compact pass for Scene 5–7 */

.art {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.art-intro {
  margin-bottom: 3rem !important;
}

.art-intro h2 {
  font-size: clamp(2.6rem, 4.8vw, 5.2rem) !important;
}

.art-stage {
  min-height: 0 !important;
}

.art-image-main {
  height: 46vh !important;
}

.art-image-floating {
  top: 10vh !important;
  height: 32vh !important;
}

.art-note {
  bottom: -1rem !important;
}

.city {
  padding-top: 4.5rem !important;
  padding-bottom: 2.5rem !important;
}

.city-intro h2 {
  font-size: clamp(2.4rem, 4.8vw, 5rem) !important;
}

.city-photo.full-bleed {
  margin-top: 3rem !important;
  margin-bottom: 0 !important;
}

.destinations {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.destinations-heading {
  margin-bottom: 3rem !important;
}

.destinations-heading h2 {
  font-size: clamp(2.5rem, 4.8vw, 5.2rem) !important;
}

.destination-grid article img {
  height: 240px !important;
}

.destination-grid article h3 {
  font-size: clamp(1.7rem, 2.2vw, 2.4rem) !important;
}

.destination-grid article p {
  font-size: 0.95rem !important;
  line-height: 1.55 !important;
}

/* Final hover polish */

.destination-grid article,
.text-link,
.primary-button,
.floating-nav a {
  transition: all 0.35s ease;
}

.destination-grid article:hover img {
  transform: scale(1.035);
}

.destination-grid article:hover h3 {
  transform: translateY(-4px);
}

.destination-grid article h3 {
  transition: transform 0.35s ease;
}

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

.floating-nav a:hover {
  color: var(--gold);
}

.primary-button:hover {
  background: var(--gold);
  color: var(--charcoal);
}

::selection {
  background: #b99a55;
  color: white;
}

::-moz-selection {
  background: #b99a55;
  color: white;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f8f4ed;
}

::-webkit-scrollbar-thumb {
  background: #b99a55;
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: #92763d;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
