﻿


:root {
  
  --black: #000000;
  --white: #ffffff;
  --orange: #B04400;
  --orange-bright: #F9A341;
  --orange-soft: rgba(176, 68, 0, 0.12);
  --ink: #111111;                            
  --muted: #5c5c5c;                          
  --line: rgba(255, 255, 255, 0.12);         
  --card-line: rgba(0, 0, 0, 0.1);           
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.18); 
  --radius: 22px;                            
  --focus: 0 0 0 4px rgba(244, 124, 32, 0.28); 

  
  --gold: #C9A84C;                           
  --gold-soft: rgba(201, 168, 76, 0.14);     
  --cream: #FAF7F2;                          
  --sand: #F2EBD9;                           
  --deep-teal: #0B1E1A;                      
  --near-black: #080808;                     

  
  --font-display: "The Seasons Display", "The Seasons Regular", Georgia, serif;  
  --font-section: "The Seasons Display", "The Seasons Regular", Georgia, serif;  
  --font-body: "The Seasons Regular", Georgia, serif;                            
  --font-nav: "The Seasons Light", "The Seasons Regular", Georgia, serif;        
  --font-accent: "The Seasons Italic", "The Seasons Regular", Georgia, serif;    

  
  --max: 1520px; 
}


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 125%;  }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.5; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; } 
a { text-decoration: none; color: inherit; }              
input, select, textarea, button { font: inherit; }        


.announce-bar {
  background: var(--deep-teal);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 2rem;
  font-family: var(--font-nav);
  font-size: 0.73rem;
  letter-spacing: 0.16em;    
  text-transform: uppercase;
}

.announce-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;           
}

.announce-bar__dot { opacity: 1; color: var(--white); }    
.announce-bar__star { color: var(--gold); } 


.nav {
  position: fixed;                         
  top: 0;
  width: 100%;
  background: rgba(250, 247, 242, 0.96);   
  backdrop-filter: blur(12px);             
  -webkit-backdrop-filter: blur(12px);     
  z-index: 50;                             
  transition: background 0.4s ease, box-shadow 0.4s ease;
}


.nav--scrolled {
  background: rgba(250, 247, 242, 0.99) !important;
  box-shadow: 0 2px 28px rgba(0, 0, 0, 0.1);
}

.nav--with-bar { top: 0; }


.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr; 
  align-items: center;
  gap: 1rem;
}

.nav__logo {
  justify-self: start;
  font-family: var(--font-display);
  font-weight: bold;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: 1.5px solid var(--orange);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.25s ease;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav__logo:hover { background: var(--orange-soft); }

.nav__links {
  justify-self: center;
  display: flex;
  gap: 1.75rem;
  font-family: var(--font-nav);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__links a {
  color: var(--ink);
  position: relative;
  transition: color 0.25s ease;
}


.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav__links a:hover,
.nav__links a.active { color: var(--orange); }

.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta { justify-self: end; font-size: 0.9rem; }


.nav__hamburger {
  display: none;
  justify-self: end;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 60;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s ease;
}

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 49;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 6rem 1.5rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav__mobile.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
body.nav-open { overflow: hidden; }

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.65rem 2rem;
  transition: color 0.2s;
  text-decoration: none;
}

.nav__mobile a:hover,
.nav__mobile a.active { color: var(--orange); }
.nav__mobile .btn-primary { margin-top: 1.5rem; font-size: 0.9rem; }

@media (max-width: 960px) {
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }
  .nav__links, .nav__cta { display: none; }
}


.btn {
  font-family: var(--font-nav);
  font-size: 1rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: inline-block;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    filter 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.btn:active { transform: scale(0.97) !important; }

.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(244, 124, 32, 0.42);
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}

.btn-ghost:hover {
  background: var(--orange-soft);
  transform: translateY(-2px);
}

.btn-ghost--light { color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-ghost--light:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}


.eyebrow {
  display: block;
  font-family: var(--font-nav);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9rem;
}

.eyebrow--gold { color: var(--gold); }
.eyebrow--white { color: #F4F0E8; }

.divider-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(201,168,76,0.5), transparent);
  margin-bottom: 1.5rem;
}

.divider-line--center { margin-left: auto; margin-right: auto; }


.kente-strip {
  height: 4px;
  background: linear-gradient(90deg,
    #1B6B2F 0%,  #1B6B2F 14%,
    #F47C20 14%, #F47C20 28%,
    #C9A84C 28%, #C9A84C 42%,
    #111111 42%, #111111 56%,
    #B91C1C 56%, #B91C1C 70%,
    #F47C20 70%, #F47C20 85%,
    #1B6B2F 85%, #1B6B2F 100%
  );
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(10,22,18,0.3) 0%, rgba(10,22,18,0.52) 100%),
    url("images/hero-ghana-beach.jpg") center / cover no-repeat;
  color: var(--white);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,22,18,0.55));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: 0 2rem;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  animation: fadeUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero__subheading {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  opacity: 0.92;
  animation: fadeUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.hero__subline {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  opacity: 0.85;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both;
}


.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  z-index: 2;
  animation: fadeIn 1.4s ease 1.6s both;
}

.hero__scroll-text {
  font-family: var(--font-nav);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F4F0E8;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}


.hero__badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 0.85rem 1.35rem;
  text-align: center;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.28);
  z-index: 2;
  animation: fadeIn 1.4s ease 1.8s both;
}

.hero__badge-star {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.35rem;
}

.hero__badge-text {
  font-family: var(--font-nav);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .hero__badge { display: none; }
  .hero__scroll { display: none; }
}


.hero--inner {
  min-height: 55vh;
  padding-top: 5rem;
}

.hero--inner .hero__heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero--inner .hero__subline { margin-bottom: 1.5rem; }


@media (min-width: 961px) { .hero { background-attachment: fixed; } }


.gallery-strip {
  background: var(--deep-teal);
  padding: 4.5rem 0;
  overflow: hidden;
}

.gallery-strip__header {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 2.5rem;
}

.gallery-strip__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
}

