/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TISYA RESORT — Master Stylesheet
   Design: Luxury Boutique / Warm Earth / Cormorant Garamond
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Google Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────────── */
:root {
  --cream:        #FAF7F2;
  --cream-dark:   #F2EDE5;
  --brown-light:  #C4A882;
  --brown:        #8B6547;
  --brown-mid:    #5E3D22;
  --brown-dark:   #3A2414;
  --brown-deep:   #1E1208;
  --gold:         #C9A45A;
  --gold-light:   #E8D5A3;
  --text-dark:    #2C1A0E;
  --text-mid:     #7A5C42;
  --text-muted:   #A8917A;
  --white:        #FFFFFF;
  --border:       rgba(139,101,71,0.18);
  
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;
  
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --shadow-sm: 0 4px 20px rgba(58,36,20,0.06);
  --shadow-md: 0 12px 48px rgba(58,36,20,0.10);
  --shadow-lg: 0 24px 80px rgba(58,36,20,0.15);
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }
ul { list-style: none; }
input, select { font-family: var(--sans); }

/* ── Page Loader ──────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--brown-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.loader-logo-img {
  height: clamp(40px, 8vw, 60px);
  width: auto;
  object-fit: contain;
}
.loader-line {
  width: 120px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center center;
}
.loader-sub {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--brown-light);
  opacity: 0;
}

/* ── Custom Cursor ────────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brown-mid);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--brown-mid);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-luxury), height 0.4s var(--ease-luxury), border-color 0.2s;
}
body.cursor-hover .cursor-ring {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
}
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ── Header ───────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease-luxury), background 0.4s, box-shadow 0.4s;
}
#header.scrolled {
  padding: 16px 48px;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.header-logo {
  display: flex;
  align-items: center;
  position: relative;
  height: 64px; /* Increased size */
  width: 190px;
}
.header-logo-img {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.4s var(--ease-luxury);
}
.logo-white { opacity: 1; }
.logo-black { opacity: 0; }

#header.scrolled .logo-white { opacity: 0; }
#header.scrolled .logo-black { opacity: 1; }

.header-nav { display: flex; align-items: center; gap: 40px; }
.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.85);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-luxury);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--cream); }
#header.scrolled .nav-link { color: var(--text-mid); }
#header.scrolled .nav-link:hover { color: var(--brown-mid); }

.header-book-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-dark);
  background: var(--cream);
  padding: 11px 26px;
  border-radius: 50px;
  transition: all 0.3s var(--ease-luxury);
}
#header.scrolled .header-book-btn {
  background: var(--brown-dark);
  color: var(--cream);
}
.header-book-btn:hover {
  background: var(--gold);
  color: var(--brown-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,164,90,0.35);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}
#header.scrolled .menu-toggle span { background: var(--brown-dark); }
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(360px, 100%);
  height: 100%;
  background: var(--brown-dark);
  z-index: 999;
  padding: 100px 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: right 0.5s var(--ease-luxury);
}
.mobile-nav.open { right: 0; }
.mobile-nav-link {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.3s, transform 0.3s;
  display: block;
}
.mobile-nav-link:hover { color: var(--gold); transform: translateX(6px); }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,18,8,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--brown-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transform: scale(1.05);
  transition: transform 12s var(--ease-luxury);
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30,18,8,0.35) 0%, rgba(30,18,8,0.15) 50%, rgba(30,18,8,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 920px;
}
.hero-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0;
}
.hero-pretitle::before, .hero-pretitle::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  overflow: hidden;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-title .title-line { 
  display: block; 
  overflow: hidden; 
  padding-bottom: 0.2em; /* Prevents g from clipping */
  margin-bottom: -0.2em;
}
.hero-title .title-word {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(250,247,242,0.72);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 48px;
  opacity: 0;
}

/* Floating decorative elements */
.hero-floats {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.float-el {
  position: absolute;
  opacity: 0;
}
.float-leaf {
  width: 80px;
  opacity: 0.4;
}
.float-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(201,164,90,0.25);
}
.float-line {
  width: 1px;
  height: 80px;
  background: rgba(201,164,90,0.3);
}

