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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: height var(--duration) var(--ease-out),
              background var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out);
  background: transparent;
}

.nav.scrolled {
  height: var(--nav-height-scrolled);
  background: var(--white);
  border-bottom: 1px solid rgba(184, 150, 110, 0.15);
}

/* Applied on all pages that don't start with a dark full-bleed hero */
.nav--solid {
  background: var(--white) !important;
  border-bottom: 1px solid rgba(184, 150, 110, 0.15);
}

.nav--solid .nav-link {
  color: var(--charcoal);
}

.nav--solid .nav-link:hover,
.nav--solid .nav-link.active {
  color: var(--gold);
}

.nav--solid .nav-book-btn {
  color: var(--gold);
  border-color: var(--gold);
}

.nav--solid .nav-book-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.nav--solid .nav-toggle span {
  background: var(--charcoal);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.nav-logo-mobile {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav.scrolled .nav-link {
  color: var(--charcoal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration) var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-book-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 24px;
  transition: all var(--duration-fast) var(--ease-out);
}

.nav-book-btn:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.nav.scrolled .nav-book-btn {
  color: var(--gold);
  border-color: var(--gold);
}

.nav.scrolled .nav-book-btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all var(--duration-fast) var(--ease-out);
}

.nav.scrolled .nav-toggle span {
  background: var(--charcoal);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  background: var(--charcoal);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  background: var(--charcoal);
}

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 999;
  padding: calc(var(--nav-height) + 40px) 24px 40px;
  transform: translateX(100%);
  transition: transform var(--duration) var(--ease-out),
              visibility var(--duration) var(--ease-out);
  visibility: hidden;
  /* NOT display:none — that kills the transition */
}

.nav-mobile.open {
  transform: translateX(0);
  visibility: visible;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-mobile-link {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px solid rgba(184, 150, 110, 0.15);
}

.nav-mobile-link:hover {
  color: var(--gold);
}

.nav-mobile-book {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  background: var(--gold);
  padding: 14px 32px;
  text-align: center;
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 40, 36, 0.45) 0%,
    rgba(44, 40, 36, 0.2) 40%,
    rgba(44, 40, 36, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

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

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ========================================
   PAGE HERO (subpages)
   ======================================== */

.page-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  height: 50dvh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* No margin-top needed — the pt on the section handles nav clearance */
  padding-top: var(--nav-height);
}

.page-hero-image {
  position: absolute;
  inset: 0;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-hero-content .hero-title {
  font-size: clamp(48px, 6vw, 72px);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 14px 32px;
  transition: all var(--duration-fast) var(--ease-out);
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

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

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

.btn-full {
  width: 100%;
}

/* ========================================
   SUITE ROWS
   ======================================== */

.suite-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.suite-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-bottom: 1px solid rgba(184, 150, 110, 0.15);
}

.suite-row:first-child {
  border-top: 1px solid rgba(184, 150, 110, 0.15);
}

.suite-image {
  overflow: hidden;
  position: relative;
  /* Height is set explicitly so the img child has something to fill */
  min-height: 360px;
}

.suite-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  display: block;
}

.suite-row:hover .suite-image img {
  transform: scale(1.03);
}

.suite-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
  background: var(--white);
}

.suite-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}

.suite-name {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 16px;
}

.suite-name a:hover {
  color: var(--gold);
}

.suite-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 24px;
}

.suite-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  transition: color var(--duration-fast) var(--ease-out);
}

.suite-cta:hover {
  color: var(--gold-dark);
}

.suite-row-alt .suite-image {
  order: 2;
}

.suite-row-alt .suite-info {
  order: 1;
}

/* ========================================
   FACILITIES
   ======================================== */

.facilities-strip {
  background: var(--white);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  margin-bottom: 80px;
}

.facility-item {
  padding: 24px 16px;
}

.facility-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin: 0 auto 16px;
  stroke-width: 1.5;
}

.facility-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.facility-detail {
  font-size: 14px;
  color: var(--warm-gray);
}

.facilities-full {
  border-top: 1px solid rgba(184, 150, 110, 0.15);
  padding-top: 64px;
}

.facilities-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.facility-cat h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.facility-cat ul {
  list-style: none;
}

.facility-cat li {
  font-size: 14px;
  line-height: 2;
  color: var(--warm-gray);
  padding-left: 16px;
  position: relative;
}

