/* ================================================================
   AAMBY VALLEY CITY — Premium Redesign
   Inspired by: Taj, Hyatt, Marriott luxury hotel aesthetics
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@200;300;400;500;600&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark: #8B6914;
  --ivory: #FAF7F2;
  --ivory-deep: #F2EDE4;
  --charcoal: #1C1C1A;
  --charcoal-mid: #2E2D29;
  --warm-gray: #6B6558;
  --cream: #FFFDF9;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'EB Garamond', Georgia, serif;
  --font-ui: 'Montserrat', sans-serif;
  --nav-h: 96px;
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  overflow-x: clip;
  min-width: 320px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
p,
li,
.stat-label,
.venue-spec,
.restaurant-meta-value,
.contact-detail p,
.footer-col ul a {
  overflow-wrap: anywhere;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ── Typography ─────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--charcoal);
  margin-top: 0.5rem;
}

.section-subtitle {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--warm-gray);
  margin-top: 1rem;
  max-width: 560px;
}

/* ── Gold Divider ───────────────────────────────────────────── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1.25rem 0;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
}

.gold-divider span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.gold-divider.centered {
  justify-content: center;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  min-height: 44px;
  line-height: 1.2;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-ghost-dark {
  background: rgba(28, 28, 26, 0.06);
  color: var(--charcoal);
  border: 1px solid rgba(28, 28, 26, 0.12);
}

.btn-ghost-dark:hover {
  background: rgba(28, 28, 26, 0.12);
  color: var(--charcoal);
}

/* ── Navigation ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--charcoal);
  transition: background 0.5s ease, box-shadow 0.5s ease;
  padding: 0 4%;
}

.navbar.transparent {
  background: linear-gradient(to bottom, rgba(15, 14, 12, 0.72) 0%, transparent 100%);
  box-shadow: none;
}

.navbar.scrolled {
  background: var(--charcoal);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.08em;
}

.nav-logo-sub {
  font-family: var(--font-ui);
  font-size: 7px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
}

.nav-links li {
  flex: 0 0 auto;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: auto;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  background: var(--gold);
  min-height: 44px;
  padding: 0 28px;
  transition: background 0.3s, transform 0.3s;
}

.nav-cta:hover {
  background: var(--gold-light);
  color: var(--charcoal) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.float-book {
  display: none !important;
}

/* ── Desktop / laptop tuning before menu collapse ───────────── */
@media (max-width: 1440px) {
  .navbar {
    padding: 0 2.8%;
  }

  .nav-inner {
    gap: 1.35rem;
  }

  .nav-logo-svg,
  .nav-logo-svg svg,
  .nav-logo-svg img {
    height: 70px;
  }

  .nav-links {
    gap: 1.45rem;
  }

  .nav-links a {
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 22px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }
}

@media (max-width: 1260px) {
  .navbar {
    padding: 0 2.2%;
  }

  .nav-inner {
    gap: 1rem;
  }

  .nav-logo-svg,
  .nav-logo-svg svg,
  .nav-logo-svg img {
    height: 64px;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 9.25px;
    letter-spacing: 0.11em;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 18px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 44px;
  min-width: 44px;
  height: 44px;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.2s ease;
  margin: 0 auto;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--charcoal);
  z-index: 1001;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow-y: auto;
  padding: 0.3rem 0 0;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
  display: flex;
  animation: menuSlide 0.3s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes menuSlide {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
  transition: color 0.25s, padding-left 0.25s;
  padding: 0.85rem max(1rem, 5%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: block;
  text-align: left;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--gold-light);
  padding-left: calc(max(1rem, 5%) + 8px);
}

.mobile-menu a.mobile-enquire {
  color: var(--gold-light);
}

/* Book Now inside mobile menu */
.mobile-menu .mobile-book {
  margin: 1rem max(1rem, 5%);
  background: var(--gold);
  color: var(--charcoal) !important;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center !important;
  padding: 12px max(1rem, 5%) !important;
  border-bottom: none !important;
}

.mobile-menu .mobile-book:hover {
  background: var(--gold-dark);
  color: var(--white) !important;
  padding-left: max(1rem, 5%) !important;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: auto;
  min-height: 600px;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
  transform: scale(1.04);
  transition: opacity 1.8s ease, transform 8s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(15, 14, 12, 0.3) 0%,
      rgba(15, 14, 12, 0.15) 40%,
      rgba(15, 14, 12, 0.55) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  padding-top: var(--nav-h);
  padding-bottom: max(56px, env(safe-area-inset-bottom));
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 1s 1.4s forwards;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: max(28px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: fadeIn 2s 2s both;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
  animation: scrollLine 2s 2s infinite;
}

.hero-dots {
  position: absolute;
  bottom: max(32px, env(safe-area-inset-bottom));
  right: 5%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-dot {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s, height 0.3s;
}

.hero-dot.active {
  height: 36px;
  background: var(--gold);
}

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  position: relative;
  height: auto;
  min-height: 400px;
  min-height: clamp(320px, 60svh, 620px);
  min-height: clamp(320px, 60dvh, 620px);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 24px);
  padding-bottom: clamp(40px, 8vw, 70px);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 14, 12, 0.2), rgba(15, 14, 12, 0.65));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero-content .eyebrow {
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.page-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  font-weight: 300;
}

/* ── Sections ───────────────────────────────────────────────── */
.section {
  padding: 100px 5%;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header.centered .section-subtitle {
  text-align: center;
}

/* ── Feature Grid (Home) ────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--gold-light);
}

.feature-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--charcoal);
  cursor: pointer;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
  filter: brightness(0.75);
}

.feature-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.55);
}

.feature-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(15, 14, 12, 0.85) 0%, transparent 100%);
  transition: padding 0.4s;
}

.feature-card:hover .feature-card-content {
  padding-bottom: 2.5rem;
}

.feature-card-content h3 {
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 300;
}

.feature-card-content p {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s, margin 0.4s;
}

.feature-card:hover .feature-card-content p {
  max-height: 80px;
  margin-top: 0.75rem;
}

.feature-link {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s 0.1s;
}

.feature-card:hover .feature-link {
  max-height: 30px;
  margin-top: 0.75rem;
}

/* ── Parallax Split Section ─────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(520px, 70vh, 720px);
}

.split-image {
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s linear;
}

.split-content {
  background: var(--ivory);
  display: flex;
  align-items: center;
  padding: 80px 8%;
}

.split-content-inner {
  max-width: 480px;
}

.split-content p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  margin-top: 1.5rem;
  line-height: 1.85;
}

.split-content.dark {
  background: var(--charcoal);
}

.split-content.dark .section-title {
  color: var(--white);
}

.split-content.dark .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.split-content.dark p {
  color: rgba(255, 255, 255, 0.65);
}

.split-section--home-intro {
  min-height: clamp(480px, 62vh, 620px);
}

.split-section--home-intro .split-content-inner {
  max-width: 520px;
}

.split-section--home-intro .section-title {
  max-width: 12ch;
}

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--charcoal);
  padding: 60px 5%;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
}

.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(201, 169, 110, 0.2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.75rem;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials {
  background: var(--ivory-deep);
  padding: 100px 5%;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s var(--transition);
}

.testimonial-card {
  flex: 0 0 calc(50% - 1rem);
  background: var(--white);
  padding: 3rem;
  border-left: 2px solid var(--gold);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
}

.testimonial-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--charcoal);
}

.testimonial-name {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.testimonial-origin {
  font-family: var(--font-ui);
  font-size: 10px;
  color: var(--warm-gray);
  margin-top: 2px;
}

/* ── Gallery Grid ───────────────────────────────────────────── */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 4px;
}

.gal-item {
  overflow: hidden;
  position: relative;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.4s;
  filter: brightness(0.9);
}

.gal-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.7);
}

.gal-item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
}

.gal-item:nth-child(2) {
  grid-column: span 4;
}

.gal-item:nth-child(3) {
  grid-column: span 3;
}

.gal-item:nth-child(4) {
  grid-column: span 4;
}

.gal-item:nth-child(5) {
  grid-column: span 3;
}

.gal-item:nth-child(6) {
  grid-column: span 7;
}

.gal-item:nth-child(7) {
  grid-column: span 5;
}

/* ── Venue Cards ────────────────────────────────────────────── */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.venue-card {
  position: relative;
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.4s;
}

.venue-card:hover {
  transform: translateY(-6px);
}

.venue-card-img {
  height: 280px;
  overflow: hidden;
}

.venue-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.venue-card:hover .venue-card-img img {
  transform: scale(1.06);
}

.venue-card-body {
  padding: 2rem;
}

.venue-card-body h3 {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.venue-card-body p {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-top: 0.75rem;
  line-height: 1.7;
}

.venue-specs {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ivory-deep);
}

.venue-spec {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.venue-spec strong {
  display: block;
  font-size: 11px;
  color: var(--charcoal);
  margin-bottom: 2px;
}

/* ── Accommodation Cards ────────────────────────────────────── */
.accom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.accom-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.accom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.accom-card:hover img {
  transform: scale(1.06);
}

.accom-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 14, 12, 0.9) 0%, transparent 55%);
}