/* Hero Booking Bar */
.hero-booking-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
  opacity: 0;
}
.booking-bar-inner {
  background: var(--cream);
  border-radius: 14px;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  width: calc(100% - 48px);
}
.booking-field {
  flex: 1;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
  cursor: pointer;
}
.booking-field:last-of-type { border-right: none; }
.booking-field label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.booking-field input, .booking-field select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
}
.booking-field select { -webkit-appearance: none; appearance: none; }
.booking-submit-btn {
  background: var(--brown-dark);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 10px;
  margin: 0 4px;
  transition: all 0.3s var(--ease-luxury);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-submit-btn:hover {
  background: var(--brown-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58,36,20,0.3);
}
.booking-submit-btn svg { width: 16px; height: 16px; }

/* Hero scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 110px;
  right: 52px;
  z-index: 3;
  transform: rotate(90deg);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.55);
  opacity: 0;
}
.scroll-line {
  width: 50px;
  height: 1px;
  background: rgba(201,164,90,0.5);
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  animation: scrollLine 2s ease-in-out infinite 2s;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ── NUMBERS STRIP ────────────────────────────────────────────── */
.numbers-strip {
  background: var(--brown-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(201,164,90,0.15);
}
.number-item {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid rgba(201,164,90,0.1);
  transition: background 0.3s;
}
.number-item:last-child { border-right: none; }
.number-item:hover { background: rgba(201,164,90,0.05); }
.number-val {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.number-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
}

/* ── SECTION BASE ─────────────────────────────────────────────── */
.section { padding: 100px 64px; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--brown-light);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--brown); }
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* Animate on scroll */
.anim-fadeup {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}
.anim-fadeup.visible { opacity: 1; transform: none; }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }

/* ── GALLERY ARCH ─────────────────────────────────────────────── */
.gallery-section { background: var(--cream); overflow: hidden; padding-bottom: 80px; }
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 32px;
  flex-wrap: wrap;
}
.gallery-arch-row {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  height: 520px;
  padding: 0;
}
.arch-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s var(--ease-luxury);
}
.arch-card:nth-child(odd)  { border-radius: 200px 200px 16px 16px; height: 92%; }
.arch-card:nth-child(even) { border-radius: 16px 16px 200px 200px; height: 78%; }
.arch-card:hover { flex: 1.6; }
.arch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}
.arch-card:hover img { transform: scale(1.06); }
.arch-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(30,18,8,0.78);
  backdrop-filter: blur(10px);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  border-radius: 8px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s var(--ease-luxury);
  border: 1px solid rgba(201,164,90,0.2);
  text-align: center;
}
.arch-card:nth-child(even) .arch-label { bottom: auto; top: 20px; }
.arch-card:hover .arch-label { opacity: 1; transform: translateY(0); }

