/* ================================================
   WINMOND HOTEL — Main Stylesheet
   ================================================ */

/* ---- Brand Fonts ---- */
@font-face {
  font-family: 'Chronicle';
  src: url('../Winmond Hotel Logo and Guidelines/Winmond Hotel Logo and Guidelines/Winmond Fonts/chronicle-display/Chronicle Display Roman.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Chronicle';
  src: url('../Winmond Hotel Logo and Guidelines/Winmond Hotel Logo and Guidelines/Winmond Fonts/chronicle-display/Chronicle Display Semibold.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Chronicle';
  src: url('../Winmond Hotel Logo and Guidelines/Winmond Hotel Logo and Guidelines/Winmond Fonts/chronicle-display/Chronicle Display Light Italic.otf') format('opentype');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Chronicle';
  src: url('../Winmond Hotel Logo and Guidelines/Winmond Hotel Logo and Guidelines/Winmond Fonts/chronicle-display/Chronicle Display Black.otf') format('opentype');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../Winmond Hotel Logo and Guidelines/Winmond Hotel Logo and Guidelines/Winmond Fonts/gotham_uJ50q/Gotham/Gotham Light/Gotham Light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../Winmond Hotel Logo and Guidelines/Winmond Hotel Logo and Guidelines/Winmond Fonts/gotham_uJ50q/Gotham/Gotham Book/Gotham Book.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../Winmond Hotel Logo and Guidelines/Winmond Hotel Logo and Guidelines/Winmond Fonts/gotham_uJ50q/Gotham/Gotham Medium/Gotham Medium.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../Winmond Hotel Logo and Guidelines/Winmond Hotel Logo and Guidelines/Winmond Fonts/gotham_uJ50q/Gotham/Gotham Bold/Gotham Bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---- Design Tokens ---- */
:root {
  --cream:        #EFE6C9;  /* Vanilla Cream */
  --cream-dark:   #E0D5B0;
  --dark:         #1B4332;  /* Pine Teal */
  --dark-2:       #163829;  /* Pine Teal — dark shade */
  --gold:         #D4AF37;  /* Metallic Gold */
  --gold-light:   #E8C96A;
  --gold-pale:    #F5EDCF;
  --text:         #060C06;  /* Onyx */
  --text-light:   #5A7A6A;
  --white:        #FFFFFF;
  --border:       rgba(212, 175, 55, 0.25);
  --shadow:       0 8px 40px rgba(0,0,0,0.12);
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif:   'Chronicle', Georgia, 'Times New Roman', serif;
  --font-sans:    'Gotham', system-ui, sans-serif;
  --max-w:        1280px;
  --nav-h:        90px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.section-title  { color: var(--dark); margin-bottom: 1.2rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.section-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-cta    { text-align: center; margin-top: 3rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold  { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--dark); }

.btn-gold-sm {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
  transition: var(--transition);
}
.btn-gold-sm:hover { background: var(--gold-light); border-color: var(--gold-light); }

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

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

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-outline-white:hover { background: var(--white); color: var(--dark); }

.link-arrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 0.85rem; }

/* topbar removed */

/* ---- Inline SVG Icons ---- */
.footer-social a svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  display: block;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none;
  display: block;
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), top var(--transition);
}
.nav.at-top   { background: transparent; }
.nav.at-top:hover {
  background: rgba(27, 67, 50, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav.scrolled {
  background: rgba(27, 67, 50, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  top: 0 !important;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}
.nav-logo img { height: 70px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active       { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-book {
  font-size: 0.68rem;
  padding: 0.7rem 1.6rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  z-index: 11;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown nav */
.nav-links > li { display: flex; align-items: center; }
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex !important; align-items: center; gap: 0.35rem; }
.nav-arrow { font-size: 0.55rem; opacity: 0.65; transition: transform var(--transition); display: inline-block; }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Invisible bridge fills the gap so the mouse doesn't lose hover moving to the dropdown */
.has-dropdown::before {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: -0.5rem;
  right: -0.5rem;
  height: 1rem;
}

.dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: rgba(22, 56, 41, 0.98);
  border-top: 2px solid var(--gold);
  min-width: 195px;
  padding: 0.4rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.65rem 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  position: relative;
}
.dropdown li a::after { display: none !important; }
.dropdown li a:hover,
.dropdown li a.active { color: var(--gold-light); background: rgba(255,255,255,0.04); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,10,5,0.3)  0%,
    rgba(15,10,5,0.45) 55%,
    rgba(15,10,5,0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
  margin-top: -2rem;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 1rem;
  text-shadow: 0 4px 35px rgba(0,0,0,0.35);
}
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-controls {
  position: absolute;
  bottom: 2.5rem; left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  z-index: 3;
}
.hero-arrow {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  padding: 0.5rem;
  transition: color var(--transition);
  line-height: 1;
}
.hero-arrow:hover { color: var(--gold-light); }
.hero-dots { display: flex; gap: 0.5rem; align-items: center; }
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { width: 22px; border-radius: 3px; background: var(--gold); }

/* ================================================
   BOOKING WIDGET
   ================================================ */
.reserve-strip {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.6rem 2rem;
  position: relative;
  z-index: 10;
}
.reserve-strip-text {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.reserve-strip .btn {
  flex-shrink: 0;
}

/* ================================================
   WELCOME SECTION
   ================================================ */
.welcome .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}
.welcome-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
}
.stat {
  background: var(--white);
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ================================================
   ROOMS SHOWCASE
   ================================================ */
.rooms-showcase {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: stretch;
}
.rs-main-img {
  position: relative;
  overflow: hidden;
  min-height: 0;
  align-self: center;
  height: 75%;
}
.rs-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}
.rs-main-img img.fading { opacity: 0; }
.rs-panel {
  padding: 3rem 4rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rs-thumb {
  width: 231px;
  height: 172px;
  overflow: hidden;
  align-self: flex-start;
  margin-bottom: 2.5rem;
  flex-shrink: 0;
}
.rs-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}
.rs-thumb img.fading { opacity: 0; }
.rs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.rs-item {
  display: flex;
  align-items: center;
  padding: 0.65rem 0;
  cursor: pointer;
  position: relative;
}
.rs-item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.52s ease;
}
.rs-item:hover::after,
.rs-item.active::after { width: calc(100% - 7rem); }
.rs-item-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.12rem;
}
.rs-arrow {
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
  opacity: 0.45;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.rs-item:hover .rs-arrow,
.rs-item.active .rs-arrow { opacity: 1; transform: translateX(5px); }
.rs-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--text);
  white-space: nowrap;
  transition: color 0.3s ease;
}
.rs-item:hover .rs-name,
.rs-item.active .rs-name { color: var(--gold); }
.rs-bio-inline {
  position: absolute;
  top: 100%;
  right: 4cm;
  width: 7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.32s ease, transform 0.32s ease;
  pointer-events: none;
  z-index: 5;
  padding-top: 0.1rem;
}
.rs-item:hover .rs-bio-inline,
.rs-item.active .rs-bio-inline {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.rs-bio-inline p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
  text-align: right;
}
.stat-icon svg { width: 2rem; height: 2rem; color: var(--gold); display: block; margin: 0 auto 0.15rem; }

/* ================================================
   DINING SPLIT
   ================================================ */
.split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-width: 100%;
}
.split-img { overflow: hidden; min-height: 520px; }
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-text {
  padding: 5.5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.feature-list { list-style: none; margin-bottom: 2rem; }
.feature-list li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.feature-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ================================================
   OFFERS PREVIEW
   ================================================ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.offer-card {
  position: relative;
  height: 440px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.offer-card:hover .offer-overlay { background: linear-gradient(to top, rgba(20,12,4,0.94) 0%, rgba(20,12,4,0.5) 55%, transparent 100%); }
.offer-card:hover .offer-body { transform: translateY(0); }
.offer-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,12,4,0.88) 0%, rgba(20,12,4,0.25) 55%, transparent 100%);
  transition: background 0.4s ease;
}
.offer-body {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: var(--white);
  transform: translateY(6px);
  transition: transform var(--transition);
}
.offer-body h3 { font-size: 1.55rem; color: var(--white); margin-bottom: 0.5rem; }
.offer-body p  { font-size: 0.85rem; color: rgba(255,255,255,0.78); margin-bottom: 1.2rem; line-height: 1.6; }