.gallery-strip__scroll {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.gallery-strip__scroll:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-strip__item {
  flex: 0 0 auto;
  width: 400px;
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-strip__item:nth-child(1),
.gallery-strip__item:nth-child(6) { width: 580px; }

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-strip__item:hover img { transform: scale(1.06); }

.gallery-strip__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.22) 58%, transparent 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-strip__item-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.gallery-strip__item-sub {
  font-family: var(--font-nav);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #F4F0E8;
  margin-top: 0.25rem;
}

@media (max-width: 960px) {
  .gallery-strip__item { width: 280px; height: 360px; }
  .gallery-strip__item:nth-child(1),
  .gallery-strip__item:nth-child(6) { width: 380px; }
  .gallery-strip__scroll { animation-duration: 20s; }
}


.section { padding: 7rem 0; }

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section__heading {
  font-family: var(--font-section);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section__heading--center { text-align: center; }

.section__heading--center::after {
  content: '';
  display: block;
  width: 48px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--orange), var(--gold), transparent);
  margin: 1rem auto 0;
}

.section__body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 700px;
  opacity: 0.88;
}

.section__accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--orange);
  margin-top: 1.25rem;
  line-height: 1.6;
}


.section--cream { background: var(--cream); }
.section--sand  { background: var(--sand); }
.section--intro { background: var(--white); }
.section--suites { background: var(--sand); }
.section--dining { background: var(--cream); }
.section--experiences { background: var(--sand); }
.section--location { background: var(--cream); }
.section--testimonials { background: var(--ink); color: var(--white); }


.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.two-col__image { overflow: hidden; border-radius: var(--radius); }

.two-col__image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 0;
}

.two-col__image:hover img { transform: scale(1.04); }


.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.card-room {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.card-room:hover {
  transform: translateY(-10px);
  box-shadow: 0 36px 72px rgba(0,0,0,0.18);
}

.card-room__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  display: block;
}

.card-room:hover .card-room__image { transform: scale(1.07); }

.card-room__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-room__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.card-room__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.82;
  margin-bottom: 1.25rem;
}

.card-room__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 1rem;
  flex-wrap: wrap;
}

.card-room__meta .btn { padding: 0.65rem 1.3rem; font-size: 0.82rem; white-space: nowrap; }

.card-room__price {
  font-family: var(--font-nav);
  font-weight: 500;
  color: var(--orange);
  white-space: nowrap;
  font-size: 0.95rem;
}

.card-room__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-nav);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  z-index: 1;
}

.card-room__badge--gold { background: var(--gold); color: var(--ink); }


.stats-strip {
  background: var(--ink);
  color: var(--white);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(244,124,32,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.stats-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: 0.04em;
  color: var(--orange-bright);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat__label {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
}


.beach-feature {
  position: relative;
  height: 88vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.beach-feature__bg {
  position: absolute;
  inset: 0;
  background: url('images/beach-feature-bg.jpg') center / cover no-repeat;
  transform: scale(1.06);
  transition: transform 10s ease-out;
  will-change: transform;
}

.beach-feature__bg.is-visible { transform: scale(1); }

.beach-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(5,15,12,0.45) 0%,
    rgba(5,15,12,0.25) 45%,
    rgba(5,15,12,0.65) 100%
  );
}

.beach-feature__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 2.5rem 2.75rem;
  color: var(--white);
  background: rgba(5, 15, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.beach-feature__heading {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.beach-feature__tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.25rem;
  opacity: 1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.beach-feature__body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 1;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}


.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.exp-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 500px;
  cursor: pointer;
}

.exp-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  display: block;
}

.exp-card:hover .exp-card__img { transform: scale(1.08); }

.exp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.12) 55%, transparent 100%);
  transition: background 0.4s ease;
}

.exp-card:hover .exp-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0.05) 100%);
}

.exp-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.85rem;
  color: var(--white);
  background: rgba(8, 8, 8, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.exp-card__number {
  font-family: var(--font-nav);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #FFE0A3;
  margin-bottom: 0.5rem;
  display: block;
}

.exp-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  line-height: 1.2;
  transition: margin-bottom 0.35s ease;
}

.exp-card:hover .exp-card__title { margin-bottom: 0.65rem; }

.exp-card__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 1;
  max-height: none;
  transition: opacity 0.35s ease 0.05s, max-height 0.4s ease;
}

.exp-card:hover .exp-card__text { opacity: 1; max-height: none; }

.exp-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-nav);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFE0A3;
  margin-top: 0.75rem;
  opacity: 1;
  transition: opacity 0.35s ease 0.1s;
}

.exp-card:hover .exp-card__link { opacity: 1; }


.section--culture {
  background: var(--deep-teal);
  color: var(--white);
  padding: 7rem 0;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.culture-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 540px;
}

.culture-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(0.85) brightness(0.9);
  display: block;
}

.culture-card:hover .culture-card__img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1);
}

.culture-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,30,26,0.92) 0%, rgba(11,30,26,0.2) 55%, transparent 100%);
}

.culture-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.85rem;
}

.culture-card__tag {
  font-family: var(--font-nav);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.culture-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.culture-card__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: #F4F0E8;
}


.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 340px);
  gap: 4px;
}

.gallery-mosaic__item { overflow: hidden; }

.gallery-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.gallery-mosaic__item:hover img { transform: scale(1.07); }

.gallery-mosaic__item:nth-child(1) { grid-column: 1 / 7;  grid-row: 1 / 2; }
.gallery-mosaic__item:nth-child(2) { grid-column: 7 / 10; grid-row: 1 / 2; }
.gallery-mosaic__item:nth-child(3) { grid-column: 10 / 13; grid-row: 1 / 2; }
.gallery-mosaic__item:nth-child(4) { grid-column: 1 / 5;  grid-row: 2 / 3; }
.gallery-mosaic__item:nth-child(5) { grid-column: 5 / 13; grid-row: 2 / 3; }


.testimonial-grid--premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.testimonial--premium {
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition:
    border-color 0.3s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial--premium:hover {
  border-color: rgba(244,124,32,0.35);
  transform: translateY(-4px);
}

.testimonial__mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.7;
  color: var(--orange-bright);
  opacity: 0.72;
  display: block;
  margin-bottom: 1.25rem;
}

