/*
Theme Name: Dorsey Gardens Guest House v12
Theme URI: https://www.dorseygardensguesthouse.com
Author: Dorsey Gardens
Author URI: https://www.dorseygardensguesthouse.com
Description: Custom boutique hotel theme for Dorsey Gardens Guest House — Fort Lauderdale boutique suites with Santorini-inspired design.
Version: 12.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dorsey-gardens
Tags: hospitality, hotel, boutique, custom-menu, custom-logo, featured-images, full-width-template, responsive-layout
*/

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

:root {
  --cream: #F7F3EC;
  --sand: #E8DDD0;
  --terracotta: #2B6CB0;
  --terracotta-dark: #1A4A7A;
  --sage: #7A8C6E;
  --deep: #1C1A18;
  --warm-gray: #6B6560;
  --white: #FFFFFF;
  --border: rgba(28,26,24,0.12);
  /* Text-safe variants of the brand blue for use on dark backgrounds.
     --terracotta (#2B6CB0) fails contrast on --deep / near-black — do not
     use --terracotta for text on dark sections, use --terracotta-on-dark instead. */
  --terracotta-on-dark: #7FB2E8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--deep);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}

nav.scrolled { padding: 1rem 4rem; }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--deep);
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-right: auto;
}
.nav-logo span { color: var(--terracotta); }

/* Custom logo image */
.nav-logo .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-right: auto;
}
.nav-logo .custom-logo {
  max-height: 44px;
  max-width: 1px;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}
nav.scrolled .nav-logo .custom-logo { height: 36px; }
.nav-logo .custom-logo:hover { opacity: 0.85; }

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}

.nav-links a {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.current-menu-item { color: var(--terracotta); }

.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  font-size: 1.1rem !important;
  letter-spacing: 0.14em;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--terracotta-dark) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--deep); transition: 0.3s; }

/* ── HERO ──
   Bright, naturally-lit hero: full-brightness photo, no dark tint.
   Copy sits in a solid Santorini-blue box so white text stays readable
   without darkening the photo behind it. */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://dorseygardensguesthouse.com/wp-content/uploads/2026/07/Front-Door-907.jpeg');
  background-size: cover; background-position: center;
  opacity: 1;
}

.hero-overlay {
  position: absolute; inset: 0;
  /* light lift only, keeps the photo bright/airy instead of shading it dark */
  background: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.15) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 1.8rem 2.1rem;
  max-width: 560px;
  animation: fadeUp 1.2s ease both;
  background: var(--terracotta);
  border-radius: 4px;
  box-shadow: 0 12px 36px rgba(28,26,24,0.3);
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1;
}

.hero h1 em { font-style: italic; color: var(--sand); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--white);
  color: var(--terracotta);
  padding: 1rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--sand); transform: translateY(-1px); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

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

/* Small print under the hero actions — same size/weight/opacity, no more
   two different sizes fighting each other */
.hero-fineprint {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--warm-gray);
  font-size: 1.1rem; letter-spacing: 0.2em; text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  display: block; width: 1px; height: 40px;
  background: rgba(28,26,24,0.25);
}

/* ── SECTIONS ── */
section { padding: 6rem 4rem; }

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

/* Any section-label sitting on a dark background must use the
   light-on-dark variant — --terracotta text on --deep fails contrast. */
.page-header .section-label,
.neighborhood-content .section-label {
  color: var(--terracotta-on-dark);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--terracotta); }

/* ── INTRO ── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1100px; margin: 0 auto;
}

.intro-text p { color: var(--warm-gray); margin-bottom: 1rem; font-size: 1.1rem; }

.intro-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat {
  background: var(--white);
  padding: 2.5rem;
  text-align: center;
  border-bottom: 3px solid var(--terracotta);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--deep);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ── BOOKING BANNER ── */
.booking-banner {
    background: var(--terracotta);
    padding: 3rem 4rem;
    text-align: center;
    color: black;
}

.booking-banner h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.booking-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }

.booking-banner .booking-fineprint {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ── SUITES GRID ── */
.suites-section { background: var(--sand); }

.suites-header { max-width: 600px; margin: 0 auto 4rem; text-align: center; }

.suites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}

.suite-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  cursor: pointer;
}

.suite-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.suite-card:hover img { transform: scale(1.06); }

.suite-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,26,24,0.85) 0%, rgba(28,26,24,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem;
  transition: background 0.3s;
}

.suite-card:hover .suite-card-overlay {
  background: linear-gradient(to top, rgba(28,26,24,0.92) 0%, rgba(28,26,24,0.3) 60%);
}

.suite-tag {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta-on-dark);
  margin-bottom: 0.5rem;
}