/* ── SPECIAL / WHY ────────────────────────────────────────────── */
.special-section { background: var(--cream-dark); }
.special-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 64px;
}
.special-features { display: flex; flex-direction: column; gap: 48px; }
.special-features.right .feature-item { text-align: left; }
.feature-item { display: flex; flex-direction: column; gap: 12px; }
.feature-item.right-align { text-align: right; align-items: flex-end; }
.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.feature-item:hover .feature-icon-wrap {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  transform: scale(1.08);
}
.feature-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
}
.feature-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; font-weight: 300; }
.special-center-img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 12px var(--cream), 0 0 0 24px var(--border);
  flex-shrink: 0;
}
.special-center-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── ROOMS ────────────────────────────────────────────────────── */
.rooms-section { background: var(--cream); }
.rooms-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}
.rooms-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 330px 330px auto;
  gap: 20px;
}
.room-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: var(--brown-dark);
}
/* Room 1 — featured, tall left column */
.room-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}
/* Rooms 2 & 3 — right column, stacked */
.room-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.room-card:nth-child(3) { grid-column: 2; grid-row: 2; }
/* Room 4 — full width horizontal */
.room-card:nth-child(4) {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: 55% 45%;
  border-radius: 20px;
  min-height: 280px;
}
.room-card-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury), filter 0.5s;
  filter: brightness(0.85);
}
.room-card:nth-child(1) .room-card-img { min-height: 680px; }
.room-card:hover .room-card-img { transform: scale(1.07); filter: brightness(0.7); }
.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,18,8,0.85) 0%, transparent 50%);
}
.room-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease-luxury);
}
.room-card:hover .room-card-body { transform: translateY(0); }
/* Room 4 horizontal — content side */
.room-card:nth-child(4) .room-card-img {
  position: relative;
  border-radius: 20px 0 0 20px;
}
.room-card:nth-child(4) .room-card-overlay {
  border-radius: 20px 0 0 20px;
}
.room-card:nth-child(4) .room-card-body {
  position: relative;
  bottom: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 48px;
  background: var(--brown-dark);
  border-radius: 0 20px 20px 0;
}
.room-card:nth-child(4):hover .room-card-body { transform: none; }
.room-card:nth-child(4) .room-desc {
  max-height: 80px;
  overflow: visible;
  color: rgba(250,247,242,0.68);
}
.room-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,164,90,0.15);
  border: 1px solid rgba(201,164,90,0.3);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.room-name {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.2;
}
.room-desc {
  font-size: 0.88rem;
  color: rgba(250,247,242,0.7);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-luxury);
}
.room-card:hover .room-desc { max-height: 100px; }
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(250,247,242,0.12);
  padding-top: 16px;
}
.room-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
}
.room-price small { font-family: var(--sans); font-size: 0.75rem; color: rgba(250,247,242,0.5); font-weight: 300; }
.room-explore-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(250,247,242,0.12);
  border: 1px solid rgba(250,247,242,0.2);
  padding: 9px 20px;
  border-radius: 50px;
  transition: all 0.3s;
}
.room-explore-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--brown-dark); }