.testimonial__quote--premium {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.0rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.75rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange-soft);
  border: 1.5px solid var(--orange-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--orange-bright);
  flex-shrink: 0;
}

.testimonial__name {
  font-family: var(--font-nav);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-bright);
}

.testimonial__origin {
  font-family: var(--font-body);
  font-size: 0.8rem;
  opacity: 0.88;
  color: var(--white);
  margin-top: 0.15rem;
}


.testimonial {
  border-left: 2px solid var(--orange);
  padding-left: 1.5rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial:hover { transform: translateX(5px); }

.testimonial__quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.testimonial__cite {
  font-family: var(--font-nav);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-bright);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}


.booking-cta {
  background: var(--ink);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('images/atlantic-beach-golden-hour.jpg') center / cover no-repeat;
  opacity: 0.08;
}

.booking-cta__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.booking-cta__text { color: var(--white); }

.booking-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.booking-cta__body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  opacity: 0.78;
  margin-bottom: 2rem;
}

.booking-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.booking-cta__panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}

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

.booking-form__field { display: flex; flex-direction: column; gap: 0.4rem; }

.booking-form__label {
  font-family: var(--font-nav);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F4F0E8;
}

.booking-form__input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--white);
  transition: border-color 0.2s ease;
  outline: none;
  width: 100%;
  color-scheme: dark;
}

.booking-form__input:focus { border-color: var(--orange); }
.booking-form__input::placeholder { color: rgba(255,255,255,0.3); }
.booking-form__input option { background: #1a1a1a; color: var(--white); }

.booking-form__input--static {
  display: flex;
  align-items: center;
  min-height: 54px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.booking-form__note {
  font-family: var(--font-body);
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin-top: 1rem;
  text-align: center;
}

.booking-form__submit { width: 100%; margin-top: 0.5rem; padding: 1rem; }


.cta-banner {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(244,124,32,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-banner__heading {
  position: relative;
  z-index: 1;
  font-family: var(--font-section);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.cta-banner__text {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 1.125rem;
  opacity: 0.82;
  margin-bottom: 2.25rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-banner .btn,
.cta-banner .eyebrow {
  position: relative;
  z-index: 1;
}


.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.amenity-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.1);
}

.amenity-card__icon { font-size: 2rem; margin-bottom: 1rem; line-height: 1; }

.amenity-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.amenity-card__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  opacity: 0.82;
  line-height: 1.6;
}


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

.venue-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.venue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(0,0,0,0.16);
}

.venue-card__image { width: 100%; height: 280px; object-fit: cover; transition: transform 0.75s ease; }
.venue-card:hover .venue-card__image { transform: scale(1.05); }
.venue-card__body { padding: 2rem; }

.venue-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.venue-card__subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--orange);
  margin-bottom: 0.85rem;
}

.venue-card__text { font-family: var(--font-body); font-size: 0.975rem; line-height: 1.65; opacity: 0.85; }


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

.attraction-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.attraction-card:hover { transform: translateY(-8px); box-shadow: 0 28px 56px rgba(0,0,0,0.16); }
.attraction-card__image { width: 100%; height: 220px; object-fit: cover; transition: transform 0.75s ease; }
.attraction-card:hover .attraction-card__image { transform: scale(1.05); }
.attraction-card__body { padding: 1.5rem; }
.attraction-card__title { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.attraction-card__text { font-family: var(--font-body); font-size: 0.95rem; line-height: 1.6; opacity: 0.82; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.info-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.info-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(0,0,0,0.1); }
.info-card__icon { font-size: 1.75rem; margin-bottom: 1rem; line-height: 1; }
.info-card__title { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.5rem; }
.info-card__text { font-family: var(--font-body); font-size: 0.975rem; line-height: 1.65; opacity: 0.82; }


.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.experience-card { text-align: center; }

.experience-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  transition: transform 0.75s ease;
}

.experience-card:hover .experience-card__image { transform: scale(1.03); }

.experience-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.experience-card__text { font-family: var(--font-body); font-size: 1rem; line-height: 1.65; opacity: 0.85; max-width: 320px; margin: 0 auto; }


.img-wrap { overflow: hidden; border-radius: var(--radius); }
.img-wrap img { display: block; width: 100%; transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.img-wrap:hover img { transform: scale(1.05); }


.footer--premium {
  background: var(--near-black);
  color: var(--white);
  padding-top: 5.5rem;
  padding-bottom: 0;
}

.footer__inner--premium {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__logo--premium {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  color: var(--white);
}

.footer__brand-story {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.55;
  margin-bottom: 1.5rem;
}

.footer__awards { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.75rem; }

.footer__award-badge {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.35rem 0.7rem;
  font-family: var(--font-nav);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-radius: 4px;
}

.footer__social { display: flex; gap: 0.85rem; }

.footer__social-link {
  --social-glow: rgba(201,168,76,0.2);
  --social-icon-color: rgba(255,255,255,0.82);
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--social-icon-color);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), rgba(255,255,255,0.01) 48%, rgba(255,255,255,0) 72%);
  box-shadow: inset 0 0 18px rgba(255,255,255,0.04), 0 0 0 1px rgba(255,255,255,0.02);
  overflow: visible;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.footer__social-link::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  background: radial-gradient(circle, var(--social-glow) 0%, transparent 72%);
  filter: blur(10px);
  opacity: 0.78;
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.footer__social-link::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0) 55%);
  opacity: 0.65;
}

.footer__social-link:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(255,255,255,0.24);
  box-shadow: inset 0 0 24px rgba(255,255,255,0.06), 0 12px 30px rgba(0,0,0,0.24);
}

.footer__social-link:focus-visible {
  outline: none;
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(255,255,255,0.28);
  box-shadow: inset 0 0 24px rgba(255,255,255,0.06), 0 0 0 4px rgba(244,124,32,0.2), 0 12px 30px rgba(0,0,0,0.24);
}

.footer__social-link:hover::before {
  opacity: 1;
  transform: scale(1.08);
  filter: blur(14px);
}

.footer__social-link:focus-visible::before {
  opacity: 1;
  transform: scale(1.08);
  filter: blur(14px);
}

.footer__social-link[aria-disabled='true'] {
  opacity: 1;
  cursor: default;
}

