﻿@font-face {
  font-family: "Barlow Condensed";
  src: url("font/Barlow_Condensed/BarlowCondensed-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("font/Barlow_Condensed/BarlowCondensed-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("font/Barlow_Condensed/BarlowCondensed-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}

:root {
  --cream: #fff7ef;
  --beige: #f3d7c4;
  --terracotta: #ee7658;
  --terracotta-dark: #d85e45;
  --brown: #49342c;
  --blush: #ffbea8;
  --rose: #ff8fa3;
  --sun: #ffd166;
  --mint: #87d7bf;
  --white: #fffdf9;
  --line: rgba(73, 52, 44, 0.14);
  --shadow: 0 22px 55px rgba(201, 123, 99, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brown);
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 143, 163, 0.24), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 209, 102, 0.24), transparent 24%),
    linear-gradient(135deg, var(--cream), #fff1e5 52%, var(--beige));
  font-family: "Barlow Condensed";
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(74, 59, 52, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 59, 52, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed";
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: 4.8rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 14px 0 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 20px max(24px, calc((100% - 1200px) / 2));
  background: rgba(255, 253, 249, 0.95);
  border: 1px solid rgba(74, 59, 52, 0.12);
  border-width: 0 0 1px;
  border-radius: 0;
  box-shadow: 0 14px 40px rgba(74, 59, 52, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px;
  color: var(--brown);
  font-family: "Barlow Condensed";
  font-size: 1.65rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header .brand {
  padding: 0;
}

.brand span {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: #fffaf6;
  background: linear-gradient(135deg, var(--terracotta), var(--rose));
  border-radius: 50%;
  font-family: "Barlow Condensed";
}

.brand-logo {
  width: auto;
  height: 62px;
  display: inline-block;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(232, 180, 160, 0.26);
}

.nav-button,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: none;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.nav-button,
.button-primary {
  color: #4d4d4d;
  background: linear-gradient(145deg, #f2f2f2, #e8e8e8);
  border: 1px solid #ededed;
}

.nav-button:hover,
.button-primary:hover {
  color: #fff;
  background: #000;
  border-color: #000;
  transform: none;
}

.button-secondary {
  color: #555;
  background: linear-gradient(145deg, #f4f4f4, #ebebeb);
  border: 1px solid #efefef;
}

.hero {
  width: 100%;
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin: 0;
  padding: 132px max(18px, calc((100% - 1160px) / 2)) 84px;
  color: #fffaf6;
  background: var(--brown);
  border: 0;
  border-radius: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-slides,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 1200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 209, 102, 0.36), transparent 28%),
    linear-gradient(90deg, rgba(73, 52, 44, 0.72), rgba(201, 123, 99, 0.34), rgba(255, 143, 163, 0.22)),
    linear-gradient(0deg, rgba(73, 52, 44, 0.44), rgba(73, 52, 44, 0.04));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy,
.hero-dots {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  color: #fffaf6;
}

.hero-dots {
  position: absolute;
  left: 72px;
  bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 8px;
  max-width: min(520px, calc(100vw - 96px));
}

.hero-dots button {
  width: 26px;
  height: 5px;
  padding: 0;
  background: rgba(255, 250, 246, 0.44);
  border: 0;
  border-radius: 999px;
}

.hero-dots button.is-active {
  background: var(--sun);
}

/* Home — Manali Art Retreat (current event) intro */
.home-manali-retreat-intro {
  --home-mr-text: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.home-manali-retreat-header {
  margin-bottom: 6px;
}

.home-manali-retreat-header .eyebrow {
  letter-spacing: 0.14em;
  font-weight: 700;
}

.home-manali-retreat-header h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--brown);
  margin: 0;
}

.home-manali-retreat-panel {
  margin-top: 22px;
  padding: clamp(22px, 3.2vw, 40px);
  background: linear-gradient(165deg, rgba(255, 253, 249, 0.94) 0%, rgba(255, 248, 242, 0.88) 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    var(--shadow);
}

.home-manali-retreat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
}

.home-manali-retreat-prose {
  display: grid;
  gap: 16px;
  max-width: 58ch;
  font-family: var(--home-mr-text);
  font-size: 1.0625rem;
  line-height: 1.72;
  letter-spacing: 0.01em;
  font-weight: 400;
  color: rgba(45, 32, 28, 0.92);
  -webkit-font-smoothing: antialiased;
}

.home-manali-retreat-prose strong {
  font-weight: 600;
  color: var(--rose);
}

.home-manali-retreat-note strong {
  font-weight: 600;
  color: var(--terracotta);
}

.home-manali-retreat-prose a {
  color: var(--terracotta-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.home-manali-retreat-prose a:hover {
  color: var(--terracotta);
}

.home-manali-retreat-lead {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.68;
}

.home-manali-retreat-subhead {
  margin: 6px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--brown);
}

.home-manali-retreat-prose p {
  margin: 0;
}

.home-manali-retreat-list {
  margin: 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 12px;
}

.home-manali-retreat-list li {
  padding-left: 0.15rem;
}

.home-manali-retreat-list li::marker {
  color: var(--terracotta);
  font-size: 0.85em;
}

.home-manali-retreat-note {
  margin: 2px 0 0;
  padding: 16px 18px;
  font-family: var(--home-mr-text);
  font-size: 0.98rem;
  line-height: 1.62;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(73, 52, 44, 0.12);
  border-radius: 14px;
  border-left: 4px solid var(--terracotta);
  color: rgba(45, 32, 28, 0.9);
}

.home-manali-retreat-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.82fr);
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 280px;
}

.home-manali-retreat-shot {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(73, 52, 44, 0.1);
  box-shadow: 0 12px 32px rgba(73, 52, 44, 0.12);
}

.home-manali-retreat-shot--hero {
  grid-row: 1 / -1;
}

.home-manali-retreat-shot img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.home-manali-retreat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .home-manali-retreat-grid {
    grid-template-columns: 1fr;
  }

  .home-manali-retreat-prose {
    max-width: none;
  }

  .home-manali-retreat-visuals {
    order: -1;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(200px, 38vw) minmax(120px, 28vw);
    min-height: 0;
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }

  .home-manali-retreat-shot--hero {
    grid-row: 1 / 2;
    grid-column: 1 / -1;
  }

  .home-manali-retreat-shot:not(.home-manali-retreat-shot--hero) img {
    min-height: 100%;
    aspect-ratio: 4 / 3;
  }
}

/* Home — when & where (Manali current retreat, short) */
.home-event-when-where {
  margin-top: 44px;
}

.home-event-when-where-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.home-event-fact-card {
  margin: 0;
  padding: 18px 20px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.home-event-fact-q {
  margin: 0 0 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--brown);
}

.home-event-fact-a {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.58;
  color: rgba(73, 52, 44, 0.88);
}

.home-event-fact-a strong {
  color: var(--terracotta-dark);
  font-weight: 700;
}

.home-event-when-where-foot {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.88rem;
}

.home-event-when-where-foot a {
  color: var(--terracotta-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 680px) {
  .home-event-when-where-inner {
    grid-template-columns: 1fr;
  }
}

/* Home — where we stay (Manali) + Stayy photo strip */
.home-stay-intro {
  margin: 22px 0 0;
  max-width: none;
  width: 100%;
  font-size: 1.02rem;
  line-height: 1.78;
  color: rgba(73, 52, 44, 0.92);
  text-align: left;
  text-wrap: pretty;
}

.home-stay-intro a {
  color: var(--terracotta-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-stay-intro a:hover {
  color: var(--brown);
}

.home-stay-gallery {
  margin-top: 28px;
}

.home-stay-spotlight-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}

/* Home — what you’re investing in (Manali May ’26) */
.home-investment-panel {
  max-width: 720px;
  margin: 18px auto 0;
}

.home-investment-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(73, 52, 44, 0.92);
}

.home-investment-list li::marker {
  color: var(--terracotta);
}

.home-investment-list a {
  color: var(--terracotta-dark);
  font-weight: 700;
}

.home-investment-close {
  margin: 18px 0 0;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: var(--brown);
}

/* Home — day-wise journey accordion (Manali May ’26) */
.home-journey-accordion {
  max-width: 800px;
  margin: 20px auto 0;
  border: 1px solid rgba(73, 52, 44, 0.14);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: var(--shadow);
}

.home-journey-row {
  border-bottom: 1px solid rgba(73, 52, 44, 0.12);
}

.home-journey-row:last-child {
  border-bottom: 0;
}

.home-journey-summary {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 16px;
  padding: 16px 18px;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  color: var(--brown);
  transition: background 0.2s ease;
}

.home-journey-summary::-webkit-details-marker {
  display: none;
}

.home-journey-summary::marker {
  content: "";
}

.home-journey-summary:hover {
  background: rgba(255, 209, 102, 0.12);
}

.home-journey-summary:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: -3px;
}

.home-journey-date {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(73, 52, 44, 0.55);
}

@media (min-width: 560px) {
  .home-journey-summary {
    grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr) auto;
    align-items: center;
  }

  .home-journey-date {
    grid-column: auto;
  }
}

.home-journey-title {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  letter-spacing: -0.01em;
}

.home-journey-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brown);
  border-bottom: 2px solid var(--brown);
  transform: rotate(45deg) translateY(-3px);
  opacity: 0.65;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.home-journey-row[open] .home-journey-chevron {
  transform: rotate(225deg) translateY(2px);
  opacity: 0.9;
}

