/*
  Project Version: v1.15.00
  Update: Optional supporting photo upload
  Description: Added a responsive photo-upload callout and external button beneath the embedded feedback form so the upload form opens in a new tab instead of inside the Google Forms iframe.
  Date: 2026-07-20
*/

:root {
  --color-deep-ocean: #04373d;
  --color-ocean: #075c63;
  --color-teal: #0b7f83;
  --color-seafoam: #8edbd1;
  --color-sand: #f4d59b;
  --color-coral: #ff8f5f;
  --color-cream: #fff8ec;
  --color-white: #ffffff;
  --color-ink: #102326;
  --color-muted: #637477;
  --color-soft-bg: #f4fbf9;
  --color-border: rgba(16, 35, 38, 0.12);

  --shadow-soft: 0 18px 50px rgba(7, 48, 53, 0.13);
  --shadow-card: 0 20px 45px rgba(4, 55, 61, 0.16);
  --shadow-dark: 0 20px 70px rgba(0, 0, 0, 0.35);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;

  --container: 1180px;
  --section-padding: clamp(4rem, 7vw, 7.5rem);
  --transition: 220ms ease;
}

@font-face {
  font-family: "BaraBara";
  src: url("fonts/barabara-final.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

img {
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

input,
textarea,
select {
  width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 860px;
  margin-bottom: 1.4rem;
  color: var(--color-white);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
}

h2 {
  margin-bottom: 1rem;
  color: var(--color-deep-ocean);
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
}

h3 {
  margin-bottom: 0.75rem;
  color: var(--color-deep-ocean);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  color: var(--color-muted);
}

ul,
ol {
  padding-left: 0;
}

li {
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-padding);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  color: var(--color-white);
  background: var(--color-deep-ocean);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--color-teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.2rem, 4vw, 3.5rem);
}

.section-heading p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(255, 143, 95, 0.6);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--color-deep-ocean);
  background: var(--color-sand);
  box-shadow: 0 12px 28px rgba(244, 213, 155, 0.3);
}

.btn-primary:hover {
  background: #ffe1a5;
}

.btn-secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--color-teal);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform var(--transition);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  color: var(--color-deep-ocean);
  background: rgba(142, 219, 209, 0.35);
  border: 1px solid rgba(11, 127, 131, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 420ms ease,
    filter 420ms ease;
  will-change: transform, opacity;
}

.site-header.is-hidden-at-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-105%);
}

.site-header.is-visible,
.site-header:focus-within,
body.nav-open .site-header {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.is-floating {
  filter: drop-shadow(0 16px 35px rgba(4, 55, 61, 0.16));
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 42px;
  padding: 0.45rem 1rem;
  color: var(--color-white);
  background: var(--color-deep-ocean);
  text-align: center;
}

.announcement-bar p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.announcement-bar a {
  flex: 0 0 auto;
  color: var(--color-sand);
  font-size: 0.85rem;
  font-weight: 850;
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  min-height: 82px;
  padding: 0.75rem clamp(1rem, 3vw, 2rem);
  background: rgba(255, 248, 236, 0.92);
  border-bottom: 1px solid rgba(16, 35, 38, 0.08);
  backdrop-filter: blur(22px);
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.site-header.is-floating .navbar {
  background: rgba(255, 248, 236, 0.96);
  border-bottom-color: rgba(16, 35, 38, 0.12);
  box-shadow: 0 14px 35px rgba(4, 55, 61, 0.11);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 250px;
}

.brand-logos {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.brand-logos img,
.footer-logos img {
  background: var(--color-white);
  border: 1px solid rgba(16, 35, 38, 0.08);
  box-shadow: 0 8px 18px rgba(4, 55, 61, 0.08);
}

.brand-seal {
  width: 48px;
  height: 48px;
  padding: 3px;
  border-radius: 50%;
}

.brand-tourism-logo {
  width: 48px;
  height: 48px;
  padding: 4px;
  border-radius: 16px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--color-deep-ocean);
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-text small {
  margin-top: 0.25rem;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 1vw, 0.9rem);
  margin: 0;
}

.nav-menu a {
  display: inline-flex;
  padding: 0.65rem 0.75rem;
  color: var(--color-ink);
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 750;
  transition:
    color var(--transition),
    background var(--transition);
}

.nav-menu a:hover {
  color: var(--color-teal);
  background: rgba(11, 127, 131, 0.08);
}

.nav-cta {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1rem;
  color: var(--color-white);
  background: var(--color-deep-ocean);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  transition:
    transform var(--transition),
    background var(--transition);
}

.nav-cta:hover {
  background: var(--color-ocean);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-deep-ocean);
  border-radius: 999px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(142, 219, 209, 0.45), transparent 32rem),
    var(--color-deep-ocean);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
  filter: saturate(1.12) contrast(1.08);
}

.hero-video {
  z-index: 1;
  animation: heroVideoBreath 18s ease-in-out infinite alternate;
}

.hero-poster {
  z-index: 0;
  transition: opacity 420ms ease;
}

.hero-poster.is-hidden {
  opacity: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 55, 61, 0.96) 0%, rgba(4, 55, 61, 0.78) 38%, rgba(4, 55, 61, 0.35) 100%),
    linear-gradient(0deg, rgba(4, 55, 61, 0.94) 0%, rgba(4, 55, 61, 0.16) 48%),
    radial-gradient(circle at 72% 22%, rgba(142, 219, 209, 0.22), transparent 26rem);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.hero-atmosphere::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -18%;
  left: -10%;
  height: 42%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(142, 219, 209, 0.28), transparent 62%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  filter: blur(10px);
  opacity: 0.78;
  transform: skewY(-3deg);
  animation: waveDrift 12s ease-in-out infinite alternate;
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  top: 14%;
  right: 8%;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(244, 213, 155, 0.13), transparent 65%);
  border-radius: 50%;
  filter: blur(8px);
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.hero-orb {
  position: absolute;
  width: 12px;
  height: 12px;
  background:
    radial-gradient(circle, rgba(244, 213, 155, 0.95) 0 18%, rgba(244, 213, 155, 0.28) 38%, transparent 68%);
  border-radius: 50%;
  box-shadow:
    0 0 16px rgba(244, 213, 155, 0.55),
    0 0 34px rgba(142, 219, 209, 0.24);
  opacity: 0.82;
  animation: fireflyFloat 9s ease-in-out infinite;
}

.hero-orb-one {
  top: 24%;
  right: 18%;
  animation-delay: -1.5s;
}

.hero-orb-two {
  right: 32%;
  bottom: 28%;
  width: 9px;
  height: 9px;
  animation-delay: -4s;
  animation-duration: 11s;
}

.hero-orb-three {
  top: 52%;
  right: 9%;
  width: 7px;
  height: 7px;
  animation-delay: -6s;
  animation-duration: 13s;
}

.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(5rem, 12vw, 9rem);
}

.hero-grid.hero-grid-cinematic {
  grid-template-columns: minmax(0, 860px);
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding-block: clamp(5.5rem, 10vw, 8rem) clamp(5rem, 8vw, 6.5rem);
}

.hero-grid-cinematic .hero-content {
  max-width: 860px;
}

.hero-grid-cinematic .hero-content h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-content .eyebrow {
  color: var(--color-sand);
}

.hero-description {
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-grid-cinematic .hero-description {
  max-width: 660px;
  margin-bottom: 1.7rem;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.hero-trust span::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--color-sand);
  border-radius: 50%;
}