.footer__social-icon {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  display: block;
  stroke-width: 1.7;
}

.footer__social-icon * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__social-icon--fill path,
.footer__social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.footer__social-link--instagram {
  --social-glow: rgba(244,124,32,0.3);
  --social-icon-color: rgba(255,222,188,0.94);
}

.footer__social-link--facebook {
  --social-glow: rgba(94,151,255,0.26);
  --social-icon-color: rgba(219,233,255,0.94);
}

.footer__social-link--x {
  --social-glow: rgba(201,168,76,0.26);
  --social-icon-color: rgba(255,255,255,0.9);
}

.footer__col-heading {
  font-family: var(--font-nav);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F4F0E8;
  margin-bottom: 1.35rem;
}

.footer__nav-link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.925rem;
  opacity: 0.7;
  margin-bottom: 0.65rem;
  color: var(--white);
  transition: opacity 0.2s, padding-left 0.25s, color 0.2s;
}

.footer__nav-link:hover { opacity: 1; padding-left: 4px; color: var(--orange-bright); }

.footer__contact-item {
  font-family: var(--font-body);
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 0.55rem;
  line-height: 1.6;
}

.footer__newsletter-note {
  font-family: var(--font-body);
  font-size: 0.875rem;
  opacity: 0.55;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.footer__newsletter-form {
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.footer__newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: none;
  padding: 0.8rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--white);
  outline: none;
  min-width: 0;
}

.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.3); font-size: 0.82rem; }

.footer__newsletter-input[aria-invalid='true'] {
  box-shadow: inset 0 0 0 1px #B91C1C;
}

.footer__newsletter-btn {
  background: var(--orange);
  border: none;
  color: var(--white);
  padding: 0.8rem 1.4rem;
  font-family: var(--font-nav);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer__newsletter-btn:hover { background: #D96D18; }

.footer__bottom--premium {
  text-align: center;
  padding: 1.5rem 2rem;
  font-family: var(--font-nav);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  opacity: 0.82;
}


.footer {
  background: var(--near-black);
  color: var(--white);
  padding-top: 4rem;
  padding-bottom: 0;
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem 3.5rem;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__logo {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer__text { font-family: var(--font-body); font-size: 0.9rem; line-height: 1.65; opacity: 0.55; }

.footer__cols { display: flex; gap: 3rem; }

.footer__cols h4 {
  font-family: var(--font-nav);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  opacity: 0.86;
}

.footer__cols a,
.footer__cols p {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  opacity: 0.65;
  margin-bottom: 0.45rem;
  color: var(--white);
}

.footer__cols a:hover { opacity: 1; color: var(--orange-bright); padding-left: 4px; }
.footer__cols a { transition: opacity 0.2s, padding-left 0.25s, color 0.2s; }

.footer__bottom {
  text-align: center;
  padding: 1.5rem 2rem;
  font-family: var(--font-nav);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  opacity: 0.82;
}


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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--active { opacity: 1; transform: none; }

.reveal--left  { transform: translateX(-30px); }
.reveal--right { transform: translateX(30px); }

.reveal--left.reveal--active,
.reveal--right.reveal--active { transform: none; }

.reveal--d1 { transition-delay: 0.10s; }
.reveal--d2 { transition-delay: 0.20s; }
.reveal--d3 { transition-delay: 0.30s; }
.reveal--d4 { transition-delay: 0.40s; }
.reveal--d5 { transition-delay: 0.50s; }




@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col--reverse { direction: ltr; }
  .two-col__image img { height: 320px; }

  .suite-grid,
  .exp-grid,
  .culture-grid,
  .testimonial-grid,
  .testimonial-grid--premium,
  .experience-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }

  .exp-card { height: 360px; }
  .exp-card__text { opacity: 1; max-height: none; }
  .exp-card__link { opacity: 1; }
  .exp-card__title { margin-bottom: 0.65rem; }

  .culture-card { height: 380px; }

  .booking-cta__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .booking-form__row { grid-template-columns: 1fr; }

  .footer__inner--premium { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__cols { flex-direction: column; gap: 2rem; }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-mosaic__item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .gallery-mosaic__item:nth-child(2) { grid-column: 1;     grid-row: 2; }
  .gallery-mosaic__item:nth-child(3) { grid-column: 2;     grid-row: 2; }
  .gallery-mosaic__item:nth-child(4) { grid-column: 1;     grid-row: 3; }
  .gallery-mosaic__item:nth-child(5) { grid-column: 2;     grid-row: 3; }

  .hero--inner .hero__heading { font-size: 2.5rem; }

  .attraction-grid,
  .info-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

  .booking-cta { padding: 5rem 2rem; }
  .booking-cta__heading { font-size: 2.5rem; }

  .beach-feature { height: 70vh; min-height: 480px; }
  .beach-feature__heading { font-size: 2.5rem; }

  .section--culture { padding: 5rem 0; }
}


@media (max-width: 768px) {
  .nav__logo { font-size: 0.78rem; padding: 0.4rem 0.75rem; }
  .nav__inner { height: 60px; padding: 0 1.25rem; }

  .hero { min-height: 85vh; }
  .hero__heading { font-size: clamp(2.5rem, 8vw, 4rem); }
  .hero__subheading { font-size: 1.1rem; }
  .hero__subline { font-size: 0.95rem; max-width: 90%; }
  .hero__cta { flex-direction: column; gap: 0.75rem; align-items: center; }
  .hero__cta .btn { width: 100%; max-width: 280px; text-align: center; }

  .gallery-strip { padding: 3rem 0; }
  .gallery-strip__header { margin-bottom: 1.5rem; }
  .gallery-strip__title { font-size: 1.2rem; }

  .section { padding: 4.5rem 0; }
  .section__inner { padding: 0 1.25rem; }
  .section__heading { font-size: clamp(1.8rem, 4vw, 2.5rem); }
  .section__body { font-size: 1rem; }

  .two-col__image img { height: 340px; }

  .suite-grid,
  .exp-grid,
  .culture-grid,
  .testimonial-grid--premium,
  .experience-grid {
    max-width: 100%;
  }

  .card-room__image { height: 260px; }
  .card-room__body { padding: 1.35rem; }
  .card-room__title { font-size: 1.25rem; }

  .stats-strip { padding: 3rem 0; }

  .beach-feature { height: 60vh; min-height: 400px; }
  .beach-feature__body { font-size: 1rem; }

  .exp-card { height: 380px; }
  .culture-card { height: 400px; }

  .testimonial--premium { padding: 1.75rem; }
  .testimonial__quote--premium { font-size: 0.92rem; }

  .booking-cta__panel { padding: 1.75rem; }

  .cta-banner { padding: 4rem 1.5rem; }

  .footer__inner--premium { padding: 0 1.25rem 3rem; gap: 2rem; }
  .footer__newsletter-form { flex-direction: column; border-radius: 12px; }
  .footer__newsletter-input { border-radius: 12px 12px 0 0; padding: 0.9rem 1.25rem; }
  .footer__newsletter-btn { border-radius: 0 0 12px 12px; padding: 0.9rem 1.25rem; }

  .announce-bar { font-size: 0.6rem; padding: 0.5rem 1rem; letter-spacing: 0.1em; }
  .announce-bar__inner { gap: 0.5rem; }
}


@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .section__inner { padding: 0 1rem; }

  .amenity-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }

  .footer__inner--premium { grid-template-columns: 1fr; }

  .booking-cta { padding: 3.5rem 1rem; }
  .booking-cta__heading { font-size: 2rem; }
  .booking-cta__panel { padding: 1.5rem; }

  .gallery-mosaic { grid-template-rows: repeat(3, 140px); }

  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; padding: 0 1rem; }
  .stat__number { font-size: 2rem; }
  .stat__label { font-size: 0.62rem; }

  .hero__heading { font-size: 2.5rem; }
  .hero__subline { font-size: 0.9rem; }

  .beach-feature { height: auto; min-height: 420px; padding: 4rem 0; }
  .beach-feature__heading { font-size: 2rem; }
  .beach-feature__tagline { font-size: 1rem; }
  .beach-feature__body { font-size: 0.95rem; margin-bottom: 2rem; }

  .exp-card { height: 340px; }
  .exp-card__content { padding: 1.25rem; }
  .exp-card__title { font-size: 1.25rem; }

  .culture-card { height: 340px; }
  .culture-card__content { padding: 1.25rem; }
  .culture-card__title { font-size: 1.25rem; }

  .card-room__image { height: 240px; }
  .card-room__meta { flex-direction: column; align-items: flex-start; }

  .cta-banner { padding: 3rem 1rem; }
  .cta-banner__heading { font-size: 1.6rem; }
  .cta-banner__text { font-size: 1rem; }

  .testimonial--premium { padding: 1.5rem; }
  .testimonial__mark { font-size: 3.5rem; margin-bottom: 0.75rem; }

  .two-col__image img { height: 280px; }

  .hero--inner { min-height: 45vh; padding-top: 4rem; }
  .hero--inner .hero__heading { font-size: 2rem; }

  .announce-bar__dot { display: none; }
  .announce-bar__inner { flex-direction: column; gap: 0.25rem; }
}