.accom-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem;
}

.accom-card-content h3 {
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 300;
}

.accom-card-content p {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.5rem;
}

.accom-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-top: 1rem;
}

/* ── Dining ─────────────────────────────────────────────────── */
.dining-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.dining-card {
  background: var(--white);
  overflow: hidden;
}

.dining-card-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.dining-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.dining-card:hover .dining-card-img img {
  transform: scale(1.05);
}

.dining-card-body {
  padding: 1.75rem;
  border: 1px solid var(--ivory-deep);
  border-top: none;
}

.dining-tag {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--ivory-deep);
  padding: 4px 12px;
  display: inline-block;
}

.dining-card-body h3 {
  font-size: 1.5rem;
  margin-top: 0.75rem;
}

/* ── Contact Form ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 0;
  min-height: 600px;
}

.contact-info {
  background: var(--charcoal);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: var(--white);
}

.contact-detail {
  margin-top: 2.5rem;
}

.contact-detail-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-detail p {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

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

.contact-office-card {
  min-width: 0;
}

.contact-office-title {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.contact-office-card p {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.link-contact-accent {
  color: var(--gold);
  text-decoration: none;
}

.link-contact-accent:hover,
.link-contact-accent:focus-visible {
  color: var(--gold-light);
}

.contact-reservation-banner {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  align-items: stretch;
  gap: 1.5rem;
  padding: 1.45rem 1.6rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(188, 145, 45, 0.75);
  color: var(--gold-light);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.contact-reservation-pane {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
}

.contact-reservation-pane--sales {
  align-items: flex-start;
  text-align: left;
}

.contact-reservation-divider {
  width: 1px;
  background: rgba(188, 145, 45, 0.32);
  align-self: stretch;
}

.contact-reservation-banner span {
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.contact-reservation-banner strong {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

.contact-reservation-banner a {
  color: var(--gold-light);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-reservation-banner a:hover,
.contact-reservation-banner a:focus-visible {
  color: var(--gold);
}

.contact-map-card {
  position: relative;
  margin-top: 1.4rem;
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(188, 145, 45, 0.42);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.contact-map-card iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  filter: grayscale(0.08) saturate(0.95) contrast(1.02);
}

.contact-map-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(28, 28, 26, 0) 56%, rgba(28, 28, 26, 0.42) 100%);
}

.contact-map-link span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(28, 28, 26, 0.82);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}

@media (max-width: 1360px) {
  .contact-reservation-banner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-reservation-pane,
  .contact-reservation-pane--sales {
    align-items: center;
    text-align: center;
  }

  .contact-reservation-divider {
    width: 100%;
    height: 1px;
  }
}

.contact-form-wrap {
  background: var(--ivory);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 1px solid rgba(107, 101, 88, 0.2);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

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

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal-mid);
  padding: 80px 5% 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
}

.footer-brand p {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-family: var(--font-ui);
}

.footer-col ul a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-social {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 0.85rem;
}

.footer-social-label {
  display: block;
  flex: 0 0 100%;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-right: 0;
  margin-bottom: 0.15rem;
}

.footer-social a,
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s;
  position: relative;
}

.footer-social a:hover,
.footer-social a:focus-visible,
.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--gold-light);
  border-color: rgba(201, 169, 110, 0.45);
  background: rgba(201, 169, 110, 0.1);
  transform: translateY(-1px);
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.footer-logo-wrap img {
  width: auto;
  height: 84px;
  max-width: min(100%, 228px);
}

.footer-brand .footer-brand-divider {
  margin: 1.2rem 0;
}

.footer-brand-cta {
  margin-top: 1.75rem;
}

.footer-brand-book {
  font-size: 9px;
  padding: 12px 28px;
}

.footer-address {
  display: inline-block;
  font-family: var(--font-ui);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer-social--spaced {
  margin-top: 1.5rem;
}

.site-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(20px, env(safe-area-inset-top)) max(20px, 4vw) max(20px, env(safe-area-inset-bottom));
  background: rgba(10, 10, 10, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.site-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-popup__dialog {
  position: relative;
  width: min(90vw, 540px);
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.28s ease;
}

.site-popup.is-open .site-popup__dialog {
  transform: translateY(0) scale(1);
}

.site-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(28, 28, 26, 0.55);
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.site-popup__media {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
}

.site-popup__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-bottom p.footer-disclaimer {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ── Parallax helper ─────────────────────────────────────────── */
.parallax-section {
  position: relative;
  min-height: clamp(360px, 58svh, 560px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.parallax-bg {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 14, 12, 0.58);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 5%;
}

.parallax-content h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 300;
}

.parallax-content p {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  margin: 1rem auto 2.5rem;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  background: var(--ivory-deep);
  padding: 14px 5%;
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
}

.breadcrumb a {
  color: var(--warm-gray);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--gold-dark);
}

.breadcrumb span {
  color: var(--charcoal);
}

.breadcrumb--hero {
  background: transparent;
  padding: 0.95rem 0 0;
}

.breadcrumb--hero .breadcrumb-inner {
  max-width: none;
  margin: 0;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.035em;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb--hero a,
.breadcrumb--hero span {
  color: rgba(255, 255, 255, 0.92);
}

.breadcrumb--hero a:hover,
.breadcrumb--hero a:focus-visible {
  color: var(--gold-light);
}

.stay-switcher {
  background: var(--ivory-deep);
  padding: 0 5% 18px;
  border-top: 1px solid rgba(201, 160, 83, 0.12);
}

.stay-switcher-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.stay-switcher-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.stay-switcher-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 28, 26, 0.14);
  background: rgba(255, 255, 255, 0.72);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.stay-switcher-pill:hover,
.stay-switcher-pill:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(201, 160, 83, 0.55);
  color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(28, 28, 26, 0.08);
}

.stay-switcher-pill.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 10px 24px rgba(201, 160, 83, 0.22);
}

.stay-switcher--inline {
  padding: 0 5% 8px;
  border-top: 0;
}

.stay-switcher--inline .stay-switcher-inner {
  max-width: 1260px;
}

.stay-switcher--inline .stay-switcher-track {
  gap: 1.3rem;
}

.stay-switcher-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(28, 28, 26, 0.72);
  white-space: nowrap;
  transition: color 0.25s ease;
}

.stay-switcher-link:hover,
.stay-switcher-link:focus-visible {
  color: var(--gold-dark);
}

.stay-switcher-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: rgba(201, 160, 83, 0.32);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease, background-color 0.25s ease, height 0.25s ease;
}

.stay-switcher-link.is-active {
  color: var(--charcoal);
}

.stay-switcher-link.is-active::after,
.stay-switcher-link:hover::after,
.stay-switcher-link:focus-visible::after {
  transform: scaleX(1);
}

.stay-switcher-link.is-active::after {
  height: 2px;
  background: var(--gold);
}

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

  .stay-switcher {
    padding: 0 0 16px;
  }

  .stay-switcher-inner {
    max-width: none;
  }

  .stay-switcher-track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.8rem;
    width: 100%;
    overflow-x: auto;
    padding: 0 5% 0.35rem;
    scrollbar-width: none;
  }

  .stay-switcher-track::-webkit-scrollbar {
    display: none;
  }

  .stay-switcher--inline {
    padding: 0 0 10px;
  }

  .stay-switcher--inline .stay-switcher-track {
    gap: 1rem;
    padding-bottom: 0.5rem;
  }

  .stay-switcher-link,
  .stay-switcher-pill {
    flex: 0 0 auto;
  }

  .stay-switcher-link {
    font-size: 0.8rem;
    letter-spacing: 0.07em;
  }

  .contact-office-grid {
    gap: 1.6rem;
  }

  .contact-reservation-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .contact-reservation-pane,
  .contact-reservation-pane--sales {
    align-items: center;
    text-align: center;
  }

  .contact-reservation-divider {
    width: 100%;
    height: 1px;
  }
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── Booking Bar ─────────────────────────────────────────────── */
.booking-bar {
  background: var(--charcoal);
  padding: 28px 5%;
  position: relative;
  z-index: 10;
}

.booking-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 1px;
  align-items: stretch;
}