.facility-cat li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 4px;
  height: 1px;
  background: var(--gold);
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-section {
  background: var(--sand);
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-track {
  position: relative;
  /* Height is determined by the visible card; we use a min so it doesn't collapse */
}

.testimonial-card {
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--duration) var(--ease-out);
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.testimonial-card:first-child {
  /* First card is in flow to give the track its natural height */
  position: relative;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 4px;
}

.testimonial-date {
  font-size: 13px;
  color: var(--warm-gray);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm-gray);
  opacity: 0.3;
  transition: all var(--duration-fast) var(--ease-out);
}

.testimonial-dot.active {
  background: var(--gold);
  opacity: 1;
  transform: scale(1.2);
}

/* ========================================
   LOCATION
   ======================================== */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(184, 150, 110, 0.3);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 16px; /* MUST be 16px+ to prevent iOS Safari zoom */
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--duration-fast) var(--ease-out);
  -webkit-appearance: none;
  border-radius: 0;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--warm-gray);
  font-weight: 300;
}

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

/* HTML uses .form-group (not .contact-form-group) */
.form-group,
.contact-form-group {
  margin-bottom: 28px;
}

.form-group label,
.contact-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--warm-gray);
  margin-bottom: 8px;
}

.contact-thankyou {
  display: none;
  margin-top: 16px;
  color: var(--gold);
  font-size: 14px;
}

.contact-form.submitted .contact-thankyou {
  display: block;
}

.contact-form.submitted button[type="submit"] {
  display: none;
}

.contact-detail {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(184, 150, 110, 0.15);
}

.contact-detail:last-of-type {
  border-bottom: none;
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-detail p {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-map {
  margin-top: 32px;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  filter: grayscale(30%);
}

/* Location page additions */
.location-full-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.location-map-full iframe {
  width: 100%;
  height: 350px;
  border: 0;
  filter: grayscale(30%);
  display: block;
}

.location-address {
  padding: 28px;
  background: var(--white);
  margin-top: 3px;
}

.location-address h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}

.location-address p {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 8px;
}

.location-address a:hover { color: var(--gold); }

.location-nearby {
  margin-top: 48px;
}

.nearby-heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 24px;
}

.nearby-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.nearby-cat h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.nearby-cat ul {
  list-style: none;
}

.nearby-cat li {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 2.2;
  border-bottom: 1px solid rgba(184, 150, 110, 0.1);
}

/* Activities */
.activities-intro {
  max-width: 640px;
  margin-bottom: 64px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.activity-card { overflow: hidden; }

.activity-image {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.activity-card:hover .activity-image img {
  transform: scale(1.04);
}

.activity-info {
  padding: 24px 0;
}

.activity-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.activity-info p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.75;
}

.location-map iframe {
  width: 100%;
  height: 400px;
  filter: grayscale(30%) contrast(0.95);
}

.location-info .section-label {
  margin-top: 0;
}

.location-distances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.distance-item {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid rgba(184, 150, 110, 0.15);
}

.distance-val {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.2;
}

.distance-label {
  font-size: 13px;
  color: var(--warm-gray);
}

/* ========================================
   GALLERY
   ======================================== */

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.gallery-filter {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 8px 20px;
  color: var(--warm-gray);
  border: 1px solid rgba(184, 150, 110, 0.2);
  transition: all var(--duration-fast) var(--ease-out);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 8/3;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: 4/6;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 40, 36, 0);
  transition: background var(--duration-fast) var(--ease-out);
}

.gallery-item:hover::after {
  background: rgba(44, 40, 36, 0.15);
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(44, 40, 36, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  z-index: 10001;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: var(--white);
  cursor: pointer;
  padding: 16px;
  z-index: 10001;
  opacity: 0.75;
  transition: opacity var(--duration-fast) var(--ease-out);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 13px;
    opacity: 0.85;
    pointer-events: none;
    background: rgba(0,0,0,0.35);
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border-bottom: 1px solid rgba(184, 150, 110, 0.25);
  color: var(--charcoal);
  font-size: 16px;
  transition: border-color var(--duration-fast) var(--ease-out);
}

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

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

.contact-thankyou {
  display: none;
  color: var(--gold);
  font-size: 14px;
  margin-top: 16px;
}

.contact-form.submitted .form-group,
.contact-form.submitted .btn {
  display: none;
}

.contact-form.submitted .contact-thankyou {
  display: block;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-detail p,
.contact-detail a {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  filter: grayscale(30%) contrast(0.95);
}

/* ========================================
   LOCATION FULL PAGE
   ======================================== */

.location-full-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
}

.location-nearby {
  margin-top: 48px;
}

.nearby-heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.nearby-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.nearby-cat h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}