.hero-card {
  padding: 1.35rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(26px);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-card-header img {
  width: 54px;
  height: 54px;
  padding: 4px;
  background: var(--color-white);
  border-radius: 50%;
  object-fit: contain;
}

.hero-card-header p {
  margin-bottom: 0.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-card-header strong {
  color: var(--color-white);
  font-size: 1.15rem;
}

.quick-list {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.2rem;
}

.quick-list li {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
}

.quick-list span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 750;
}

.quick-list strong {
  color: var(--color-white);
  font-size: 0.98rem;
}

.hero-card .text-link {
  color: var(--color-sand);
}


.hero-content .eyebrow,
.hero-content h1,
.hero-description,
.hero-actions,
.hero-trust,
.hero-card,
.hero-snapshot,
.hero-scroll-cue {
  animation: heroFadeUp 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content h1 {
  animation-delay: 90ms;
}

.hero-description {
  animation-delay: 180ms;
}

.hero-actions {
  animation-delay: 270ms;
}

.hero-trust {
  animation-delay: 360ms;
}

.hero-snapshot {
  animation-delay: 360ms;
}

.hero-card {
  animation-delay: 450ms;
}

.hero-scroll-cue {
  animation-delay: 540ms;
}

/* Scroll animation hooks for the next JavaScript step */

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroVideoBreath {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes waveDrift {
  from {
    transform: translateX(-2%) skewY(-3deg);
  }

  to {
    transform: translateX(2%) skewY(-1deg);
  }
}

@keyframes glowPulse {
  from {
    opacity: 0.35;
    transform: scale(0.92);
  }

  to {
    opacity: 0.75;
    transform: scale(1.08);
  }
}

@keyframes fireflyFloat {
  0% {
    opacity: 0.35;
    transform: translate3d(0, 0, 0) scale(0.85);
  }

  38% {
    opacity: 0.95;
    transform: translate3d(-16px, -28px, 0) scale(1.08);
  }

  68% {
    opacity: 0.55;
    transform: translate3d(12px, -52px, 0) scale(0.92);
  }

  100% {
    opacity: 0.82;
    transform: translate3d(-8px, -72px, 0) scale(1);
  }
}

/* Compact hero trip snapshot */

.hero-snapshot {
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  width: min(100%, 850px);
  margin-top: 0.2rem;
  padding: 0.75rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.105);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.hero-snapshot p {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  min-width: 122px;
  margin: 0;
  padding: 0.7rem 0.85rem;
  color: var(--color-sand);
  background: rgba(4, 55, 61, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.hero-snapshot ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  width: 100%;
  margin: 0;
}

.hero-snapshot li {
  display: grid;
  align-content: center;
  gap: 0.14rem;
  min-height: 68px;
  padding: 0.72rem 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.hero-snapshot span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-snapshot strong {
  color: var(--color-white);
  font-size: 0.95rem;
  line-height: 1.15;
}

.hero-scroll-cue {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(4, 55, 61, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  animation: scrollCueFloat 2.4s ease-in-out infinite;
}

.hero-scroll-cue span:last-child {
  color: var(--color-sand);
  font-size: 1rem;
  line-height: 1;
}

@keyframes scrollCueFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}


/* Video-first cinematic hero reveal */

.hero-video-intro {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
  width: 100%;
  padding-top: clamp(4.4rem, 10vh, 7.2rem);
  color: var(--color-white);
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: none;
  transition:
    opacity 780ms ease,
    filter 900ms ease;
}

.hero-video-title {
  width: min(100% - 2rem, 760px);
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
  font-family: "BaraBara", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.hero-video-location {
  width: min(100% - 2rem, 520px);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.78rem, 1.15vw, 1rem);
  font-weight: 850;
  letter-spacing: 0.22em;
  line-height: 1.25;
  text-transform: uppercase;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.hero-video-scroll-cue {
  right: auto;
  left: 50%;
  bottom: clamp(1.4rem, 6vh, 4rem);
  z-index: 6;
  transform: translateX(-50%);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    background var(--transition),
    border-color var(--transition);
}

.hero-video-scroll-cue:hover {
  transform: translateX(-50%) translateY(-2px);
}


.hero-cinematic-replay {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.72rem 0.95rem;
  color: var(--color-deep-ocean);
  background: rgba(244, 213, 155, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    background var(--transition),
    box-shadow var(--transition);
}

.hero-cinematic-replay span:first-child {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--color-white);
  background: var(--color-deep-ocean);
  border-radius: 50%;
  font-size: 0.72rem;
  line-height: 1;
}

.hero-cinematic-replay:hover {
  background: #ffe1a5;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px) scale(1);
}

body.hero-reveal-ready.hero-context-visible.hero-replay-available .hero-cinematic-replay {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

body.hero-reveal-ready:not(.hero-context-visible) .hero-cinematic-replay,
body.hero-reveal-ready.hero-context-visible:not(.hero-replay-available) .hero-cinematic-replay {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
}


/* Scroll to top button */

.scroll-top-button {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 1000;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--color-deep-ocean);
  background: rgba(244, 213, 155, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);
  transition:
    opacity 360ms ease,
    transform 460ms cubic-bezier(0.16, 1, 0.3, 1),
    background var(--transition),
    box-shadow var(--transition);
}

.scroll-top-button span {
  display: block;
  color: currentColor;
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1;
}

.scroll-top-button:hover {
  background: #ffe1a5;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px) scale(1);
}

body.scroll-top-visible .scroll-top-button {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

body.nav-open .scroll-top-button {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);
}


/* What's New floating update widget */

.whats-new-widget {
  position: fixed;
  bottom: clamp(1rem, 3vw, 2rem);
  left: clamp(1rem, 3vw, 2rem);
  z-index: 1002;
  display: grid;
  justify-items: start;
  max-width: calc(100vw - 2rem);
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.whats-new-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  min-height: 58px;
  max-width: 58px;
  padding: 0.38rem;
  overflow: hidden;
  color: var(--color-deep-ocean);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 236, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(16, 35, 38, 0.06);
  backdrop-filter: blur(16px);
  transform: translateY(0);
  transition:
    max-width 520ms cubic-bezier(0.16, 1, 0.3, 1),
    padding-right 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.whats-new-trigger::before {
  content: "";
  position: absolute;
  inset: 7px auto 7px 7px;
  width: 44px;
  background: radial-gradient(circle, rgba(255, 90, 61, 0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.whats-new-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: var(--color-white);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.74) 31%, rgba(255, 248, 236, 0.95) 100%);
  border: 1px solid rgba(242, 59, 47, 0.16);
  border-radius: 50%;
  box-shadow:
    0 12px 24px rgba(242, 59, 47, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.whats-new-icon::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 9px;
  height: 9px;
  background: #f23b2f;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(242, 59, 47, 0.13);
}

.whats-new-megaphone {
  width: 36px;
  height: 36px;
  overflow: visible;
  transform: translateX(1px) rotate(-3deg);
  transform-origin: center;
  filter: drop-shadow(0 4px 7px rgba(123, 31, 28, 0.26));
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    filter var(--transition);
}

.whats-new-megaphone-cone {
  fill: #f23b2f;
}

.whats-new-megaphone-mouth {
  fill: #ffffff;
}

.whats-new-megaphone-handle {
  fill: #7b1f1c;
}

.whats-new-megaphone-highlight,
.whats-new-megaphone-handle-shine {
  stroke: #ffffff;
}

.whats-new-megaphone-sound {
  transform-box: fill-box;
  transform-origin: left center;
}

.whats-new-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--color-deep-ocean);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-14px);
  transition:
    max-width 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 280ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.whats-new-trigger:hover,
.whats-new-trigger:focus-visible,
.whats-new-trigger[aria-expanded="true"] {
  max-width: 205px;
  padding-right: 1.05rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 225, 165, 0.86));
  border-color: rgba(242, 59, 47, 0.24);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(242, 59, 47, 0.08);
  transform: translateY(-2px);
}

.whats-new-trigger:hover .whats-new-megaphone,
.whats-new-trigger:focus-visible .whats-new-megaphone,
.whats-new-trigger[aria-expanded="true"] .whats-new-megaphone {
  filter: drop-shadow(0 5px 9px rgba(123, 31, 28, 0.32));
  transform: translateX(1px) rotate(-7deg) scale(1.06);
}

.whats-new-trigger:hover .whats-new-megaphone-sound,
.whats-new-trigger:focus-visible .whats-new-megaphone-sound,
.whats-new-trigger[aria-expanded="true"] .whats-new-megaphone-sound {
  animation: megaphoneSoundPulse 1.25s ease-in-out infinite;
}

.whats-new-trigger:hover .whats-new-label,
.whats-new-trigger:focus-visible .whats-new-label,
.whats-new-trigger[aria-expanded="true"] .whats-new-label {
  max-width: 122px;
  opacity: 1;
  transform: translateX(0);
}

.whats-new-panel {
  position: absolute;
  bottom: calc(100% + 0.85rem);
  left: 0;
  width: min(370px, calc(100vw - 2rem));
  padding: 1rem;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 90, 61, 0.1), transparent 14rem),
    radial-gradient(circle at 90% 8%, rgba(142, 219, 209, 0.2), transparent 16rem),
    var(--color-white);
  border: 1px solid rgba(16, 35, 38, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(4, 55, 61, 0.22);
  transform-origin: bottom left;
}

.whats-new-panel[hidden] {
  display: none;
}

.whats-new-panel:not([hidden]) {
  display: block;
  animation: whatsNewPanelIn 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.whats-new-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.whats-new-panel .eyebrow {
  margin-bottom: 0.45rem;
  color: #f23b2f;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.whats-new-panel h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  letter-spacing: -0.04em;
}

.whats-new-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--color-deep-ocean);
  background: var(--color-soft-bg);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition);
}

.whats-new-close:hover {
  color: var(--color-white);
  background: var(--color-deep-ocean);
  transform: rotate(8deg) scale(1.04);
}

.whats-new-content {
  display: grid;
  gap: 0.85rem;
}

.whats-new-content .tag {
  margin-bottom: 0;
  color: var(--color-white);
  background: #f23b2f;
  border-color: rgba(242, 59, 47, 0.28);
}

.whats-new-content p {
  margin-bottom: 0;
  color: #40595c;
  font-size: 0.96rem;
}

.whats-new-content .btn {
  width: fit-content;
  min-height: 46px;
  padding-inline: 1rem;
  font-size: 0.9rem;
}

body.nav-open .whats-new-widget {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
}

body.hero-reveal-ready:not(.hero-context-visible) .whats-new-widget {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
}

@keyframes whatsNewPanelIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes megaphoneSoundPulse {
  0%, 100% {
    opacity: 0.72;
    transform: translateX(0) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(2px) scale(1.06);
  }
}



/* Floating feedback form */

body.feedback-open {
  overflow: hidden;
}

.feedback-widget {
  position: fixed;
  top: auto;
  right: clamp(1rem, 3vw, 2rem);
  bottom: calc(clamp(1rem, 3vw, 2rem) + 48px + 0.85rem);
  z-index: 1003;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feedback-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.68rem;
  width: auto;
  min-height: 56px;
  max-width: 56px;
  padding: 0.35rem;
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(4, 55, 61, 0.98), rgba(11, 127, 131, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition:
    max-width 520ms cubic-bezier(0.16, 1, 0.3, 1),
    padding-left 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.feedback-trigger:hover,
.feedback-trigger:focus-visible,
.feedback-trigger[aria-expanded="true"] {
  max-width: 190px;
  padding-left: 1rem;
  background:
    linear-gradient(135deg, var(--color-ocean), var(--color-teal));
  border-color: rgba(244, 213, 155, 0.46);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(244, 213, 155, 0.12);
  transform: translateX(-2px);
}

.feedback-label {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(12px);
  transition:
    max-width 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 280ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feedback-trigger:hover .feedback-label,
.feedback-trigger:focus-visible .feedback-label,
.feedback-trigger[aria-expanded="true"] .feedback-label {
  max-width: 112px;
  opacity: 1;
  transform: translateX(0);
}

.feedback-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: var(--color-sand);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.feedback-icon svg {
  width: 29px;
  height: 29px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 340ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feedback-trigger:hover .feedback-icon svg,
.feedback-trigger:focus-visible .feedback-icon svg,
.feedback-trigger[aria-expanded="true"] .feedback-icon svg {
  transform: rotate(-4deg) scale(1.06);
}

body.nav-open .feedback-widget,
body.hero-reveal-ready:not(.hero-context-visible) .feedback-widget {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
}

.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 3vw, 2rem);
}

.feedback-modal[hidden] {
  display: none;
}

.feedback-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 28, 32, 0.74);
  backdrop-filter: blur(10px);
  animation: feedbackBackdropIn 240ms ease both;
}

.feedback-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(760px, 100%);
  height: min(92vh, 900px);
  height: min(92svh, 900px);
  padding: clamp(1rem, 2.4vw, 1.5rem);
  overflow: hidden;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 92% 0%, rgba(142, 219, 209, 0.24), transparent 20rem),
    radial-gradient(circle at 0% 8%, rgba(244, 213, 155, 0.22), transparent 18rem),
    var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  animation: feedbackDialogIn 340ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.feedback-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.feedback-dialog-header .eyebrow {
  margin-bottom: 0.5rem;
}