.booking-field {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-field:last-of-type {
  border-right: none;
}

.booking-field label {
  display: block;
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.booking-field input,
.booking-field select {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--white);
  width: 100%;
}

.booking-field select option {
  background: var(--charcoal);
}

.booking-submit {
  background: var(--gold);
  border: none;
  padding: 0 36px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.3s;
}

.booking-submit:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* ── Award Strip ─────────────────────────────────────────────── */
.awards-strip {
  background: var(--ivory-deep);
  padding: 40px 5%;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.awards-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.award-icon {
  font-size: 1.8rem;
  color: var(--gold);
}

.award-label {
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-align: center;
}

/* ── MICE / Adventure specifics ─────────────────────────────── */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.package-card {
  background: var(--white);
  padding: 2.5rem;
  border-top: 2px solid var(--gold);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s, box-shadow 0.4s;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.package-card h3 {
  font-size: 1.4rem;
  margin-top: 0.5rem;
}

.package-card p {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-top: 0.75rem;
  line-height: 1.7;
}

.package-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.package-feature {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-feature::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Golf specifics ─────────────────────────────────────────── */
.golf-holes {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 2px;
  background: var(--gold-light);
  padding: 2px;
}

.golf-hole {
  background: var(--charcoal);
  padding: 16px 8px;
  text-align: center;
}

.golf-hole-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
}

.golf-hole-par {
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET, MOBILE, ALL BREAKPOINTS
   ═══════════════════════════════════════════════════════════════ */

/* ── Desktop large (1280px+): nav doesn't wrap ───────────────── */
@media (max-width: 1280px) {
  .nav-links {
    gap: 1.8rem;
  }

  .nav-links a {
    font-size: 10.5px;
    letter-spacing: 0.12em;
  }

  .float-book {
    padding: 11px 18px;
    font-size: 9.5px;
  }
}

/* ── Tablet landscape (1024px) ───────────────────────────────── */
@media (max-width: 1024px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 380px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .golf-holes {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-links {
    gap: 1.4rem;
  }

  .nav-links a {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .nav-logo-svg,
  .nav-logo-svg svg,
  .nav-logo-svg img {
    height: 65px;
  }

  .float-book {
    font-size: 9px;
    padding: 10px 16px;
    letter-spacing: 0.15em;
  }
}

/* ── Tablet portrait / laptop compact: collapse nav to hamburger ─ */
@media (max-width: 1180px) {

  /* Hide nav links, show hamburger */
  .nav-links {
    display: none !important;
  }

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

  .float-book {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  :root {
    --nav-h: 74px;
  }

  .navbar {
    padding-left: max(18px, 5vw);
    padding-right: max(14px, 4vw);
  }

  .nav-inner {
    gap: 0.75rem;
  }

  .nav-logo {
    max-width: calc(100vw - 94px);
  }

  .nav-logo-svg,
  .nav-logo-svg svg,
  .nav-logo-svg img {
    width: min(100%, 260px);
    height: auto;
  }

  .hamburger {
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 6px;
    gap: 5px;
  }

  .hamburger span {
    width: 20px;
  }

  .hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    padding-top: 0.25rem;
  }

  .mobile-menu a {
    font-size: 1.2rem;
    padding: 0.72rem max(1rem, 5%);
  }

  .mobile-menu a:hover,
  .mobile-menu a:active {
    padding-left: calc(max(1rem, 5%) + 8px);
  }

  .mobile-menu .mobile-book {
    margin: 0.85rem max(1rem, 5%);
  }

  /* Page hero shorter on tablet */
  .page-hero {
    height: auto;
    min-height: clamp(320px, 46svh, 420px);
    min-height: clamp(320px, 46dvh, 420px);
  }

  /* Splits stay stacked */
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-content {
    padding: 60px 6%;
  }

  .split-section--home-intro {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    min-height: clamp(400px, 48vw, 520px);
  }

  .split-section--home-intro .split-image {
    min-height: 100%;
  }

  .split-section--home-intro .split-content {
    padding: 48px 5.5%;
  }

  .split-section--home-intro .section-title {
    font-size: clamp(2.15rem, 4.8vw, 3.5rem);
  }

  .split-section--home-intro .split-content p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  /* Features grid: 2 columns */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    aspect-ratio: 4/3;
  }

  /* Venue / package grids */
  .venue-grid,
  .accom-grid,
  .dining-grid,
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Stats */
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Section padding */
  .section {
    padding: 70px 5%;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* Stat items */
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  /* Hero */
  .hero {
    min-height: 520px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
  }

  .hero-subtitle {
    font-size: 0.68rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  /* Gallery masonry on tablet */
  .gal-item:nth-child(1) {
    grid-column: span 12;
  }

  .gal-item:nth-child(2),
  .gal-item:nth-child(3) {
    grid-column: span 6;
  }

  .gal-item:nth-child(4),
  .gal-item:nth-child(5) {
    grid-column: span 6;
  }

  .gal-item:nth-child(6),
  .gal-item:nth-child(7) {
    grid-column: span 12;
  }
}

/* ── Mobile (max 600px) ──────────────────────────────────────── */
@media (max-width: 600px) {
  :root {
    --nav-h: 92px;
  }

  .navbar {
    padding-top: max(10px, env(safe-area-inset-top));
    padding-bottom: 10px;
  }

  .nav-inner {
    align-items: center;
  }

  .nav-logo {
    max-width: calc(100vw - 108px);
  }

  .nav-logo-svg,
  .nav-logo-svg svg,
  .nav-logo-svg img {
    width: min(100%, 272px);
    height: auto;
  }

  .hamburger {
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 5px;
    gap: 4px;
  }

  .hamburger span {
    width: 18px;
    height: 1.5px;
  }

  .hamburger.is-open span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .mobile-menu {
    padding-top: 0.15rem;
  }

  .mobile-menu a {
    font-size: 1.08rem;
    padding: 0.58rem max(1rem, 5%);
  }

  .mobile-menu a:hover,
  .mobile-menu a:active {
    padding-left: calc(max(1rem, 5%) + 6px);
  }

  .mobile-menu .mobile-book {
    margin: 0.75rem max(1rem, 5%);
    padding: 11px max(1rem, 5%) !important;
    font-size: 9.5px;
  }

  /* Section padding tighter */
  .section {
    padding: 56px 4%;
  }

  /* Hero */
  .hero {
    min-height: 460px;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 0.3em;
  }

  .hero-subtitle {
    font-size: 0.65rem;
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .hero-actions .btn {
    min-width: 220px;
    text-align: center;
    width: min(100%, 320px);
    padding: 14px 28px;
    font-size: 9px;
  }

  /* Page hero */
  .page-hero {
    height: auto;
    min-height: clamp(260px, 42svh, 340px);
    min-height: clamp(260px, 42dvh, 340px);
    padding-bottom: 48px;
  }

  .page-hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  /* Features: single column */
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    aspect-ratio: 3/2;
  }

  /* Accommodations, dining, packages: 1 col */
  .accom-grid {
    grid-template-columns: 1fr;
  }

  .accom-card {
    aspect-ratio: 3/2;
  }

  .dining-grid {
    grid-template-columns: 1fr;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .venue-grid {
    grid-template-columns: 1fr;
  }

  /* Stats: 2 cols on phone */
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2.4rem;
  }

  /* Section title */
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.6rem);
  }

  /* Testimonials */
  .testimonial-card {
    flex: 0 0 calc(92% - 1rem);
    padding: 1.5rem;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  /* Parallax: disable fixed on mobile for performance */
  .parallax-bg {
    background-attachment: scroll;
  }

  .page-hero {
    background-attachment: scroll;
  }

  /* Hero dots: hide on mobile, too cramped */
  .hero-dots {
    display: none;
  }

  /* Hero scroll: move up slightly */
  .hero-scroll {
    bottom: 24px;
  }

  .hero-scroll-line {
    height: 28px;
  }

  /* Split sections */
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-content {
    padding: 48px 4%;
  }

  .split-content-inner p {
    font-size: 0.92rem;
  }

  .split-section--home-intro {
    min-height: 0;
  }

  .split-section--home-intro .split-content {
    order: 1;
    padding: 42px 5%;
  }

  .split-section--home-intro .split-image {
    order: 2;
    min-height: 300px;
  }

  .split-section--home-intro .section-title {
    max-width: none;
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 48px 4%;
  }

  .contact-form-wrap {
    padding: 48px 4%;
  }

  .contact-office-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-reservation-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .contact-reservation-pane,
  .contact-reservation-pane--sales {
    align-items: center;
    text-align: center;
  }

  .contact-reservation-divider {
    width: 100%;
    height: 1px;
  }

  .contact-map-card,
  .contact-map-card iframe {
    min-height: 240px;
    height: 240px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer {
    padding: 60px 4% 32px;
  }

  /* Awards */
  .awards-inner {
    gap: 1.5rem;
  }

  .award-item {
    width: calc(50% - 1rem);
  }

  /* Golf holes */
  .golf-holes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Gallery full: 2 cols on phone */
  .gallery-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }

  .gal-filter-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    gap: 8px;
    padding: 4px 4px 10px;
    max-width: none;
    scrollbar-width: none;
  }

  .gal-filter-inner::-webkit-scrollbar {
    height: 0;
  }

  .gal-filter-btn {
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* Gallery masonry home */
  .gal-item:nth-child(1) {
    grid-column: span 12;
  }

  .gal-item:nth-child(2),
  .gal-item:nth-child(3) {
    grid-column: span 6;
  }

  .gal-item:nth-child(4),
  .gal-item:nth-child(5) {
    grid-column: span 6;
  }

  .gal-item:nth-child(6),
  .gal-item:nth-child(7) {
    grid-column: span 12;
  }

  /* Booking bar hidden */
  .booking-bar {
    display: none !important;
  }

  /* Room detail grids */
  [style*="grid-template-columns:1.2fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns:1fr 1.3fr"],
  [style*="grid-template-columns:1.3fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Inline stats boxes in room pages */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:1rem"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Very small (max 380px) ──────────────────────────────────── */
@media (max-width: 380px) {
  .hero {
    min-height: 420px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  }

  .awards-inner {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .award-item {
    width: 100%;
  }

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

/* ═══════════════════════════════════════════════════════════════
   NAV — LOGO & BOOK NOW INLINE
   ═══════════════════════════════════════════════════════════════ */

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-svg {
  height: 77px;
  width: auto;
  display: block;
}

.nav-logo-svg svg {
  height: 77px;
  width: auto;
}

.nav-logo-svg img {
  height: 77px;
  width: auto;
  display: block;
}

/* ── Nav link shadow on home (hero has it, inner pages don't) ── */
.hero .nav-links a,
.hero~* .nav-links a {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

/* ── Book Now button in nav ──────────────────────────────────── */
.float-book {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal) !important;
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 24px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.float-book:hover {
  background: var(--gold-dark);
  color: #fff !important;
}

/* Hidden below 900px — hamburger takes over */
@media (max-width: 900px) {
  .float-book {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   NAV LINK TEXT SHADOW — desktop only, over dark navbar/hero
   ═══════════════════════════════════════════════════════════════ */
.navbar .nav-links a {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY FILTER & FULL GRID
   ═══════════════════════════════════════════════════════════════ */
.gal-filter-bar {
  background: var(--charcoal);
  padding: 16px max(20px, 4%) 18px;
  padding-left: max(20px, 4%, env(safe-area-inset-left));
  padding-right: max(20px, 4%, env(safe-area-inset-right));
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.gal-filter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.gal-filter-btn {
  font-family: var(--font-ui);
  font-size: clamp(9px, 1.1vw, 11px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 20px;
  min-height: 44px;
  cursor: pointer;
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.2s;
  border-radius: 2px;
}

.gal-filter-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gal-filter-btn.active,
.gal-filter-btn:hover {
  color: var(--charcoal);
  background: var(--gold);
  border-color: var(--gold);
}

.gal-filter-btn:active {
  transform: scale(0.98);
}

.gallery-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(6px, 1vw, 14px);
  padding: clamp(10px, 2vw, 20px) clamp(16px, 4%, 40px) clamp(40px, 6vw, 72px);
  padding-left: max(clamp(16px, 4%, 40px), env(safe-area-inset-left));
  padding-right: max(clamp(16px, 4%, 40px), env(safe-area-inset-right));
  background: var(--charcoal-mid);
  min-height: 50vh;
}

.gal-full-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  min-height: 0;
  border-radius: 3px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.gal-full-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  z-index: 2;
}

.gal-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.35s ease;
  filter: brightness(0.92);
}

.gal-full-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.78);
}

.gal-full-item.hidden {
  display: none;
}

.gal-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15, 14, 12, 0.82));
  padding: 1.75rem 0.85rem 0.65rem;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .gal-full-item:hover .gal-item-caption {
    opacity: 1;
  }
}

@media (hover: none), (pointer: coarse) {
  .gal-item-caption {
    opacity: 1;
    padding: 1.35rem 0.65rem 0.5rem;
    font-size: 9px;
    background: linear-gradient(transparent, rgba(15, 14, 12, 0.9));
  }

  .gal-full-item:hover img {
    transform: none;
    filter: brightness(0.92);
  }
}

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 8, 0.96);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
}

.lightbox.open {
  display: flex;
}

.lb-img-wrap {
  position: relative;
  max-width: min(92vw, 1400px);
  max-height: min(88vh, 1200px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap img {
  max-width: 100%;
  width: auto;
  max-height: min(78vh, 1000px);
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
}

.lb-caption {
  font-family: var(--font-ui);
  font-size: clamp(9px, 1.2vw, 11px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.85rem;
  text-align: center;
  max-width: 90vw;
  line-height: 1.4;
}

.lb-close {
  position: fixed;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2001;
  opacity: 0.9;
  transition: opacity 0.2s, background 0.2s;
}

.lb-close:hover {
  opacity: 1;
  background: rgba(201, 169, 110, 0.25);
}

.lb-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 4px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
  z-index: 2001;
}

.lb-prev {
  left: max(12px, env(safe-area-inset-left));
}

.lb-next {
  right: max(12px, env(safe-area-inset-right));
}

.lb-prev:hover,
.lb-next:hover {
  background: rgba(201, 169, 110, 0.35);
  border-color: rgba(201, 169, 110, 0.55);
}

.lb-prev:focus-visible,
.lb-next:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width:600px) {
  .lb-img-wrap img {
    max-height: 70vh;
  }

  .lb-prev {
    left: max(6px, env(safe-area-inset-left));
    padding: 8px 10px;
    font-size: 1.5rem;
    min-width: 40px;
    min-height: 40px;
  }

  .lb-next {
    right: max(6px, env(safe-area-inset-right));
    padding: 8px 10px;
    font-size: 1.5rem;
    min-width: 40px;
    min-height: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

/* Stagger hero content in */
.hero-eyebrow {
  opacity: 0;
  animation: fadeUp 0.9s 0.4s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero-title {
  opacity: 0;
  animation: fadeUp 0.9s 0.65s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero-subtitle {
  opacity: 0;
  animation: fadeUp 0.9s 0.85s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero-actions {
  opacity: 0;
  animation: fadeUp 0.9s 1.05s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero-scroll {
  opacity: 0;
  animation: fadeIn 1s 1.6s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

/* Page hero content fade in */
.page-hero-content {
  opacity: 0;
  animation: fadeUp 0.8s 0.3s cubic-bezier(.22, 1, .36, 1) forwards;
}

/* Scroll reveal — slide up + fade */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(.22, 1, .36, 1), transform 0.75s cubic-bezier(.22, 1, .36, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Feature card — image scale on hover */
.feature-card {
  transition: box-shadow 0.4s;
}

.feature-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Stat numbers count-up feel */
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  transition: transform 0.4s;
}

.stat-item:hover .stat-number {
  transform: scale(1.05);
}

/* Parallax scroll on hero dots */
.hero-dot {
  transition: height 0.4s, background 0.4s;
}

/* Gold divider line animation */
.gold-divider.centered::before,
.gold-divider.centered::after {
  transition: max-width 0.6s cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible .gold-divider.centered::before,
.reveal.visible .gold-divider.centered::after {
  max-width: 80px;
}

/* Smooth image reveal on load */
img {
  transition: opacity 0.5s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded,
img:not([loading]) {
  opacity: 1;
}

/* Nav link hover underline animation already defined above */

/* Button micro-interaction */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn:active::before {
  width: 200%;
  height: 500%;
}

/* Scroll indicator pulse */
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
  animation: scrollPulse 2s 1.8s infinite;
}

/* ── Remove any leftover booking bar ─────────────────────────── */
.booking-bar {
  display: none !important;
}

/* ── Inline-grid overrides for room/restaurant detail pages ── */
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 5rem;
  align-items: start;
}

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

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

@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stat-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-grid-2 {
    grid-template-columns: 1fr;
  }

  .stat-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══ Migrated from HTML inline styles (site-wide) ═══ */

.section--ivory {
  background: var(--ivory);
}

.section--charcoal {
  background: var(--charcoal);
}

.section--pb0 {
  padding-bottom: 0;
}

.section--pt-compact {
  padding-top: 0;
}

.section-subtitle--center {
  text-align: center;
  margin: 0 auto;
}

.eyebrow--light {
  color: var(--gold-light);
}

.eyebrow--on-dark {
  color: var(--gold);
}

.section-title--white {
  color: var(--white);
}

.em-italic {
  font-style: italic;
}

.intro-lede {
  margin-top: 1rem;
}

.split-actions {
  margin-top: 2.5rem;
}

.split-actions--sm {
  margin-top: 2rem;
}

.detail-grid--balanced {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .detail-grid--balanced {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.room-detail-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-detail-img--stack {
  margin-top: 4px;
}

.room-detail-lede {
  font-family: var(--font-ui);
  color: var(--warm-gray);
  margin-top: 1rem;
  line-height: 1.78;
  font-size: 0.94rem;
}

.room-detail-body {
  font-family: var(--font-ui);
  color: var(--warm-gray);
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.76;
}

.room-detail-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.room-detail-list--compact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.room-detail-list li,
.room-detail-list--compact li {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--charcoal);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.room-detail-bullet {
  color: var(--gold);
  flex-shrink: 0;
}

.room-detail-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.features-grid--spaced {
  margin-top: 60px;
}

.features-grid--tight {
  margin-top: 2px;
}

.feature-card .eyebrow.eyebrow--light {
  color: var(--gold-light);
}

.parallax-section--offset-top {
  margin-top: 80px;
}

.parallax-title-em {
  font-style: italic;
  color: var(--gold-light);
}

.gallery-masonry--spaced {
    margin-top: 50px;
}

.cta-row-center {
  text-align: center;
  padding: 60px 0;
}

.testimonial-slider-wrap {
  overflow: hidden;
  margin-top: 50px;
}

.parallax-actions-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-slide--home-1 {
  background-image: url("../assets/Home/avc-home-1.webp");
}

.hero-slide--home-2 {
  background-image: url("../assets/Home/avc-home-2.webp");
}

.hero-slide--home-3 {
  background-image: url("../assets/Home/avc-home-3.webp");
}

.hero-slide--home-4 {
  background-image: url("../assets/Home/avc-home-4.webp");
}

.parallax-bg--home-1 {
  background-image: url("../assets/Home/avc-home-parallax-1.webp");
}

.parallax-bg--home-2 {
  background-image: url("../assets/Home/avc-home-parallax-2.webp");
}

.page-hero--aussie-room {
  background-image: url("../assets/room-aussie/avc-stay-aussieroom-hero.webp");
}

.parallax-bg--aussie-room {
  background-image: url("../assets/room-aussie/avc-aussieroom-parallax.webp");
}

.page-hero--burmese {
  background-image: url("../assets/burmesechalet/avc-stay-burmesechalet-hero.webp");
}

.parallax-bg--burmese {
  background-image: url("../assets/burmesechalet/avc-burmesechalet-parallax.webp");
}

.page-hero--hermitage {
  background-image: url("../assets/hermitage/avc-stay-hermitage-hero.webp");
}

.parallax-bg--hermitage {
  background-image: url("../assets/hermitage/avc-hermitage-parallax.webp");
}

.page-hero--hermitage-b {
  background-image: url("../assets/stay/avc-stay-sections-Hermitage B-Hero.webp");
}

.parallax-bg--hermitage-b {
  background-image: url("../assets/stay/avc-stay-sections-Hermitage B-3.webp");
}

.page-hero--hermitage-c {
  background-image: url("../assets/stay/avc-stay-sections-Hermitage C-Hero.webp");
}

.parallax-bg--hermitage-c {
  background-image: url("../assets/stay/avc-stay-sections-Hermitage C-3.webp");
}

.page-hero--spanish {
  background-image: url("../assets/spanishcottages/avc-stay-spanish-hero.webp");
}

.parallax-bg--spanish {
  background-image: url("../assets/spanishcottages/avc-spanish-parallax.webp");
}

.page-hero--cabana {
  background-image: url("../assets/cabana/avc-stay-cabana-hero.webp");
}

.parallax-bg--cabana {
  background-image: url("../assets/cabana/avc-cabana-parallax.webp");
}

.page-hero--supreme {
  background-image: url("../assets/supremecottages/avc-stay-supreme-hero.webp");
}

.parallax-bg--supreme {
  background-image: url("../assets/supremecottages/avc-supreme-parallax.webp");
}

.page-hero--aussie-suite {
  background-image: url("../assets/aussiesuite/avc-stay-aussiesuite-hero.webp");
}

.parallax-bg--aussie-suite {
  background-image: url("../assets/aussiesuite/avc-aussiesuite-parallax.webp");
}

.page-hero--stay {
  background-image: url("../assets/stay/avc-stay-hero.webp");
}

.parallax-bg--stay {
  background-image: url("../assets/stay/avc-parallax-stay.webp");
}

.page-hero--dine {
  background-image: url("../assets/Dine/avc-dine-hero.webp");
}

.parallax-bg--dine-parallax {
  background-image: url("https://www.aambyvalley.com/images/dinning/4.jpeg");
}

.page-hero--wedding {
  background-image: url("../assets/Wedding/avc-wedding-inner-hero.webp");
}

.parallax-bg--wedding {
  background-image: url("../assets/Wedding/avc-wedding-inner-hero.webp");
}

.page-hero--mice {
  background-image: url("../assets/mice/avc-mice-auditorium-outdoor.webp");
}

.page-hero--adventure {
  background-image: url("../assets/adventure/avc-experiences-inner-hero.webp");
}

.parallax-bg--adventure {
  background-image: url("../assets/adventure/avc-parallax-experience.webp");
}

.page-hero--golf {
  background-image: url("../assets/gallery/avc-Golf.webp");
}

.parallax-bg--golf {
  background-image: url("../assets/gallery/avc-Golf-2.webp");
}

.page-hero--wetlands {
  background-image: url("../assets/water sports/avc-watersports-inner-hero.webp");
}

.parallax-bg--wetlands {
  background-image: url("../assets/water sports/avc-watersports-inner-hero.webp");
}

.page-hero--connectivity {
  background-image: url("../assets/connectivity/avc-connectivity-inner-hero.webp");
}

.page-hero--gallery {
  background-image: url("../assets/gallery/avc-nightview.webp");
}

.page-hero--contact {
  background-image: url("https://www.aambyvalley.com/images/carousel/1.jpg");
}

.page-hero--offers {
  background-image: linear-gradient(rgba(28, 28, 26, 0.34), rgba(28, 28, 26, 0.5)), url("../assets/offers/avc-offers-inner-hero.webp");
}

.page-hero--around-aamby {
  background-image:
    linear-gradient(rgba(28, 28, 26, 0.22), rgba(28, 28, 26, 0.58)),
    url("../assets/around aamby/avc-aroundaamby-scenicbase-sahyadris.webp");
}

.page-hero--lakefront {
    background-image: url("../assets/Dine/avc-dine-lakefrontcafe-hero.webp");
}

.page-hero--legend {
    background-image: url("../assets/Dine/avc-dine-legend-hero.webp");
}

.page-hero--woodpecker {
  background-image: url("../assets/Dine/avc-dine-woodpecker-hero.webp");
}

.page-hero--mabruk {
    background-image: url("../assets/Dine/avc-dine-mabruk-hero.webp");
}

.wedding-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  margin-top: 60px;
}

.wedding-stat-cell {
  background: var(--charcoal);
  padding: 2.5rem;
  text-align: center;
}

.wedding-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold-light);
  font-weight: 300;
}

.wedding-stat-label {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

.wedding-film-section {
  padding-top: 36px;
}

.wedding-film-frame {
  margin-top: 52px;
  border: 1px solid rgba(28, 28, 26, 0.08);
  background: #141412;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.wedding-film-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0d0d0c;
}

.split-section--stack {
  margin-top: 2px;
}

.venue-specs--dark {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.venue-spec--dark {
  color: rgba(255, 255, 255, 0.5);
}

.venue-spec--dark strong {
  color: var(--white);
}

.split-dark-p {
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  line-height: 1.74;
}

.connectivity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 60px;
}

.package-card--center {
  text-align: center;
  padding: 3rem 2rem;
}

.connectivity-card {
  position: relative;
  min-height: 100%;
  padding: 3.25rem 2.25rem 2.8rem;
  border-top: 1px solid rgba(188, 145, 45, 0.95);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 241, 0.92));
  box-shadow: 0 24px 44px rgba(17, 15, 10, 0.06);
  overflow: hidden;
}

.connectivity-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(188, 145, 45, 0.12);
  pointer-events: none;
}

.connectivity-card .eyebrow,
.connectivity-card .package-card-title,
.connectivity-card .package-card-body {
  position: relative;
  z-index: 1;
}

.connectivity-card .eyebrow {
  margin-bottom: 1.15rem;
}

.package-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.package-card-title {
  font-size: 1.4rem;
  margin-top: 0.5rem;
  color: var(--gold-dark);
  font-weight: 500;
}

.package-card-body {
  margin-top: 0.75rem;
}

.connectivity-card .package-card-title {
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 0;
}

.connectivity-card .package-card-body {
  max-width: 23ch;
  margin: 1rem auto 0;
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(66, 62, 54, 0.92);
}

.around-hero-copy {
  max-width: 860px;
}

.around-hero-subtitle {
  margin-top: 1rem;
  max-width: 44rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  line-height: 1.86;
  color: rgba(255, 255, 255, 0.82);
}

.around-intro-grid {
  gap: 4rem;
}

.around-intro-visual img {
  min-height: 100%;
  box-shadow: 0 30px 60px rgba(17, 15, 10, 0.1);
}

.around-snapshot-section {
  position: relative;
  overflow: hidden;
}

.around-snapshot-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(201, 169, 110, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(201, 169, 110, 0.08), transparent 30%);
  pointer-events: none;
}

.around-snapshot-grid,
.around-places-grid,
.around-itinerary-grid,
.around-tips-grid {
  position: relative;
  z-index: 1;
}

.around-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.around-snapshot-card {
  padding: 1.6rem 1.45rem 1.45rem;
  border: 1px solid rgba(232, 213, 163, 0.18);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.around-snapshot-card h3 {
  font-size: 1.25rem;
  color: var(--white);
}

.around-snapshot-card p {
  margin-top: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gold-light);
}

.around-snapshot-card span {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.around-disclaimer {
  margin-top: 1.25rem;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
}

.around-places-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.around-inline-note {
  margin-top: 0.4rem;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  color: var(--warm-gray);
}

.around-place-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(28, 28, 26, 0.08);
  box-shadow: 0 24px 48px rgba(17, 15, 10, 0.06);
}

.around-place-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.around-place-body {
  padding: 1.6rem;
}

.around-place-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.around-distance {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(201, 169, 110, 0.35);
  background: rgba(201, 169, 110, 0.08);
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  white-space: nowrap;
}

.around-place-card h3 {
  margin-top: 0.75rem;
  font-size: 2.05rem;
  color: var(--charcoal);
}

.around-place-copy {
  margin-top: 0.9rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--warm-gray);
}

.around-place-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(28, 28, 26, 0.08);
}

.around-place-meta span {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.around-place-meta p {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--charcoal-mid);
}

.around-itinerary-section {
  padding-top: 0;
}

.around-itinerary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.around-itinerary-card {
  padding: 1.7rem 1.7rem 1.55rem;
  border: 1px solid rgba(28, 28, 26, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 242, 0.92));
  box-shadow: 0 20px 45px rgba(17, 15, 10, 0.05);
}

.around-itinerary-card h3 {
  margin-top: 0.7rem;
  font-size: 1.9rem;
  line-height: 1.18;
  color: var(--charcoal);
}

.around-itinerary-card p:last-child {
  margin-top: 0.9rem;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--warm-gray);
}

.around-tips-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.around-tip-card {
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(232, 213, 163, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.around-tip-card p {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.76);
}

.around-cta-section {
  padding-top: 0;
}

.around-cta-card {
  padding: 4rem 4.5rem;
  border: 1px solid rgba(28, 28, 26, 0.08);
  background: linear-gradient(180deg, #fffdf9 0%, #f5efe5 100%);
  box-shadow: 0 24px 56px rgba(17, 15, 10, 0.08);
  text-align: center;
}

.around-cta-card .section-subtitle {
  max-width: 42rem;
}

.around-cta-actions {
  justify-content: center;
}

@media (max-width: 1100px) {
  .around-snapshot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .around-places-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .around-tips-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

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

  .around-cta-card {
    padding: 3rem 2rem;
  }
}

@media (max-width: 700px) {
  .around-hero-subtitle {
    font-size: 0.84rem;
    line-height: 1.78;
  }

  .around-snapshot-grid,
  .around-places-grid,
  .around-tips-grid {
    grid-template-columns: 1fr;
  }

  .around-place-topline,
  .around-place-meta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .around-place-topline {
    justify-content: flex-start;
  }

  .around-distance {
    width: fit-content;
  }
}

.offers-preview-section {
  padding-top: 84px;
}

.offers-preview-layout,
.offers-showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.18fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
  margin-top: 56px;
}

.offers-lead-card {
  position: relative;
  padding: clamp(2rem, 4vw, 3.4rem);
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(28, 28, 26, 0.1), rgba(28, 28, 26, 0.62)),
    url("../assets/Home/avc-home-split.webp") center/cover no-repeat;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.12);
}

.offers-lead-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.offers-lead-card>* {
  position: relative;
  z-index: 1;
}

.offers-kicker {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.offers-highlight {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.25rem);
  line-height: 0.96;
  font-weight: 300;
}

.offers-highlight strong {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-ui);
  font-size: 0.33em;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.offers-lead-copy {
  max-width: 36ch;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.85;
}

.offers-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

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

.offer-card {
  background: var(--white);
  border: 1px solid rgba(28, 28, 26, 0.08);
  padding: 1.7rem 1.5rem;
  box-shadow: 0 20px 48px rgba(28, 28, 26, 0.06);
}

.offer-card--accent {
  background: var(--charcoal);
  border-color: rgba(188, 145, 45, 0.38);
  color: var(--white);
}

.offer-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.offer-card-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.offer-card h3 {
  margin-top: 0.95rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.offer-card p {
  margin-top: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.82;
}

.offer-card--accent p {
  color: rgba(255, 255, 255, 0.74);
}

.offer-card-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.offer-card-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.72;
}

.offer-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateY(-50%);
}

.offer-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.2rem;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(188, 145, 45, 0.25);
  background: rgba(188, 145, 45, 0.08);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.offers-meal-card {
  margin-top: 20px;
  padding: clamp(1.8rem, 4vw, 2.75rem);
  border: 1px solid rgba(28, 28, 26, 0.08);
  background: linear-gradient(180deg, rgba(188, 145, 45, 0.06), rgba(255, 255, 255, 0.96));
}

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

.offers-meal-option {
  padding: 1.25rem 1.2rem;
  border: 1px solid rgba(188, 145, 45, 0.24);
  background: rgba(255, 255, 255, 0.84);
}

.offers-meal-option strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.offers-meal-option span {
  display: block;
  margin-top: 0.6rem;
  color: var(--warm-gray);
  line-height: 1.72;
}

.offer-anchor-target {
  scroll-margin-top: 120px;
}

.link-accent-dark {
  color: var(--gold-dark);
}

.offers-editorial {
  position: relative;
  overflow: hidden;
  padding-top: 62px;
  background:
    radial-gradient(circle at top center, rgba(188, 145, 45, 0.12), transparent 32%),
    linear-gradient(180deg, #fffdf9 0%, #f8f3eb 100%);
}

.offers-editorial::after {
  content: "";
  position: absolute;
  top: 42px;
  right: 18px;
  width: min(16vw, 180px);
  aspect-ratio: 1;
  background: center/contain no-repeat url("../avc-logo.svg");
  opacity: 0.035;
  pointer-events: none;
}

.offers-editorial .section-inner {
  position: relative;
  z-index: 1;
}

.offers-editorial-header {
  max-width: 980px;
  margin: 0 auto;
  margin-bottom: 34px;
}

.offers-editorial-title {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

.offers-editorial-header .section-subtitle {
  max-width: 56ch;
}

.offers-rail-shell {
  position: relative;
  margin-top: 8px;
  padding: 0 54px 18px;
  overflow: visible;
}

.offers-editorial-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 23.5%);
  gap: 18px;
  margin-top: 36px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 14px 8px 54px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(188, 145, 45, 0.4) transparent;
}

.offers-editorial-rail::-webkit-scrollbar {
  height: 8px;
}

.offers-editorial-rail::-webkit-scrollbar-thumb {
  background: rgba(188, 145, 45, 0.34);
  border-radius: 999px;
}

.offers-editorial-rail::-webkit-scrollbar-track {
  background: transparent;
}

.offers-media-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(188, 145, 45, 0.12);
  box-shadow: 0 18px 44px rgba(28, 28, 26, 0.08);
  scroll-snap-align: start;
}

.offers-rail-nav {
  position: absolute;
  top: calc(50% - 10px);
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(188, 145, 45, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--charcoal);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(28, 28, 26, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
}

.offers-rail-nav-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.offers-rail-nav:hover,
.offers-rail-nav:focus-visible {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 14px 28px rgba(28, 28, 26, 0.12);
  border-color: rgba(188, 145, 45, 0.56);
}

.offers-rail-nav:disabled {
  opacity: 0.42;
}

.offers-rail-nav--prev {
  left: -8px;
}

.offers-rail-nav--next {
  right: -8px;
}

.offers-media-card--featured {
  transform: translateY(1px);
}

.offers-media-frame {
  position: relative;
  aspect-ratio: 1.03 / 0.9;
  background: #ebe4d8;
  overflow: hidden;
}

.offers-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.offers-media-card:hover .offers-media-frame img {
  transform: scale(1.04);
}

.offers-media-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.7rem;
  border-radius: 11px;
  background: rgba(16, 16, 14, 0.78);
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offers-media-chip--gold {
  background: rgba(188, 145, 45, 0.98);
  color: var(--white);
}

.offers-media-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.1rem 1.2rem;
}

.offers-media-kicker {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.offers-media-body h3 {
  margin-top: 0.35rem;
  font-size: clamp(1.3rem, 1.5vw, 1.95rem);
  line-height: 1.08;
  color: var(--gold-dark);
  font-weight: 500;
}

.offers-media-body p {
  margin-top: 0.7rem;
  font-family: var(--font-ui);
  color: var(--warm-gray);
  line-height: 1.62;
  font-size: 0.82rem;
}

.offers-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 1.35rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(188, 145, 45, 0.42);
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.offers-card-cta::after {
  content: "›";
  margin-left: 10px;
  font-size: 1rem;
  line-height: 1;
}

.offers-card-cta:hover {
  background: rgba(188, 145, 45, 0.08);
}

.offers-card-cta--gold {
  background: rgba(188, 145, 45, 0.96);
  border-color: rgba(188, 145, 45, 0.96);
  color: var(--white);
}

.offers-card-cta--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.offers-view-all {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.offers-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.offers-view-all-link::after {
  content: "›";
  font-size: 1rem;
}

.offers-meal-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.7fr);
  gap: 24px;
  margin-top: 44px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(188, 145, 45, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(28, 28, 26, 0.06);
}

.offers-meal-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.offers-meal-seal {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(188, 145, 45, 0.56);
  color: var(--gold-dark);
  font-size: 1.2rem;
}

.offers-meal-intro h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.offers-meal-intro .gold-divider {
  margin-top: 1.2rem;
}

.offers-meal-intro p {
  max-width: 28ch;
  margin-top: 1.2rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.72;
}

.offers-meal-band-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.offers-meal-feature {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(188, 145, 45, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(28, 28, 26, 0.07);
}

.offers-meal-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.offers-meal-feature-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.45rem 1.5rem;
}

.offers-meal-feature-copy h3 {
  font-size: clamp(1.8rem, 1.9vw, 2.15rem);
  line-height: 1.06;
  color: var(--gold-dark);
  font-weight: 500;
}

.offers-meal-subline {
  margin-top: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  color: var(--charcoal);
}

.offers-meal-feature-copy p {
  margin-top: 0.9rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.68;
}

.offers-meal-feature .offers-card-cta {
  margin-top: auto;
  padding-top: 0.75rem;
}

.offers-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
}

.offers-trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0.8rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--charcoal);
  border-right: 1px solid rgba(188, 145, 45, 0.16);
}

.offers-trust-item:last-child {
  border-right: 0;
}

.offers-trust-glyph {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(188, 145, 45, 0.08);
  border: 1px solid rgba(188, 145, 45, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.offers-trust-glyph svg {
  width: 18px;
  height: 18px;
  display: block;
}

.btn-download-row {
  margin-top: 2rem;
  display: inline-block;
}

.mice-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.06);
}

.mice-cta-center {
  text-align: center;
  margin-top: 3rem;
}

.dining-grid--spaced {
  margin-top: 60px;
}

.dining-card-cta {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 1rem;
  display: block;
}

.accom-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.accom-grid--spaced {
  margin-top: 60px;
}

.rest-split-actions {
  margin-top: 2rem;
}

.contact-eyebrow-gold {
  color: var(--gold);
}

.contact-hero-title {
  font-size: 2.5rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 300;
  margin-top: 0.5rem;
}

.gold-divider--contact-info {
  margin: 1.5rem 0;
}

.link-contact-muted {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-title {
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 300;
  margin-top: 0.5rem;
}

.gold-divider--form {
  margin: 1.25rem 0;
}

.btn--block {
  width: 100%;
  text-align: center;
}

.form-footnote {
  font-family: var(--font-ui);
  font-size: 9px;
  color: var(--warm-gray);
  margin-top: 1rem;
  text-align: center;
}

.btn-contact-sent {
  background: var(--gold-dark) !important;
  color: #fff !important;
}

.form-status {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 2px;
}

.form-status--success {
  background: rgba(188, 145, 45, 0.12);
  color: var(--charcoal);
  border: 1px solid rgba(188, 145, 45, 0.35);
}

.form-status--error {
  background: rgba(160, 48, 48, 0.08);
  color: #6b2020;
  border: 1px solid rgba(160, 48, 48, 0.25);
}

.form-footnote-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-footnote-link:hover,
.form-footnote-link:focus-visible {
  color: var(--gold-dark);
}

.contact-enquiries-section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.contact-enquiries-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-enquiries-status {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin: 1.5rem 0 0;
}

.contact-enquiries-status--ok {
  color: var(--charcoal);
}

.contact-enquiries-status--error {
  color: #6b2020;
}

.contact-enquiries-table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
  border: 1px solid rgba(28, 28, 26, 0.1);
  background: var(--white);
}

.contact-enquiries-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  min-width: 720px;
}