.suite-card-overlay h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.suite-card-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.suite-book-btn {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
  align-self: flex-start;
}

.suite-card:hover .suite-book-btn { background: var(--terracotta); border-color: var(--terracotta); }

/* ── SUITE ROW (template-suites.php) ── */
.suite-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── NEIGHBORHOOD TEASER ── */
.neighborhood {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

.neighborhood-img {
  background-image: url('assets/images/907-dorsey-gardens-exterior.jpg');
  background-size: cover; background-position: center;
  min-height: 500px;
}

.neighborhood-content {
  background: var(--deep);
  padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}

.neighborhood-content .section-title { color: var(--white); }

.distance-list { list-style: none; margin: 2rem 0; }

.distance-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
}

.distance-list li span { color: var(--terracotta-on-dark); font-weight: 400; }

.btn-light {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1rem;
  transition: background 0.2s, border-color 0.2s;
}

.btn-light:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }

/* ── REVIEWS ── */
.reviews { background: var(--sand); text-align: center; }

.reviews-header { max-width: 600px; margin: 0 auto 4rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}

.review-card {
  background: var(--white);
  padding: 2.5rem;
  text-align: left;
  border-bottom: 3px solid var(--terracotta);
}

.review-stars { color: var(--terracotta); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--deep);
  margin-bottom: 1.5rem;
}

.review-author {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ── FOOTER ── */
footer {
  background: var(--deep);
  color: rgba(255,255,255,0.6);
  padding: 4rem;
}

.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 1.1rem; line-height: 1.8; }

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { font-size: 1.1rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--terracotta-on-dark); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 1.1rem;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 10rem 4rem 5rem;
  background: var(--deep);
  text-align: center;
}

.page-header .section-label { margin-bottom: 1rem; }

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px; margin: 0 auto;
}

/* ── FAQ PAGE ── */
.faq-section { max-width: 800px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); padding: 0; }

.faq-question {
  width: 100%;
  background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.8rem 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--deep);
  font-weight: 400;
}

.faq-question .faq-icon {
  font-size: 1.4rem;
  color: var(--terracotta);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer p {
  color: var(--warm-gray);
  padding-bottom: 1.8rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer { max-height: 300px; }

/* ── NEIGHBORHOOD PAGE ── */
.neighborhood-page .place-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px; margin: 3rem auto 0;
}

.place-card {
  background: var(--white);
  padding: 2rem;
  border-left: 3px solid var(--terracotta);
}

.place-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.place-card p { font-size: 1.1rem; color: var(--warm-gray); }

.place-distance {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1100px; margin: 0 auto;
}

.about-img {
  aspect-ratio: 3 / 4;
  min-height: 500px;
  background-image: url("https://1kr.bdd.myftpupload.com/wp-content/uploads/2026/05/Josh.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.about-text .section-title { font-size: 2.5rem; margin-bottom: 1.5rem; }
.about-text p { color: var(--warm-gray); margin-bottom: 1.2rem; font-size: 1.1rem; }

.quote-block {
  border-left: 3px solid var(--terracotta);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--white);
}

.quote-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--deep);
  margin: 0;
}

/* ── GUEST GUIDE ── */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px; margin: 0 auto;
}

.guide-card {
  background: var(--white);
  padding: 2.5rem;
  border-top: 3px solid var(--terracotta);
}

.guide-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.guide-card ul { list-style: none; }
.guide-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.1rem;
  color: var(--warm-gray);
  display: flex; align-items: flex-start; gap: 0.5rem;
}

.guide-card ul li::before {
  content: '—';
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ── SUITE DETAIL PAGE ── */
.suite-detail-hero {
  height: 70vh;
  position: relative;
  overflow: hidden;
}

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

.suite-detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,26,24,0.7) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 4rem;
}

.suite-detail-hero-overlay h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
}

/* Legacy two-column layout kept for reference, no longer used on single-suite */
.suite-info {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 4rem;
  padding: 5rem 4rem;
}

/* ── Single-column suite detail layout ── */
.suite-info-single {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

/* Calendar section sits flush below gallery */
.suite-calendar-section {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

/* ── Unavailable / blocked dates — make them readable ── */
#hostaway-calendar-widget [class*="unavailable"],
#hostaway-calendar-widget [class*="blocked"],
#hostaway-calendar-widget [class*="disabled"],
#hostaway-calendar-widget [disabled],
#hostaway-calendar-widget td[aria-disabled="true"],
#hostaway-calendar-widget td.is-disabled,
#hostaway-calendar-widget td.is-blocked {
  color: #888 !important;
  opacity: 1 !important;
  text-decoration: line-through;
}

/* ── Hide Hostaway hover tooltip (white box) ── */
[class*="btUVRa"],
[class*="Wrapper-sc-1rajyl7"] {
  display: none !important;
}

@media (max-width: 860px) {
  .suite-info-single { padding: 3rem 1.5rem 4rem; }
}

.suite-amenities h3 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.amenity-list { list-style: none; }
.amenity-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.1rem; color: var(--warm-gray);
  display: flex; align-items: center; gap: 0.5rem;
}
.amenity-list li::before { content: '✓'; color: var(--sage); font-weight: 600; }