.feedback-dialog-header h2 {
  max-width: 520px;
  margin-bottom: 0.7rem;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
}

.feedback-dialog-header p:last-child {
  max-width: 530px;
  margin-bottom: 0;
}

.feedback-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--color-deep-ocean);
  background: var(--color-soft-bg);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 750;
  line-height: 1;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition);
}

.feedback-close:hover {
  color: var(--color-white);
  background: var(--color-deep-ocean);
  transform: rotate(8deg) scale(1.04);
}

.feedback-form-embed {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #f7f9fb;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.feedback-form-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: var(--color-white);
  border: 0;
}

.feedback-embed-note,
.feedback-embed-fallback {
  flex: 0 0 auto;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
}

.feedback-embed-note {
  margin-top: 0.75rem;
  color: #33575b;
}

.feedback-photo-upload {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex: 0 0 auto;
  margin-top: 0.65rem;
  padding: 0.8rem 0.9rem;
  background:
    linear-gradient(135deg, rgba(142, 219, 209, 0.18), rgba(244, 213, 155, 0.24)),
    var(--color-soft-bg);
  border: 1px solid rgba(16, 35, 38, 0.1);
  border-radius: 16px;
}

.feedback-photo-upload-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.feedback-photo-upload-copy strong {
  color: var(--color-deep-ocean);
  font-size: 0.86rem;
  line-height: 1.3;
}