@media (max-width: 400px) {
  .nav__logo { font-size: 0.68rem; padding: 0.35rem 0.6rem; letter-spacing: 0.1em; }
  .nav__inner { height: 54px; padding: 0 0.75rem; }

  .hero__heading { font-size: 2rem; }
  .hero__subheading { font-size: 0.95rem; letter-spacing: 0.08em; }

  .section__heading { font-size: 1.6rem; }
  .section__body { font-size: 0.92rem; }
  .section__accent { font-size: 0.95rem; }

  .btn { font-size: 0.85rem; padding: 0.75rem 1.5rem; }

  .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(5, 140px); }
  .gallery-mosaic__item:nth-child(1),
  .gallery-mosaic__item:nth-child(2),
  .gallery-mosaic__item:nth-child(3),
  .gallery-mosaic__item:nth-child(4),
  .gallery-mosaic__item:nth-child(5) { grid-column: 1; grid-row: auto; }

  .stats-strip__inner { gap: 1.25rem; }

  .footer__bottom--premium { font-size: 0.6rem; }
}


@media (hover: none) {
  .exp-card__text { opacity: 1; max-height: none; }
  .exp-card__link { opacity: 1; }
  .exp-card__title { margin-bottom: 0.65rem; }
}


@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero__heading,
  .hero__subheading,
  .hero__subline,
  .hero__cta {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
  .hero { background-attachment: scroll; }
  .page-curtain { display: none !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
}


.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-curtain::after {
  content: '';
  width: 28px;
  height: 28px;
  border: 2px solid rgba(201, 168, 76, 0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: curtain-spin 0.8s linear infinite;
}

.page-curtain.is-lifted {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes curtain-spin {
  to { transform: rotate(360deg); }
}


.section__heading,
.beach-feature__heading,
.booking-cta__heading,
.cta-banner__heading {
  background: linear-gradient(
    120deg,
    var(--ink) 0%,
    var(--ink) 40%,
    var(--gold) 50%,
    var(--ink) 60%,
    var(--ink) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 4s ease-in-out infinite;
}


.section--testimonials .section__heading,
.section--culture .section__heading,
.beach-feature__heading,
.booking-cta__heading,
.cta-banner__heading {
  background-image: linear-gradient(
    120deg,
    var(--white) 0%,
    var(--white) 40%,
    var(--gold) 50%,
    var(--white) 60%,
    var(--white) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}

@keyframes gold-shimmer {
  0%   { background-position: 100% 50%; }
  100% { background-position: -100% 50%; }
}


.reveal-clip {
  position: relative;
  overflow: hidden;
}

.reveal-clip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  z-index: 2;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-clip.reveal--active::before {
  transform: scaleX(0);
  transform-origin: left;
}


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

::-webkit-scrollbar-track {
  background: var(--near-black);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--orange));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #d4b45c, #f47c20);
}


html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--near-black);
}


.hero::after,
.section--culture::after,
.stats-strip::after,
.section--testimonials::after,
.booking-cta::after,
.beach-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}