.home-journey-panel {
  padding: 0 18px 16px 18px;
  margin-top: -4px;
}

.home-journey-panel p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(73, 52, 44, 0.88);
  max-width: 62ch;
}

.home-journey-foot {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.9rem;
}

.home-journey-foot a {
  color: var(--terracotta-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Homepage — Why join (one block: image + copy rotate together) */
.home-why-retreat {
  margin-top: clamp(72px, 10vw, 100px);
}

.home-why-retreat .section-heading {
  margin-bottom: clamp(28px, 5vw, 44px);
}

.home-why-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
}

.home-why-copy-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.home-why-copy-area {
  position: relative;
  display: grid;
}

.home-why-copy-area > .home-why-slide {
  grid-area: 1 / 1;
  align-self: start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.home-why-copy-area > .home-why-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.home-why-figure {
  margin: 0;
  height: 100%;
  min-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: rgba(255, 253, 249, 0.6);
}

.home-why-rot-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.32s ease;
}

.home-why-slide h3 {
  margin: 0 0 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.42rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--brown);
}

.home-why-slide p {
  margin: 0;
  font-size: clamp(0.94rem, 1.6vw, 1.02rem);
  line-height: 1.72;
  color: rgba(73, 52, 44, 0.9);
  max-width: 58ch;
}

.home-why-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.home-why-dots button {
  width: 28px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(73, 52, 44, 0.22);
  cursor: pointer;
}

.home-why-dots button.is-active {
  background: linear-gradient(135deg, var(--terracotta), var(--rose));
}

.home-why-dots button:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .home-why-showcase {
    grid-template-columns: 1fr;
  }

  .home-why-media {
    order: -1;
  }

  .home-why-figure {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-why-rot-img,
  .home-why-copy-area > .home-why-slide {
    transition: none;
  }
}

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

.hero-art {
  position: relative;
}

.hero-art img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 10px solid rgba(255, 250, 246, 0.78);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  left: -28px;
  bottom: 32px;
  max-width: 230px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.floating-note span {
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.floating-note strong {
  display: block;
  margin-top: 6px;
  font-family: "Barlow Condensed";
  font-size: 1.2rem;
  line-height: 1.15;
}

.event-card,
.included-card,
.why-grid article {
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 84px auto 0;
}

.section-heading {
  max-width: 680px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.about-grid,
.stay-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 32px;
  align-items: center;
  margin-top: 32px;
}

.about-grid > div,
.soft-panel {
  padding: 36px;
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.about-grid img,
.gallery-grid img {
  border-radius: 16px;
  object-fit: cover;
}

.about-grid img {
  aspect-ratio: 5 / 4;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.event-card {
  overflow: hidden;
}

.upcoming-events .event-card {
  position: relative;
  background: linear-gradient(145deg, #efefef, #e4e4e4);
  border: 1px solid #ececec;
  border-radius: 18px;
  box-shadow:
    inset 2px 2px 0 rgba(255, 255, 255, 0.9),
    inset -2px -2px 0 rgba(204, 204, 204, 0.42),
    14px 14px 24px rgba(192, 192, 192, 0.24),
    -14px -14px 24px rgba(255, 255, 255, 0.88);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.upcoming-events .event-card:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 2px 2px 0 rgba(255, 255, 255, 0.92),
    inset -2px -2px 0 rgba(198, 198, 198, 0.46),
    18px 18px 28px rgba(188, 188, 188, 0.3),
    -18px -18px 28px rgba(255, 255, 255, 0.92);
  border-color: #e6e6e6;
}

.event-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.upcoming-events .event-card img {
  aspect-ratio: 16 / 10;
  filter: grayscale(0.35) saturate(0.65) brightness(1.03);
}

.upcoming-events .event-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52px;
  height: 52px;
  border-radius: 10px 0 18px 0;
  background: linear-gradient(145deg, rgba(233, 233, 233, 0.96), rgba(214, 214, 214, 0.96));
  box-shadow: -2px -2px 0 rgba(255, 255, 255, 0.7);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.event-card div {
  padding: 24px;
}

.upcoming-events .event-card .event-card-body {
  padding: 22px 22px 24px;
}

.event-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  color: var(--brown);
  background: linear-gradient(135deg, var(--blush), #ffe0d3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.included-card {
  padding: 34px;
}

.included-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.included-card li {
  padding-left: 26px;
  position: relative;
}

.included-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--terracotta), var(--rose));
  border-radius: 50%;
  transform: translateY(-50%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.why-grid article {
  min-height: 140px;
  display: grid;
  align-content: end;
  padding: 20px;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.gallery-grid img {
  height: 230px;
}

.gallery-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 476px;
}

.gallery-intro {
  max-width: 840px;
  margin: 14px auto 0;
  font-size: 1.02rem;
  line-height: 1.85;
}

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

.bir-highlight-card {
  padding: 24px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.bir-highlight-card h3 {
  font-size: 1.22rem;
}

.bir-highlight-card p {
  margin-top: 10px;
  font-size: 0.93rem;
  line-height: 1.8;
}

.gallery-story {
  margin-top: 24px;
  padding: 28px;
  background:
    radial-gradient(circle at 88% 24%, rgba(255, 209, 102, 0.2), transparent 36%),
    rgba(255, 253, 249, 0.86);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.gallery-story h3 {
  font-size: 1.5rem;
}

.gallery-story p {
  margin-top: 12px;
  line-height: 1.85;
}

.home-gallery-carousel {
  margin-top: 24px;
}

.home-gallery-viewport {
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
}

.home-gallery-track {
  display: flex;
  gap: 10px;
  transition: transform 520ms ease;
  will-change: transform;
}

.home-gallery-card {
  position: relative;
  flex: 0 0 calc((100% - 30px) / 4);
  min-height: 340px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.home-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  color: #fffaf6;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.84) 68%);
}

.home-gallery-overlay strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.15;
}

.home-gallery-overlay p {
  margin-top: 6px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.home-gallery-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.home-gallery-dots button {
  width: 24px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(73, 52, 44, 0.24);
}

.home-gallery-dots button.is-active {
  background: linear-gradient(135deg, var(--terracotta), var(--rose));
}

@media (prefers-reduced-motion: reduce) {
  .home-gallery-track {
    transition: none;
  }
}

/* Instagram horizontal scroller (homepage) */
.instagram-scroller-section {
  padding-block: 48px 56px;
}

.ig-scroller-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 12px;
  max-width: 1100px;
  margin: 28px auto 0;
  min-width: 0;
}

.ig-scroll-btn {
  align-self: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.95);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ig-scroll-btn:hover {
  border-color: rgba(201, 94, 71, 0.45);
  background: #fff;
}

.ig-scroll-btn:active {
  transform: scale(0.96);
}

.ig-scroll-btn:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.ig-scroller-viewport {
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 8px;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  /* Hide native scrollbar; scrolling still works (buttons, touch, trackpad). */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ig-scroller-viewport::-webkit-scrollbar {
  display: none;
}

.ig-scroller-viewport:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

.ig-scroller-track {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 14px;
}

/* Uniform width; height follows each embed so we donâ€™t reserve a tall empty box. */
.ig-embed-slot {
  --ig-slot-w: 302px;
  flex: 0 0 var(--ig-slot-w);
  width: var(--ig-slot-w);
  min-width: var(--ig-slot-w);
  align-self: flex-start;
  height: auto;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #fff;
}

.ig-embed-slot blockquote.instagram-media {
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.ig-embed-slot iframe {
  max-width: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.ig-scroller-foot {
  text-align: center;
  margin-top: 22px;
}

@media (max-width: 640px) {
  .ig-scroller-wrap {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ig-scroll-btn {
    width: 100%;
    height: 42px;
    font-size: 1.2rem;
  }

  .ig-scroll-prev {
    order: 2;
  }

  .ig-scroller-viewport {
    order: 1;
  }

  .ig-scroll-next {
    order: 3;
  }

  .ig-embed-slot {
    /* Use dvw when supported so slot width matches layout viewport (100vw + scrollbar often causes sideways nudge). */
    --ig-slot-w: min(302px, calc(100vw - 48px));
    --ig-slot-w: min(302px, calc(100dvw - 48px));
  }
}

.bir-experience-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.experience-step {
  position: relative;
  padding: 22px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.experience-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--rose));
  color: #fffaf6;
  font-size: 0.78rem;
  font-weight: 700;
}

.experience-step h3 {
  margin-top: 12px;
  font-size: 1.18rem;
}

.experience-step p {
  margin-top: 9px;
  font-size: 0.92rem;
  line-height: 1.78;
}

.bir-rhythm-note {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.95), rgba(255, 190, 168, 0.18));
}

.bir-rhythm-note p {
  margin: 0;
  line-height: 1.82;
}

.bir-rhythm-note .eyebrow {
  margin-bottom: 10px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-section {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 72px 28px;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 209, 102, 0.32), transparent 26%),
    linear-gradient(135deg, rgba(255, 190, 168, 0.72), rgba(255, 143, 163, 0.26));
  border: 1px solid var(--line);
  border-radius: 16px;
}

.cta-section p:not(.eyebrow) {
  max-width: 680px;
}

.site-footer {
  margin-top: 96px;
  background:
    radial-gradient(circle at 10% 50%, rgba(255, 143, 163, 0.12), transparent 40%),
    linear-gradient(135deg, var(--brown) 0%, #3a2520 100%);
  color: rgba(255, 253, 249, 0.85);
}

.footer-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .brand {
  color: #fffdf9;
  padding: 0;
  font-size: 1.5rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 253, 249, 0.65);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 14px;
  background: rgba(255, 253, 249, 0.1);
  border: 1px solid rgba(255, 253, 249, 0.15);
  border-radius: 999px;
  color: #fffdf9;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 200ms;
}

.footer-social a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.footer-col h4 {
  margin: 0 0 18px;
  font-family: "Barlow Condensed";
  font-size: 1rem;
  font-weight: 700;
  color: #fffdf9;
  letter-spacing: 0.02em;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 253, 249, 0.65);
  text-decoration: none;
  transition: color 200ms;
}

.footer-col ul li a:hover {
  color: var(--blush);
}

.footer-col .footer-contact-item {
  font-size: 0.88rem;
  color: rgba(255, 253, 249, 0.65);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6px 10px;
}

.footer-col .footer-contact-item > span:first-child {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 253, 249, 0.75);
  flex-shrink: 0;
}

.footer-contact-nowrap {
  white-space: nowrap;
}

.footer-bottom {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 253, 249, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255, 253, 249, 0.4);
}