.contact-enquiries-table th,
.contact-enquiries-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(28, 28, 26, 0.08);
}

.contact-enquiries-table th {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  background: var(--ivory);
}

.contact-enquiries-table td a {
  color: var(--gold-dark);
  word-break: break-all;
}

.contact-enquiries-table tbody tr:hover {
  background: rgba(188, 145, 45, 0.05);
}

@media (max-width: 768px) {
  .contact-enquiries-table {
    min-width: 0;
  }

  .contact-enquiries-table thead {
    display: none;
  }

  .contact-enquiries-table tbody tr {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(28, 28, 26, 0.1);
  }

  .contact-enquiries-table tbody td {
    display: block;
    border: none;
    padding: 0.35rem 1rem;
  }

  .contact-enquiries-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 0.2rem;
  }
}

.restaurant-lede {
  color: var(--warm-gray);
  margin-top: 1rem;
  line-height: 1.85;
}

.restaurant-hours {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .connectivity-card {
    padding: 2.85rem 1.8rem 2.45rem;
  }

  .connectivity-card .package-card-body {
    max-width: 28ch;
  }

  .offers-editorial-rail {
    grid-auto-columns: minmax(290px, 56%);
  }

  .offers-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offers-trust-item:nth-child(2n) {
    border-right: 0;
  }

  .wedding-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wedding-film-frame {
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .connectivity-grid {
    gap: 1.35rem;
  }

  .connectivity-card {
    padding: 2.45rem 1.5rem 2.15rem;
  }

  .connectivity-card::before {
    inset: 10px;
  }

  .connectivity-card .eyebrow {
    margin-bottom: 0.95rem;
  }

  .connectivity-card .package-card-title {
    font-size: 1.9rem;
  }

  .connectivity-card .package-card-body {
    max-width: none;
    font-size: 0.84rem;
    line-height: 1.8;
  }

  .wedding-stats-grid {
    grid-template-columns: 1fr;
  }

  .wedding-film-section {
    padding-top: 24px;
  }

  .wedding-film-frame {
    margin-top: 32px;
  }
}

.section--cream {
  background: var(--cream);
}

.golf-holes--spaced {
  margin-top: 50px;
}

.adventure-activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.04);
}

