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

:root {
  --gold: #b89b6a;
  --gold-light: #d4bf98;
  --gold-dark: #8a7040;
  --ivory: #f7f3ed;
  --ivory-dark: #ede6da;
  --charcoal: #1c1c1c;
  --charcoal-mid: #2e2e2e;
  --text-body: #4a4035;
  --text-muted: #8a7e72;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", sans-serif;
  --transition: 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--charcoal);
  color: var(--white);
  overflow-x: hidden;
  cursor: default;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 16px;
  height: 16px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.5s,
    padding 0.5s,
    backdrop-filter 0.5s;
}

nav.scrolled {
  background: rgba(28, 28, 28, 0.88);
  backdrop-filter: blur(18px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(184, 155, 106, 0.15);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 38px;
  height: 38px;
}

.nav-logo span {
  color: var(--gold);
}

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

.nav-links a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

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

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

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

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  background: var(--gold);
  padding: 10px 22px;
  text-decoration: none;
  font-weight: 500;
  transition:
    background 0.3s,
    color 0.3s !important;
}

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

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.hide {
  display: none !important;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    background 0.3s;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 155, 106, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.12s linear,
    width 0.3s,
    height 0.3s;
}

/* ─── TRANSITIONS ─── */
.delay-1ms {
  transition-delay: 0.1s;
}

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

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #1e2d22 0%,
    #2a3d28 30%,
    #1a2a1c 60%,
    #0e1a10 100%
  );
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  transition: transform 8s ease-out;
  filter: brightness(0.55);
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0) 40%,
    rgba(28, 28, 28, 0.6) 75%,
    rgba(28, 28, 28, 0.92) 100%
  );
}

.hero-vignette-side {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 28, 28, 0.5) 0%,
    rgba(0, 0, 0, 0) 50%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 780px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 1.2s 0.4s forwards ease-out;
}

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

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 28px;
}

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

.hero-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  max-width: 420px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 15px 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(184, 155, 106, 0.08);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroIn 1s 1.4s forwards;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(0.6);
    transform-origin: top;
  }
}

/* ─── SECTION COMMONS ─── */
section {
  position: relative;
}

.section-label {
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

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

/* ─── INTRO STRIP ─── */
.intro-strip {
  background: var(--ivory);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
}

.intro-stat {
  padding: 20px 60px;
  text-align: center;
}

.intro-stat .num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}

.intro-stat .num em {
  font-style: italic;
  color: var(--gold-dark);
}

.intro-stat p {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.intro-divider {
  background: var(--ivory-dark);
}

/* ─── ABOUT ─── */
.about {
  background: var(--charcoal);
  padding: 140px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 620px;
}

.about-img-main {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}

.about-img-main {
  background: linear-gradient(
    135deg,
    #1c2820 0%,
    #2a3c28 40%,
    #1a2e22 70%,
    #243020 100%
  );
}

.about-img-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse at 30% 40%,
      rgba(184, 155, 106, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(44, 60, 40, 0.8) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.about-img-main img {
  position: relative;
  z-index: 2;
}

.about-img-main:hover img {
  transform: scale(1.04);
  filter: saturate(1);
}

.about-img-overlay {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--gold);
  pointer-events: none;
}

.about-img-corner {
  position: absolute;
  top: 30px;
  left: -30px;
  width: 80px;
  height: 80px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-corner svg {
  width: 32px;
  fill: var(--charcoal);
}

.about-text .section-label {
  margin-bottom: 32px;
}

.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}

.about-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.about-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 36px 0;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(184, 155, 106, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
}

.feat-text h4 {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 4px;
}

.feat-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0;
}

/* ─── ROOMS ─── */
.rooms {
  background: var(--ivory);
  padding: 140px 60px;
}

.rooms-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.rooms-header h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
}

.rooms-header h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.rooms-header p {
  max-width: 340px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  text-align: right;
}

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

.room-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1e2a22 0%, #2a3c2a 50%, #162018 100%);
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.8);
  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}

.room-card:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(0.6);
}

.room-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 100%);
  transform: translateY(24px);
  transition: transform 0.5s ease;
}

.room-card:hover .room-card-body {
  transform: translateY(0);
}

.room-type {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.room-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.room-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s 0.1s,
    transform 0.4s 0.1s;
  margin-bottom: 16px;
}

.room-card:hover .room-desc {
  opacity: 1;
  transform: translateY(0);
}

.room-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.4s 0.15s;
}

.room-card:hover .room-link {
  opacity: 1;
}

.room-link::after {
  content: "→";
  transition: transform 0.3s;
}

.room-link:hover::after {
  transform: translateX(4px);
}

/* ─── PARALLAX DIVIDER ─── */
.parallax-divider {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  inset: -80px;
  background: linear-gradient(
    160deg,
    #1a2020 0%,
    #252e2c 35%,
    #1c2828 60%,
    #121a1a 100%
  );
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) saturate(0.7);
  will-change: transform;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 60px;
}

.parallax-content .section-label {
  justify-content: center;
}

.parallax-content .section-label::before {
  display: none;
}

.parallax-content h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 24px;
}

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

.parallax-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

/* ─── EVENTS ─── */
.events {
  background: var(--charcoal);
  padding: 60px;
  margin-bottom: 40px;
}