.hero__content,
.hero__scroll,
.hero__badge,
.beach-feature__content,
.stats-strip__inner,
.stats-strip::before,
.booking-cta__inner,
.booking-cta::before {
  position: relative;
  z-index: 2;
}


.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.08s ease-out, opacity 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201, 168, 76, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.cursor-ring.is-hover {
  width: 52px;
  height: 52px;
  border-color: var(--orange);
}


@media (hover: none), (max-width: 960px) {
  .cursor-dot, .cursor-ring { display: none !important; }
}


@media (hover: hover) and (min-width: 961px) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor input,
  body.has-custom-cursor select,
  body.has-custom-cursor textarea { cursor: none; }
}


.section__eyebrow-wrap { text-align: center; }
.btn--section-link { margin-top: 2rem; }
.section__actions { text-align: center; margin-top: 3rem; }
.card-room__media { overflow: hidden; }
.card-room__media--badge { position: relative; }
.section__heading--light { color: var(--white); }
.section__lede--light {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  text-align: center;
  color: #F4F0E8;
  max-width: 700px;
  margin: 0 auto;
}
.gallery-mosaic-wrap { background: var(--near-black); padding: 4px 0 0; }
.booking-cta__panel-eyebrow { display: block; margin-bottom: 1.75rem; }
.booking-form__submit { display: block; text-align: center; }
.cta-banner__eyebrow { display: block; text-align: center; margin-bottom: 1.5rem; }
.section__accent--spacious { margin-top: 2rem; }
.footer__contact-item--address {
  margin-top: 1rem;
  font-size: 0.82rem;
  opacity: 0.78;
  line-height: 1.7;
}
.reserve-page__inner { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }
.form-row--spaced { margin-top: 0.5rem; }
.form-error-msg {
  display: none;
  color: #B91C1C;
  font-family: var(--font-body);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(185,28,28,0.06);
  border-radius: 8px;
  border: 1px solid rgba(185,28,28,0.15);
}


.hero--suites {
  background: linear-gradient(180deg, rgba(10,22,18,0.35) 0%, rgba(10,22,18,0.55) 100%), url('images/luxury-suite-ocean-view.jpg') center/cover no-repeat;
}

.hero--dining {
  background: linear-gradient(180deg, rgba(10,22,18,0.35) 0%, rgba(10,22,18,0.55) 100%), url('images/fine-dining-restaurant.jpg') center/cover no-repeat;
}

.hero--spa {
  background: linear-gradient(180deg, rgba(10,22,18,0.35) 0%, rgba(10,22,18,0.55) 100%), url('images/spa-wellness-treatment.jpg') center/cover no-repeat;
}

.hero--experiences {
  background: linear-gradient(180deg, rgba(10,22,18,0.35) 0%, rgba(10,22,18,0.55) 100%), url('images/atlantic-beach-golden-hour.jpg') center/cover no-repeat;
}

.hero--location {
  background: linear-gradient(180deg, rgba(10,22,18,0.35) 0%, rgba(10,22,18,0.55) 100%), url('images/ghana-coastline-aerial.jpg') center/cover no-repeat;
}


.suite-img-wrap,
.venue-img-wrap,
.ritual-img-wrap,
.region-img-wrap {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.ritual-img-wrap {
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.suite-img-wrap img,
.venue-img-wrap img,
.ritual-img-wrap img,
.region-img-wrap img {
  display: block;
  width: 100%;
  transition: transform 0.45s cubic-bezier(.25,.46,.45,.94);
}

.suite-img-wrap:hover img,
.venue-img-wrap:hover img,
.ritual-img-wrap:hover img,
.region-img-wrap:hover img { transform: scale(1.05); }

.suite-img-wrap::after,
.venue-img-wrap::after,
.ritual-img-wrap::after,
.region-img-wrap::after {
  content: '⊕';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0);
  background: rgba(11,30,26,0);
  transition: background 0.35s, color 0.35s;
  pointer-events: none;
}

.suite-img-wrap:hover::after,
.venue-img-wrap:hover::after,
.ritual-img-wrap:hover::after,
.region-img-wrap:hover::after {
  background: rgba(11,30,26,0.28);
  color: rgba(255,255,255,0.85);
}

#suite-lightbox,
#dining-lightbox,
#ritual-lightbox,
#region-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8,20,17,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  cursor: zoom-out;
}

#suite-lightbox.is-open,
#dining-lightbox.is-open,
#ritual-lightbox.is-open,
#region-lightbox.is-open { display: flex; }

#suite-lightbox img,
#dining-lightbox img,
#ritual-lightbox img,
#region-lightbox img {
  max-width: min(90vw, 960px);
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.15);
  cursor: default;
  animation: media-lightbox-in 0.35s cubic-bezier(.25,.46,.45,.94) both;
}

#ritual-lightbox img { max-width: min(90vw, 900px); }

@keyframes media-lightbox-in {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

#suite-lightbox-caption,
#dining-lightbox-caption,
#ritual-lightbox-caption,
#region-lightbox-caption {
  font-family: var(--font-nav, sans-serif);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F4F0E8;
}

#suite-lightbox-close,
#dining-lightbox-close,
#ritual-lightbox-close,
#region-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
  color: rgba(201,168,76,0.8);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

#suite-lightbox-close:hover,
#dining-lightbox-close:hover,
#ritual-lightbox-close:hover,
#region-lightbox-close:hover {
  background: rgba(201,168,76,0.18);
  color: #C9A84C;
}

.slb-arrow,
.dlb-arrow,
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
  color: rgba(201,168,76,0.8);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 1;
}