/* ── AMENITIES ────────────────────────────────────────────────── */
.amenities-section { background: var(--brown-dark); color: var(--cream); overflow: hidden; position: relative; }
.amenities-section::before {
  content: 'TISYA';
  position: absolute;
  font-family: var(--serif);
  font-size: 25vw;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
.amenities-section .section-title { color: var(--cream); }
.amenities-section .section-eyebrow { color: var(--gold); }
.amenities-section .section-eyebrow::before { background: var(--gold); }
.amenities-section .section-sub { color: rgba(250,247,242,0.58); }
.amenities-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 32px;
  flex-wrap: wrap;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.amenity-card {
  background: rgba(250,247,242,0.04);
  border: 1px solid rgba(201,164,90,0.1);
  padding: 44px 32px;
  transition: all 0.4s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}
.amenity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,164,90,0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.amenity-card:hover { background: rgba(201,164,90,0.08); transform: translateY(-4px); }
.amenity-card:hover::before { opacity: 1; }
.amenity-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.amenity-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.amenity-desc { font-size: 0.83rem; color: rgba(250,247,242,0.5); line-height: 1.6; font-weight: 300; }

/* ── PROCESS ──────────────────────────────────────────────────── */
.process-section { background: var(--cream-dark); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brown);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.process-step:hover .process-num {
  background: var(--brown-dark);
  color: var(--gold);
  border-color: var(--brown-dark);
  transform: scale(1.1);
}
.process-step-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.process-step-desc { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; font-weight: 300; }

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials-section { background: var(--cream); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.testi-card {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 36px;
  position: relative;
  transition: all 0.4s var(--ease-luxury);
  box-shadow: 0 2px 20px rgba(58,36,20,0.06);
}
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); background: var(--cream); }
.testi-quote {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold-light);
  line-height: 1;
  opacity: 0.6;
}
.testi-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 20px; }
.testi-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: #2C1A0E;
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 400;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C4A882, #8B6547);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #FAF7F2;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.92rem; color: #2C1A0E; margin-bottom: 2px; }
.testi-loc { font-size: 0.76rem; color: #7A5C42; }

/* ── DINING FEATURE ───────────────────────────────────────────── */
.dining-section { background: var(--cream-dark); padding: 0; }
.dining-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.dining-img-side { position: relative; overflow: hidden; }
.dining-img-side img { width: 100%; height: 100%; object-fit: cover; }
.dining-content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.dining-content-side .section-title { margin-bottom: 20px; }
.dining-content-side .section-sub { margin-bottom: 36px; }

/* ── WEDDING FEATURE ───────────────────────────────────────────── */
.wedding-section { background: var(--white); padding: 0; }
.wedding-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.wedding-img-side { position: relative; overflow: hidden; }
.wedding-img-side img { width: 100%; height: 100%; object-fit: cover; }
.wedding-content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.wedding-content-side .section-title { margin-bottom: 20px; }
.wedding-content-side .section-sub { margin-bottom: 36px; }

@media (min-width: 1025px) {
  .wedding-split .wedding-img-side { order: 2; }
  .wedding-split .wedding-content-side { order: 1; }
}

/* ── CTA BANNER ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(160deg, var(--brown-mid) 0%, var(--brown-dark) 60%, var(--brown-deep) 100%);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,164,90,0.12), transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,164,90,0.08), transparent 70%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(250,247,242,0.65);
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 50px;
  transition: all 0.35s var(--ease-luxury);
  cursor: pointer;
}
.btn-dark {
  background: var(--brown-dark);
  color: var(--cream);
  border: 1.5px solid var(--brown-dark);
}
.btn-dark:hover {
  background: var(--cream);
  color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(58,36,20,0.2);
}
.btn-gold {
  background: var(--gold);
  color: var(--brown-dark);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover {
  background: var(--brown-dark);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,164,90,0.3);
}
.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250,247,242,0.4);
}
.btn-outline-cream:hover {
  background: var(--cream);
  color: var(--brown-dark);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover {
  background: var(--brown-dark);
  color: var(--cream);
  border-color: var(--brown-dark);
  transform: translateY(-2px);
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────────────────── */
#footer {
  background: var(--brown-deep);
  color: var(--cream);
  padding: 80px 48px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,247,242,0.08);
}
.footer-brand-name {
  margin-bottom: 24px;
}
.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}
.footer-brand-desc {
  font-size: 0.87rem;
  color: rgba(250,247,242,0.45);
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 300;
}
.footer-socials { display: flex; gap: 14px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250,247,242,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,247,242,0.6);
  font-size: 0.8rem;
  transition: all 0.3s;
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown-dark);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--cream);
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(250,247,242,0.45);
  transition: color 0.3s;
  font-weight: 300;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(250,247,242,0.45);
  margin-bottom: 12px;
  align-items: flex-start;
  font-weight: 300;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); width: 14px; height: 14px; margin-top: 3px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(250,247,242,0.28);
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 0.78rem;
  color: rgba(250,247,242,0.28);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE BREAKPOINTS — Full System
   Desktop-first: 1280 → 1024 → 768 → 480
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── 1280px and below: Large tablet / small desktop ── */
@media (max-width: 1280px) {
  .section { padding: 90px 48px; }
  .section-inner { max-width: 100%; }
  .rooms-grid {
    grid-template-rows: 300px 300px auto;
  }
  .room-card:nth-child(1) .room-card-img { min-height: 620px; }
  .special-center-img { width: 280px; height: 280px; }
}

/* ── 1024px: Tablet landscape ─────────────────────── */
@media (max-width: 1024px) {
  .section { padding: 80px 40px; }

  /* Amenities 4→2 cols */
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  /* Special section: stack vertically */
  .special-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    justify-items: center;
  }
  .special-features { width: 100%; max-width: 560px; }
  .special-features.right .feature-item { text-align: left; }
  .feature-item.right-align { text-align: left; align-items: flex-start; }
  .special-center-img { order: -1; }

  /* Footer 4→2 cols */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Dining & Wedding: stack image above content */
  .dining-split, .wedding-split { grid-template-columns: 1fr; }
  .dining-img-side, .wedding-img-side { min-height: 400px; }
  .dining-content-side, .wedding-content-side { padding: 60px 48px; }

  /* Numbers strip: stays 4 col but smaller padding */
  .number-item { padding: 36px 20px; }

  /* Process: 2 cols at this size */
  .process-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .process-grid::before { display: none; }
}