.act2 {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.act2-icon {
  font-size: 2rem;
  color: var(--gold);
}

.act2-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 300;
  margin-top: 0.5rem;
}

.act2-desc {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.4rem;
  line-height: 1.6;
}

.adventure-cta-center {
  text-align: center;
  margin-top: 3rem;
}

.experience-jump-nav {
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.experience-jump-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.15rem;
  border: 1px solid rgba(28, 28, 26, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.experience-jump-link:hover,
.experience-jump-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(197, 166, 104, 0.45);
  box-shadow: 0 14px 24px rgba(28, 28, 26, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.experience-stack {
  margin-top: clamp(2rem, 4vw, 3.3rem);
  display: grid;
  gap: clamp(24px, 3vw, 36px);
}

.experience-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  grid-template-areas: "media copy";
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
  min-height: clamp(460px, 44vw, 620px);
  padding: clamp(28px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(28, 28, 26, 0.08);
  box-shadow: 0 0 0 rgba(28, 28, 26, 0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: clip;
  scroll-margin-top: 120px;
}

.experience-card:hover,
.experience-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(197, 166, 104, 0.26);
  box-shadow: 0 24px 52px rgba(28, 28, 26, 0.12);
}

.experience-card--reverse {
  grid-template-columns: minmax(340px, 430px) minmax(0, 1fr);
  grid-template-areas: "copy media";
}

.experience-copy {
  grid-area: copy;
  max-width: 430px;
  width: 100%;
  min-width: 0;
  justify-self: start;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(6px, 1vw, 14px);
}

.experience-copy .eyebrow {
  margin-bottom: 0.9rem;
}

.experience-copy--no-eyebrow {
  padding-top: clamp(28px, 3vw, 40px);
}

.experience-media-shell {
  grid-area: media;
  min-width: 0;
  width: 100%;
  max-width: none;
  justify-self: start;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.experience-card--reverse .experience-media-shell {
  justify-content: flex-end;
}

.experience-copy .section-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4.6vw, 4.35rem);
  line-height: 1.02;
  text-wrap: balance;
  max-width: 10ch;
}

.experience-copy .gold-divider {
  margin: 1.3rem 0 1.45rem;
}

.experience-copy .room-detail-body {
  max-width: 31ch;
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.85;
}

.experience-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.75rem;
}

.experience-chip-list--dense {
  gap: 10px;
  margin-top: 1.5rem;
}

.experience-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(28, 28, 26, 0.14);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
}

