/* ============================================================
   SÔNG HOÀI HOMESTAY — Template B: "Travel Editorial"
   Built by Robusta (robusta.studio)
   
   VARIATION AXES — Flip these to create distinct templates:
   
   1. TYPE SYSTEM (--font-display, --font-body)
      Current: DM Serif Display + Inter (editorial modern)
      Alt A: "Playfair Display", serif + "Source Sans 3" (classic editorial)
      Alt B: "Outfit", sans-serif + "Nunito", sans-serif (humanist warm)
      Alt C: "DM Sans", sans-serif + "Inter" (geometric minimal)
   
   2. LAYOUT DENSITY (--space-unit)
      Current: 1.15rem (magazine — balanced editorial grid)
      Airy: 1.4rem (generous margins, Japanese feel)
      Compact: 0.85rem (dense cards, less whitespace)
   
   3. ACCENT TREATMENT (--accent-style)
      Current: "wash" (background tints on feature sections)
      "line": thin 1px rules, minimal color
      "block": solid color panels behind headings
      "overlay": colored overlays on photos
   
   4. PHOTO CROP (--photo-radius)
      Current: 8px (soft rectangle, modern)
      Sharp: 0px (architectural)
      Polaroid: 4px with white border via box-shadow
      Circular: 50% (for avatars/small features)
   
   5. COLOR PALETTE (swap entire :root block)
      Current: "Deep Teal & Gold" — warm ivory bg, deep teal dark, amber accent
      Alt A: "Coastal" — #F0F4F8, #1B2D3A, accent #2E8B8B
      Alt B: "Jungle" — #F5F1EB, #1A2E1A, accent #D4A843
      Alt C: "Sunset" — #FFF8F0, #2D1810, accent #E06830
      Alt D: "Slate" — #F2F2F0, #1C1C1C, accent #5B6ABF
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg: #FAF8F5;
  --bg-warm: #F3EDE4;
  --bg-dark: #1B2B2A;
  --bg-dark-light: #243836;
  --ink: #1B2B2A;
  --ink-soft: #556B68;
  --ink-faint: #8A9E9B;
  --accent: #C8963E;
  --accent-hover: #B5842F;
  --accent-soft: rgba(200, 150, 62, 0.12);
  --rule: rgba(27, 43, 42, 0.1);
  --rule-strong: rgba(27, 43, 42, 0.2);
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --font-display: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;
  --space-unit: 1.15rem;
  --space-xs: calc(var(--space-unit) * 0.4);
  --space-sm: calc(var(--space-unit) * 0.75);
  --space-md: var(--space-unit);
  --space-lg: calc(var(--space-unit) * 2);
  --space-xl: calc(var(--space-unit) * 3.5);
  --space-2xl: calc(var(--space-unit) * 5);
  --container: 1240px;
  --container-narrow: 860px;
  --photo-radius: 8px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: env(safe-area-inset-bottom);
}

.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; line-height: 1.1; }
.display-italic { font-family: var(--font-display); font-weight: 400; font-style: italic; letter-spacing: 0; color: var(--accent); }
.mono { font-family: var(--font-body); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.68rem; color: var(--accent); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
/* ============ NAV ============ */
.nav {
  padding: 18px 0; position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 245, 0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); flex-shrink: 0; }
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; letter-spacing: -0.01em; line-height: 1; }
.logo-sub { font-family: var(--font-body); font-weight: 400; font-size: 0.65rem; letter-spacing: 0.06em; color: var(--ink-faint); display: block; margin-top: 2px; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -5px; left: 0; right: 0; height: 2px; background: var(--accent); }
.nav-cta {
  background: var(--whatsapp); color: white; padding: 10px 20px; border-radius: 6px;
  text-decoration: none; font-weight: 600; font-size: 0.85rem; display: inline-flex;
  align-items: center; gap: 7px; transition: all 0.2s; box-shadow: 0 2px 8px rgba(37,211,102,0.2);
}
.nav-cta:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }
.nav-toggle { display: none; }

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--whatsapp); color: white; padding: 15px 26px; border-radius: 6px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem; display: inline-flex;
  align-items: center; gap: 9px; transition: all 0.2s; border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(37,211,102,0.25);
}
.btn-primary:hover { background: var(--whatsapp-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.btn-secondary {
  color: var(--ink); padding: 14px 0; text-decoration: none; font-weight: 500;
  font-size: 0.95rem; display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1.5px solid var(--ink); transition: all 0.2s;
}
.btn-secondary:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ============ HERO ============ */
.hero { padding: 50px 0 80px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.hero-eyebrow { margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--accent); }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: 24px; color: var(--ink); }
.hero h1 em { color: var(--accent); }
.hero-sub { font-size: 1.05rem; color: var(--ink-soft); max-width: 440px; margin-bottom: 34px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-meta { margin-top: 30px; display: flex; gap: 20px; color: var(--ink-faint); font-size: 0.82rem; flex-wrap: wrap; }
.hero-meta span { display: flex; align-items: center; gap: 7px; }
.hero-meta span::before { content: '●'; color: var(--accent); font-size: 0.45rem; }

.hero-photo-wrap { position: relative; }
.hero-photo {
  aspect-ratio: 4/5; border-radius: var(--photo-radius); position: relative; overflow: hidden;
  box-shadow: 0 25px 50px -20px rgba(27,43,42,0.3), 0 15px 30px -15px rgba(27,43,42,0.15);
}
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-photo-secondary {
  position: absolute; width: 38%; aspect-ratio: 1; border-radius: var(--photo-radius);
  bottom: -28px; left: -28px; overflow: hidden;
  box-shadow: 0 18px 36px -16px rgba(27,43,42,0.35); border: 4px solid var(--bg);
}
.hero-photo-secondary img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-tag {
  position: absolute; top: -12px; right: -14px; background: var(--bg-dark); color: var(--bg);
  padding: 9px 16px; border-radius: 6px; font-family: var(--font-body); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; transform: rotate(4deg);
  z-index: 3; box-shadow: 0 8px 20px -8px rgba(27,43,42,0.3);
}
/* ============ SECTIONS ============ */
.section { padding: var(--space-2xl) 0; }
.section-tight { padding: var(--space-xl) 0; }
.section-eyebrow { margin-bottom: 16px; display: inline-flex; align-items: center; gap: 12px; }
.section-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--accent); }
.section-title { font-size: clamp(1.9rem, 4vw, 3.2rem); color: var(--ink); margin-bottom: 18px; max-width: 680px; }
.section-title em { color: var(--accent); }
.section-intro { color: var(--ink-soft); font-size: 1rem; max-width: 560px; margin-bottom: 50px; line-height: 1.7; }