/* ── 900px: Tablet portrait / large mobile ────────── */
@media (max-width: 900px) {
  .section { padding: 72px 32px; }
  .cta-banner { padding: 90px 32px; }

  /* Header: mobile mode */
  #header { padding: 18px 24px; }
  #header.scrolled { padding: 14px 24px; }
  .header-nav { display: none; }
  .header-book-btn { display: none; }
  .menu-toggle { display: flex; }

  /* Hero: remove absolute booking bar, make it flow */
  .hero {
    min-height: 100svh;
    padding: 100px 24px  0;
    justify-content: flex-start;
    padding-top: 120px;
    flex-direction: column;
  }
  .hero-content { padding: 0; margin-bottom: 40px; }
  .hero-booking-bar {
    position: relative;
    bottom: auto;
    width: 100%;
    padding: 0 0 40px;
    opacity: 1 !important;
  }
  .hero-booking-bar .booking-bar-inner {
    flex-direction: column;
    border-radius: 14px;
    gap: 0;
    width: 100%;
    max-width: 100%;
  }
  .booking-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
    padding: 14px 20px;
  }
  .booking-field:last-of-type { border-bottom: none; }
  .booking-guests-wrap .guests-panel {
    left: 0;
    right: auto;
    transform: none;
  }
  .booking-guests-wrap .guests-panel.gp-open { transform: none; }
  .booking-submit-btn {
    width: 100%;
    justify-content: center;
    border-radius: 10px;
    margin: 4px;
  }
  .scroll-hint { display: none; }
  .float-circle, .float-line { display: none; }

  /* Numbers strip: 2×2 */
  .numbers-strip { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2) { border-right: none; }

  /* Gallery: stack arch cards */
  .gallery-arch-row {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }
  .arch-card {
    border-radius: 16px !important;
    height: 260px !important;
    flex: none !important;
    width: 100%;
  }
  /* Extra spacing after 2nd image on mobile */
  .arch-card:nth-child(2) { margin-bottom: 24px; }
  .gallery-section { padding-bottom: 48px; }
  .gallery-header { margin-bottom: 40px; }

  /* Rooms: reset mosaic → single column */
  .rooms-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .room-card:nth-child(1) { grid-column: auto; grid-row: auto; }
  .room-card:nth-child(2) { grid-column: auto; grid-row: auto; }
  .room-card:nth-child(3) { grid-column: auto; grid-row: auto; }
  .room-card:nth-child(4) {
    grid-column: auto;
    display: block;
    min-height: auto;
  }
  .room-card:nth-child(4) .room-card-img {
    border-radius: 20px 20px 0 0 !important;
    min-height: 260px;
    height: 260px;
  }
  .room-card:nth-child(4) .room-card-overlay {
    border-radius: 20px 20px 0 0;
  }
  .room-card:nth-child(4) .room-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    border-radius: 0 0 20px 20px;
    background: transparent;
    transform: translateY(6px);
  }
  .room-card:nth-child(4):hover .room-card-body { transform: translateY(0); }
  .room-card-img { min-height: 300px !important; }
  .room-card:nth-child(1) .room-card-img { min-height: 380px !important; }

  /* Testimonials: 1 col */
  .testi-grid { grid-template-columns: 1fr; }

  /* Footer: 1 col */
  .footer-top { grid-template-columns: 1fr; }
  #footer { padding: 64px 28px 32px; }
}