.footer-bottom a {
  color: rgba(255, 253, 249, 0.55);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--blush);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0 24px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

.subpage {
  width: min(1160px, calc(100% - 32px));
  display: grid;
  /* Let the column shrink below wide children (carousels, embed strips); default minmax(auto,1fr) blows out page width. */
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
  margin: 72px auto 0;
}

.subpage > * {
  min-width: 0;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: 36px;
  align-items: center;
  padding: 56px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 209, 102, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.9), rgba(255, 190, 168, 0.38));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.subpage-hero img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.subpage-heading {
  max-width: 860px;
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: 56px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 209, 102, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.9), rgba(255, 143, 163, 0.22));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

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

.info-panel {
  padding: 36px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.info-panel ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.accent-panel {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 209, 102, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(255, 190, 168, 0.72), rgba(255, 143, 163, 0.24));
}

.price-text {
  color: var(--terracotta-dark);
  font-family: "Barlow Condensed";
  font-size: 2.2rem;
  font-weight: 700;
}

.contact-box {
  max-width: none;
  justify-items: center;
  text-align: center;
}

@media (max-width: 900px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .site-header,
  .hero,
  .about-grid,
  .stay-section,
  .site-footer,
  .subpage-hero,
  .subpage-grid {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    display: grid;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .event-grid,
  .why-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 620px;
    padding-top: 120px;
    padding-bottom: 68px;
  }

  .floating-note {
    left: 20px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero,
  .about-grid > div,
  .soft-panel,
  .included-card {
    padding: 24px;
  }

  .site-header {
    gap: 12px;
    padding: 14px 16px;
  }

  .brand {
    gap: 8px;
    font-size: 1.1rem;
    padding: 0;
  }

  .brand-logo {
    height: 42px;
  }

  .hero {
    min-height: 0;
    padding-top: 104px;
    padding-bottom: 58px;
    gap: 14px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .hero-actions {
    margin-top: 20px;
    gap: 10px;
  }

  .button,
  .nav-button {
    width: 100%;
  }

  .event-grid,
  .why-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    grid-column: auto;
    grid-row: auto;
    height: 230px;
  }

  .floating-note {
    position: static;
    margin-top: 16px;
    max-width: none;
  }

  .hero-dots {
    left: 24px;
  }

  .section {
    width: min(1160px, calc(100% - 24px));
    margin-top: 64px;
  }

  .event-grid,
  .gallery-grid,
  .testimonials-carousel {
    margin-top: 24px;
  }

  .gallery-intro {
    font-size: 0.95rem;
  }

  .bir-highlights {
    grid-template-columns: 1fr;
  }

  .gallery-story {
    padding: 22px;
  }

  .bir-experience-track {
    grid-template-columns: 1fr;
  }

  .bir-rhythm-note {
    padding: 20px;
  }

  .home-gallery-card {
    flex-basis: calc((100% - 10px) / 2);
    min-height: 290px;
  }
}

/* ============================================================
   DESIGN SYSTEM EXTENSION â€” new tokens, components, utilities
   ============================================================ */

/* --- New CSS custom properties --- */
:root {
  --error: #c0392b;
  --success: #2d7a5f;
  --overlay: rgba(30, 18, 14, 0.82);
}

/* ============================================================
   UTILITY
   ============================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brown);
  font-size: 1.35rem;
  cursor: pointer;
  line-height: 1;
}

.nav-toggle:hover {
  background: rgba(232, 180, 160, 0.26);
}

/* Active nav link */
.site-nav a.is-active {
  color: var(--terracotta);
  background: rgba(238, 118, 88, 0.1);
}

@media (max-width: 767px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .site-header .brand {
    justify-self: start;
  }

  .brand-logo {
    height: 46px;
  }

  .nav-toggle {
    display: flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
  }

  .nav-button {
    display: none;
  }

  body.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 14px 16px 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(73, 52, 44, 0.12);
    z-index: 19;
  }

  body.nav-open .site-nav a {
    padding: 12px 8px;
    border-radius: 8px;
    font-size: 1rem;
  }
}

/* ============================================================
   SUBPAGE HEADING & HIGHLIGHT STRIP
   ============================================================ */

/* .subpage-heading already defined above; extend with width utility */
.subpage-heading.full-width {
  max-width: none;
}

.highlight-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(255, 190, 168, 0.5), rgba(255, 209, 102, 0.3));
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brown);
  text-align: center;
  margin-top: 20px;
}

/* ============================================================
   EVENT CARD (extended / shared)
   ============================================================ */

.event-card-body {
  padding: 24px;
}

.event-card h3 {
  margin-top: 10px;
  font-size: 1.45rem;
  font-weight: 600;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--brown);
  opacity: 0.8;
}

.event-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  color: var(--brown);
  background: linear-gradient(135deg, var(--blush), #ffe0d3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.limited-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: linear-gradient(135deg, var(--sun), #ffb347);
  color: var(--brown);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 6px;
}