.experience-chip-list--dense .experience-chip {
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.experience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 1.9rem;
}

.experience-media {
  position: relative;
  aspect-ratio: 1 / 1;
  width: min(100%, 640px);
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(28, 28, 26, 0.08);
}

.experience-media-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.experience-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.experience-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.experience-slide img,
.experience-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.experience-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(28, 28, 26, 0.45);
  color: var(--white);
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.experience-nav:hover,
.experience-nav:focus-visible {
  background: rgba(28, 28, 26, 0.75);
}

.experience-nav--prev {
  left: 12px;
}

.experience-nav--next {
  right: 12px;
}

.experience-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.experience-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.experience-dot.is-active {
  background: var(--gold);
}

.restaurant-hero-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.restaurant-media-carousel {
  position: relative;
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(28, 28, 26, 0.08);
}

.restaurant-media-carousel .experience-nav {
  width: 44px;
  height: 44px;
}

.restaurant-media-carousel .experience-nav svg {
  width: 20px;
  height: 20px;
}

.restaurant-lede-lg {
  font-family: var(--font-ui);
  color: var(--warm-gray);
  margin-top: 1.25rem;
  line-height: 1.78;
  font-size: 0.94rem;
}

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

.restaurant-meta-cell {
  padding: 1rem;
  background: var(--charcoal);
}