/* ================================================
   GALLERY STRIP
   ================================================ */
.gallery-strip { padding: 0; overflow: hidden; }
.gs-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.gs-item { overflow: hidden; }
.gs-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; display: block; }
.gs-item:hover img { transform: scale(1.06); }
.gs-tall { grid-row: span 2; }
.gs-wide { grid-column: span 2; }
.gallery-strip-cta {
  text-align: center;
  padding: 3rem 0;
  background: var(--cream-dark);
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  padding: 9rem 2rem;
  color: var(--white);
}
.cta-overlay { position: absolute; inset: 0; background: rgba(15,10,5,0.6); }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 2rem; }
.cta-content .section-eyebrow { color: var(--gold-light); }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.55); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 5rem 2rem 4rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-logo { height: 55px; width: auto; margin-bottom: 1.3rem; }
.footer-brand p {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 2.1;
  max-width: 260px;
  margin-bottom: 1.8rem;
}
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-social a .lucide { width: 16px; height: 16px; stroke: currentColor; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.3rem;
  font-weight: 500;
}
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 2.1;
  margin-bottom: 0.4rem;
}
.footer-contact a {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color var(--transition);
}
.footer-contact a[href^="mailto:"] { text-transform: none; letter-spacing: 0.03em; font-size: 0.82rem; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-bottom img { height: 34px; opacity: 0.75; transition: opacity var(--transition); }
.footer-bottom img:hover { opacity: 1; }

/* ================================================
   INNER PAGE HERO
   ================================================ */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,10,5,0.75) 0%, rgba(15,10,5,0.2) 60%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 4rem;
  color: var(--white);
}
.page-hero-content .section-eyebrow { color: var(--gold-light); }
.page-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-top: 0.4rem;
}
.breadcrumb { font-size: 1rem; color: rgba(255,255,255,0.6); margin-top: 0.8rem; letter-spacing: 0.05em; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 0.4rem; }