.upcoming-events .event-tag {
  margin-bottom: 12px;
  padding: 7px 13px;
  background: #ededed;
  border: 1px solid #e0e0e0;
  color: #666;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.9),
    inset -1px -1px 0 rgba(206, 206, 206, 0.32);
}

.upcoming-events .limited-tag {
  margin-left: 8px;
  padding: 6px 11px;
  background: #e8e8e8;
  border: 1px solid #dadada;
  color: #707070;
}

.upcoming-events .event-card h3 {
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1.04;
}

.upcoming-events .event-meta {
  margin-top: 14px;
  gap: 8px;
  opacity: 1;
}

.upcoming-events .event-meta span {
  margin: 0;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #dddddd;
  background: #f0f0f0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #666;
}

.upcoming-events .event-card .button {
  margin-top: 20px;
  min-height: 50px;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  color: #525252;
  background: linear-gradient(145deg, #f4f4f4, #e8e8e8);
  border: 1px solid #e9e9e9;
  box-shadow: none;
}

.upcoming-events .event-card .button:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.upcoming-events-carousel {
  margin-top: 36px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.upcoming-events-viewport {
  overflow: hidden;
}

.upcoming-events .upcoming-events-track {
  display: flex;
  margin-top: 0;
  gap: 22px;
  transition: transform 420ms ease;
  will-change: transform;
}

.upcoming-events .upcoming-events-track .event-card {
  flex: 0 0 calc((100% - 22px) / 2);
}

.upcoming-nav-btn {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #e3e3e3;
  background: linear-gradient(145deg, #f4f4f4, #e8e8e8);
  color: #6a6a6a;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.upcoming-nav-btn:hover {
  color: #fff;
  background: #000;
  border-color: #000;
}

.upcoming-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.upcoming-events-carousel::after {
  content: "\2022 \2022 \2022 \2022 \2022 \2022";
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 4px;
  font-size: 0.92rem;
  letter-spacing: 5px;
  color: rgba(122, 122, 122, 0.5);
}

.event-card .button {
  margin-top: 18px;
  width: 100%;
}

/* ============================================================
   FILTER BAR
   ============================================================ */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-top: 28px;
}

.filter-bar select {
  flex: 1 1 160px;
  min-height: 44px;
  padding: 10px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brown);
  font-family: "Barlow Condensed";
  font-size: 0.9rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2349342c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.filter-bar select:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.filter-bar .button-secondary {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 22px;
}

/* ============================================================
   NO RESULTS
   ============================================================ */

.no-results {
  padding: 48px 24px;
  text-align: center;
  color: var(--brown);
  opacity: 0.7;
  font-size: 1rem;
  border: 1px dashed var(--line);
  border-radius: 16px;
  margin-top: 28px;
}

/* ============================================================
   CATEGORY FILTER (Gallery page)
   ============================================================ */

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.category-filter button {
  padding: 9px 20px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brown);
  font-family: "Barlow Condensed";
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms, color 200ms;
}

.category-filter button:hover {
  background: rgba(238, 118, 88, 0.12);
}

.category-filter button.is-active {
  background: linear-gradient(135deg, var(--terracotta), var(--rose));
  color: #fffaf6;
  border-color: transparent;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

#lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--overlay);
  padding: 24px;
}

#lightbox[hidden] {
  display: none;
}

#lightbox figure {
  position: relative;
  max-width: min(900px, 100%);
  max-height: 90vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

#lightbox figcaption,
#lightbox-caption {
  margin-top: 12px;
  color: rgba(255, 253, 249, 0.85);
  font-size: 0.9rem;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 253, 249, 0.15);
  border: 1px solid rgba(255, 253, 249, 0.25);
  border-radius: 50%;
  color: #fffaf6;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 200ms;
  backdrop-filter: blur(6px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 253, 249, 0.28);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================================
   STICKY CTA
   ============================================================ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px max(18px, calc((100% - 1160px) / 2));
  background: rgba(255, 253, 249, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 32px rgba(73, 52, 44, 0.12);
  backdrop-filter: blur(12px);
}

.sticky-cta[hidden] {
  display: none;
}

.sticky-cta-title {
  font-family: "Barlow Condensed";
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
}

@media (max-width: 620px) {
  .sticky-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 18px;
  }

  .sticky-cta .button {
    width: 100%;
  }
}

/* ============================================================
   FLOATING WHATSAPP (site-wide)
   ============================================================ */

.whatsapp-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  z-index: 50;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow:
    0 4px 20px rgba(37, 211, 102, 0.45),
    0 2px 10px rgba(45, 35, 32, 0.18);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  color: #fff;
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--terracotta, #c95e47);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float:hover {
    transform: none;
  }
}

/* ============================================================
   NEWSLETTER FORM
   ============================================================ */

.newsletter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  margin-top: 24px;
}

.newsletter-form input[type="email"] {
  flex: 1 1 240px;
  min-height: 48px;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brown);
  font-family: "Barlow Condensed";
  font-size: 0.95rem;
}

.newsletter-form input[type="email"]:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.newsletter-form .button {
  flex: 0 0 auto;
}

.newsletter-form .form-feedback {
  flex: 1 1 100%;
  margin-top: 4px;
}

/* ============================================================
   CONTACT FORM & FIELD GROUPS
   ============================================================ */

.contact-form-note {
  margin: 0 0 8px;
  font-size: 0.88rem;
  color: var(--brown);
  opacity: 0.88;
}

.field-group {
  display: grid;
  gap: 6px;
}

.field-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brown);
}

.field-group label .required-mark {
  color: var(--terracotta);
  font-weight: 700;
  margin-left: 3px;
}

.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--brown);
  font-family: "Barlow Condensed";
  font-size: 0.95rem;
  transition: border-color 200ms;
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
  border-color: var(--terracotta);
}

.field-group textarea {
  resize: vertical;
  min-height: 120px;
}

.field-group.has-error input,
.field-group.has-error textarea {
  border-color: var(--error);
}

.field-error {
  font-size: 0.82rem;
  color: var(--error);
  font-weight: 600;
}

.field-error[hidden] {
  display: none;
}

/* ============================================================
   FORM FEEDBACK
   ============================================================ */

.form-feedback {
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-feedback[hidden] {
  display: none;
}

.form-feedback.success {
  background: rgba(45, 122, 95, 0.12);
  color: var(--success);
  border: 1px solid rgba(45, 122, 95, 0.25);
}

.form-feedback.error {
  background: rgba(192, 57, 43, 0.1);
  color: var(--error);
  border: 1px solid rgba(192, 57, 43, 0.2);
}

/* ============================================================
   CONTACT GRID
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  margin-top: 36px;
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 20px;
}

.contact-sidebar .info-panel {
  display: grid;
  gap: 14px;
}

.legal-stack {
  display: grid;
  gap: 20px;
}

.legal-stack .info-panel h2 {
  font-size: 1.45rem;
}

.legal-stack .info-panel p {
  margin-top: 10px;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 200ms;
}

.whatsapp-cta:hover {
  background: #1ebe5d;
}

.map-embed {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ITINERARY GRID
   ============================================================ */

.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.itinerary-day {
  padding: 24px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.itinerary-day .day-label {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--terracotta), var(--rose));
  color: #fffaf6;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.itinerary-day h4 {
  margin: 0 0 10px;
  font-family: "Barlow Condensed";
  font-size: 1.1rem;
  font-weight: 600;
}

.itinerary-day ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .itinerary-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE GRID UTILITIES (overrides / additions)
   ============================================================ */

/* Event grid: 3 col â†’ 2 col â†’ 1 col */
@media (max-width: 900px) {
  .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .upcoming-events-carousel {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .upcoming-nav-btn {
    justify-self: center;
  }

  .upcoming-nav-btn.prev {
    order: 2;
  }

  .upcoming-nav-btn.next {
    order: 3;
  }
}

@media (max-width: 620px) {
  .event-grid {
    grid-template-columns: 1fr;
  }

  .upcoming-events .upcoming-events-track .event-card {
    flex-basis: 100%;
  }
}

/* Gallery grid: 4 col â†’ 2 col â†’ 1 col */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bir-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .bir-experience-track {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .home-gallery-card {
    flex-basis: 100%;
    min-height: 250px;
  }
}

/* Why grid: 4-5 col â†’ 2 col â†’ 1 col */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Filter bar stacks on mobile */
@media (max-width: 620px) {
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-bar select,
  .filter-bar .button-secondary {
    width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form .button,
  .newsletter-actions .button {
    width: 100%;
  }
}

/* ============================================================
   HOMEPAGE â€” FEATURED EXPERIENCES (Task 5)
   ============================================================ */

.featured-experiences .event-grid a.event-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  transition: transform 200ms, box-shadow 200ms;
}

.featured-experiences .event-grid a.event-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(201, 123, 99, 0.26);
}