.feedback-photo-upload-copy span {
  color: var(--color-muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

.feedback-photo-upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0.68rem 0.85rem;
  color: var(--color-white);
  background: var(--color-deep-ocean);
  border: 1px solid rgba(4, 55, 61, 0.15);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(4, 55, 61, 0.15);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.feedback-photo-upload-button:hover {
  background: var(--color-teal);
  box-shadow: 0 14px 30px rgba(4, 55, 61, 0.2);
  transform: translateY(-2px);
}

.feedback-photo-upload-button svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.feedback-embed-fallback {
  margin-top: 0.25rem;
  color: var(--color-muted);
}

.feedback-embed-fallback a {
  color: var(--color-teal);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.feedback-embed-fallback a:hover {
  color: var(--color-deep-ocean);
}

@keyframes feedbackBackdropIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes feedbackDialogIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body.hero-reveal-ready .hero-video-first {
  display: block;
  min-height: 114vh;
}

body.hero-reveal-ready .hero-video-first .hero-media {
  height: 100%;
}

body.hero-reveal-ready .hero-video-first .hero-reveal-content {
  position: sticky;
  top: 124px;
  min-height: calc(100vh - 124px);
  min-height: calc(100svh - 124px);
  padding-block: clamp(2rem, 5vw, 3.8rem) clamp(2.25rem, 4vw, 3.5rem);
  align-items: center;
  transition:
    opacity 860ms ease,
    transform 960ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 960ms ease;
  will-change: opacity, transform, filter;
}

body.hero-reveal-ready .hero-video-first .hero-content .eyebrow,
body.hero-reveal-ready .hero-video-first .hero-content h1,
body.hero-reveal-ready .hero-video-first .hero-description,
body.hero-reveal-ready .hero-video-first .hero-actions,
body.hero-reveal-ready .hero-video-first .hero-snapshot,
body.hero-reveal-ready .hero-video-first .hero-scroll-cue {
  animation: none;
}

body.hero-reveal-ready:not(.hero-context-visible) .hero-video-first .hero-video {
  opacity: 0.94;
  filter: saturate(1.18) contrast(1.06);
}

body.hero-reveal-ready:not(.hero-context-visible) .hero-video-first .hero-overlay {
  background:
    linear-gradient(0deg, rgba(4, 55, 61, 0.52) 0%, rgba(4, 55, 61, 0.12) 46%, rgba(4, 55, 61, 0.18) 100%),
    radial-gradient(circle at 72% 22%, rgba(142, 219, 209, 0.16), transparent 26rem);
}

body.hero-reveal-ready:not(.hero-context-visible) .hero-video-first .hero-reveal-content {
  opacity: 0;
  pointer-events: none;
  transform: translateY(34px) scale(0.985);
  filter: blur(8px);
}

body.hero-reveal-ready:not(.hero-context-visible) .hero-video-first .hero-video-intro {
  opacity: 1;
  transform: none;
}

body.hero-reveal-ready:not(.hero-context-visible) .hero-video-first .hero-scroll-cue {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

body.hero-reveal-ready:not(.hero-context-visible) .hero-video-first .hero-video-scroll-cue {
  display: inline-flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

body.hero-reveal-ready.hero-context-visible .hero-video-first .hero-reveal-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

body.hero-reveal-ready.hero-context-visible .hero-video-first .hero-video-intro {
  opacity: 0;
  transform: none;
  filter: blur(6px);
}

body.hero-reveal-ready.hero-context-visible .hero-video-first .hero-scroll-cue {
  opacity: 1;
  pointer-events: auto;
}

body.hero-reveal-ready.hero-context-visible .hero-video-first .hero-video-scroll-cue {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
}

body.hero-reveal-ready.hero-context-visible .hero-video-first .hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 55, 61, 0.96) 0%, rgba(4, 55, 61, 0.78) 38%, rgba(4, 55, 61, 0.35) 100%),
    linear-gradient(0deg, rgba(4, 55, 61, 0.94) 0%, rgba(4, 55, 61, 0.16) 48%),
    radial-gradient(circle at 72% 22%, rgba(142, 219, 209, 0.22), transparent 26rem);
}


/* Explore Donsol quick-choice section */

.explore-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.4rem, 5.5vw, 5.9rem);
  background:
    radial-gradient(circle at 8% 8%, rgba(142, 219, 209, 0.32), transparent 26rem),
    radial-gradient(circle at 90% 14%, rgba(244, 213, 155, 0.28), transparent 23rem),
    linear-gradient(180deg, var(--color-cream) 0%, var(--color-soft-bg) 100%);
}

.explore-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4, 55, 61, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 55, 61, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 82%);
  pointer-events: none;
}

.explore-section .container {
  position: relative;
  z-index: 1;
}

.explore-heading {
  max-width: 860px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.explore-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--color-deep-ocean);
  border: 1px solid rgba(16, 35, 38, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 42px rgba(4, 55, 61, 0.12);
  isolation: isolate;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.explore-card a {
  position: relative;
  display: block;
  height: 100%;
  min-height: inherit;
  color: var(--color-white);
}

.explore-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.01);
  transition:
    transform 720ms ease,
    opacity var(--transition),
    filter var(--transition);
}

.explore-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(0deg, rgba(4, 55, 61, 0.94) 0%, rgba(4, 55, 61, 0.58) 46%, rgba(4, 55, 61, 0.12) 100%),
    radial-gradient(circle at 18% 14%, rgba(244, 213, 155, 0.16), transparent 16rem);
  pointer-events: none;
}

.explore-card-content {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  left: 1.15rem;
  z-index: 1;
}

.explore-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  color: var(--color-deep-ocean);
  background: rgba(244, 213, 155, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  font-size: 0.78rem;
  font-weight: 950;
}

.explore-card .tag {
  margin-bottom: 0.7rem;
  color: var(--color-deep-ocean);
  background: rgba(244, 213, 155, 0.94);
  border-color: rgba(244, 213, 155, 0.72);
}

.explore-card h3 {
  max-width: 420px;
  margin-bottom: 0.55rem;
  color: var(--color-white);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
}

.explore-card p {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.explore-card:hover,
.explore-card:focus-within {
  border-color: rgba(244, 213, 155, 0.48);
  box-shadow: 0 24px 58px rgba(4, 55, 61, 0.2);
  transform: translateY(-6px);
}

.explore-card:hover img,
.explore-card:focus-within img {
  opacity: 0.95;
  filter: saturate(1.14) contrast(1.08);
  transform: scale(1.08);
}

.explore-card a:focus-visible {
  outline: 3px solid rgba(244, 213, 155, 0.82);
  outline-offset: -8px;
}


/* Logo strip */

.logo-section {
  padding-block: 1.15rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(142, 219, 209, 0.18), transparent 18rem),
    var(--color-white);
  border-top: 1px solid rgba(16, 35, 38, 0.06);
  border-bottom: 1px solid var(--color-border);
}

.logo-row {
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(300px, auto) minmax(260px, 0.72fr);
  align-items: center;
  gap: clamp(1rem, 2vw, 1.6rem);
}

.official-marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.official-marks-national {
  justify-content: flex-end;
}

.official-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  min-height: 54px;
  padding: 0.44rem 0.62rem;
  color: var(--color-deep-ocean);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 35, 38, 0.1);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(4, 55, 61, 0.055);
  font-size: 0.86rem;
  font-weight: 850;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

a.official-mark:hover,
a.official-mark:focus-visible {
  background: rgba(244, 213, 155, 0.36);
  border-color: rgba(11, 127, 131, 0.18);
  box-shadow: 0 14px 30px rgba(4, 55, 61, 0.09);
  transform: translateY(-2px);
}

.official-mark img {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 3px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  object-fit: contain;
}

.official-mark-local:nth-child(2) img {
  border-radius: 14px;
}

.official-mark-dot img {
  width: 46px;
  height: 46px;
  padding: 0;
  border-color: rgba(203, 160, 0, 0.22);
}

.official-mark-love {
  padding-right: 0.78rem;
}

.official-mark-love img {
  width: 150px;
  height: 44px;
  padding: 0.28rem 0.35rem;
  border-radius: 14px;
  object-fit: contain;
  object-position: center;
}

.logo-row p {
  max-width: 420px;
  margin-bottom: 0;
  color: #52696c;
  text-align: right;
  font-size: 0.9rem;
}

/* Intro */

.intro-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(142, 219, 209, 0.32), transparent 24rem),
    var(--color-cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.intro-grid p:last-child {
  margin-bottom: 0;
  color: #41595d;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

/* Signature experiences */

.signature-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(142, 219, 209, 0.35), transparent 26rem),
    radial-gradient(circle at 86% 12%, rgba(244, 213, 155, 0.32), transparent 24rem),
    var(--color-soft-bg);
}

.signature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4, 55, 61, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 55, 61, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent 78%);
  pointer-events: none;
}

.signature-section .container {
  position: relative;
  z-index: 1;
}

.signature-heading {
  max-width: 860px;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.signature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1.15rem, 2.2vw, 1.55rem);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 42px rgba(4, 55, 61, 0.09);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.signature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--color-seafoam), var(--color-sand));
}