/* ============ WELCOME ============ */
.welcome { padding: 90px 0; border-top: 1px solid var(--rule); background: var(--bg-warm); }
.welcome-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.welcome-side .mono { color: var(--accent); }
.welcome-side h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-top: 16px; color: var(--ink); line-height: 1.1; }
.welcome-text { font-size: 1.02rem; line-height: 1.8; color: var(--ink-soft); }
.welcome-text p { margin-bottom: 18px; }
.welcome-text p:last-child { margin-bottom: 0; }
.welcome-sig { margin-top: 24px; font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--ink); }

/* ============ ROOMS PREVIEW ============ */
.rooms-preview { padding: var(--space-2xl) 0; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.room-card {
  background: var(--bg); border-radius: var(--photo-radius); overflow: hidden;
  border: 1px solid var(--rule); transition: all 0.35s; text-decoration: none; color: inherit; display: block;
}
.room-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -18px rgba(27,43,42,0.2); }
.room-img { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.room-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-img img { transform: scale(1.04); }
.room-img-1, .room-img-2, .room-img-3, .room-img-4 { background: var(--bg-warm); }
.room-info { padding: 20px 22px 24px; }
.room-cat { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 6px; }
.room-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; color: var(--ink); margin-bottom: 6px; }
.room-card p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.6; margin-bottom: 14px; }
.room-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--rule); }
.room-price { font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; color: var(--ink); }
.room-price em { font-style: normal; font-size: 0.82rem; color: var(--ink-faint); margin-left: 2px; }
.room-link { font-size: 0.82rem; font-weight: 600; color: var(--accent); }