.events-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}

.events-intro h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

.events-intro h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.events-intro p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}

.events-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 2px;
}

.event-cell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2420 0%, #242e28 50%, #141e1c 100%);
  cursor: pointer;
}

.event-cell:first-child {
  grid-row: 1 / 3;
}

.event-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.7);
  transition:
    transform 0.7s,
    filter 0.7s;
}

.event-cell:hover img {
  transform: scale(1.05);
  filter: saturate(0.9) brightness(0.55);
}

.event-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.event-cat {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.event-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
}

.event-cell:first-child .event-name {
  font-size: 34px;
}

/* ─── TESTIMONIAL ─── */
.testimonials {
  background: var(--ivory-dark);
  padding: 120px 60px;
  overflow: hidden;
}

.testimonials-inner {
  display: flex;
  gap: 40px;
  animation: slideTesti 90s linear infinite;
  width: max-content;
}

.testimonials:hover .testimonials-inner {
  animation-play-state: paused;
}

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

.testi-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 380px;
  padding: 40px;
  background: var(--white);
  position: relative;
}

.testi-text {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 28px;
}

.testi-author {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testi-author strong {
  display: block;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 12px;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testi-stars span {
  color: var(--gold);
  font-size: 12px;
}

/* ─── LOCATION ─── */
.location {
  background: var(--charcoal);
  padding: 140px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.location-map {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #1a1a1a;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1) contrast(0.85) brightness(0.7);
  opacity: 0.8;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(184, 155, 106, 0.3),
    0 0 0 16px rgba(184, 155, 106, 0.15);
  animation: pinPulse 2s infinite;
  pointer-events: none;
}

@keyframes pinPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 8px rgba(184, 155, 106, 0.3),
      0 0 0 16px rgba(184, 155, 106, 0.15);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(184, 155, 106, 0.15),
      0 0 0 24px rgba(184, 155, 106, 0.05);
  }
}

.location-text .section-label {
  margin-bottom: 28px;
}

.location-text h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}

.location-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.location-text p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
  /* margin-bottom: 40px; */
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.loc-item {
  display: flex;
  gap: 20px;
  padding: 10px 0 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.loc-item:first-child {
  margin-top: 20px;
  margin-bottom: 0px;
}

.loc-item:last-child {
  border: none;
  padding-bottom: 0px;
}

.loc-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(184, 155, 106, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
}

.loc-info h4 {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 4px;
}

.loc-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* ─── BOOKING CTA ─── */
.booking-cta {
  position: relative;
  padding: 140px 60px;
  overflow: hidden;
  text-align: center;
  background: var(--charcoal);
}

.booking-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #101818 0%,
    #1a2820 40%,
    #0e1c16 70%,
    #141c1a 100%
  );
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) saturate(0.4);
  transform: scale(1.02);
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(184, 155, 106, 0.08) 0%,
    rgba(28, 28, 28, 0.6) 100%
  );
}

.booking-content {
  position: relative;
  z-index: 2;
}

.booking-content h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 28px;
}

.booking-content h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.booking-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.9;
}

.booking-form-bar {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 155, 106, 0.25);
  padding: 8px;
  gap: 2px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  padding: 14px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  min-width: 180px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

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

.booking-field label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.booking-field input,
.booking-field select {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  cursor: pointer;
}

.booking-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

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

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

.booking-submit:hover {
  background: var(--gold-light);
}

.link {
  color: inherit;
  text-decoration: none;

  a:visited {
    color: inherit;
  }
}

/* ─── FOOTER ─── */
footer {
  background: #111;
  padding: 80px 60px 40px;
  border-top: 1px solid rgba(184, 155, 106, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo-text {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.footer-brand .logo-text span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 16px;
  transition:
    border-color 0.3s,
    color 0.3s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.social-link i {
  pointer-events: none;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.08em;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
    position: relative;
    touch-action: pan-x pan-y;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;

    a {
      text-decoration: none;
      color: var(--primary);
    }

    a:visited {
      color: var(--primary);
    }
  }
  nav {
    padding: 20px 24px;
  }
  nav.scrolled {
    padding: 14px 24px;
  }
  .nav-links {
    display: none;
  }
  .hero-content {
    padding: 0 24px;
  }
  .hero-scroll {
    right: 24px;
  }
  .intro-strip {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 24px;
  }
  .intro-divider {
    display: none;
  }
  .about,
  .events {
    padding: 80px 24px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-visual {
    height: 400px;
  }
  .rooms {
    padding: 80px 24px;
  }
  .rooms-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .rooms-header p {
    text-align: left;
    max-width: 100%;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .events-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .events-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .event-cell:first-child {
    grid-row: auto;
  }
  .testimonials {
    padding: 80px 0;
  }
  .location {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 48px;
  }
  .location-map {
    height: 320px;
  }
  .booking-cta {
    padding: 80px 24px;
  }
  .booking-form-bar {
    flex-direction: column;
    width: 100%;
  }
  .booking-field {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    min-width: auto;
  }
  .booking-submit {
    padding: 20px;
  }
  footer {
    padding: 60px 24px 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .parallax-content {
    padding: 0 24px;
  }
}