.nearby-cat li {
  font-size: 14px;
  line-height: 2;
  color: var(--warm-gray);
}

.location-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.location-address h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}

.location-address p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.location-address a {
  color: var(--charcoal);
}

.location-address a:hover {
  color: var(--gold);
}

/* ========================================
   ACTIVITIES
   ======================================== */

.activities-intro {
  max-width: 640px;
  margin-bottom: 64px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.activity-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--duration) var(--ease-out);
}

.activity-card:hover {
  transform: translateY(-4px);
}

.activity-image {
  overflow: hidden;
  aspect-ratio: 3/2;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.activity-card:hover .activity-image img {
  transform: scale(1.04);
}

.activity-info {
  padding: 24px 0;
}

.activity-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.activity-info p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--warm-gray);
}

/* ========================================
   GUESTS PAGE
   ======================================== */

.guests-intro {
  max-width: 640px;
  margin-bottom: 64px;
}

.guests-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
}

.guest-card {
  padding: 48px 0;
  border-bottom: 1px solid rgba(184, 150, 110, 0.15);
}

.guest-card:first-child {
  border-top: 1px solid rgba(184, 150, 110, 0.15);
}

.guest-quote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.guest-card footer {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.guest-card cite {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.guest-date {
  font-size: 13px;
  color: var(--warm-gray);
}

/* ========================================
   SUITE DETAIL PAGE
   ======================================== */

.suite-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  height: 70dvh;
  min-height: 500px;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.suite-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suite-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,40,36,0.4) 0%, rgba(44,40,36,0.5) 100%);
}

.suite-hero-content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 2;
  color: var(--white);
}

.suite-hero-content .suite-eyebrow {
  color: rgba(255,255,255,0.8);
}

.suite-hero-content .suite-name {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 8px;
}

.suite-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  padding-top: 64px;
}

.suite-main-desc {
  margin-bottom: 48px;
}

.suite-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 48px;
}

.suite-gallery-grid .gallery-item {
  aspect-ratio: 1;
}

.suite-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  padding: 32px 0;
  border-top: 1px solid rgba(184, 150, 110, 0.15);
  border-bottom: 1px solid rgba(184, 150, 110, 0.15);
}

.suite-amenities-label {
  margin-bottom: 24px;
}

.suite-amenity-item {
  font-size: 14px;
  color: var(--warm-gray);
  padding-left: 16px;
  position: relative;
}

.suite-amenity-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 1px;
  background: var(--gold);
}

.suite-sidebar-card {
  background: var(--white);
  padding: 40px;
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.suite-sidebar-card h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.suite-sidebar-detail {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 24px;
}

.suite-sidebar-card .btn {
  margin-top: 16px;
}

/* ========================================
   LEGAL PAGES (Privacy, Terms, Cookies)
   ======================================== */

.legal-section {
  background: var(--cream);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 300;
  color: var(--charcoal);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(184, 150, 110, 0.2);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 8px;
  list-style: disc;
}

.legal-content li strong {
  font-weight: 500;
  color: var(--charcoal);
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.legal-updated {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--warm-gray);
  margin-bottom: 32px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 32px;
  font-size: 14px;
}

.cookie-table th {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(184, 150, 110, 0.2);
}

.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(184, 150, 110, 0.1);
  color: var(--charcoal);
  line-height: 1.6;
}

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

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 4px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
}

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

/* ========================================
   MOBILE BOOKING BAR
   ======================================== */

.booking-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  padding: 12px 16px;
  border-top: 1px solid rgba(184, 150, 110, 0.15);
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}

/* ========================================
   FOCUS STATES (Accessibility)
   ======================================== */

.nav-link:focus-visible,
.nav-book-btn:focus-visible,
.nav-toggle:focus-visible,
.btn:focus-visible,
.suite-cta:focus-visible,
.gallery-filter:focus-visible,
.testimonial-dot:focus-visible,
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible,
.nav-mobile-link:focus-visible,
.footer a:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-toggle:focus-visible {
  border-radius: 4px;
}

.testimonial-dot:focus-visible {
  outline-offset: 4px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

.animate-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s var(--ease-out);
}

.animate-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   PAGE TRANSITIONS
   ======================================== */

/* ========================================
   WELCOME SECTION
   ======================================== */

.welcome-section {
  background: var(--cream);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.welcome-image {
  overflow: hidden;
}

.welcome-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* ========================================
   SECTION HEADER
   ======================================== */

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-hr {
  margin-left: auto;
  margin-right: auto;
}