.slb-arrow:hover,
.dlb-arrow:hover,
.lb-arrow:hover { background: rgba(201,168,76,0.18); color: #C9A84C; }

#slb-prev,
#dlb-prev,
#lb-prev { left: 1.25rem; }

#slb-next,
#dlb-next,
#lb-next { right: 1.25rem; }


.amenity-viewport {
  width: 100%;
  height: 360px;
  overflow: hidden;
  position: relative;
  margin-top: 3rem;
  mask-image: linear-gradient(90deg, transparent, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, transparent);
}

.amenity-scene {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.amenity-grid {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  padding: 0 1rem;
  animation: amenity-scroll 34s linear infinite;
  will-change: transform;
}

.amenity-viewport:hover .amenity-grid {
  animation-play-state: paused;
}

@keyframes amenity-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes amenity-card-float {
  0%, 100% { transform: translateY(0) rotateY(-10deg) rotateX(2deg); }
  50% { transform: translateY(-10px) rotateY(-6deg) rotateX(0deg); }
}

.amenity-card {
  position: relative;
  flex: 0 0 auto;
  width: 340px;
  min-height: 240px;
  padding: 2.5rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 18px 42px rgba(0,0,0,0.1);
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, opacity 0.3s ease;
  animation: amenity-card-float 6s ease-in-out infinite;
  opacity: 0.98;
}

.amenity-card:nth-child(2n) { animation-delay: -1.5s; }
.amenity-card:nth-child(3n) { animation-delay: -3s; }

.amenity-card:hover {
  transform: translateY(-14px) rotateY(0deg) scale(1.03);
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
  opacity: 1;
}

.amenity-card__glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0) 65%);
  opacity: 0.8;
  z-index: 1;
}

.amenity-card__icon,
.amenity-card__title,
.amenity-card__text {
  position: relative;
  z-index: 2;
}


.page-experiences .gallery-hint {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 0.5rem;
  letter-spacing: 0.06em;
}

.page-experiences .section--orange-gallery {
  padding-bottom: 4rem;
  background: var(--white);
}

.page-experiences .section--orange-gallery .eyebrow { color: var(--orange); }
.page-experiences .section--orange-gallery .section__heading { color: var(--ink); }
.page-experiences .section--orange-gallery .section__heading--center::after {
  background: linear-gradient(90deg, var(--orange), var(--gold), transparent);
}
.page-experiences .section--orange-gallery .gallery-hint { color: var(--muted); }

.page-experiences .gallery-viewport {
  width: 100%;
  height: 520px;
  overflow: hidden;
  position: relative;
  cursor: grab;
  margin-top: 2.5rem;
}

.page-experiences .gallery-viewport:active { cursor: grabbing; }

.page-experiences .gallery-scene {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1800px;
}

.page-experiences .gallery-ring {
  position: relative;
  width: 280px;
  height: 380px;
  transform-style: preserve-3d;
  transition: transform 0.08s ease-out;
}

.page-experiences .gallery-card {
  position: absolute;
  width: 280px;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  backface-visibility: hidden;
  transition: opacity 0.3s ease;
}

.page-experiences .gallery-card__image { width: 100%; height: 100%; object-fit: cover; display: block; }

.page-experiences .gallery-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.35rem 1.35rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  color: var(--white);
}

.page-experiences .gallery-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.page-experiences .gallery-card__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.55;
  opacity: 0.82;
}


.page-location .section--orange-bg { background: var(--white); }
.page-location .section--orange-bg .eyebrow { color: var(--orange); }
.page-location .section--orange-bg .section__heading { color: var(--ink); }
.page-location .section--orange-bg .section__heading--center::after {
  background: linear-gradient(90deg, var(--orange), var(--gold), transparent);
}

.page-location .section--orange-bg .gallery-hint {
  color: var(--muted);
  opacity: 0.72;
}

.page-location .gallery-hint {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-location .gallery-viewport {
  width: 100%;
  height: 520px;
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.page-location .gallery-viewport:active { cursor: grabbing; }

.page-location .gallery-scene {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1800px;
}

.page-location .gallery-ring {
  position: relative;
  width: 280px;
  height: 380px;
  transform-style: preserve-3d;
}

.page-location .gallery-card {
  position: absolute;
  width: 280px;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  backface-visibility: hidden;
  transition: opacity 0.3s ease;
}

.page-location .gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

.page-location .gallery-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  color: var(--white);
}

.page-location .gallery-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.page-location .gallery-card__text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0.85;
}

.getting-here-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.getting-here-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-top: 3px solid var(--gold);
  text-align: center;
}

.getting-here-card__icon {
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
  display: block;
}

.getting-here-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.85rem;
  letter-spacing: 0.03em;
}

.getting-here-card__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.75;
  line-height: 1.75;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact-list li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  opacity: 0.8;
  line-height: 1.9;
}

.contact-list li strong {
  color: var(--orange);
  font-weight: 600;
}


.reserve-page {
  background: var(--cream);
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 5rem;
}

.reserve-hero {
  text-align: center;
  padding: 3rem 2rem 4rem;
}

.reserve-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--ink);
  letter-spacing: 0.04em;
  margin: 1rem 0 0.75rem;
  line-height: 1.15;
}

.reserve-hero__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

.reserve-card {
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.10);
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 3.5rem;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 2.25rem 0 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--sand);
}

.form-section-title:first-child { margin-top: 0; }

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

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange);
  box-shadow: var(--focus);
  background: var(--white);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c5c5c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-hint {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.7;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.form-divider {
  height: 1px;
  background: var(--sand);
  margin: 2rem 0;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

.form-submit-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.75;
  line-height: 1.55;
  max-width: 320px;
}

.form-submit-btn {
  min-width: 200px;
  font-size: 1rem;
  padding: 1rem 2.25rem;
  cursor: pointer;
}

.form-button-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.form-reset-btn {
  min-width: 130px;
  font-size: 1rem;
  padding: 1rem 1.75rem;
}

.reserve-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

#reservation-requested {
  scroll-margin-top: 140px;
}

#reservation-requested:target {
  display: block;
}

#reservation-requested:target + .reserve-card {
  display: none;
}

.reserve-success__icon {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.reserve-success__heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}

.reserve-success__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  margin: 0 auto 2rem;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-nav);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
}

.trust-item__icon { font-size: 1.15rem; }

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

@media (max-width: 768px) {
  .page-experiences .gallery-viewport,
  .page-location .gallery-viewport { height: 420px; }

  .page-experiences .gallery-card,
  .page-location .gallery-card { width: 220px; height: 310px; }

  .page-experiences .gallery-ring,
  .page-location .gallery-ring { width: 220px; height: 310px; }

  .amenity-viewport { height: 330px; }
  .amenity-grid { gap: 1rem; animation-duration: 24s; }
  .amenity-card { width: 280px; min-height: 220px; padding: 2rem 1.35rem; }
}