.signature-card-primary {
  color: var(--color-white);
  background:
    radial-gradient(circle at 18% 8%, rgba(244, 213, 155, 0.18), transparent 20rem),
    radial-gradient(circle at 80% 20%, rgba(142, 219, 209, 0.18), transparent 18rem),
    linear-gradient(135deg, #032e34, #075c63 58%, #04373d);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-card);
}

.signature-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.signature-number {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: var(--color-deep-ocean);
  background: var(--color-sand);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(4, 55, 61, 0.1);
  font-size: 0.8rem;
  font-weight: 950;
}

.signature-card .tag {
  margin-bottom: 0;
  text-align: right;
}

.signature-card-primary .tag {
  color: var(--color-deep-ocean);
  background: rgba(244, 213, 155, 0.96);
  border-color: rgba(244, 213, 155, 0.72);
}

.signature-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.signature-card h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.signature-card-primary h3 {
  color: var(--color-white);
}

.signature-card p {
  margin-bottom: 1.25rem;
  color: #40595c;
}

.signature-card-primary p {
  color: rgba(255, 255, 255, 0.78);
}

.signature-details {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.35rem;
}

.signature-details div {
  padding: 0.88rem;
  background: rgba(142, 219, 209, 0.12);
  border: 1px solid rgba(16, 35, 38, 0.09);
  border-radius: var(--radius-md);
}

.signature-card-primary .signature-details div {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.13);
}

.signature-details dt {
  color: var(--color-teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signature-card-primary .signature-details dt {
  color: var(--color-sand);
}

.signature-details dd {
  margin: 0.22rem 0 0;
  color: #425b5f;
  font-size: 0.94rem;
  font-weight: 680;
  line-height: 1.45;
}

.signature-card-primary .signature-details dd {
  color: rgba(255, 255, 255, 0.82);
}

.signature-card .text-link {
  margin-top: auto;
}

.signature-card-primary .text-link {
  color: var(--color-sand);
}

.signature-card:hover,
.signature-card:focus-within {
  border-color: rgba(11, 127, 131, 0.24);
  box-shadow: 0 24px 58px rgba(4, 55, 61, 0.16);
  transform: translateY(-6px);
}

.signature-card-primary:hover,
.signature-card-primary:focus-within {
  border-color: rgba(244, 213, 155, 0.42);
  box-shadow: 0 28px 68px rgba(4, 55, 61, 0.24);
}

.signature-planning-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-deep-ocean);
  background:
    linear-gradient(135deg, rgba(244, 213, 155, 0.5), rgba(142, 219, 209, 0.26)),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 35, 38, 0.11);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 34px rgba(4, 55, 61, 0.08);
}

.signature-planning-note strong {
  flex: 0 0 auto;
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature-planning-note span {
  color: #40595c;
  font-weight: 680;
}


/* Media showcase */

.media-showcase-section {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(circle at 12% 8%, rgba(142, 219, 209, 0.18), transparent 26rem),
    radial-gradient(circle at 88% 18%, rgba(244, 213, 155, 0.12), transparent 22rem),
    linear-gradient(135deg, #032e34, #064d54 52%, #04373d);
}

.media-showcase-section::before {
  content: "";
  position: absolute;
  inset: auto -12% -24% -12%;
  height: 42%;
  background: radial-gradient(ellipse at 50% 0%, rgba(142, 219, 209, 0.18), transparent 62%);
  filter: blur(14px);
  pointer-events: none;
}

.media-showcase-section h2,
.media-showcase-section h3 {
  color: var(--color-white);
}

.media-showcase-section .eyebrow {
  color: var(--color-sand);
}

.media-showcase-heading p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.media-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.1rem;
  align-items: stretch;
}

.media-stage {
  min-width: 0;
}

.media-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  min-height: 540px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.095);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(18px);
}

.media-panel[hidden] {
  display: none;
}

.media-frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--color-deep-ocean);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 55, 61, 0.35), transparent 44%),
    radial-gradient(circle at 70% 20%, rgba(244, 213, 155, 0.12), transparent 24rem);
  pointer-events: none;
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}

.media-frame-video::before {
  content: "Video";
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.42rem 0.7rem;
  color: var(--color-deep-ocean);
  background: rgba(244, 213, 155, 0.94);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.media-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.media-panel-copy h3 {
  max-width: 420px;
  margin-bottom: 0.85rem;
  font-size: clamp(1.9rem, 3vw, 3.15rem);
}

.media-panel-copy p {
  max-width: 430px;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
}

.media-panel-copy .text-link {
  color: var(--color-sand);
}

.media-tabs {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.media-tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 68px;
  padding: 0.85rem 1rem;
  color: rgba(255, 255, 255, 0.76);
  text-align: left;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  font-weight: 850;
  transition:
    transform var(--transition),
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.media-tab span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--color-sand);
  background: rgba(4, 55, 61, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 950;
}

.media-tab:hover,
.media-tab.active,
.media-tab[aria-selected="true"] {
  color: var(--color-deep-ocean);
  background: var(--color-sand);
  border-color: rgba(244, 213, 155, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  transform: translateX(4px);
}

.media-tab:hover span,
.media-tab.active span,
.media-tab[aria-selected="true"] span {
  color: var(--color-white);
  background: var(--color-deep-ocean);
}

/* Activity Guide */

.activity-guide-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(142, 219, 209, 0.32), transparent 26rem),
    radial-gradient(circle at 90% 18%, rgba(244, 213, 155, 0.28), transparent 24rem),
    linear-gradient(180deg, var(--color-cream) 0%, #fffdf7 45%, var(--color-soft-bg) 100%);
}

.activity-guide-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4, 55, 61, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 55, 61, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 80%);
  pointer-events: none;
}

.activity-guide-section .container {
  position: relative;
  z-index: 1;
}

.activity-guide-heading {
  max-width: 900px;
}

.activity-guide-list {
  display: grid;
  gap: 1rem;
}

.activity-guide-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 1.25rem;
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 38px rgba(4, 55, 61, 0.075);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.activity-guide-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--color-seafoam), var(--color-sand));
}

.activity-guide-item:hover,
.activity-guide-item:focus-within {
  border-color: rgba(11, 127, 131, 0.22);
  box-shadow: 0 24px 58px rgba(4, 55, 61, 0.13);
  transform: translateY(-4px);
}

.activity-guide-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--color-deep-ocean);
  background:
    linear-gradient(135deg, rgba(244, 213, 155, 0.98), rgba(142, 219, 209, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(4, 55, 61, 0.1);
  font-size: 1.08rem;
  font-weight: 950;
}

.activity-guide-body {
  position: relative;
  z-index: 1;
}

.activity-guide-body h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
}

.activity-guide-body > p {
  max-width: 880px;
  margin-bottom: 1.15rem;
  color: #40595c;
  font-size: 1.02rem;
}

.activity-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.1rem;
}

.activity-meta-grid div {
  min-height: 118px;
  padding: 0.88rem;
  background:
    linear-gradient(180deg, rgba(142, 219, 209, 0.13), rgba(244, 213, 155, 0.09)),
    var(--color-soft-bg);
  border: 1px solid rgba(16, 35, 38, 0.09);
  border-radius: var(--radius-md);
}

.activity-meta-grid dt {
  color: var(--color-teal);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.activity-meta-grid dd {
  margin: 0.26rem 0 0;
  color: #40595c;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.42;
}

.activity-guide-body .check-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
}

.activity-guide-body .check-list li {
  position: relative;
  padding: 0.78rem 0.85rem 0.78rem 2.25rem;
  color: #40595c;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 35, 38, 0.08);
  border-radius: var(--radius-md);
  font-size: 0.94rem;
  font-weight: 680;
  line-height: 1.42;
}