.suite-booking-box {
  background: var(--white);
  padding: 2.5rem;
  border-top: 3px solid var(--terracotta);
  position: sticky; top: 100px;
  height: fit-content;
  min-width: 0;
  overflow: hidden;
}

.suite-booking-box h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.suite-booking-box p { font-size: 1.1rem; color: var(--warm-gray); margin-bottom: 1.5rem; }

/* ── Full-width availability calendar (below gallery) ── */
#hostaway-calendar-widget {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 1.1rem;
}
#hostaway-calendar-widget > * {
  max-width: 100%;
}
@media (max-width: 600px) {
  #hostaway-calendar-widget { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════════
   SUITE GALLERY — v7
═══════════════════════════════════════════ */

.suite-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.suite-gallery-section { margin-top: 3rem; }

.suite-gallery-wrap { display: flex; flex-direction: column; gap: 0.75rem; }
.suite-gallery-main-wrap { display: flex; flex-direction: column; gap: 0.75rem; }

.suite-gallery-main {
  position: relative;
  cursor: zoom-in;
  border-radius: 8px;
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 16/9;
}
.suite-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.suite-gallery-main:hover img { transform: scale(1.02); }

.gallery-open-hint {
  position: absolute;
  bottom: 12px; right: 14px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: .06em;
  padding: 5px 10px;
  border-radius: 20px;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.suite-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.suite-gallery-thumb {
  width: 80px; height: 60px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.suite-gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.suite-gallery-thumb:hover  { border-color: var(--terracotta); transform: translateY(-2px); }
.suite-gallery-thumb.active { border-color: var(--terracotta); }

/* ── LIGHTBOX ── */
.suite-lightbox-bg {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9998;
}
.suite-lightbox-bg.open { display: block; }

.suite-lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.suite-lightbox.open { display: flex; }

.lightbox-img-wrap {
  width: 90vw; max-width: 1100px;
  max-height: 75vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 100%; max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
}

.lightbox-close {
  position: fixed; top: 18px; right: 22px;
  background: rgba(255,255,255,.15);
  border: none; color: #fff;
  font-size: 1.4rem; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 10000;
}
.lightbox-close:hover { background: rgba(255,255,255,.28); }

.lightbox-prev,
.lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none; color: #fff;
  font-size: 2.4rem; width: 52px; height: 52px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 10000;
  line-height: 1;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.3); }

.lightbox-counter {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  letter-spacing: .08em;
  margin-top: 14px;
}

.lightbox-strip {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  max-width: 90vw;
  overflow-x: auto;
  padding-bottom: 4px;
}
.lightbox-strip::-webkit-scrollbar { height: 4px; }
.lightbox-strip::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); border-radius:2px; }

.lightbox-strip-thumb {
  width: 56px; height: 42px;
  flex-shrink: 0;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: .65;
  transition: opacity .2s, border-color .2s;
}
.lightbox-strip-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.lightbox-strip-thumb:hover { opacity: .9; }
.lightbox-strip-thumb.active { border-color: var(--terracotta); opacity: 1; }

@media (max-width: 600px) {
  .suite-gallery-main { aspect-ratio: 4/3; }
  .suite-gallery-thumbs { gap: 6px; }
  .suite-gallery-thumb { width: 64px; height: 48px; }
  .lightbox-prev { left: 8px; width:40px; height:40px; font-size:1.8rem; }
  .lightbox-next { right: 8px; width:40px; height:40px; font-size:1.8rem; }
  .lightbox-strip-thumb { width: 44px; height: 34px; }
}

.other-suites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px; margin: 0 auto;
}

.blog-card { background: var(--white); overflow: hidden; }
.blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover img { transform: scale(1.04); }

.blog-card-body { padding: 1.8rem; }
.blog-tag {
  font-size: 1.1rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 0.7rem;
}

.blog-card h3 { font-size: 1.3rem; margin-bottom: 0.7rem; line-height: 1.3; }
.blog-card p { font-size: 1.1rem; color: var(--warm-gray); }