@media (max-width: 640px) {
  .reserve-card { padding: 2rem 1.5rem; border-radius: 20px; }
  .reserve-page { padding-top: 90px; padding-bottom: 3rem; }
  .reserve-hero { padding: 2rem 1rem 2.5rem; }
  .reserve-hero__heading { font-size: 2rem; }
  .reserve-hero__sub { font-size: 0.95rem; }
  .form-submit-row { flex-direction: column; align-items: stretch; text-align: center; }
  .form-submit-note { max-width: 100%; }
  .form-button-group { width: 100%; justify-content: center; }
  .form-submit-btn,
  .form-reset-btn { flex: 1 1 180px; min-width: unset; }
  .trust-strip { gap: 1.25rem; }
  .trust-item { font-size: 0.65rem; }
}

@media (max-width: 580px) {
  .form-row,
  .form-row--3 { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .reserve-card { padding: 1.5rem 1rem; border-radius: 16px; }
  .form-input, .form-select, .form-textarea { font-size: 0.9rem; padding: 0.7rem 0.85rem; }
  .form-label { font-size: 0.68rem; }
  .form-section-title { font-size: 0.95rem; }
}


.page-curtain,
.cursor-dot,
.cursor-ring,
#suite-lightbox,
#dining-lightbox,
#ritual-lightbox,
#region-lightbox {
  display: none !important;
}

.nav {
  position: sticky;
  top: 0;
}

.nav__inner {
  align-items: center;
}

.reveal,
.reveal--left,
.reveal--right {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.reveal-clip::before {
  display: none !important;
}

.gallery-strip__item,
.suite-img-wrap,
.venue-img-wrap,
.ritual-img-wrap,
.region-img-wrap,
.hero__scroll {
  cursor: default;
}

.hero__scroll {
  display: none;
}

.suite-img-wrap::after,
.venue-img-wrap::after,
.ritual-img-wrap::after,
.region-img-wrap::after {
  display: none;
}

.footer__newsletter-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
}

.page-experiences .gallery-hint,
.page-location .gallery-hint {
  letter-spacing: 0.08em;
  text-transform: none;
}

.page-experiences .gallery-viewport,
.page-location .gallery-viewport {
  width: 100%;
  height: auto;
  overflow: visible;
  position: relative;
  margin-top: 2.5rem;
  cursor: default;
}

.page-experiences .gallery-scene,
.page-location .gallery-scene {
  width: 100%;
  height: auto;
  display: block;
}

.page-experiences .gallery-ring,
.page-location .gallery-ring {
  position: static;
  width: auto;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  transform: none !important;
  transform-style: flat;
}

.page-experiences .gallery-card,
.page-location .gallery-card {
  position: relative;
  width: 100%;
  height: 380px;
  transform: none !important;
  opacity: 1 !important;
}

.reserve-page {
  padding-top: 3rem;
}

@media (max-width: 960px) {
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    height: 66px;
    padding: 0 1.5rem;
  }

  .nav__hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav__mobile {
    display: flex;
  }

  .nav__links,
  .nav__cta {
    display: none !important;
  }

  .page-experiences .gallery-ring,
  .page-location .gallery-ring {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .nav__inner {
    height: 58px;
    padding: 0 1rem;
  }

  .nav__logo {
    font-size: 0.72rem;
    padding: 0.45rem 0.75rem;
  }

  .nav__mobile {
    padding: 5.25rem 1rem 2rem;
    gap: 0.1rem;
  }

  .nav__mobile a {
    font-size: 1.4rem;
    padding: 0.45rem 1rem;
    text-align: center;
  }

  .gallery-strip__scroll {
    width: 100%;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    padding: 0 1rem;
    animation: none;
  }

  .gallery-strip__item,
  .gallery-strip__item:nth-child(1),
  .gallery-strip__item:nth-child(6) {
    width: min(78vw, 280px);
    height: 320px;
  }

  .gallery-strip__item:nth-child(n+6) {
    display: none;
  }

  .beach-feature__bg {
    transform: none;
  }

  .beach-feature__content {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }

  .footer__inner--premium > * {
    min-width: 0;
  }

  .footer__logo--premium,
  .footer__brand-story,
  .footer__nav-link,
  .footer__contact-item,
  .footer__newsletter-note {
    overflow-wrap: anywhere;
  }

  .page-experiences .gallery-ring,
  .page-location .gallery-ring {
    grid-template-columns: 1fr;
  }

  .page-experiences .gallery-card,
  .page-location .gallery-card {
    height: 340px;
  }
}

@media (max-width: 400px) {
  .hero__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0 1rem;
  }

  .nav__inner {
    height: 54px;
    gap: 0.5rem;
    padding: 0 0.75rem;
  }

  .nav__logo {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.55rem;
  }

  .nav__hamburger {
    padding: 0.4rem;
  }

  .nav__mobile a {
    font-size: 1.12rem;
    padding: 0.38rem 0.75rem;
  }
}


.references-page {
  background: var(--cream);
  min-height: 100vh;
}

.references-hero {
  background: var(--white);
  padding: 7rem 2rem 3rem;
  text-align: center;
}

.references-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--ink);
  margin: 1rem auto 1rem;
  max-width: 980px;
}

.references-hero__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 860px;
  margin: 0 auto;
}

.references-summary {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  padding: 2rem 2.2rem;
}

.references-summary__lead {
  font-family: var(--font-nav);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9rem;
}

.references-list {
  list-style: disc;
  margin-left: 1.2rem;
  color: var(--ink);
}

.references-list li {
  font-family: var(--font-body);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.references-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  margin-top: 2.5rem;
}

.references-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.references-table th,
.references-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.references-table th {
  font-family: var(--font-nav);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--sand);
}

.references-table td {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink);
}

.references-table tbody tr:last-child td {
  border-bottom: none;
}

.references-table a {
  color: var(--orange);
  word-break: break-all;
}

.references-table a:hover {
  color: #D96D18;
}

@media (max-width: 640px) {
  .references-hero {
    padding: 6rem 1rem 2.5rem;
  }

  .references-summary {
    padding: 1.5rem;
  }
}

