:root {
  --forest: #1a3c34;
  --forest-deep: #0f2822;
  --sage: #4a7c59;
  --gold: #c9a227;
  --gold-light: #e8c96a;
  --cream: #f7f3eb;
  --cream-dark: #ebe4d6;
  --sand: #d4c4a8;
  --text: #1c2420;
  --muted: #5c6b63;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(15, 40, 34, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.resort-body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.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;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 9999;
  padding: 10px 16px; background: var(--gold); color: var(--forest-deep);
}
.skip-link:focus { left: 12px; top: 12px; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(15, 40, 34, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.site-brand img {
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.site-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.site-brand__text strong { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.site-brand__text small { font-size: 0.7rem; opacity: 0.85; letter-spacing: 0.04em; text-transform: uppercase; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px 22px;
  flex-wrap: wrap;
}
.site-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--gold-light); }
.site-nav__ghost {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
}
.site-nav__cta,
.site-nav__panel {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--forest-deep) !important;
  font-weight: 600;
}
.site-nav__cta:hover { background: var(--gold-light); color: var(--forest-deep) !important; }
.site-nav__panel { background: rgba(255,255,255,0.15); color: var(--white) !important; border: 1px solid rgba(255,255,255,0.3); }

.flash-banner {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 99;
  padding: 12px 0;
  font-size: 0.9rem;
  text-align: center;
}
.flash-banner--success { background: #d1fae5; color: #065f46; }
.flash-banner--error { background: #fee2e2; color: #991b1b; }
.flash-banner--info { background: #e0f2fe; color: #075985; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 40px) 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -8% 0 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 40, 34, 0.45) 0%,
    rgba(15, 40, 34, 0.55) 40%,
    rgba(15, 40, 34, 0.88) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
}
.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__lead {
  font-size: 1.1rem;
  opacity: 0.92;
  max-width: 52ch;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__scroll {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll i {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: var(--gold);
  color: var(--forest-deep);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}
.btn--gold:hover { background: var(--gold-light); }
.btn--outline-light {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); }
.btn--primary {
  background: var(--forest);
  color: var(--white);
}
.btn--primary:hover { background: var(--sage); }
.btn--ghost {
  background: transparent;
  border: 2px solid var(--forest);
  color: var(--forest);
}
.btn--ghost:hover { background: var(--forest); color: var(--white); }
.btn--full { width: 100%; }

/* Booking strip */
.booking-strip {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding-bottom: 40px;
}
.booking-strip__card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--white);
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.booking-strip__intro h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 8px 0 12px;
}
.booking-strip__intro p { color: var(--muted); margin: 0; }
.booking-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-types { margin-top: 32px; }
.booking-types__heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}
.booking-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.booking-type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 210px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(15, 40, 34, 0.1);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.booking-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 40, 34, 0.2);
}
.booking-type-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.booking-type-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s var(--ease);
}
.booking-type-card:hover .booking-type-card__bg {
  transform: scale(1.07);
}
.booking-type-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 40, 34, 0.94) 0%,
    rgba(15, 40, 34, 0.62) 42%,
    rgba(15, 40, 34, 0.12) 100%
  );
  transition: background 0.35s var(--ease);
}
.booking-type-card:hover .booking-type-card__overlay {
  background: linear-gradient(
    to top,
    rgba(15, 40, 34, 0.97) 0%,
    rgba(15, 40, 34, 0.72) 48%,
    rgba(15, 40, 34, 0.22) 100%
  );
}
.booking-type-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
}
.booking-type-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.booking-type-card__link {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.booking-type-card:hover .booking-type-card__link {
  color: var(--white);
}
.booking-types__more { margin-top: 14px; font-size: 0.9rem; }

/* Sections */
.section { padding: 90px 0; }
.section--cream { background: var(--cream); }
.section--dark {
  background: var(--forest-deep);
  color: var(--white);
}
.section--contact {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.section-head p { color: var(--muted); }
.section-head--light p { color: rgba(255,255,255,0.75); }

.muted { color: var(--muted); }
.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}
.text-link:hover { color: var(--gold); }

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.split__media > img:first-child {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.split__float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 55%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 4px solid var(--cream);
}
.split__text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }

/* Activity grid */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(15,40,34,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.activity-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.activity-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.activity-card:hover .activity-card__img img { transform: scale(1.06); }
.activity-card__body { padding: 22px 24px; position: relative; }
.activity-card__time {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}
.activity-card__icon {
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 2rem;
  background: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.activity-card h3 { font-size: 1.35rem; margin: 8px 0 4px; }
.activity-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* Experience cards */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.experience-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.experience-card__img {
  position: absolute;
  inset: 0;
}
.experience-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.experience-card:hover .experience-card__img img { transform: scale(1.08); }
.experience-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(transparent 30%, rgba(15,40,34,0.92) 100%);
  color: var(--white);
}
.experience-card__overlay h3 { font-size: 1.5rem; margin-bottom: 8px; }
.experience-card__overlay p { font-size: 0.9rem; opacity: 0.9; margin-bottom: 12px; }
.experience-card__overlay a {
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}
.experience-card__overlay a:hover { text-decoration: underline; }

/* Testimonial carousel */
.testimonial { background: var(--cream-dark); }
.testimonial-carousel {
  max-width: 820px;
  margin: 0 auto;
}
.testimonial-carousel__viewport {
  position: relative;
  overflow: hidden;
}
.testimonial-carousel__track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.testimonial-carousel__slide {
  flex: 0 0 100%;
  margin: 0;
  padding: 0 56px;
  text-align: center;
}
.testimonial-carousel__quote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 12px;
}
.testimonial-carousel__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--forest);
  margin: 0 0 0.85em;
}
.testimonial-carousel__quote p:last-child {
  margin-bottom: 0;
}
.testimonial-carousel__slide footer {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.testimonial-carousel__slide cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.testimonial-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--forest-deep);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(15, 40, 34, 0.12);
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
}
.testimonial-carousel__arrow:hover {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 10px 28px rgba(15, 40, 34, 0.16);
}
.testimonial-carousel__arrow:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.testimonial-carousel__arrow--prev { left: 0; }
.testimonial-carousel__arrow--next { right: 0; }
.testimonial-carousel__arrow span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-top: 2px solid var(--forest);
  border-right: 2px solid var(--forest);
}
.testimonial-carousel__arrow--prev span { transform: rotate(-135deg) translate(-2px, 2px); }
.testimonial-carousel__arrow--next span { transform: rotate(45deg) translate(-2px, 2px); }
.testimonial-carousel__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.testimonial-carousel__counter {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.testimonial-carousel__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.testimonial-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--sand);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.testimonial-carousel__dot:hover { background: var(--sage); }
.testimonial-carousel__dot.is-active {
  background: var(--forest);
  transform: scale(1.15);
}
.testimonial-carousel__dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--forest); }
.service-card p { font-size: 0.9rem; color: var(--muted); margin: 0; }

.section-head__lead {
  max-width: 52ch;
  margin: 12px auto 0;
}

/* Events carousel */
.events-carousel {
  margin-top: 12px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.events-carousel__viewport {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--forest-deep);
  box-shadow: var(--shadow);
}
.events-carousel__track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.events-carousel__slide {
  flex: 0 0 100%;
  margin: 0;
  aspect-ratio: 16 / 10;
  min-height: 280px;
}
.events-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.events-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--forest-deep);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(15, 40, 34, 0.2);
  transition: transform 0.25s var(--ease), background 0.25s;
}
.events-carousel__arrow:hover {
  transform: translateY(-50%) scale(1.06);
  background: var(--white);
}
.events-carousel__arrow:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.events-carousel__arrow--prev { left: 16px; }
.events-carousel__arrow--next { right: 16px; }
.events-carousel__arrow span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-top: 2px solid var(--forest);
  border-right: 2px solid var(--forest);
}
.events-carousel__arrow--prev span { transform: rotate(-135deg) translate(-2px, 2px); }
.events-carousel__arrow--next span { transform: rotate(45deg) translate(-2px, 2px); }
.events-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 0 4px;
}
.events-carousel__counter {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.events-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.events-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--sand);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.events-carousel__dot:hover { background: var(--sage); }
.events-carousel__dot.is-active {
  background: var(--gold);
  transform: scale(1.25);
}
.events-carousel__dot:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
}

/* Gallery */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 12px;
}
.gallery-mosaic__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-mosaic__item:hover img { transform: scale(1.05); }
.gallery-mosaic__item--wide { grid-column: span 2; }
.gallery-mosaic__item--tall { grid-row: span 2; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-grid h2 { font-size: 2rem; margin: 8px 0 16px; color: var(--white); }
.contact-grid .muted { color: rgba(255,255,255,0.75); }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.contact-list li {
  margin-bottom: 16px;
  padding-left: 0;
}
.contact-list strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.contact-list a { color: var(--white); }
.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.social-links a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
}
.social-links a:hover { text-decoration: underline; }
.contact-cta-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(8px);
}
.contact-cta-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 12px; }
.contact-cta-card p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }

/* Footer */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.site-footer__brand img { margin-bottom: 16px; border-radius: 50%; }
.site-footer__brand p { font-size: 0.95rem; opacity: 0.85; max-width: 32ch; }
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 2;
}
.site-footer ul a:hover { color: var(--gold-light); }
.site-footer__contact a { color: var(--white); }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { aspect-ratio: 16/10; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split__float { position: relative; bottom: auto; right: auto; width: 70%; margin: -40px auto 0; }
  .events-carousel__slide { min-height: 240px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--forest-deep);
    flex-direction: column;
    padding: 24px;
    gap: 12px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease), opacity 0.35s, visibility 0.35s;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .booking-strip__card { grid-template-columns: 1fr; padding: 28px 24px; }
  .events-carousel__slide { aspect-ratio: 4 / 3; min-height: 200px; }
  .events-carousel__arrow {
    width: 40px;
    height: 40px;
  }
  .events-carousel__arrow--prev { left: 10px; }
  .events-carousel__arrow--next { right: 10px; }
  .events-carousel__footer {
    flex-direction: column;
    align-items: center;
  }
  .testimonial-carousel__slide { padding: 0 44px; }
  .testimonial-carousel__arrow {
    width: 38px;
    height: 38px;
  }
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-mosaic__item--wide,
  .gallery-mosaic__item--tall { grid-column: span 1; grid-row: span 1; }
  .gallery-mosaic__item { min-height: 180px; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll { animation: none; }
  .hero__bg { transform: none !important; }
  .events-carousel__track { transition: none; }
  .testimonial-carousel__track { transition: none; }
  .events-carousel__arrow:hover { transform: translateY(-50%); }
  .testimonial-carousel__arrow:hover { transform: translateY(-50%); }
}
