/* ═══════════════════════════════════════════════════════════
   HOTEL AMERICANO — style.css
   Cormorant Garamond (headlines) + Jost (body/UI)
═══════════════════════════════════════════════════════════ */

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--dark);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --cream:        #F7F3ED;
  --cream-dark:   #EAE7E5;
  --gold:         #C59765;
  --gold-deep:    #B7652B;
  --bronze:       #987C56;
  --dark:         #3B3B3C;
  --muted:        #8A7560;
  --footer-dark:  #0F0802;
  --showcase-dark: #1a1714;

  --font-headline: 'Cormorant Garamond', Georgia, serif;
  --font-body:     'Jost', system-ui, sans-serif;

  --nav-h:         80px;
  --section-pad:   100px;
  --container-max: 1240px;
  --radius:        4px;
  --radius-lg:     10px;
  --transition:    0.25s ease;
  --transition-md: 0.4s ease;
}

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(3rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); }
h3 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }

em { font-style: italic; color: var(--gold); font-weight: 300; }

p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.9rem;
}
.text-center { text-align: center; }
.text-light  { color: var(--cream); }

/* ─── Layout ────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: var(--section-pad) 0; background-color: var(--cream); }
.section-dark { background-color: var(--cream-dark); }
.section-intro {
  max-width: 680px;
  margin: 1.5rem auto 3.5rem;
  font-size: 1.15rem;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.07em;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background-color var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background-color: var(--gold-deep); color: #fff; border-color: var(--gold-deep); }
.btn-gold:hover { background-color: #a3531c; border-color: #a3531c; }
.btn-white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.65); }
.btn-white-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.9); }
.btn-gold-outline { background: transparent; color: var(--gold-deep); border-color: var(--gold-deep); font-size: 0.95rem; padding: 11px 24px; }
.btn-gold-outline:hover { background-color: var(--gold-deep); color: #fff; }

/* ─── Links ─────────────────────────────────────────────── */
.link-gold { color: var(--gold); border-bottom: 1px solid rgba(197,151,101,0.45); transition: color var(--transition); }
.link-gold:hover { color: var(--gold-deep); }
.link-dark { color: var(--dark); transition: color var(--transition); }
.link-dark:hover { color: var(--gold-deep); }

/* ─── Fade-in ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  padding: 0 32px;
  transition: background-color var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background-color: var(--cream);
  box-shadow: 0 1px 0 rgba(197,151,101,0.2), 0 4px 20px rgba(0,0,0,0.07);
}
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.nav-brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-monogram { height: 64px; width: auto; object-fit: contain; }
.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-hotel-name {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  transition: color var(--transition);
}
#navbar.scrolled .nav-hotel-name { color: var(--dark); }
.nav-location {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
#navbar.scrolled .nav-location { color: var(--muted); }

/* Links */
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a:not(.btn) {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links a:not(.btn):hover { color: var(--gold); }
#navbar.scrolled .nav-links a:not(.btn) { color: var(--dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 26px; height: 20px;
  background: none; border: none;
  cursor: pointer; padding: 0; z-index: 210;
}
.hamburger span {
  display: block; height: 1.5px; width: 100%;
  background-color: #fff; border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background-color var(--transition);
}
#navbar.scrolled .hamburger span { background-color: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background-color: var(--cream);
    flex-direction: column; align-items: flex-start;
    padding: 24px 32px 36px; gap: 22px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-top: 1px solid rgba(197,151,101,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { color: var(--dark) !important; font-size: 1.05rem; }
  .nav-links .btn { width: 100%; text-align: center; }
}


/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,8,2,0.3) 0%,
    rgba(15,8,2,0.18) 35%,
    rgba(15,8,2,0.58) 75%,
    rgba(15,8,2,0.75) 100%
  );
}
.hero-monogram {
  position: absolute;
  width: min(480px, 55vw);
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  opacity: 0.09;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 32px;
  padding-top: var(--nav-h);
}
.hero-content h1 { color: #fff; text-shadow: 0 2px 32px rgba(0,0,0,0.35); margin-bottom: 1.25rem; }
.hero-content h1 em { color: #f2dfc0; }
.hero-content .eyebrow { color: var(--gold); margin-bottom: 1.25rem; font-size: 0.82rem; }
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem; font-weight: 300;
  max-width: 600px; margin: 0 auto 2.75rem;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll-hint span {
  display: block; width: 20px; height: 20px;
  border-right: 1.5px solid rgba(255,255,255,0.5);
  border-bottom: 1.5px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 1; }
}


/* ═══════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════ */
.trust-bar {
  background-color: var(--dark);
  padding: 14px 32px;
  overflow: hidden;
}
.trust-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 8px;
}
.trust-item {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  padding: 0 24px;
}
.trust-stars { color: var(--gold); letter-spacing: 0.06em; }
.trust-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .trust-divider { display: none; }
  .trust-item { padding: 0 14px; }
}