/* ============ GALLERY PREVIEW ============ */
.gallery-preview { padding: var(--space-2xl) 0; background: var(--bg-dark); color: var(--bg); border-top: none; border-bottom: none; }
.gallery-preview .section-eyebrow { color: var(--accent); }
.gallery-preview .section-eyebrow::before { background: var(--accent); }
.gallery-preview .section-title { color: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 200px 200px; gap: 10px; }
.gallery-item {
  border-radius: var(--photo-radius); overflow: hidden; position: relative; cursor: pointer;
  transition: all 0.3s;
}
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-cta { text-align: center; margin-top: 36px; }
.gallery-preview .btn-secondary { color: var(--bg); border-bottom-color: var(--bg); }
.gallery-preview .btn-secondary:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ============ REVIEWS ============ */
.reviews { padding: var(--space-2xl) 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--bg-warm); padding: 30px 28px; border-radius: var(--photo-radius); border: 1px solid var(--rule); position: relative; }
.review-stars { color: var(--accent); font-size: 0.95rem; letter-spacing: 0.1em; margin-bottom: 16px; }
.review-text { font-family: var(--font-display); font-weight: 400; font-size: 1.1rem; line-height: 1.4; color: var(--ink); margin-bottom: 22px; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--rule); }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--bg-dark); }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 600; font-size: 0.88rem; color: var(--ink); }
.review-meta { font-size: 0.78rem; color: var(--ink-faint); }
/* ============ ABOUT PREVIEW ============ */
.about-preview { padding: var(--space-2xl) 0; background: var(--bg-warm); position: relative; overflow: hidden; }
.about-preview .container { position: relative; }
.about-preview-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about-preview .section-eyebrow { color: var(--accent); }
.about-preview .section-eyebrow::before { background: var(--accent); }
.about-preview-photo { aspect-ratio: 4/5; border-radius: var(--photo-radius); position: relative; overflow: hidden; box-shadow: 0 25px 50px -20px rgba(27,43,42,0.25); }
.about-preview-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-preview-text { font-size: 1.02rem; line-height: 1.75; color: var(--ink-soft); }
.about-preview-text p { margin-bottom: 18px; }

/* ============ LOCATION ============ */
.location { padding: var(--space-2xl) 0; }
.location-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: start; }
.location-info h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; color: var(--ink); margin-bottom: 8px; margin-top: 22px; }
.location-info h3:first-of-type { margin-top: 0; }
.location-info p, .location-info address { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.65; font-style: normal; }
.map-placeholder {
  aspect-ratio: 4/3; border-radius: var(--photo-radius); position: relative; overflow: hidden;
  background: var(--bg-warm); border: 1px solid var(--rule);
}
.map-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 32px, var(--rule) 32px, var(--rule) 33px),
              repeating-linear-gradient(90deg, transparent, transparent 32px, var(--rule) 32px, var(--rule) 33px);
}
.map-pin {
  position: absolute; top: 45%; left: 50%; transform: translate(-50%, -100%);
  width: 32px; height: 32px; background: var(--accent);
  border-radius: 50% 50% 50% 0; transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 6px 16px -4px rgba(200,150,62,0.5);
}
.map-pin::after { content: ''; position: absolute; top: 50%; left: 50%; width: 12px; height: 12px; background: var(--bg); border-radius: 50%; transform: translate(-50%, -50%); }

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 120px 0; background: var(--bg-dark); color: var(--bg); text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(200,150,62,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(200,150,62,0.05) 0%, transparent 50%);
}
.final-cta .container { position: relative; }
.final-cta h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 22px; max-width: 750px; margin-left: auto; margin-right: auto; }
.final-cta p { font-size: 1.05rem; margin-bottom: 36px; opacity: 0.8; max-width: 500px; margin-left: auto; margin-right: auto; }
.final-cta .btn-primary { background: var(--accent); color: white; box-shadow: 0 6px 20px -6px rgba(200,150,62,0.4); }
.final-cta .btn-primary:hover { background: var(--accent-hover); }

/* ============ FOOTER ============ */
.footer { padding: 55px 0 35px; background: var(--bg-dark); color: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 45px; margin-bottom: 35px; }
.footer-brand { max-width: 300px; }
.footer-brand p { font-size: 0.88rem; opacity: 0.5; margin-top: 12px; line-height: 1.65; }
.footer-col h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); opacity: 0.7; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 7px; }
.footer-col a { color: var(--bg); text-decoration: none; font-size: 0.9rem; opacity: 0.75; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--accent); }
.footer-bottom { padding-top: 26px; border-top: 1px solid rgba(250,248,245,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; opacity: 0.4; }
.footer-bottom a { color: var(--bg); opacity: 0.6; text-decoration: none; }
.footer-bottom a:hover { opacity: 1; }

/* ============ PAGE HEADER ============ */
.page-header { padding: 65px 0 45px; border-bottom: 1px solid var(--rule); }
.page-header .mono { color: var(--accent); margin-bottom: 12px; display: inline-block; }
.page-header h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); color: var(--ink); margin-bottom: 16px; }
.page-header h1 em { color: var(--accent); }
.page-header p { color: var(--ink-soft); font-size: 1.02rem; max-width: 580px; line-height: 1.7; }

/* ============ ROOMS PAGE ============ */
.room-detail { padding: 80px 0; border-bottom: 1px solid var(--rule); }
.room-detail:last-of-type { border-bottom: none; }
.room-detail-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 55px; align-items: center; }
.room-detail.reverse .room-detail-grid { direction: rtl; }
.room-detail.reverse .room-detail-grid > * { direction: ltr; }
.room-detail-photo {
  aspect-ratio: 5/4; border-radius: var(--photo-radius); position: relative; overflow: hidden;
  box-shadow: 0 25px 50px -20px rgba(27,43,42,0.25);
}
.room-detail-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.room-detail-info .mono { color: var(--accent); margin-bottom: 10px; display: inline-block; }
.room-detail-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--ink); margin-bottom: 16px; line-height: 1.1; }
.room-detail-desc { font-size: 1rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 24px; }
.room-amenities { list-style: none; margin-bottom: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px 16px; }
.room-amenities li { font-size: 0.9rem; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.room-amenities li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.room-detail-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; border-top: 1px solid var(--rule); gap: 16px; flex-wrap: wrap; }
.room-detail-price { font-family: var(--font-display); font-weight: 400; font-size: 1.8rem; color: var(--ink); }
.room-detail-price em { font-style: normal; font-size: 0.9rem; color: var(--ink-faint); margin-left: 3px; }
/* ============ GALLERY PAGE ============ */
.gallery-filters { display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.gallery-filter {
  background: var(--bg-warm); border: 1px solid var(--rule); padding: 9px 18px; border-radius: 6px;
  font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); cursor: pointer; transition: all 0.2s;
}
.gallery-filter.active, .gallery-filter:hover { background: var(--bg-dark); color: var(--bg); border-color: var(--bg-dark); }
.gallery-page { padding: 50px 0 100px; }
.gallery-full { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 10px; }
.gallery-full .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-full .gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-full .gallery-item:nth-child(9) { grid-row: span 2; }
.gallery-full .gallery-item { background: var(--bg-warm); }

/* ============ ABOUT PAGE ============ */
.about-page-hero { padding: 40px 0 70px; }
.about-hero-photo {
  aspect-ratio: 21/9; border-radius: var(--photo-radius); position: relative; overflow: hidden;
  box-shadow: 0 25px 50px -20px rgba(27,43,42,0.25);
}
.about-hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-story { padding: 70px 0; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.about-story-side { position: sticky; top: 90px; }
.about-story-side h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); color: var(--ink); margin-top: 16px; line-height: 1.1; }
.about-story-side h2 em { color: var(--accent); }
.about-story-text p { font-size: 1.02rem; line-height: 1.85; color: var(--ink-soft); margin-bottom: 20px; }
.about-story-text p:first-of-type::first-letter {
  font-family: var(--font-display); font-weight: 400; font-size: 4.2rem; float: left;
  line-height: 0.82; color: var(--accent); margin-right: 10px; margin-top: 6px;
}
.about-pull {
  font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 1.55rem; line-height: 1.35;
  color: var(--ink); padding: 28px 0; margin: 28px 0;
  border-top: 2px solid var(--accent); border-bottom: 1px solid var(--rule);
}
.about-photos { padding: 50px 0; background: var(--bg-warm); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.about-photos-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.about-photo-item { aspect-ratio: 1; border-radius: var(--photo-radius); overflow: hidden; position: relative; }
.about-photo-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-photo-item:nth-child(2) { aspect-ratio: 4/5; margin-top: -28px; }
.about-photo-item:nth-child(3) { margin-top: 28px; }

/* ============ CONTACT PAGE ============ */
.contact-page { padding: 70px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.02rem; color: var(--ink); margin-bottom: 6px; margin-top: 28px; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p, .contact-info address { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.65; font-style: normal; }
.contact-info a { color: var(--accent); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }
.contact-cta { background: var(--bg-dark); color: var(--bg); padding: 36px 32px; border-radius: var(--photo-radius); margin-top: 32px; }
.contact-cta h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; margin-bottom: 10px; color: var(--bg); }
.contact-cta p { font-size: 0.92rem; opacity: 0.75; margin-bottom: 20px; line-height: 1.65; }
.contact-map { aspect-ratio: 1; border-radius: var(--photo-radius); position: relative; overflow: hidden; background: var(--bg-warm); border: 1px solid var(--rule); }
.contact-map::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 32px, var(--rule) 32px, var(--rule) 33px),
              repeating-linear-gradient(90deg, transparent, transparent 32px, var(--rule) 32px, var(--rule) 33px);
}
.contact-map .map-pin { top: 50%; }

/* ============ STICKY MOBILE CTA ============ */
.sticky-mobile {
  display: none; position: fixed; bottom: 16px; left: 16px; right: 16px;
  background: var(--whatsapp); color: white; padding: 15px; border-radius: 10px;
  text-align: center; text-decoration: none; font-weight: 600; z-index: 100;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3); display: flex;
  align-items: center; justify-content: center; gap: 8px; font-size: 0.92rem;
}
@media (min-width: 901px) { .sticky-mobile { display: none; } }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .container, .container-narrow { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { padding: 8px 14px; font-size: 0.8rem; }
  .hero { padding: 36px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { aspect-ratio: 1; }
  .hero-photo-secondary { width: 32%; }
  .section, .welcome, .rooms-preview, .gallery-preview, .reviews, .about-preview, .location, .final-cta { padding: 65px 0; }
  .welcome-inner, .about-preview-grid, .location-grid, .about-story-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-story-side { position: static; }
  .rooms-grid, .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 170px 170px 170px; }
  .gallery-grid .gallery-item:nth-child(1) { grid-row: span 1; grid-column: span 2; }
  .gallery-full { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery-full .gallery-item:nth-child(1), .gallery-full .gallery-item:nth-child(6), .gallery-full .gallery-item:nth-child(9) { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: span 2; }
  .footer { padding-bottom: 95px; }
  .room-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .room-detail.reverse .room-detail-grid { direction: ltr; }
  .room-amenities { grid-template-columns: 1fr; }
  .about-photos-grid { grid-template-columns: 1fr 1fr; }
  .about-photo-item:nth-child(3) { display: none; }
  .sticky-mobile { display: flex; }
  .hero-tag { right: 8px; top: -8px; font-size: 0.62rem; padding: 7px 12px; }
}
@media (max-width: 540px) {
  .display, .hero h1, .section-title, .page-header h1, .final-cta h2 { letter-spacing: -0.02em; }
  .gallery-grid { grid-template-rows: 150px 150px 150px; }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow, .hero h1, .hero-sub, .hero-ctas, .hero-meta { animation: fadeUp 0.7s ease backwards; }
.hero h1 { animation-delay: 0.1s; }
.hero-sub { animation-delay: 0.2s; }
.hero-ctas { animation-delay: 0.3s; }
.hero-meta { animation-delay: 0.4s; }
.hero-photo-wrap { animation: fadeUp 0.9s ease 0.3s backwards; }

/* ============ DEMO BANNER ============ */
.demo-banner {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 10px 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 60;
}
.demo-banner a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  margin-left: 6px;
  transition: color 0.2s;
}
.demo-banner a:hover {
  color: #E0B45A;
  text-decoration: underline;
}
.demo-banner .demo-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  animation: demoPulse 2s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes demoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