/* ── NEIGHBORHOOD TABLE ── */
.neighborhood-table {
  width: 100%;
  border-collapse: collapse;
}
.neighborhood-table th,
.neighborhood-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 1.1rem;
}
.neighborhood-table th {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

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

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

/* ── ADMIN BAR OFFSET ── */
.admin-bar nav { top: 32px; }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: 0.9rem 2rem; }
  .nav-links { gap: 1.5rem; }

  section { padding: 5rem 2rem; }
  .booking-banner { padding: 3rem 2rem; }
  .page-header { padding: 9rem 2rem 4rem; }

  .intro { grid-template-columns: 1fr; gap: 3rem; }
  .intro-stats { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .stat { padding: 1.5rem 1rem; }
  .stat-num { font-size: 2rem; }

  .neighborhood { grid-template-columns: 1fr; }
  .neighborhood-img { min-height: 350px; }
  .neighborhood-content { padding: 4rem 2rem; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img { min-height: 350px; aspect-ratio: 4/3; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  footer { padding: 3rem 2rem; }

  .suite-row { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .suite-row img { order: -1; }

  .suite-gallery-grid { grid-template-columns: 1fr 1fr; }
  .other-suites-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .neighborhood-page .place-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {

  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 60px; left: 0; right: 0;
    background: var(--cream);
    padding: 2rem 1.5rem; gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    z-index: 99;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .nav-links.open a { font-size: 1.1rem; }
  .hamburger { display: flex; }

  section { padding: 4rem 1.5rem; }
  .booking-banner { padding: 2.5rem 1.5rem; }
  .booking-banner h2 { font-size: 1.5rem; }
  .page-header { padding: 7rem 1.5rem 3.5rem; }
  .page-header h1 { font-size: clamp(2rem, 10vw, 3rem); }

  .hero-content { padding: 2.2rem 1.5rem; }
  .hero-sub { font-size: 1.1rem; margin-bottom: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; }

  .intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat { padding: 1.5rem 1rem; }
  .stat-num { font-size: 2.2rem; }

  .suites-grid { grid-template-columns: 1fr; }
  .suite-card { aspect-ratio: 3/2; }
  .suite-card-overlay { padding: 1.5rem; }
  .suite-card-overlay h3 { font-size: 1.4rem; }

  .suite-row { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .suite-row img { order: -1; }

  .suite-detail-hero { height: 50vh; }
  .suite-detail-hero-overlay { padding: 2rem; }
  .suite-detail-hero-overlay h1 { font-size: clamp(1.8rem, 7vw, 3rem); }
  .suite-gallery-grid { grid-template-columns: 1fr; }

  .other-suites-grid { grid-template-columns: 1fr; }

  .neighborhood { grid-template-columns: 1fr; }
  .neighborhood-img { min-height: 250px; }
  .neighborhood-content { padding: 3rem 1.5rem; }

  .neighborhood-page table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .neighborhood-page .place-grid { grid-template-columns: 1fr; }
  .neighborhood-page .place-grid[style*="repeat(2"] { grid-template-columns: 1fr !important; }
  .neighborhood-page .place-grid[style*="repeat(3"] { grid-template-columns: 1fr !important; }

  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 2rem 1.5rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img { min-height: 300px; aspect-ratio: 2/3; }

  .guide-grid { grid-template-columns: 1fr; }
  .guide-card { padding: 2rem 1.5rem; }

  .faq-question { font-size: 1.1rem; padding: 1.4rem 0; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-body { padding: 1.4rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 3rem 1.5rem; }
  .footer-bottom {
    flex-direction: column; gap: 0.8rem; text-align: center;
    padding-top: 1.5rem;
  }

  div[style*="grid-template-columns:repeat(4,1fr)"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  section { padding: 3rem 1rem; }
  .page-header { padding: 6.5rem 1rem 3rem; }
  .booking-banner { padding: 2rem 1rem; }
  footer { padding: 2.5rem 1rem; }

  .hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-eyebrow { font-size: 1.1rem; letter-spacing: 0.2em; }
  .hero-content { padding: 1.8rem 1.2rem; }

  .intro-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat { padding: 1.2rem 0.8rem; }
  .stat-num { font-size: 1.8rem; }

  .suite-card-overlay { padding: 1.2rem; }
  .suite-card-overlay h3 { font-size: 1.2rem; }

  .review-card { padding: 1.5rem 1rem; }
  .review-text { font-size: 1.1rem; }

  .guide-card { padding: 1.5rem 1rem; }

  .faq-question { font-size: 1.1rem; }

  .section-title { font-size: clamp(1.6rem, 7vw, 2.5rem); }

  .suite-detail-hero { height: 40vh; }

  .neighborhood-content { padding: 2.5rem 1rem; }

  .nav-logo { font-size: 1.1rem; }
  .nav-logo .custom-logo { height: 32px; }
}