/* ================================================
   ROOMS PAGE
   ================================================ */
.room-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.room-block + .room-block { border-top: 3px solid var(--cream); }
.room-block.reverse .room-block-img { order: 2; }
.room-block.reverse .room-block-text { order: 1; }

.room-block-img { overflow: hidden; min-height: 500px; }
.room-block-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.room-block:hover .room-block-img img { transform: scale(1.04); }

.room-block-text {
  padding: 5rem 4.5rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.room-block-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.room-block-text p  { font-size: 0.92rem; line-height: 1.85; color: var(--text-light); margin-bottom: 1.8rem; }

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.2rem;
}
.room-amenity {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  color: var(--text-light);
  background: var(--cream);
}
.room-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 0 2rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--cream);
}
.room-mini-gallery img { width: 100%; height: 200px; object-fit: cover; display: block; }

/* ================================================
   DINING PAGE
   ================================================ */
.dining-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.dining-block + .dining-block { border-top: 3px solid var(--cream); }
.dining-block.reverse .dining-block-img  { order: 2; }
.dining-block.reverse .dining-block-text { order: 1; }
.dining-block-img  { overflow: hidden; min-height: 500px; }
.dining-block-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dining-block-text {
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.dining-block-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.dining-block-text p  { font-size: 0.92rem; line-height: 1.85; color: var(--text-light); margin-bottom: 1.5rem; }

/* ================================================
   GATHER TEASER — Home page
   ================================================ */
.gather-split {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 520px;
}
.gather-img { overflow: hidden; position: relative; }
.gather-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.gather-img:hover img { transform: scale(1.05); }
.gather-text {
  background: var(--dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 3rem;
}
.gather-text .section-eyebrow { color: var(--gold-light); }
.gather-text .section-title   { color: var(--white); margin-bottom: 1.2rem; }
.gather-text .section-text    { color: rgba(255,255,255,0.72); margin-bottom: 2rem; font-size: 0.9rem; line-height: 1.85; }

.story-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.story-intro-left { padding-right: 2rem; border-right: 1px solid var(--border); }
.story-intro-right .section-text { margin-bottom: 1.4rem; }
.story-intro-right .section-text:last-child { margin-bottom: 0; }
.story-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 300px; }
.story-strip img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; text-align: center; }
.story-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; max-width: 1000px; margin: 0 auto; }
.story-pair img { width: 100%; height: 400px; object-fit: cover; display: block; }
.conf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.conf-grid-img { overflow: hidden; height: 380px; }
.conf-grid-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.dining-photo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.dining-photo-row div { overflow: hidden; }
.dining-photo-row img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.dining-photo-row div:hover img { transform: scale(1.06); }