.featured-experiences .event-grid a.event-card-link .event-card {
  height: 100%;
}

/* ============================================================
   WHY SECTION â€” ICON SUPPORT (Task 7)
   ============================================================ */

.why-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px;
}

.why-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 4px;
}

.why-grid article strong {
  font-family: "Barlow Condensed";
  font-size: 1.1rem;
  font-weight: 600;
}

.why-grid article p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ============================================================
   TESTIMONIALS SECTION (Task 9)
   ============================================================ */

.testimonials-carousel {
  margin: 36px auto 0;
  max-width: 1160px;
}

.testimonial-page {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-page.is-active {
  display: grid;
  animation: testimonialFadeIn 420ms ease;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

@keyframes testimonialFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card blockquote {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.testimonial-card blockquote p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--brown);
  font-style: italic;
}

.testimonial-card blockquote p::before {
  content: "\201C";
  color: var(--terracotta);
  font-size: 1.4rem;
  font-family: "Barlow Condensed";
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 2px;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown);
}

.testimonial-event {
  font-size: 0.8rem;
  color: var(--terracotta);
  font-weight: 600;
}

.testimonial-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-dots button {
  width: 28px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(73, 52, 44, 0.22);
}

.testimonial-dots button.is-active {
  background: linear-gradient(135deg, var(--terracotta), var(--rose));
}

@media (max-width: 900px) {
  .testimonial-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .testimonial-page {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 22px;
  }
}

/* ============================================================
   BEFORE YOU JOIN (Task 10a)
   ============================================================ */

.before-join-layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: stretch;
}

.before-join-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.before-join-visual img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.before-join-visual figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  color: #fffaf6;
  font-size: 0.86rem;
  line-height: 1.6;
  background: rgba(73, 52, 44, 0.56);
  border: 1px solid rgba(255, 253, 249, 0.2);
}

.before-join-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.before-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.before-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(201, 123, 99, 0.24);
}

.before-card h3 {
  font-size: 1.08rem;
}

.before-card p {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.75;
}

.before-card-highlight {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 209, 102, 0.24), transparent 28%),
    rgba(255, 253, 249, 0.94);
}

.before-join-cards .before-card:nth-child(2) { transition-delay: 60ms; }
.before-join-cards .before-card:nth-child(3) { transition-delay: 120ms; }
.before-join-cards .before-card:nth-child(4) { transition-delay: 180ms; }
.before-join-cards .before-card:nth-child(5) { transition-delay: 240ms; }
.before-join-cards .before-card:nth-child(6) { transition-delay: 300ms; }

@media (max-width: 900px) {
  .before-join-layout {
    grid-template-columns: 1fr;
  }

  .before-join-visual img {
    min-height: 320px;
    max-height: 400px;
  }
}

@media (max-width: 620px) {
  .before-join-cards {
    grid-template-columns: 1fr;
  }
}

.before-you-join .section-heading.centered {
  margin-inline: auto;
}

.before-you-join .section-heading.centered h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.expect-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.expect-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 350px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.expect-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expect-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 14px;
  color: #fffaf6;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0), rgba(13, 13, 13, 0.86) 64%);
}

.expect-overlay strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.15;
}

.expect-overlay p {
  margin-top: 8px;
  font-size: 0.84rem;
  line-height: 1.6;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .expect-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .expect-cards {
    grid-template-columns: 1fr;
  }

  .expect-card {
    min-height: 270px;
  }

  .before-you-join .section-heading.centered h2 {
    letter-spacing: 0;
  }
}

/* ============================================================
   GIFT SECTION (Task 10b)
   ============================================================ */

.gift-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 84px 26px;
  color: #fffaf6;
  border-radius: 18px;
  border: 1px solid rgba(255, 253, 249, 0.24);
}

.gift-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(73, 52, 44, 0.22), rgba(73, 52, 44, 0.74)),
    radial-gradient(circle at 84% 16%, rgba(255, 209, 102, 0.26), transparent 32%);
}

.gift-content,
.gift-section .hero-actions {
  position: relative;
  z-index: 1;
}

.gift-section .eyebrow,
.gift-section h2,
.gift-section p {
  color: #fffaf6;
}

.gift-mini-points {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.gift-mini-points span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 253, 249, 0.34);
  background: rgba(255, 253, 249, 0.16);
  font-size: 0.84rem;
  font-weight: 600;
}

.gift-section .section-heading {
  margin-inline: auto;
}

/* ============================================================
   NEWSLETTER SECTION (Task 10c)
   ============================================================ */

.newsletter-section {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.newsletter-section .newsletter-form,
.newsletter-section .newsletter-actions {
  justify-content: center;
}

/* ============================================================
  SHARED SUBPAGE HERO BANNER
  ============================================================ */

.page-hero {
  position: relative;
  width: 100%;
  margin: 0;
  min-height: 68vh;
  max-height: 760px;
  display: grid;
  align-items: end;
  padding: 56px max(24px, calc((100% - 1160px) / 2));
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  color: #fffaf6;
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(73, 52, 44, 0.18), rgba(73, 52, 44, 0.72)),
    radial-gradient(circle at 85% 20%, rgba(255, 209, 102, 0.24), transparent 32%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero .eyebrow {
  color: var(--sun);
}

.page-hero h1 {
  color: #fffaf6;
  font-size: clamp(2rem, 5vw, 3.7rem);
  max-width: 900px;
}

.page-hero p {
  margin-top: 12px;
  font-size: 1.02rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .page-hero {
    min-height: 62vh;
    padding: 42px 24px;
  }
}

@media (max-width: 620px) {
  .gift-section {
    padding: 62px 18px;
  }

  .gift-mini-points {
    flex-direction: column;
    align-items: center;
  }

  .gift-mini-points span {
    width: 100%;
    max-width: 320px;
  }

  .page-hero {
    min-height: 56vh;
    max-height: 620px;
    padding: 28px 16px;
  }

  .page-hero p {
    font-size: 0.94rem;
  }
}

/* ============================================================
  HOMEPAGE â€” WHY SECTION REDESIGN
  ============================================================ */

.why-section {
  margin-top: 92px;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.why-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.why-visual img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.why-visual figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  margin: 0;
  padding: 12px 14px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: #fffaf6;
  background: rgba(73, 52, 44, 0.58);
  border: 1px solid rgba(255, 253, 249, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.why-content {
  padding: 30px;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.why-content h2 {
  max-width: 560px;
}

.why-lead {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.85;
}

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.why-points article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.96);
}

.why-points h3 {
  font-size: 1.02rem;
  line-height: 1.2;
}

.why-points p {
  margin-top: 8px;
  font-size: 0.88rem;
  line-height: 1.75;
}

.why-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.why-metrics span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 190, 168, 0.12);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.why-metrics strong {
  font-family: "Barlow Condensed";
  color: var(--brown);
  font-size: 1.05rem;
  line-height: 1.2;
  text-transform: none;
}

@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-visual img {
    min-height: 360px;
    max-height: 420px;
  }
}

@media (max-width: 620px) {
  .why-content {
    padding: 20px;
  }

  .why-points {
    grid-template-columns: 1fr;
  }

  .why-metrics {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
  GALLERY PAGE â€” LONG FORM LAYOUT
  ============================================================ */

.gallery-page-hero {
  text-align: left;
}

.gallery-page-hero p {
  max-width: 900px;
}

.gallery-page-intro {
  margin-top: -18px;
}

.gallery-page-intro p {
  line-height: 1.85;
}

.gallery-page-grid {
  margin-top: 26px;
}

.gallery-page-grid img {
  min-height: 240px;
}

.gallery-story-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 26px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 209, 102, 0.2), transparent 34%),
    rgba(255, 253, 249, 0.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.gallery-story-block p {
  line-height: 1.85;
}

.gallery-story-block img {
  border-radius: 14px;
  min-height: 260px;
  object-fit: cover;
}

.gallery-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.gallery-notes .info-panel {
  padding: 22px;
}

.gallery-notes p {
  margin-top: 8px;
}

.gallery-journey-heading {
  margin-top: 18px;
}

.gallery-journey {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.journey-step {
  padding: 20px;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.journey-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.82rem;
  color: #fffaf6;
  background: linear-gradient(135deg, var(--terracotta), var(--rose));
}

.journey-step h3 {
  margin-top: 12px;
  font-size: 1.08rem;
}

.journey-step p {
  margin-top: 8px;
  font-size: 0.88rem;
  line-height: 1.75;
}

.gallery-long-copy {
  margin-top: 22px;
}

.gallery-long-copy p {
  line-height: 1.85;
}

/* Gallery page â€” unique mosaic, filmstrip, polaroids (body.page-gallery) */
.page-gallery .page-hero {
  position: relative;
}

.page-gallery .page-hero::before {
  z-index: 0;
}

.page-gallery .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(73, 52, 44, 0.12), transparent 42%, rgba(255, 143, 163, 0.08));
}

.page-gallery .page-hero-content {
  z-index: 1;
}

.gallery-page-main {
  padding-bottom: 48px;
}

/* Prevent wide children (filmstrip, IG embeds) from forcing horizontal scroll */
.gallery-page-main > * {
  min-width: 0;
}

.gallery-page-intro-wrap {
  margin-top: -28px;
  position: relative;
  z-index: 1;
}

.gallery-page-intro-panel {
  margin: 0 auto;
  max-width: 900px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 28px 60px rgba(201, 123, 99, 0.16);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255, 209, 102, 0.2), transparent 55%),
    rgba(255, 253, 249, 0.96);
}

.gallery-page-intro-panel h2 {
  margin-top: 4px;
}

.gallery-showcase-heading {
  margin-top: 48px;
}

.gallery-showcase-lead {
  max-width: 520px;
  margin: 10px auto 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(73, 52, 44, 0.82);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.gallery-mosaic-cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fffdf9;
  min-height: 160px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.gallery-mosaic-cell:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 26px 50px rgba(73, 52, 44, 0.18);
}

.gallery-mosaic-cell img {
  width: 100%;
  min-height: 180px;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.gallery-mosaic-feature img {
  max-height: none;
  min-height: 260px;
}

.gallery-mosaic-cell figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fffaf6;
  background: linear-gradient(180deg, transparent, rgba(45, 28, 22, 0.75));
}

.gallery-mosaic-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-mosaic-feature img {
  min-height: 280px;
}

.gallery-mosaic-tall {
  grid-row: span 2;
}

.gallery-mosaic-tall img {
  min-height: 360px;
  max-height: none;
}

.gallery-mosaic-wide {
  grid-column: span 2;
}

.gallery-mosaic-wide img {
  min-height: 200px;
  max-height: 260px;
}

@media (min-width: 780px) {
  .gallery-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .gallery-mosaic-feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-mosaic-wide {
    grid-column: span 3;
  }

  .gallery-mosaic-tall {
    grid-row: span 2;
  }
}

.gallery-filmstrip-section {
  margin-top: 48px;
  padding: 28px 0 8px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.5), rgba(243, 215, 196, 0.35));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.gallery-filmstrip-head {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 0 16px;
  text-align: center;
}

.gallery-filmstrip-sub {
  margin: 8px 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(73, 52, 44, 0.78);
}

.gallery-filmstrip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(16px, calc((100% - 1100px) / 2));
  padding: 12px max(16px, calc((100% - 1100px) / 2)) 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-filmstrip::-webkit-scrollbar {
  display: none;
}

.gallery-filmstrip img {
  flex: 0 0 clamp(200px, 42vw, 280px);
  width: clamp(200px, 42vw, 280px);
  height: clamp(150px, 28vw, 200px);
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid rgba(255, 250, 246, 0.85);
  box-shadow: 0 14px 32px rgba(73, 52, 44, 0.2);
  scroll-snap-align: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-filmstrip img:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 40px rgba(73, 52, 44, 0.24);
}

.gallery-polaroid-strip {
  margin-top: 40px;
  padding: 36px 16px 48px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 209, 102, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.4), rgba(243, 215, 196, 0.25));
}

.gallery-polaroid-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 20px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-polaroid {
  margin: 0;
  padding: 12px 12px 28px;
  background: #fffdf9;
  border-radius: 4px;
  box-shadow:
    0 4px 0 rgba(73, 52, 44, 0.12),
    0 22px 44px rgba(73, 52, 44, 0.15);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  max-width: min(260px, 44vw);
}

.gallery-polaroid:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.02);
  box-shadow:
    0 6px 0 rgba(73, 52, 44, 0.1),
    0 30px 55px rgba(73, 52, 44, 0.2);
}

.gallery-polaroid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(1.05);
}

.gallery-polaroid figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(73, 52, 44, 0.75);
}

.gallery-story-duo {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.gallery-story-duo-photos {
  display: grid;
  gap: 12px;
}

.gallery-story-duo-photos img {
  border-radius: 16px;
  width: 100%;
  min-height: 200px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-notes-glass {
  margin-top: 28px;
}

.gallery-note-card {
  padding: 22px 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 253, 249, 0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(201, 123, 99, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-note-card:hover {
  transform: translateY(-3px);
  border-color: rgba(238, 118, 88, 0.35);
}

.gallery-note-card h3 {
  font-size: 1.12rem;
}

.gallery-journey-visual {
  gap: 16px;
}

.journey-step-visual {
  padding: 12px 0 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.journey-step-photo {
  margin: 0 0 12px;
  height: 140px;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.journey-step-visual .journey-step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.journey-step-visual span {
  margin: 0 20px;
}

.journey-step-visual h3,
.journey-step-visual p {
  margin-left: 20px;
  margin-right: 20px;
}

@media (max-width: 900px) {
  .gallery-mosaic-wide {
    grid-column: 1 / -1;
  }

  .gallery-mosaic-feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-notes {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-journey:not(.gallery-journey-visual) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-story-duo {
    grid-template-columns: 1fr;
  }

  .gallery-journey.gallery-journey-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic-feature,
  .gallery-mosaic-tall,
  .gallery-mosaic-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-mosaic-cell img,
  .gallery-mosaic-feature img,
  .gallery-mosaic-tall img {
    min-height: 220px;
    max-height: 320px;
  }

  .gallery-journey.gallery-journey-visual {
    grid-template-columns: 1fr;
  }

  .journey-step-photo {
    margin: 0 0 10px;
  }

  .gallery-page-intro-wrap {
    margin-top: 0;
  }

  .gallery-story-duo.gallery-story-block {
    padding: 20px;
  }
}

/* ============================================================
   HOMEPAGE MOBILE OPTIMIZATION (Task update)
   ============================================================ */

/* Keep button interaction consistent site-wide */
.button-secondary:hover,
.button:hover,
.newsletter-form .button:hover,
.sticky-cta .button:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: none;
}

@media (max-width: 900px) {
  .upcoming-events-carousel {
    margin-top: 26px;
  }

  .upcoming-events .upcoming-events-track {
    gap: 16px;
  }

  .upcoming-events .upcoming-events-track .event-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .upcoming-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }

  .testimonials-carousel {
    margin-top: 24px;
  }
}

@media (max-width: 620px) {
  .section {
    width: min(1160px, calc(100% - 16px));
    margin-top: 48px;
  }

  .hero {
    min-height: 78vh;
    padding-top: 96px;
    padding-bottom: 44px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 8px;
  }

  .button,
  .nav-button,
  .newsletter-form .button,
  .newsletter-actions .button {
    min-height: 44px;
    padding: 11px 16px;
  }

  .upcoming-events-carousel {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: center;
  }

  .upcoming-events-viewport {
    grid-column: 1 / -1;
    order: 1;
  }

  .upcoming-nav-btn.prev,
  .upcoming-nav-btn.next {
    order: 2;
    justify-self: stretch;
    width: 100%;
    border-radius: 999px;
    height: 40px;
    font-size: 1.2rem;
  }

  .upcoming-events .upcoming-events-track {
    gap: 12px;
  }

  .upcoming-events .upcoming-events-track .event-card {
    flex-basis: 100%;
  }

  .upcoming-events .event-card .event-card-body {
    padding: 18px 16px 20px;
  }

  .upcoming-events .event-card h3 {
    font-size: 1.45rem;
    line-height: 1.1;
  }

  .upcoming-events .event-card .button {
    min-height: 44px;
  }

  .home-gallery-card {
    min-height: 230px;
  }

  .home-gallery-overlay p {
    font-size: 0.78rem;
  }

  .testimonial-card {
    padding: 18px;
  }

  .expect-card {
    min-height: 230px;
  }
}

/* ============================================================
   UPCOMING EVENTS FINAL TUNING
   ============================================================ */

.upcoming-events .event-card {
  background: #fff;
  box-shadow: none;
  transition: border-color 220ms ease;
}

.upcoming-events .event-card:hover {
  transform: none;
  box-shadow: none;
  border-color: #d8d8d8;
}

.upcoming-events .event-card::after,
.upcoming-events-carousel::after {
  content: none;
}

.upcoming-events-carousel {
  margin-top: 30px;
  display: block;
}

.upcoming-events-viewport {
  overflow: visible;
}

.upcoming-events .upcoming-events-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  transform: none !important;
  transition: none;
}

.upcoming-events .upcoming-events-track .event-card {
  flex: initial;
}

.upcoming-events .upcoming-events-track .event-card img {
  aspect-ratio: 4 / 3;
  min-height: 260px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .upcoming-events .upcoming-events-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 620px) {
  .upcoming-events .upcoming-events-track {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ============================================================
   CURRENT EVENT PAGE
   ============================================================ */

.current-event-page {
  padding-bottom: 48px;
}

/* Avoid rare horizontal scroll from full-bleed sections, stats, or embeds. */
body.page-current-event {
  overflow-x: hidden;
  max-width: 100%;
}

html:has(body.page-current-event) {
  overflow-x: hidden;
}

.ce-page-hero .ce-hero-sub {
  margin-top: 8px;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--sun);
  letter-spacing: 0.02em;
}

.ce-page-hero .ce-hero-dates {
  margin-top: 4px;
  font-size: 1rem;
  font-weight: 700;
  color: #fffaf6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ce-section {
  margin-top: 56px;
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.ce-section-lead {
  margin-top: 10px;
  max-width: 640px;
  margin-inline: auto;
  font-size: 0.98rem;
  color: var(--brown);
  opacity: 0.88;
}

.ce-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.ce-intro-copy h2 {
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  color: var(--brown);
  margin-top: 8px;
}

.ce-intro-copy p {
  margin-top: 14px;
}

.ce-icon-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
}

.ce-icon {
  display: inline-block;
  margin-right: 8px;
  color: var(--terracotta);
  font-size: 0.75rem;
  vertical-align: middle;
}

.ce-figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.6);
}

.ce-figure img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  object-fit: cover;
  max-height: 520px;
}

.ce-figure-small img {
  max-height: 200px;
}

.ce-figure-placeholder {
  position: relative;
}

.ce-figure-caption {
  margin: 0;
  padding: 10px 12px;
  font-size: 0.78rem;
  color: var(--brown);
  background: rgba(255, 253, 249, 0.95);
  border-top: 1px dashed var(--line);
}

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

.ce-day-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ce-day-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brown);
  background: rgba(255, 209, 102, 0.35);
  border: 1px solid rgba(216, 94, 69, 0.15);
}

.ce-day-card h3 {
  font-size: 1.15rem;
  color: var(--brown);
}

.ce-day-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--brown);
  opacity: 0.9;
}

.ce-stay-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.ce-stay-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 18px;
}

.ce-subheading {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--terracotta-dark);
}

.ce-bullet-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--brown);
}

.ce-travel-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
}

.ce-travel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.ce-travel-overlay {
  position: relative;
  z-index: 1;
  padding: 32px 28px 36px;
  background: linear-gradient(135deg, rgba(73, 52, 44, 0.82), rgba(45, 35, 32, 0.88));
  color: #fffaf6;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ce-travel-overlay .eyebrow {
  color: var(--sun);
}

.ce-travel-overlay h2 {
  color: #fffaf6;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.ce-travel-dates {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sun);
  font-size: 0.95rem;
}

.ce-travel-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.ce-travel-card {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.1);
  border: 1px solid rgba(255, 253, 249, 0.22);
}

.ce-travel-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  color: #fffaf6;
}

.ce-travel-card ul {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 250, 246, 0.95);
}

.ce-icon-inline {
  margin-right: 6px;
  opacity: 0.85;
}

.ce-travel-note {
  margin: 8px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 209, 102, 0.15);
  border: 1px solid rgba(255, 209, 102, 0.35);
  font-size: 0.88rem;
  line-height: 1.55;
  color: #fff7e6;
}

.ce-pricing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.ce-pricing-visual img {
  max-height: 480px;
}

.ce-pricing-tagline {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: none;
}

.ce-pricing-tagline-text {
  display: inline-block;
  padding: 12px 22px;
  font-size: clamp(1.05rem, 2.4vw, 1.38rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: #3a2b24;
  background: linear-gradient(120deg, rgba(255, 209, 102, 0.75) 0%, rgba(255, 232, 200, 0.95) 45%, rgba(255, 190, 168, 0.55) 100%);
  border-radius: 999px;
  border: 1px solid rgba(216, 94, 69, 0.22);
  box-shadow:
    0 6px 22px rgba(255, 170, 120, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.ce-price-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
}

.ce-price {
  font-size: 1.25rem;
  color: var(--terracotta-dark);
}

.ce-inclusions-section .section-heading.centered {
  max-width: 720px;
  margin-inline: auto;
}

.ce-inclusion-board {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 22px;
  margin-top: 28px;
  align-items: stretch;
}

.ce-inclusion-panel,
.ce-exclusion-panel {
  margin: 0;
  padding: 28px 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.ce-inclusion-panel {
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 240, 220, 0.55) 100%);
  border-left: 5px solid var(--terracotta);
}

.ce-exclusion-panel {
  background: rgba(255, 253, 249, 0.88);
  border-left: 5px solid rgba(73, 52, 44, 0.22);
}

.ce-inclusion-panel-title,
.ce-exclusion-panel-title {
  margin: 0 0 16px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--brown);
}

.ce-exclusion-panel-title {
  color: rgba(73, 52, 44, 0.78);
}

.ce-inclusion-list,
.ce-exclusion-list {
  margin: 0;
}

.ce-exclusion-list {
  opacity: 0.92;
}

.ce-signup-section {
  margin-top: 64px;
  padding-top: 8px;
}

.ce-signup-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.ce-signup-intro h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  color: var(--brown);
}

.ce-signup-panel {
  box-shadow: var(--shadow);
}

.ce-checkbox-field.field-group {
  display: block;
  margin-top: 4px;
}

.ce-checkbox-label {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 12px;
  max-width: 100%;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--brown);
  cursor: pointer;
}

.ce-checkbox-label input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  accent-color: var(--terracotta);
  cursor: pointer;
}

.ce-checkbox-text {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  white-space: normal;
}

.ce-form-feedback {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.ce-form-feedback[hidden] {
  display: none;
}

@media (max-width: 900px) {
  .ce-intro-grid,
  .ce-stay-grid,
  .ce-pricing-inner,
  .ce-signup-grid {
    grid-template-columns: 1fr;
  }

  .ce-stay-columns,
  .ce-inclusion-board,
  .ce-travel-cards {
    grid-template-columns: 1fr;
  }

  .ce-itinerary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .ce-section {
    width: min(1160px, calc(100% - 20px));
    margin-top: 40px;
  }

  .ce-travel-overlay {
    padding: 24px 18px 28px;
    min-height: 0;
  }
}

/* --- Current event: motion, hooks, eye-catching facts --- */

@keyframes ceHeroLine {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ceStatPop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ceGlowPulse {
  0%,
  100% {
    text-shadow: 0 0 12px rgba(255, 209, 102, 0.45);
  }
  50% {
    text-shadow: 0 0 22px rgba(255, 209, 102, 0.75);
  }
}

@keyframes ceKen {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@keyframes ceBorderGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 209, 102, 0.35), 0 12px 40px rgba(73, 52, 44, 0.12);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(255, 209, 102, 0.2), 0 16px 48px rgba(73, 52, 44, 0.16);
  }
}

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

.page-current-event .ce-page-hero .page-hero-content {
  overflow: visible;
}

/* Taller stack (stats + two CTAs) than typical subpage heroes; shared .page-hero max-height clips the second button on phones. */
.page-current-event .page-hero {
  max-height: none;
}