.activity-guide-body .check-list li::before {
  content: "";
  position: absolute;
  top: 1.08rem;
  left: 0.95rem;
  width: 9px;
  height: 9px;
  background: var(--color-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(11, 127, 131, 0.1);
}

@media (max-width: 1120px) {
  .activity-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activity-guide-body .check-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .activity-guide-section {
    padding-block: 4.5rem;
  }

  .activity-guide-heading {
    margin-bottom: 1.8rem;
  }

  .activity-guide-item {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .activity-guide-item::before {
    inset: 0 0 auto 0;
    width: auto;
    height: 6px;
  }

  .activity-guide-number {
    width: 54px;
    height: 54px;
    font-size: 0.9rem;
  }

  .activity-guide-body h3 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .activity-guide-body > p,
  .activity-meta-grid dd,
  .activity-guide-body .check-list li {
    font-size: 0.94rem;
  }

  .activity-meta-grid {
    grid-template-columns: 1fr;
  }

  .activity-meta-grid div {
    min-height: auto;
    padding: 0.78rem;
    border-radius: var(--radius-sm);
  }
}

/* Trip planner */

.trip-section {
  color: var(--color-white);
  background:
    radial-gradient(circle at top left, rgba(142, 219, 209, 0.18), transparent 28rem),
    linear-gradient(135deg, #032e34, #075c63);
}

.trip-section h2,
.trip-section h3 {
  color: var(--color-white);
}

.trip-section .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.trip-section .eyebrow {
  color: var(--color-sand);
}

.itinerary-tabs {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.2rem;
}

.tab-buttons {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.tab-button {
  min-height: 58px;
  padding: 0.95rem 1rem;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-weight: 850;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.tab-button:hover,
.tab-button.active {
  color: var(--color-deep-ocean);
  background: var(--color-sand);
  transform: translateX(4px);
}

.tab-panels {
  min-height: 360px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
}

.tab-panel h3 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.timeline-list {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.timeline-list strong {
  color: var(--color-sand);
}

.timeline-list span {
  color: rgba(255, 255, 255, 0.83);
}

/* Stay */

.stay-section {
  background: var(--color-soft-bg);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.filter-button {
  min-height: 44px;
  padding: 0.75rem 1rem;
  color: var(--color-deep-ocean);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    border-color var(--transition);
}

.filter-button:hover,
.filter-button.active {
  color: var(--color-white);
  background: var(--color-deep-ocean);
  border-color: var(--color-deep-ocean);
  transform: translateY(-2px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.info-card {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 35px rgba(4, 55, 61, 0.08);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
}

.info-card.is-hidden {
  display: none;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.info-card img {
  width: 100%;
  height: 245px;
}

.info-card-body {
  padding: 1.25rem;
}

.info-card-body p {
  margin-bottom: 1.1rem;
}

/* Food */

.food-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(244, 213, 155, 0.4), transparent 22rem),
    var(--color-cream);
}

.food-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.food-copy {
  position: sticky;
  top: 140px;
}

.food-copy p:not(.eyebrow) {
  font-size: 1.05rem;
}

.food-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mini-card {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(4, 55, 61, 0.07);
}

.mini-card:first-child {
  grid-column: span 2;
}

.mini-card img {
  width: 100%;
  height: 220px;
}

.mini-card:first-child img {
  height: 300px;
}

.mini-card h3,
.mini-card p {
  padding-inline: 1.2rem;
}

.mini-card h3 {
  padding-top: 1.1rem;
}

.mini-card p {
  padding-bottom: 1.2rem;
}

/* Specials */

.specials-section {
  background: var(--color-white);
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.special-card {
  min-height: 260px;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(244, 213, 155, 0.22), rgba(142, 219, 209, 0.18)),
    var(--color-soft-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.special-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.special-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.3rem;
  color: var(--color-deep-ocean);
  background: var(--color-sand);
  border-radius: 50%;
  font-weight: 950;
}

.special-card p {
  margin-bottom: 0;
}

/* Events */

.events-section {
  background: var(--color-soft-bg);
}

.events-list {
  display: grid;
  gap: 1rem;
}

.event-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 32px rgba(4, 55, 61, 0.06);
}

.event-date {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 1rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(4, 55, 61, 0.95), rgba(11, 127, 131, 0.92));
  border-radius: var(--radius-md);
}

.event-date span {
  color: var(--color-sand);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-date strong {
  color: var(--color-white);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.event-content {
  padding: 0.5rem 0.4rem;
}

.event-content p {
  max-width: 780px;
}

/* Guide */

.guide-section {
  color: var(--color-white);
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 213, 155, 0.18), transparent 24rem),
    linear-gradient(135deg, #032e34, #064d54);
}

.guide-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.guide-section h2,
.guide-section h3 {
  color: var(--color-white);
}

.guide-section .eyebrow {
  color: var(--color-sand);
}

.guide-content {
  position: sticky;
  top: 140px;
}

.guide-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.guide-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.guide-card {
  min-height: 230px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
}

.guide-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

/* Contact */

.contact-section {
  background:
    radial-gradient(circle at 90% 15%, rgba(142, 219, 209, 0.35), transparent 25rem),
    var(--color-soft-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.2rem;
  align-items: stretch;
}

.contact-card,
.inquiry-form {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.contact-details p {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 0;
  padding: 0.95rem;
  background: var(--color-soft-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.contact-details span {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--color-deep-ocean);
}

.inquiry-form {
  display: grid;
  gap: 1rem;
}

.form-header p {
  margin-bottom: 0;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label {
  color: var(--color-deep-ocean);
  font-size: 0.9rem;
  font-weight: 850;
}

.form-row input,
.form-row textarea,
.form-row select,
.newsletter-form input {
  color: var(--color-ink);
  background: #fbfffd;
  border: 1px solid rgba(16, 35, 38, 0.16);
  border-radius: var(--radius-sm);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.form-row input,
.form-row select {
  min-height: 50px;
  padding: 0 0.9rem;
}

.form-row textarea {
  min-height: 140px;
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus,
.newsletter-form input:focus {
  background: var(--color-white);
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(11, 127, 131, 0.1);
}

/* Footer */

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #032e34;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.footer-local-logo,
.footer-partner-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  min-height: 54px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.13);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.footer-local-logo:hover,
.footer-local-logo:focus-visible,
.footer-partner-logo:hover,
.footer-partner-logo:focus-visible {
  background: #fffdf8;
  border-color: rgba(244, 213, 155, 0.62);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.footer-local-logo {
  width: 56px;
  height: 56px;
  padding: 4px;
  border-radius: 50%;
}

.footer-local-logo:nth-child(2) {
  border-radius: 18px;
}

.footer-local-logo img,
.footer-partner-logo img {
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
  object-fit: contain;
}

.footer-partner-logo-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.footer-partner-logo-love {
  width: 132px;
  min-height: 56px;
  padding: 0.18rem 0.32rem;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
}

.footer-partner-logo-love img {
  width: 118px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.footer-brand h2,
.footer-links h3,
.footer-newsletter h3 {
  color: var(--color-white);
}

.footer-brand h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.footer-brand p,
.footer-newsletter p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-sand);
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  margin-top: 1rem;
}

.newsletter-form input {
  min-height: 48px;
  padding: 0 0.9rem;
}

.newsletter-form button {
  min-height: 48px;
  padding: 0 1rem;
  color: var(--color-deep-ocean);
  background: var(--color-sand);
  border: 0;
  border-radius: var(--radius-sm);
  font-weight: 900;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.1rem;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-bottom a {
  color: var(--color-sand);
  font-weight: 850;
}

/* Responsive */

@media (max-width: 1120px) {
  .navbar {
    grid-template-columns: auto auto;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .nav-menu {
    position: fixed;
    top: 124px;
    right: 1rem;
    left: 1rem;
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    max-height: calc(100vh - 145px);
    padding: 1rem;
    overflow-y: auto;
    background: rgba(255, 248, 236, 0.98);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    justify-content: center;
    min-height: 46px;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-grid.hero-grid-cinematic {
    grid-template-columns: 1fr;
  }

  .hero-grid-cinematic .hero-content h1 {
    max-width: 760px;
    font-size: clamp(3rem, 7vw, 5.4rem);
  }

  .hero-snapshot {
    max-width: 760px;
  }

  .hero-card {
    max-width: 560px;
  }

  .specials-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .media-showcase {
    grid-template-columns: 1fr;
  }

  .media-tabs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .media-tab {
    justify-content: center;
    min-height: 58px;
    text-align: center;
  }

}


@media (max-width: 1120px) {
  .explore-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .explore-card {
    min-height: 280px;
  }
}

@media (max-width: 1120px) {
  .signature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signature-card-primary {
    grid-column: span 2;
  }
}


@media (max-width: 900px) {


  .explore-section {
    padding-block: 3.9rem;
  }

  .explore-heading {
    margin-bottom: 1.8rem;
  }

  .explore-card {
    min-height: 260px;
  }

  .signature-section {
    padding-block: 4.5rem;
  }

  .signature-heading {
    margin-bottom: 1.8rem;
  }

  .signature-grid {
    grid-template-columns: 1fr;
  }

  .signature-card-primary {
    grid-column: auto;
  }

  .signature-planning-note {
    align-items: flex-start;
    flex-direction: column;
  }

  body.hero-reveal-ready .hero-video-first {
    min-height: 110vh;
  }

  body.hero-reveal-ready .hero-video-first .hero-reveal-content {
    top: 78px;
    min-height: calc(100vh - 78px);
    min-height: calc(100svh - 78px);
    padding-block: 2.5rem 3rem;
  }

  .hero-video-intro {
    padding-top: clamp(4rem, 10vh, 6.4rem);
  }

  .hero-video-title {
    font-size: clamp(2.6rem, 9vw, 4.6rem);
  }
  :root {
    --section-padding: 4.5rem;
  }

  .announcement-bar {
    display: none;
  }

  html {
    scroll-padding-top: 92px;
  }

  .navbar {
    min-height: 78px;
  }

  .nav-menu {
    top: 90px;
    max-height: calc(100vh - 110px);
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-grid.hero-grid-cinematic {
    align-items: end;
    padding-block: 5.5rem 4.5rem;
  }

  .hero-grid-cinematic .hero-content h1 {
    max-width: 680px;
    font-size: clamp(2.85rem, 10vw, 5rem);
  }

  .hero-snapshot {
    flex-direction: column;
    max-width: 680px;
    border-radius: var(--radius-md);
  }

  .hero-snapshot p {
    min-width: 0;
    place-items: start;
    text-align: left;
  }

  .hero-snapshot ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .intro-grid,
  .food-grid,
  .guide-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .food-copy,
  .guide-content {
    position: static;
  }


  .itinerary-tabs {
    grid-template-columns: 1fr;
  }

  .tab-buttons {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .tab-button {
    flex: 0 0 auto;
    min-width: 120px;
    text-align: center;
  }

  .card-grid,
  .guide-cards {
    grid-template-columns: 1fr;
  }


  .event-card {
    grid-template-columns: 1fr;
  }

  .event-date {
    min-height: 120px;
  }

  .logo-row {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 1rem;
  }

  .official-marks-national {
    justify-content: flex-start;
  }

  .logo-row p {
    max-width: 720px;
    text-align: left;
  }

  .media-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .media-frame {
    min-height: 380px;
  }

  .media-panel-copy {
    padding: 1.35rem;
  }

  .media-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x proximity;
  }

  .media-tab {
    flex: 0 0 auto;
    min-width: 175px;
    scroll-snap-align: start;
  }

}

@media (max-width: 640px) {


  .explore-section {
    padding-block: 3.4rem;
  }

  .explore-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .explore-card {
    min-height: 245px;
    border-radius: var(--radius-md);
  }

  .explore-card-content {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .explore-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.8rem;
    font-size: 0.72rem;
  }

  .explore-card h3 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .explore-card p {
    font-size: 0.94rem;
  }

  .signature-card {
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .signature-card-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 1rem;
  }

  .signature-card .tag {
    text-align: left;
  }

  .signature-number {
    width: 42px;
    height: 42px;
    font-size: 0.74rem;
  }

  .signature-card h3 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .signature-card p,
  .signature-details dd,
  .signature-planning-note span {
    font-size: 0.94rem;
  }

  .signature-details div {
    padding: 0.78rem;
    border-radius: var(--radius-sm);
  }

  body.hero-reveal-ready .hero-video-first {
    min-height: 106vh;
  }

  .hero-video-intro {
    gap: 0.9rem;
    padding-top: clamp(4rem, 10vh, 5.5rem);
  }

  .hero-video-title {
    width: min(100% - 1.2rem, 420px);
    font-size: clamp(2.1rem, 13vw, 3.5rem);
    letter-spacing: 0.025em;
  }

  .hero-video-location {
    width: min(100% - 1.2rem, 360px);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  .hero-video-scroll-cue {
    bottom: clamp(1.15rem, 5vh, 2.4rem);
    padding: 0.58rem 0.78rem;
    font-size: 0.68rem;
  }


  .hero-cinematic-replay {
    right: 50%;
    bottom: 1rem;
    max-width: calc(100% - 1.2rem);
    padding: 0.66rem 0.82rem;
    font-size: 0.68rem;
    transform: translateX(50%) translateY(12px) scale(0.98);
  }

  .hero-cinematic-replay span:first-child {
    width: 24px;
    height: 24px;
    font-size: 0.66rem;
  }

  body.hero-reveal-ready.hero-context-visible.hero-replay-available .hero-cinematic-replay {
    transform: translateX(50%) translateY(0) scale(1);
  }

  body.hero-reveal-ready:not(.hero-context-visible) .hero-cinematic-replay,
  body.hero-reveal-ready.hero-context-visible:not(.hero-replay-available) .hero-cinematic-replay {
    transform: translateX(50%) translateY(12px) scale(0.98);
  }

  body.hero-reveal-ready .hero-video-first .hero-reveal-content {
    align-items: end;
  }
  h1 {
    font-size: clamp(2.7rem, 15vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .container {
    width: min(100% - 1.1rem, var(--container));
  }

  .official-marks {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .official-mark {
    width: fit-content;
    min-height: 50px;
    font-size: 0.8rem;
  }

  .official-mark img {
    width: 40px;
    height: 40px;
  }

  .official-mark-love img {
    width: min(144px, calc(100vw - 5rem));
    height: 36px;
  }

  .footer-local-logo,
  .footer-partner-logo-dot {
    width: 52px;
    height: 52px;
    min-height: 52px;
  }

  .footer-partner-logo-love {
    width: 126px;
    height: auto;
    min-height: 54px;
    padding: 0.16rem 0.28rem;
  }

  .footer-partner-logo-love img {
    width: 112px;
    max-height: 49px;
  }

  .navbar {
    padding-inline: 0.75rem;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .brand-seal,
  .brand-tourism-logo {
    width: 42px;
    height: 42px;
  }

  .brand-logos img:nth-child(2) {
    display: none;
  }

  .hero-grid {
    padding-block: 4.5rem 3.5rem;
  }

  .hero-grid.hero-grid-cinematic {
    padding-block: 5rem 4.5rem;
  }

  .hero-grid-cinematic .hero-content h1 {
    max-width: 12ch;
    margin-bottom: 0.85rem;
    font-size: clamp(2.55rem, 12.5vw, 4rem);
  }

  .hero-snapshot {
    gap: 0.65rem;
    margin-top: 0;
    padding: 0.65rem;
  }

  .hero-snapshot ul {
    gap: 0.5rem;
  }

  .hero-snapshot li {
    min-height: 64px;
    padding: 0.65rem;
  }

  .hero-snapshot span {
    font-size: 0.64rem;
  }

  .hero-snapshot strong {
    font-size: 0.88rem;
  }

  .hero-scroll-cue:not(.hero-video-scroll-cue) {
    display: none;
  }

  .hero-video-scroll-cue {
    display: inline-flex;
  }

  .hero-orb {
    opacity: 0.55;
  }

  .hero-orb-one {
    right: 8%;
  }

  .hero-orb-two,
  .hero-orb-three {
    display: none;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .hero-trust {
    gap: 0.5rem;
  }

  .hero-trust span {
    font-size: 0.8rem;
  }


  .experience-item {
    grid-template-columns: 1fr;
  }

  .experience-number {
    width: 62px;
    height: 62px;
    font-size: 1.05rem;
  }

  .timeline-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .food-cards,
  .specials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mini-card:first-child {
    grid-column: auto;
  }

  .mini-card img,
  .mini-card:first-child img {
    height: 220px;
  }


  .contact-card,
  .inquiry-form {
    border-radius: var(--radius-md);
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .media-showcase-section .section-heading {
    margin-bottom: 1.6rem;
  }

  .media-panel {
    border-radius: var(--radius-md);
  }

  .media-frame {
    min-height: 300px;
  }

  .media-panel-copy h3 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .media-panel-copy p {
    font-size: 0.96rem;
  }

  .media-tab {
    min-width: 155px;
    min-height: 56px;
    padding: 0.75rem 0.85rem;
    border-radius: 16px;
    font-size: 0.86rem;
  }

  .media-tab span {
    width: 30px;
    height: 30px;
    font-size: 0.72rem;
  }

}


@media (max-width: 640px) {
  .scroll-top-button {
    right: 0.9rem;
    bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
    width: 44px;
    height: 44px;
  }

  .scroll-top-button span {
    font-size: 1.05rem;
  }
}

@media (max-width: 640px) {
  .whats-new-widget {
    bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
    left: 0.9rem;
  }

  .whats-new-trigger {
    min-height: 54px;
    max-width: 54px;
    padding: 0.36rem;
  }

  .whats-new-icon {
    width: 42px;
    height: 42px;
  }

  .whats-new-icon::after {
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
  }

  .whats-new-megaphone {
    width: 33px;
    height: 33px;
  }

  .whats-new-trigger:hover,
  .whats-new-trigger:focus-visible,
  .whats-new-trigger[aria-expanded="true"] {
    max-width: 186px;
    padding-right: 0.88rem;
  }

  .whats-new-label {
    font-size: 0.72rem;
  }

  .whats-new-panel {
    width: min(340px, calc(100vw - 1.8rem));
    padding: 0.9rem;
    border-radius: var(--radius-md);
  }

  .whats-new-content .btn {
    width: 100%;
  }
}



@media (max-width: 640px) {
  .feedback-widget {
    top: auto;
    right: 0.9rem;
    bottom: calc(
      0.9rem +
      env(safe-area-inset-bottom, 0px) +
      44px +
      0.75rem
    );
    transform: translateY(0) scale(1);
  }

  body.nav-open .feedback-widget,
  body.hero-reveal-ready:not(.hero-context-visible) .feedback-widget {
    transform: translateY(12px) scale(0.96);
  }

  .feedback-trigger {
    min-height: 52px;
    max-width: 52px;
    padding: 0.32rem;
  }

  .feedback-icon {
    width: 42px;
    height: 42px;
  }

  .feedback-icon svg {
    width: 27px;
    height: 27px;
  }

  .feedback-trigger:hover,
  .feedback-trigger:focus-visible,
  .feedback-trigger[aria-expanded="true"] {
    max-width: 176px;
    padding-left: 0.85rem;
  }

  .feedback-label {
    font-size: 0.7rem;
  }

  .feedback-modal {
    align-items: end;
    padding: 0.55rem;
  }

  .feedback-dialog {
    width: 100%;
    height: 94vh;
    height: 94svh;
    max-height: 94vh;
    max-height: 94svh;
    padding: 0.85rem;
    border-radius: 24px 24px 18px 18px;
  }

  .feedback-dialog-header {
    gap: 0.7rem;
  }

  .feedback-dialog-header h2 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .feedback-form-embed {
    border-radius: 16px;
  }

  .feedback-photo-upload {
    align-items: stretch;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.75rem;
  }

  .feedback-photo-upload-button {
    width: 100%;
    min-height: 44px;
  }

  .feedback-embed-note,
  .feedback-embed-fallback {
    font-size: 0.74rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .feedback-trigger {
    max-width: 52px;
    padding-left: 0.32rem;
  }

  .feedback-trigger .feedback-label {
    max-width: 0;
    opacity: 0;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 0.55rem;
  }

  .brand-text small {
    display: none;
  }

  .hero-card-header {
    align-items: flex-start;
  }

  .hero-snapshot ul {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .filter-button {
    padding-inline: 0.65rem;
    font-size: 0.82rem;
  }
}


/* Mobile hero context upward alignment */

@media (max-width: 640px) {
  body.hero-reveal-ready .hero-video-first .hero-reveal-content {
    top: 0;
    min-height: 100vh;
    min-height: 100svh;
    padding-block: clamp(1.1rem, 3.5vh, 2rem) 5rem;
    align-items: center;
  }

  body.hero-reveal-ready.hero-context-visible .hero-video-first .hero-content {
    padding-top: 0;
  }

  body.hero-reveal-ready.hero-context-visible .hero-video-first .hero-content .eyebrow {
    margin-bottom: 0.58rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  body.hero-reveal-ready.hero-context-visible .hero-grid-cinematic .hero-content h1 {
    max-width: 13ch;
    margin-bottom: 0.72rem;
    font-size: clamp(2.15rem, 10.8vw, 3.45rem);
    line-height: 0.98;
  }

  body.hero-reveal-ready.hero-context-visible .hero-grid-cinematic .hero-description {
    margin-bottom: 0.95rem;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  body.hero-reveal-ready.hero-context-visible .hero-actions {
    gap: 0.58rem;
    margin-bottom: 0.95rem;
  }

  body.hero-reveal-ready.hero-context-visible .hero-snapshot {
    gap: 0.5rem;
    padding: 0.55rem;
  }

  body.hero-reveal-ready.hero-context-visible .hero-snapshot p {
    padding: 0.55rem 0.65rem;
    font-size: 0.62rem;
  }

  body.hero-reveal-ready.hero-context-visible .hero-snapshot li {
    min-height: 54px;
    padding: 0.55rem 0.6rem;
  }

  body.hero-reveal-ready.hero-context-visible .hero-snapshot span {
    font-size: 0.58rem;
  }

  body.hero-reveal-ready.hero-context-visible .hero-snapshot strong {
    font-size: 0.78rem;
  }
}

@media (max-width: 420px) {
  body.hero-reveal-ready .hero-video-first .hero-reveal-content {
    padding-block: clamp(0.85rem, 2.8vh, 1.45rem) 4.6rem;
  }

  body.hero-reveal-ready.hero-context-visible .hero-video-first .hero-content {
    padding-top: 0;
  }

  body.hero-reveal-ready.hero-context-visible .hero-grid-cinematic .hero-content h1 {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {


  .hero-video-intro,
  body.hero-reveal-ready .hero-video-first .hero-reveal-content {
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }


  .hero-cinematic-replay {
    transition: none !important;
  }

  body.hero-reveal-ready:not(.hero-context-visible) .hero-video-first .hero-reveal-content {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  body.hero-reveal-ready .hero-video-first .hero-video-intro {
    display: none !important;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-video {
    animation: none !important;
  }

  .hero-atmosphere,
  .hero-orb {
    display: none !important;
  }

  .hero-scroll-cue {
    animation: none !important;
  }


  .scroll-top-button,
  .whats-new-widget,
  .whats-new-trigger,
  .whats-new-label,
  .whats-new-panel,
  .whats-new-close,
  .feedback-widget,
  .feedback-trigger,
  .feedback-label,
  .feedback-icon svg,
  .feedback-modal-backdrop,
  .feedback-dialog,
  .feedback-close,
  .official-mark,
  .footer-local-logo,
  .footer-partner-logo {
    transition: none !important;
    animation: none !important;
  }

  .explore-card,
  .explore-card img {
    transition: none !important;
  }

  .signature-card,
  .activity-guide-item {
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