/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.about-left h2 { margin-top: 0.5rem; line-height: 1.25; }
.about-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  margin-top: 2.75rem; padding-top: 2rem;
  border-top: 1px solid rgba(197,151,101,0.28);
}
.stat { display: flex; flex-direction: column; gap: 5px; }
.stat-num {
  font-family: var(--font-headline);
  font-size: 3.2rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.stat-num small { font-size: 1.3rem; }
.stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-stats { gap: 32px; }
}


/* ═══════════════════════════════════════════════════════════
   ROOM CARDS
═══════════════════════════════════════════════════════════ */
.room-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.room-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(197,151,101,0.15);
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.room-card-img-wrap { overflow: hidden; height: 220px; flex-shrink: 0; }
.room-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.room-card:hover .room-card-img-wrap img { transform: scale(1.05); }
.room-card-body { padding: 28px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.room-card-body h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); margin-bottom: 0.7rem; }
.room-card-body p { font-size: 1rem; line-height: 1.75; margin-bottom: 1.2rem; }
.room-card-stats {
  display: flex; gap: 0; flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid rgba(197,151,101,0.2);
  margin-bottom: 20px;
  margin-top: auto;
}
.room-card-stat {
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--muted);
  padding-right: 16px; margin-right: 16px;
  border-right: 1px solid rgba(197,151,101,0.25);
}
.room-card-stat:last-child { border-right: none; }
.room-card-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.room-card-actions .btn { font-size: 0.95rem; padding: 10px 18px; }