.page-current-event .ce-hero-eyebrow {
  animation: ceHeroLine 0.75s ease backwards;
}

.page-current-event .ce-hero-title {
  animation: ceHeroLine 0.8s ease 0.08s backwards;
}

.page-current-event .ce-hero-tagline {
  margin-top: 14px;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 700;
  font-style: italic;
  color: #fff4d6;
  letter-spacing: 0.02em;
  line-height: 1.35;
  animation: ceHeroLine 0.85s ease 0.16s backwards;
}

.page-current-event .ce-hero-sub {
  margin-top: 10px;
  animation: ceHeroLine 0.85s ease 0.22s backwards;
}

.page-current-event .ce-hero-dates-glow {
  margin-top: 12px;
  font-size: clamp(1.35rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff7cc;
  animation: ceHeroLine 0.9s ease 0.28s backwards, ceGlowPulse 3.2s ease-in-out 1s infinite;
}

.page-current-event .ce-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.page-current-event .ce-hero-stat {
  flex: 1 1 140px;
  min-width: 120px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 253, 249, 0.28);
  backdrop-filter: blur(8px);
  display: grid;
  gap: 4px;
  text-align: center;
  animation: ceStatPop 0.75s ease backwards;
}

.page-current-event .ce-hero-stat:nth-child(1) {
  animation-delay: 0.35s;
}

.page-current-event .ce-hero-stat:nth-child(2) {
  animation-delay: 0.48s;
}

.page-current-event .ce-hero-stat:nth-child(3) {
  animation-delay: 0.6s;
}

.page-current-event .ce-hero-stat-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--sun);
  letter-spacing: 0.04em;
}

.page-current-event .ce-hero-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 250, 246, 0.92);
  line-height: 1.35;
}

.page-current-event .ce-hero-actions {
  margin-top: 26px;
  animation: ceHeroLine 0.85s ease 0.72s backwards;
}

.page-current-event .ce-hero-cta {
  animation: ceCtaPulse 2.4s ease-in-out 1.2s infinite;
}

.page-current-event .ce-travel-bg-anim {
  animation: ceKen 14s ease-out forwards;
}

.page-current-event .reveal-up {
  transition: opacity 820ms cubic-bezier(0.22, 1, 0.36, 1), transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.page-current-event .reveal-up.ce-stagger-1 {
  transition-delay: 0ms;
}

.page-current-event .reveal-up.ce-stagger-2 {
  transition-delay: 110ms;
}

.page-current-event .reveal-up.ce-stagger-3 {
  transition-delay: 220ms;
}

.ce-float-soft {
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.ce-float-soft:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(73, 52, 44, 0.14);
}

.ce-pull-quote {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--terracotta);
  background: linear-gradient(90deg, rgba(255, 209, 102, 0.2), transparent);
  font-size: 1.08rem;
  font-weight: 700;
  font-style: italic;
  color: var(--brown);
  line-height: 1.45;
}

.ce-bold-line {
  margin-top: 14px;
  font-size: 1.02rem;
}

.ce-section-lead-loud {
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 720px;
}

.ce-day-card {
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.ce-day-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 94, 69, 0.35);
  box-shadow: 0 18px 44px rgba(132, 86, 71, 0.12);
}

.ce-micro-hook {
  margin: 10px 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--brown);
}

.ce-travel-dates-big {
  font-size: clamp(0.82rem, 2vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.ce-travel-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 8px;
}

.ce-travel-fact {
  padding: 12px 10px;
  text-align: center;
  border-radius: 12px;
  background: rgba(255, 209, 102, 0.95);
  color: #3d2a22;
  border: 1px solid rgba(73, 52, 44, 0.12);
  display: grid;
  gap: 4px;
}

.ce-travel-fact-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

.ce-travel-fact-time {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

.ce-travel-fact-sub {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.88;
}

.ce-inline-highlight {
  padding: 0 4px;
  border-radius: 4px;
  background: rgba(255, 209, 102, 0.35);
  color: #fffdf9;
}

.ce-travel-overlay .ce-inline-highlight {
  background: rgba(255, 209, 102, 0.92);
  color: #3d2a22;
}

.ce-travel-note-pulse {
  animation: ceBorderGlow 3.5s ease-in-out infinite;
  border-radius: 12px;
}

.ce-price-hook {
  margin: 8px 0 16px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--brown);
}

.ce-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.35), rgba(255, 253, 249, 0.95));
  border: 1px solid rgba(216, 94, 69, 0.2);
}

.ce-price-xl {
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 800;
  color: var(--terracotta-dark);
  letter-spacing: 0.02em;
}

.ce-price-desc {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
  flex: 1 1 200px;
}

.ce-signup-ribbon {
  text-align: center;
  padding: 12px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3d2a22;
  background: linear-gradient(90deg, #ffd166, #ffe08a, #ffd166);
  background-size: 200% 100%;
  animation: ceRibbonShift 4s linear infinite;
  border: 1px solid rgba(73, 52, 44, 0.12);
}

@keyframes ceRibbonShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.ce-signup-section .ce-signup-grid {
  margin-top: 0;
}

.ce-signup-lead {
  margin-top: 12px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--brown);
}

.ce-signup-panel-glow {
  animation: ceBorderGlow 4s ease-in-out infinite;
}

.ce-submit-pulse {
  width: 100%;
  margin-top: 4px;
  animation: ceCtaPulse 2.2s ease-in-out infinite;
}

@media (max-width: 900px) {
  .ce-travel-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .ce-travel-facts {
    grid-template-columns: 1fr 1fr;
  }

  .page-current-event .ce-hero-dates-glow {
    letter-spacing: 0.06em;
  }

  .page-current-event .ce-hero-cta {
    animation: none;
  }

  .ce-submit-pulse {
    animation: none;
  }

  .page-current-event main.subpage.current-event-page {
    width: min(1160px, calc(100% - 20px));
    margin-top: 56px;
    gap: 40px;
  }

  .ce-travel-banner {
    min-height: 300px;
  }

  .ce-travel-overlay {
    min-height: 0;
    gap: 14px;
    padding: 20px 14px 22px;
  }

  .ce-travel-dates-big {
    letter-spacing: 0.02em;
    text-transform: none;
    overflow-wrap: anywhere;
    line-height: 1.5;
  }

  .ce-travel-overlay h2 {
    font-size: clamp(1.35rem, 5.5vw, 2rem);
  }

  .ce-travel-fact-time {
    font-size: 1.2rem;
  }

  .ce-price-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px 14px;
  }

  .ce-price-desc {
    flex: none;
    width: 100%;
  }

  .ce-pricing-tagline-text {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 14px;
    text-align: center;
    padding: 10px 14px;
  }

  .ce-day-card {
    padding: 16px 14px;
  }

  .ce-inclusion-panel,
  .ce-exclusion-panel {
    padding: 20px 16px;
  }

  .ce-travel-card {
    padding: 14px 12px;
  }

  .ce-travel-card ul {
    font-size: 0.86rem;
    padding-left: 0.95rem;
  }

  .page-current-event .info-panel.ce-signup-panel {
    padding: 22px 16px;
  }

  .ce-signup-ribbon {
    font-size: 0.82rem;
    padding-inline: 12px;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  .page-current-event .ce-hero-stats {
    flex-direction: column;
  }

  .page-current-event .ce-hero-stat {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
  }

  .page-current-event .hero-actions.ce-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-current-event .hero-actions.ce-hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .page-current-event .page-hero h1.ce-hero-title {
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
    line-height: 1.1;
  }

  .page-current-event .ce-hero-dates-glow {
    font-size: clamp(1rem, 5vw, 1.45rem);
  }

  .page-current-event .ce-checkbox-text {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-current-event .ce-hero-eyebrow,
  .page-current-event .ce-hero-title,
  .page-current-event .ce-hero-tagline,
  .page-current-event .ce-hero-sub,
  .page-current-event .ce-hero-dates-glow,
  .page-current-event .ce-hero-stat,
  .page-current-event .ce-hero-actions,
  .page-current-event .ce-travel-bg-anim,
  .page-current-event .ce-hero-cta,
  .ce-travel-note-pulse,
  .ce-signup-ribbon,
  .ce-signup-panel-glow,
  .ce-submit-pulse {
    animation: none !important;
  }

  .page-current-event .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