/* ── 768px: Tablet / large phone ─────────────────── */
@media (max-width: 768px) {
  .section { padding: 64px 24px; }
  .cta-banner { padding: 80px 24px; }

  /* Gallery header: stack */
  .gallery-header { flex-direction: column; align-items: flex-start; }
  .gallery-header .section-sub { max-width: 100% !important; }

  /* Amenities: 2→1 col */
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-card { padding: 32px 24px; }

  /* Amenities header: stack */
  .amenities-header { flex-direction: column; }
  .amenities-header .section-sub { max-width: 100% !important; }

  /* Rooms header: stack */
  .rooms-header { flex-direction: column; align-items: flex-start; gap: 20px; }

  /* Process: 1 col */
  .process-grid { grid-template-columns: 1fr; }

  /* Testimonials padding */
  .testi-card { padding: 32px 24px; }

  /* Dining */
  .dining-content-side { padding: 48px 28px; }

  /* Special center image smaller */
  .special-center-img { width: 240px; height: 240px; }
}

/* ── 480px: Mobile phones ────────────────────────── */
@media (max-width: 480px) {
  .section { padding: 56px 20px; }
  .cta-banner { padding: 64px 20px; }

  /* Hero title font */
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .hero-pretitle { font-size: 0.6rem; letter-spacing: 0.2em; }
  .hero-pretitle::before, .hero-pretitle::after { width: 28px; }

  /* Amenities: 1 col */
  .amenities-grid { grid-template-columns: 1fr; }

  /* Numbers 2×2 with full border */
  .number-item { padding: 28px 16px; }
  .number-val  { font-size: 2.2rem; }

  /* Section titles */
  .section-title { font-size: clamp(2rem, 9vw, 2.8rem); }

  /* Footer */
  #footer { padding: 52px 20px 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; }

  /* Buttons */
  .btn { padding: 13px 26px; font-size: 0.73rem; }

  /* Arch cards */
  .arch-card { height: 220px !important; }

  /* CTA buttons */
  .cta-banner .btn { display: flex; width: fit-content; margin: 0 auto; }

  /* Process steps */
  .process-step { padding: 0 8px; }

  /* Gallery header */
  .gallery-header { margin-bottom: 32px; }
}

/* Utility */
.text-center { text-align: center; }
.text-center .section-eyebrow { justify-content: center; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CUSTOM CONNECT WIDGET
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.tisya-connect-widget {
  background: #f4f3ef; /* Light cream */
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
}
.tisya-connect-title {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.tisya-connect-group {
  position: relative;
  margin-bottom: 16px;
}
.tisya-connect-icon {
  position: absolute;
  left: 16px;
  top: 16px;
  color: #a0a0a0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.tisya-connect-input {
  width: 100%;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 16px 16px 16px 52px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.3s;
}
.tisya-connect-input::placeholder {
  color: #a0a0a0;
}
.tisya-connect-input:focus {
  outline: none;
  border-color: var(--gold);
}
.tisya-connect-textarea {
  min-height: 140px;
  resize: vertical;
  padding-left: 16px; /* No icon on textarea */
}
.tisya-connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #b56b45; /* Soft Terracotta */
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 8px 8px 8px 24px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  margin-top: 10px;
}
.tisya-connect-btn:hover {
  background: var(--brown);
  transform: translateY(-2px);
}
.tisya-connect-btn-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b56b45;
}

/* ── TESTIMONIALS SLIDER ──────────────────────────────────────── */
.testi-track-wrap {
  position: relative;
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 0;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.testi-track .testi-card {
  flex: 0 0 calc(33.333% - 19px);
  width: calc(33.333% - 19px);
  margin-right: 28px;
  box-sizing: border-box;
}
.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}
.testi-arrow:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.testi-arrow svg { width: 18px; height: 18px; }
.testi-arrow-prev { left: -22px; }
.testi-arrow-next { right: -22px; }
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.testi-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 1050px) {
  .testi-track .testi-card { flex: 0 0 calc(50% - 14px); width: calc(50% - 14px); }
}
@media (max-width: 700px) {
  .testi-track .testi-card { flex: 0 0 100%; width: 100%; margin-right: 0; }
  .testi-arrow-prev { left: 0; }
  .testi-arrow-next { right: 0; }
}