@media (max-width: 1100px) { .room-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .room-cards { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════
   ROOM SHOWCASE  (inline viewer)
═══════════════════════════════════════════════════════════ */
.room-showcase {
  display: grid;
  grid-template-columns: 42% 1fr;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
.room-showcase-inline {
  height: 580px;
  min-height: unset;
  display: none;
}
.room-showcase-inline.open {
  display: grid;
}

/* Left panel — dark, text content */
.showcase-left {
  background-color: var(--showcase-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 60px;
  position: relative;
  z-index: 2;
}
.showcase-slide {
  display: none;
  flex-direction: column;
  gap: 20px;
  animation: showcaseFadeIn 0.45s ease both;
}
.showcase-slide.active { display: flex; }
@keyframes showcaseFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.showcase-slide .eyebrow { color: var(--gold); }
.showcase-slide h2 { color: #fff; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.2; }
.showcase-slide h2 em { color: #f2dfc0; }
.showcase-slide p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.8; }
.showcase-stats {
  display: flex; gap: 0;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
.showcase-stat {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.showcase-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }

/* Thumbnail nav — bottom of left panel */
.showcase-thumbs {
  display: flex; gap: 10px;
  margin-top: 32px;
}
.showcase-thumb {
  width: 72px; height: 52px;
  border-radius: 4px; overflow: hidden;
  opacity: 0.45;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity var(--transition), border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.showcase-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.showcase-thumb.active {
  opacity: 1;
  border-color: var(--gold);
}
.showcase-thumb:hover { opacity: 0.8; transform: translateY(-2px); }

/* Right panel — photo */
.showcase-right { position: relative; overflow: hidden; }
.showcase-main-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}
.showcase-main-img.fading { opacity: 0; }

@media (max-width: 900px) {
  .room-showcase {
    grid-template-columns: 1fr;
    height: auto;
    min-height: unset;
  }
  .room-showcase-inline { height: auto; }
  .showcase-right { height: 55vw; min-height: 260px; order: -1; position: relative; }
  .showcase-main-img { position: absolute; }
  .showcase-left { padding: 40px 28px 48px; }
}


/* ═══════════════════════════════════════════════════════════
   HOTEL HIGHLIGHTS  (editorial grid below showcase)
═══════════════════════════════════════════════════════════ */
.hotel-highlights-wrap { padding-top: 80px; }
.hotel-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
}
.highlight-card { position: relative; overflow: hidden; }
.highlight-card img {
  width: 100%; height: 400px; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.highlight-card:hover img { transform: scale(1.04); }
.highlight-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,8,2,0.72) 0%, transparent 100%);
  padding: 28px 24px 24px;
}
.highlight-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 4px;
}
.highlight-caption {
  font-family: var(--font-headline);
  font-size: 1.15rem; font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1.35; margin: 0;
}

@media (max-width: 900px) {
  .hotel-highlights { grid-template-columns: 1fr; }
  .highlight-card img { height: 280px; }
}


/* ═══════════════════════════════════════════════════════════
   AMENITIES
═══════════════════════════════════════════════════════════ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
  gap: 20px; margin-top: 3rem;
}
.amenity-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 13px; padding: 28px 14px 26px;
  background-color: var(--cream-dark);
  border-radius: 8px;
  border: 1px solid rgba(197,151,101,0.12);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.amenity-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.09);
  border-color: rgba(197,151,101,0.35);
}
.amenity-icon { width: 36px; height: 36px; color: var(--gold); flex-shrink: 0; }
.amenity-icon svg { width: 100%; height: 100%; }
.amenity-label {
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 400;
  letter-spacing: 0.03em; color: var(--dark); line-height: 1.4;
}
.amenities-footnote {
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 300;
  color: var(--muted); font-style: italic;
  text-align: center; margin-top: 24px;
  padding: 0 16px; line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════
   BREAKFAST SHOWCASE
═══════════════════════════════════════════════════════════ */
.bk-showcase {
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: 520px;
  margin-top: 20px;
  overflow: hidden;
}
.bk-left {
  position: relative;
  overflow: hidden;
  background: #1a1410;
}
.bk-main-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}
.bk-main-img.fading { opacity: 0; }
.bk-right {
  display: grid;
  grid-template-columns: 90px 1fr;
  background-color: var(--showcase-dark);
}
.bk-thumbs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  overflow-y: auto;
  scrollbar-width: none;
  background: rgba(0,0,0,0.2);
}
.bk-thumbs::-webkit-scrollbar { display: none; }
.bk-thumb {
  flex-shrink: 0;
  height: 64px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.4;
  border: 2px solid transparent;
  transition: opacity var(--transition), border-color var(--transition);
}
.bk-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bk-thumb.active { opacity: 1; border-color: var(--gold); }
.bk-thumb:hover { opacity: 0.75; }
.bk-info {
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bk-info .eyebrow { color: var(--gold); }
.bk-info h3 {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300; color: #fff;
  margin-bottom: 1rem; line-height: 1.2;
}
.bk-info p { color: rgba(255,255,255,0.62); font-size: 1rem; line-height: 1.8; }

@media (max-width: 900px) {
  .bk-showcase { grid-template-columns: 1fr; min-height: unset; }
  .bk-left { height: 56vw; min-height: 240px; position: relative; }
  .bk-right { grid-template-columns: 72px 1fr; }
  .bk-info { padding: 32px 24px; }
  .bk-thumb { height: 52px; }
}


/* ═══════════════════════════════════════════════════════════
   GUEST SERVICES
═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 2rem;
}
.service-card {
  background-color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(197,151,101,0.18);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.service-coming-soon {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(183,101,43,0.1);
  border: 1px solid rgba(183,101,43,0.25);
  border-radius: 100px;
  padding: 4px 12px;
}
.service-icon {
  width: 48px; height: 48px; color: var(--gold);
  margin-bottom: 16px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 1rem; margin-bottom: 0; }


/* ═══════════════════════════════════════════════════════════
   BOOK
═══════════════════════════════════════════════════════════ */
.ota-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 14px; margin-top: 2.5rem; margin-bottom: 4.5rem;
}
.ota-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 20px 14px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}
.ota-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.22); filter: brightness(1.08); }