.restaurant-meta-label {
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.restaurant-meta-value {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--white);
  margin-top: 4px;
}

.nav-inner>*,
.breadcrumb-inner>*,
.split-section>*,
.detail-grid>*,
.detail-grid--balanced>*,
.contact-grid>*,
.footer-top>*,
.stats-inner>*,
.restaurant-meta-grid>*,
.wedding-stats-grid>*,
.gallery-full>* {
  min-width: 0;
}

.feature-card:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.feature-card:focus-visible img {
  transform: scale(1.06);
  filter: brightness(0.55);
}

.feature-card:focus-visible .feature-card-content {
  padding-bottom: 2.5rem;
}

.feature-card:focus-visible .feature-card-content p {
  max-height: 80px;
  margin-top: 0.75rem;
}

.feature-card:focus-visible .feature-link {
  max-height: 30px;
  margin-top: 0.75rem;
}

.venue-specs {
  flex-wrap: wrap;
  row-gap: 1rem;
}

.venue-spec {
  flex: 1 1 140px;
}

@media (max-width: 1200px) {
  .experience-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
    gap: clamp(28px, 4vw, 48px);
    min-height: clamp(430px, 42vw, 560px);
  }

  .experience-card--reverse {
    grid-template-columns: minmax(320px, 400px) minmax(0, 1fr);
  }

  .experience-copy .section-title {
    font-size: clamp(2.3rem, 4.2vw, 3.8rem);
  }

  .experience-media {
    width: min(100%, 580px);
  }
}

@media (max-width: 900px) {
  .experience-jump-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    margin-inline: calc(clamp(20px, 6vw, 36px) * -0.15);
    scrollbar-width: none;
  }

  .experience-jump-nav::-webkit-scrollbar {
    display: none;
  }

  .experience-jump-link {
    flex: 0 0 auto;
  }

  .experience-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy";
    gap: 26px;
    min-height: 0;
  }

  .experience-card--reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy";
  }

  .experience-copy,
  .experience-media-shell {
    max-width: none;
  }

  .experience-copy {
    justify-self: stretch;
    padding-block: 0;
  }

  .experience-copy--no-eyebrow {
    padding-top: 0;
  }

  .experience-copy .section-title {
    max-width: none;
  }

  .experience-actions {
    padding-top: 1.5rem;
  }

  .experience-media {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .experience-jump-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    margin-inline: 0;
    padding-bottom: 0;
    justify-content: stretch;
  }

  .experience-card {
    padding: 20px;
  }

  .experience-chip-list,
  .experience-actions {
    gap: 10px;
  }

  .experience-chip,
  .experience-jump-link {
    min-height: 42px;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .experience-jump-link {
    width: 100%;
    padding: 0.8rem 0.9rem;
    text-align: center;
    white-space: normal;
    line-height: 1.35;
  }

  .experience-copy .gold-divider {
    margin: 1rem 0 1.15rem;
  }

  .experience-nav {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 1024px),
  (hover: none),
  (pointer: coarse) {
  .page-hero,
  .parallax-bg {
    background-attachment: scroll;
  }
}

@media (hover: none),
  (pointer: coarse) {
  .feature-card img,
  .feature-card:hover img {
    transform: none;
    filter: brightness(0.62);
  }

  .feature-card-content {
    padding-bottom: 2rem;
  }

  .feature-card-content p {
    max-height: 140px;
    margin-top: 0.75rem;
  }

  .feature-link {
    max-height: 30px;
    margin-top: 0.75rem;
  }
}

@media (max-height: 820px) and (max-width: 1180px) {
  .hero {
    min-height: clamp(460px, 100svh, 760px);
    min-height: clamp(460px, 100dvh, 760px);
  }

  .page-hero {
    min-height: clamp(300px, 52svh, 480px);
    min-height: clamp(300px, 52dvh, 480px);
  }

  .parallax-section {
    min-height: clamp(320px, 48svh, 460px);
  }
}

@media (max-height: 540px) and (orientation: landscape) {
  .hero {
    min-height: 420px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: max(88px, env(safe-area-inset-bottom));
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .hero-subtitle {
    display: none;
  }

  .hero-actions {
    margin-top: 1.5rem;
  }

  .page-hero {
    min-height: 260px;
  }

  .parallax-section {
    min-height: 300px;
  }
}

@media (max-width: 700px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .stay-switcher-pill {
    min-height: 40px;
    padding: 0.68rem 1rem;
    font-size: 0.72rem;
  }

  .breadcrumb--hero {
    padding-top: 0.8rem;
  }

  .breadcrumb--hero .breadcrumb-inner {
    font-size: 0.74rem;
    letter-spacing: 0.03em;
  }

  .stay-switcher--inline .stay-switcher-track {
    gap: 1rem;
  }

  .stay-switcher-link {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .stay-switcher-link::after {
    bottom: -0.35rem;
  }

  .room-detail-actions,
  .parallax-actions-row {
    flex-direction: column;
    align-items: stretch;
  }

  .room-detail-actions .btn,
  .parallax-actions-row .btn,
  .split-actions--sm .btn {
    width: 100%;
  }

  .restaurant-meta-grid {
    grid-template-columns: 1fr;
  }

  .restaurant-meta-cell {
    padding: 1.1rem;
  }

  .golf-holes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .golf-holes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .offers-preview-layout,
  .offers-showcase-layout {
    grid-template-columns: 1fr;
  }

  .offers-editorial-rail {
    grid-auto-columns: minmax(300px, 40%);
  }

  .offers-rail-shell {
    padding-inline: 36px;
  }

  .offers-rail-shell::before {
    left: 36px;
  }

  .offers-rail-shell::after {
    right: 36px;
  }

  .offers-meal-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .offers-editorial-rail {
    grid-auto-columns: minmax(290px, 56%);
  }

  .offers-rail-shell {
    padding-inline: 30px;
  }

  .offers-rail-shell::before,
  .offers-rail-shell::after {
    width: 36px;
  }

  .offers-rail-shell::before {
    left: 30px;
  }

  .offers-rail-shell::after {
    right: 30px;
  }

  .offers-rail-nav {
    width: 40px;
    height: 40px;
  }

  .offers-rail-nav-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 600px) {
  .offers-lead-card,
  .offers-meal-card {
    padding: 1.5rem;
  }

  .offers-highlight {
    font-size: 2.5rem;
  }

  .offers-card-grid,
  .offers-meal-grid {
    grid-template-columns: 1fr;
  }

  .offers-editorial {
    padding-top: 28px;
  }

  .offers-editorial::after {
    top: 18px;
    right: 8px;
    width: 108px;
  }

  .offers-rail-shell {
    padding-inline: 0;
  }

  .offers-rail-shell::before,
  .offers-rail-shell::after,
  .offers-rail-nav {
    display: none;
  }

  .offers-editorial-title {
    white-space: normal;
  }

  .offers-editorial-header .section-subtitle {
    max-width: 28ch;
  }

  .offers-editorial-rail {
    grid-auto-columns: 84%;
    gap: 14px;
    margin-top: 28px;
    padding-bottom: 10px;
  }

  .offers-media-body {
    padding: 1.05rem 1rem 1rem;
  }

  .offers-media-body h3 {
    font-size: 1.95rem;
  }

  .offers-media-body p {
    font-size: 0.86rem;
    line-height: 1.7;
  }

  .offers-card-cta {
    width: 100%;
  }

  .offers-meal-band {
    gap: 18px;
    padding: 16px;
    margin-top: 34px;
  }

  .offers-meal-intro {
    padding: 1.25rem 0.6rem 0.4rem;
  }

  .offers-meal-band-grid {
    grid-template-columns: 1fr;
  }

  .offers-meal-feature {
    grid-template-columns: 1fr;
  }

  .offers-meal-feature img {
    aspect-ratio: 16 / 10;
  }

  .offers-trust-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px 0;
  }

  .offers-trust-item {
    min-height: 44px;
    padding: 0.65rem 0.4rem;
    font-size: 0.78rem;
  }

  .offers-trust-item:nth-child(2n) {
    border-right: 0;
  }
}

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

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

  .hero-slide,
  .gal-full-item img,
  .feature-card img {
    transform: none !important;
  }

  .page-hero,
  .parallax-bg {
    background-attachment: scroll;
  }
}