/* ================================================
   OFFERS PAGE
   ================================================ */
.offers-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 0 2rem 6rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.offer-full {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.offer-full:hover { box-shadow: var(--shadow); }
.offer-full-img { height: 300px; overflow: hidden; }
.offer-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; display: block; }
.offer-full:hover .offer-full-img img { transform: scale(1.05); }
.offer-full-body { padding: 2.2rem 2.5rem; }
.offer-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}
.offer-full-body h3 { font-size: 1.55rem; color: var(--dark); margin-bottom: 0.7rem; }
.offer-full-body p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.85; margin-bottom: 1.8rem; }
.offer-includes {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  margin-bottom: 1.5rem;
}
.offer-includes h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.7rem;
}
.offer-includes ul li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.offer-includes ul li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ================================================
   JOURNAL PAGE
   ================================================ */
.journal-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.journal-card{background:var(--white);overflow:hidden;transition:box-shadow var(--transition),transform var(--transition);display:flex;flex-direction:column}
.journal-card:hover{box-shadow:var(--shadow);transform:translateY(-4px)}
.journal-card-img{height:240px;overflow:hidden}
.journal-card-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.7s ease}
.journal-card:hover .journal-card-img img{transform:scale(1.06)}
.journal-card-body{padding:1.8rem 2rem 2rem;display:flex;flex-direction:column;flex:1}
.journal-card-body h3{font-size:1.25rem;color:var(--dark);margin:.6rem 0 .8rem;line-height:1.3}
.journal-card-body p{font-size:.88rem;line-height:1.85;color:var(--text-light);flex:1;margin-bottom:1.4rem}

/* ================================================
   GALLERY PAGE
   ================================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding: 3rem 2rem 2rem;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border);
  color: var(--text-light);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active { background: var(--dark); color: var(--white); border-color: var(--dark); }

.gallery-grid {
  columns: 3;
  column-gap: 4px;
  padding: 0 2rem 5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.g-item {
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.g-item img {
  width: 100%;
  display: block;
  transition: transform 0.55s ease;
}
.g-item:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 92vh; object-fit: contain; }
.lb-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2.2rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
  background: none; border: none;
}
.lb-close:hover { color: var(--white); }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: rgba(255,255,255,0.6);
  padding: 1rem;
  cursor: pointer;
  transition: color var(--transition);
  background: none; border: none;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover, .lb-next:hover { color: var(--white); }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  padding: 6rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact-info h2 { font-size: 2.2rem; margin-bottom: 1.2rem; }
.contact-info > p { font-size: 0.92rem; color: var(--text-light); line-height: 1.85; margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-item-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.contact-item-text span, .contact-item-text a {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}
.contact-item-text a:hover { color: var(--gold); }

.contact-form-section { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.2rem; }
.form-group label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 140px; resize: none; }

/* Aliases used by contact.php */
.contact-form-wrap { }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.2rem; }
.form-field label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); }
.form-field input,
.form-field textarea {
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { min-height: 140px; resize: none; }
.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
.contact-detail-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); margin-top: 0.2rem; }
.contact-detail-item p, .contact-detail-item p a { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.contact-detail-item p a:hover { color: var(--gold); }

/* ================================================
   ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-38px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(38px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .welcome .container { grid-template-columns: 1fr; gap: 3.5rem; }
  .rooms-showcase { grid-template-columns: 1fr; }
  .rs-main-img { min-height: 380px; }
  .rs-panel { padding: 2.5rem 2.5rem; }
  .rs-thumb { align-self: flex-start; }
  .rs-lower { grid-template-columns: 1fr; gap: 1.2rem; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .footer-top  { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .split-wrap  { grid-template-columns: 1fr; }
  .split-img   { min-height: 380px; }
  .split-text  { padding: 4rem 3.5rem; }
  .room-block  { grid-template-columns: 1fr; }
  .room-block.reverse .room-block-img,
  .room-block.reverse .room-block-text { order: unset; }
  .dining-block { grid-template-columns: 1fr; }
  .dining-block.reverse .dining-block-img,
  .dining-block.reverse .dining-block-text { order: unset; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .offers-list  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 72%; max-width: 300px;
    height: 100vh; height: 100dvh;
    background: var(--dark);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    padding: calc(var(--nav-h) + 1.5rem) 0 3rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 10;
    box-shadow: 4px 0 24px rgba(0,0,0,0.35);
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links > li:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
  .nav-links > li > a {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.2em;
  }
  .nav-links > li > a::after { display: none; }
  /* STAY: block li so <a> isn't squeezed as a flex sibling of the dropdown ul */
  .nav-links > li.has-dropdown {
    display: block;
  }
  .nav-links > li.has-dropdown > a {
    justify-content: flex-start !important;
    gap: 0.3rem !important;
  }
  .nav-links > li.has-dropdown .nav-arrow {
    position: static;
    transform: none;
    font-size: 0.55rem;
    opacity: 0.65;
  }
  .nav-book    { display: none; }
  .nav-toggle  { display: flex; }
  /* X button sits at right edge of drawer when open */
  .nav-toggle.open {
    position: fixed;
    left: calc(min(72vw, 300px) - 48px);
    top: 0;
    height: var(--nav-h);
    z-index: 1001;
  }

  .topbar      { display: none; }

  .rs-panel { padding: 2rem 1.5rem; }
  .rs-thumb { width: 160px; height: 120px; }
  .rooms-grid  { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .gs-grid     { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gs-tall, .gs-wide { grid-row: auto; grid-column: auto; }

  .reserve-strip   { flex-direction: column; gap: 1.2rem; text-align: center; }

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

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

  .gallery-grid { columns: 2; }
  .form-row     { grid-template-columns: 1fr; }
  .dining-photo-row { grid-template-columns: 1fr 1fr; }
  .gather-split { grid-template-columns: 1fr; }
  .gather-img   { height: 320px; }

  .story-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-intro-left { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 2rem; }
  .story-strip  { grid-template-columns: 1fr 1fr; }
  .story-strip img { height: 150px; }
  .story-values { grid-template-columns: 1fr; }
  .story-pair   { grid-template-columns: 1fr; }
  .story-pair img { height: 280px; }
  .journal-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .conf-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .conf-grid-img { height: 280px; }

  .page-hero-content { padding: 2.5rem 2rem; }

  .split-text  { padding: 3.5rem 2rem; }
  .room-block-text  { padding: 3rem 2rem; }
  .dining-block-text { padding: 3rem 2rem; }

  .cta-banner { background-attachment: scroll; }

  /* Mobile dropdown overrides */
  .has-dropdown::before { display: none; }
  .has-dropdown:hover .dropdown { opacity: 0; pointer-events: none; transform: none; }
  .dropdown {
    position: static;
    transform: none !important;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    pointer-events: none;
    width: 100%;
    transition: opacity var(--transition), max-height 0.4s ease;
  }
  .has-dropdown.open .dropdown {
    opacity: 1;
    max-height: 240px;
    pointer-events: auto;
  }
  .has-dropdown.open .nav-arrow { transform: rotate(180deg); }
  .dropdown li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
  }
  .dropdown li a {
    font-size: 0.8rem;
    padding: 0.75rem 2rem;
    text-align: center;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.16em;
    display: block;
    width: 100%;
  }
  .dropdown li a:hover,
  .dropdown li a.active { background: rgba(255,255,255,0.06); color: var(--gold-light); }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .gs-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .offers-grid  { grid-template-columns: 1fr; }
  .room-mini-gallery { grid-template-columns: 1fr 1fr; }
  .dining-photo-row  { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .gather-text { padding: 3rem 1.5rem; }
  .gather-img  { height: 260px; }
  .story-strip img { height: 130px; }
  .story-pair img  { height: 240px; }
  .conf-grid-img   { height: 240px; }
}

/* ================================================
   SMALL MOBILE — iPhone 11 Pro / SE2 / 375-390px
   ================================================ */
@media (max-width: 390px) {
  :root { --nav-h: 60px; }

  .nav-inner { padding: 0 1rem; }
  .nav-logo img { height: 52px; }

  /* Hero */
  .hero-title {
    font-size: 1.55rem;
    letter-spacing: 0.1em;
    white-space: normal;
    word-break: break-word;
  }
  .hero-subtitle { font-size: 0.75rem; letter-spacing: 0.18em; }
  .hero-cta { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-cta .btn { width: 100%; max-width: 260px; text-align: center; }

  /* Reserve strip */
  .reserve-strip { padding: 1.2rem 1rem; gap: 1rem; }

  /* Welcome / Stats */
  .stat { padding: 1.6rem 0.6rem; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.58rem; letter-spacing: 0.12em; }

  /* Page hero */
  .page-hero { min-height: 280px; }
  .page-hero-content { padding: 2rem 1.2rem; }
  .page-hero-content h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .breadcrumb { font-size: 0.78rem; }

  /* Sections */
  .section { padding: 3rem 0; }
  .container { padding: 0 1rem; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2rem); }

  /* Rooms */
  .room-block-text { padding: 2.2rem 1.2rem; }
  .room-mini-gallery { grid-template-columns: 1fr; padding: 0 0.5rem 1rem; }
  .room-mini-gallery img { height: 180px; }
  .room-amenities { gap: 0.3rem; }
  .room-amenity { font-size: 0.6rem; padding: 0.3rem 0.65rem; letter-spacing: 0.08em; }

  /* Dining */
  .dining-block-text { padding: 2.2rem 1.2rem; }
  .dining-photo-row { grid-template-columns: 1fr; }

  /* Gather */
  .gather-text { padding: 2.2rem 1.2rem; }
  .gather-img  { height: 200px; }

  /* Our Story */
  .story-strip { grid-template-columns: 1fr 1fr; }
  .story-strip img { height: 140px; }
  .story-pair img  { height: 200px; }
  .conf-grid-img   { height: 220px; }

  /* Rooms showcase */
  .rs-panel { padding: 1.5rem 1rem; }
  .rs-thumb { width: 100%; height: 140px; margin-bottom: 1.5rem; }

  /* Split sections */
  .split-text { padding: 2.5rem 1.2rem; }
  .split-img { min-height: 260px; }

  /* Offers */
  .offer-full-body { padding: 2rem 1.2rem; }
  .offer-includes ul { padding-left: 0; }

  /* Gallery strip */
  .gs-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gs-tall, .gs-wide { grid-row: auto; grid-column: auto; }
  .gs-item { height: 200px; }

  /* CTA banner */
  .cta-banner { padding: 5rem 1.2rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; padding: 2.5rem 1.2rem 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.8rem; padding: 1.2rem; }
  .footer-logo { height: 44px; }

  /* Buttons */
  .btn { padding: 0.85rem 1.8rem; font-size: 0.65rem; }

  /* Gallery */
  .gallery-grid { columns: 1; }

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

/* ================================================
   FLOATING BUTTONS
   ================================================ */
.float-wa,
.float-top {
  position: fixed;
  right: 1.6rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 950;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  border: none;
  text-decoration: none;
}

/* WhatsApp — always visible */
.float-wa {
  bottom: calc(1.8rem + 1cm);
  background: #25D366;
}
.float-wa svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  flex-shrink: 0;
}
.float-wa-tip {
  position: absolute;
  right: calc(100% + 12px);
  background: #25D366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.float-wa-tip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #25D366;
  border-right: 0;
}
.float-wa:hover .float-wa-tip { opacity: 1; }

/* Back to top — hidden until scrolled */
.float-top {
  bottom: calc(7.6rem + 1cm);
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.float-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.float-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.float-wa:hover,
.float-top:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.28);
}
.float-top.visible:hover { transform: scale(1.1) translateY(0); }