/* Brand colors */
.ota-booking    { background: #003580; color: #fff; }
.ota-expedia    { background: #1D3453; color: #FFC72C; }
.ota-trip       { background: #1677FF; color: #fff; }
.ota-agoda      { background: #EB0226; color: #fff; }
.ota-airbnb     { background: #FF5A5F; color: #fff; }
.ota-hotels     { background: #D9211D; color: #fff; }
.ota-tripadvisor { background: #00AA6C; color: #fff; }

.book-direct-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 2.5rem;
  padding: 18px 24px;
  background: rgba(197,151,101,0.08);
  border: 1px solid rgba(197,151,101,0.22);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}
.book-direct-note strong { color: var(--dark); font-weight: 500; }
.book-direct-icon { color: var(--gold); flex-shrink: 0; margin-top: 1px; font-size: 0.6rem; }

.book-teaser {
  background: linear-gradient(135deg, #ece5da 0%, var(--cream-dark) 100%);
  border: 1px solid rgba(197,151,101,0.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
}
.teaser-inner { max-width: 560px; }
.book-teaser h3 { margin-bottom: 1rem; font-size: 2.2rem; }
.book-teaser p { font-size: 1.05rem; margin-bottom: 1.75rem; }
.notify-form { display: flex; gap: 12px; flex-wrap: wrap; }
.notify-form input {
  flex: 1; min-width: 200px;
  padding: 14px 18px;
  border: 1px solid rgba(197,151,101,0.35);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.8);
  font-family: var(--font-body); font-size: 1rem;
  color: var(--dark); outline: none;
  transition: border-color var(--transition);
}
.notify-form input:focus { border-color: var(--gold); }

@media (max-width: 700px) {
  .book-teaser { padding: 36px 28px; }
  .book-teaser h3 { font-size: 1.8rem; }
}


/* ═══════════════════════════════════════════════════════════
   SUNDECK NOTICE
═══════════════════════════════════════════════════════════ */
.section-sundeck {
  background-color: var(--cream-dark);
  padding: 64px 0;
}
.sundeck-notice {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
  padding: 36px 40px;
  background: rgba(197,151,101,0.08);
  border: 1px solid rgba(197,151,101,0.22);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
}
.sundeck-notice-icon {
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  margin-top: 4px;
  flex-shrink: 0;
}
.sundeck-notice h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.sundeck-notice p { font-size: 1rem; color: var(--muted); margin: 0; }


/* ═══════════════════════════════════════════════════════════
   LOCATION
═══════════════════════════════════════════════════════════ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.location-left h2 { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 2.5rem; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-dot { color: var(--gold); font-size: 0.42rem; margin-top: 8px; flex-shrink: 0; }
.contact-item strong {
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dark); display: block; margin-bottom: 4px;
}
.contact-item p { font-size: 1.05rem; margin: 0; line-height: 1.65; }
.map-wrapper {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(197,151,101,0.18);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.location-photo {
  width: 100%; height: 320px; object-fit: cover;
  border-radius: var(--radius-lg); margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.nearby-strip {
  background-color: var(--cream); border-radius: var(--radius-lg);
  padding: 24px 28px; border: 1px solid rgba(197,151,101,0.18);
}
.nearby-list { display: flex; flex-direction: column; gap: 16px; margin-top: 1rem; }
.nearby-list li {
  font-family: var(--font-body); font-size: 1rem; font-weight: 400;
  color: var(--dark); display: flex; align-items: flex-start; gap: 12px;
}
.nearby-dot { color: var(--gold); font-size: 0.45rem; flex-shrink: 0; margin-top: 0.55em; }
.nearby-item { display: flex; flex-direction: column; gap: 2px; }
.nearby-item strong { font-weight: 500; color: var(--dark); }
.nearby-desc { font-size: 0.9rem; font-weight: 300; color: var(--muted); line-height: 1.4; }

@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; gap: 48px; } }


/* ═══════════════════════════════════════════════════════════
   GALLERY  (masonry grid)
═══════════════════════════════════════════════════════════ */
.section-gallery {
  background-color: var(--footer-dark);
  padding: var(--section-pad) 0;
}
.gallery-header { margin-bottom: 2.5rem; }
.gallery-header h2 { color: var(--cream); }
.gallery-header h2 em { color: var(--gold); }



/* Uniform square grid */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 16px 32px 32px;
}
.gallery-sq-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background-color: #111;
}
.gallery-sq-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.gallery-sq-card:hover img { transform: scale(1.06); opacity: 0.85; }
.gallery-sq-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 14px 12px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-sq-card:hover .gallery-sq-overlay { opacity: 1; }
.gallery-sq-caption {
  font-size: 0.92rem; color: rgba(255,255,255,0.9); line-height: 1.35; margin: 0;
}

@media (max-width: 900px)  { .gallery-masonry { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .gallery-masonry { grid-template-columns: repeat(2, 1fr); gap: 3px; padding: 12px 16px 24px; } }

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 900;
  align-items: center; justify-content: center;
}
.gallery-lightbox.open { display: flex; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,6,2,0.88);
}
.lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: min(860px, 92vw);
  width: 100%;
  display: flex; flex-direction: column; align-items: center;
}
.lightbox-figure {
  margin: 0; width: 100%;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
.lightbox-figure img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  background: #0a0602;
}
.lightbox-caption {
  background: #0a0602;
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem; font-style: italic;
  padding: 12px 18px;
  text-align: center; margin: 0;
  line-height: 1.4;
}
.lightbox-counter {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 0.85rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}
.lightbox-close {
  position: absolute;
  top: -44px; right: 0;
  background: none; border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2rem; line-height: 1;
  cursor: pointer; padding: 4px 8px;
  transition: color var(--transition);
}
.lightbox-close:hover { color: #fff; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-size: 2rem; line-height: 1;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
  z-index: 2;
}
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.18); color: #fff; }
@media (max-width: 1060px) {
  .lightbox-prev { left: -44px; }
  .lightbox-next { right: -44px; }
}
@media (max-width: 900px) {
  .lightbox-inner { max-width: 96vw; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: -64px; transform: none; }
}


/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.section-contact {
  background: linear-gradient(160deg, var(--cream) 0%, #ede5d8 100%);
  border-top: 1px solid rgba(197,151,101,0.15);
}
.contact-top {
  display: flex; justify-content: center; gap: 52px;
  flex-wrap: wrap; margin: 2.5rem 0 3.5rem;
}
.contact-cta-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 400;
  color: var(--dark); transition: color var(--transition);
}
.contact-cta-item:hover { color: var(--gold-deep); }
.cta-icon { font-size: 1.5rem; color: var(--gold); line-height: 1; }
.contact-form {
  max-width: 700px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid rgba(59,59,60,0.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.85);
  font-family: var(--font-body); font-size: 1rem;
  font-weight: 300; color: var(--dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,151,101,0.15);
}
.form-group textarea { resize: vertical; line-height: 1.7; }
.btn-submit { align-self: flex-start; padding: 16px 48px; font-size: 1rem; }

.contact-success {
  padding: 20px 24px; margin-bottom: 24px;
  background: rgba(197,151,101,0.1); border: 1px solid var(--gold);
  border-radius: var(--radius); color: var(--dark);
  font-family: var(--font-body); font-size: 1rem; line-height: 1.6;
}
.notify-success {
  padding: 14px 18px; margin-bottom: 16px;
  background: rgba(197,151,101,0.15); border: 1px solid var(--gold);
  border-radius: var(--radius); color: var(--cream);
  font-family: var(--font-body); font-size: 0.95rem;
}
.form-error {
  padding: 12px 16px; margin-bottom: 16px;
  background: rgba(180,50,50,0.1); border: 1px solid rgba(180,50,50,0.4);
  border-radius: var(--radius); color: #c0392b;
  font-family: var(--font-body); font-size: 0.9rem;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .btn-submit { align-self: stretch; text-align: center; }
  .contact-top { gap: 28px; }
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
#footer { background-color: var(--footer-dark); padding: 80px 0 36px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.6fr 1fr;
  gap: 52px; margin-bottom: 52px;
}
.footer-logo { height: 120px; width: auto; margin-bottom: 18px; object-fit: contain; }
.footer-tagline {
  font-family: var(--font-headline);
  font-style: italic; font-size: 1rem;
  color: rgba(255,255,255,0.3); margin: 0; line-height: 1.5;
}
.footer-nav { display: flex; flex-direction: column; gap: 11px; padding-top: 4px; }
.footer-nav a {
  font-family: var(--font-body); font-size: 1rem;
  color: rgba(255,255,255,0.55); transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-info p {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  line-height: 1.65; margin-bottom: 8px;
}
.footer-info a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-info a:hover { color: var(--gold); }
.footer-sisters { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.footer-sisters-label {
  font-size: 1.1rem; letter-spacing: 0.18em; font-weight: 600;
  text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.footer-sisters a {
  font-size: 1rem; color: rgba(255,255,255,0.55); transition: color var(--transition);
}
.footer-sisters a:hover { color: var(--gold); }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px; text-align: center;
}
.footer-bottom p {
  font-size: 0.92rem; font-weight: 300;
  color: rgba(255,255,255,0.2); letter-spacing: 0.04em; margin: 0;
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }
