/* ═══════════════════════════════════════════════
   The Avenue, Queen's Park — V3 Hompark Style
   ═══════════════════════════════════════════════ */

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); font-size: 15px; line-height: 1.7; color: var(--hp-text); background: var(--hp-white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color 0.25s; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
table { border-collapse: collapse; }

/* ─── Custom Properties ─── */
:root {
  --hp-gold: #9f8054;
  --hp-gold-hover: #b8935f;
  --hp-gold-light: #ebcfa7;
  --hp-gold-bg: rgba(159, 128, 84, 0.08);
  --hp-charcoal: #26282b;
  --hp-charcoal-light: #2e3033;
  --hp-light-bg: #f9f9f9;
  --hp-white: #ffffff;
  --hp-border: #eee;
  --hp-border-alt: #eaebee;
  --hp-text: #666666;
  --hp-text-dark: #26282b;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w: 1280px;
  --nav-h: 80px;
  --section-pad: 150px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
}

/* ─── Container ─── */
.hp-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Section Label ─── */
.hp-section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--hp-gold);
  margin-bottom: 12px;
}
.hp-section-label--light { color: var(--hp-gold-light); }

/* ─── Section Number (decorative) ─── */
.hp-section-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 700;
  color: var(--hp-charcoal);
  opacity: 0.06;
  line-height: 1;
  margin-bottom: -30px;
  user-select: none;
  pointer-events: none;
}

/* ─── Section Header (centered) ─── */
.hp-section-header {
  text-align: center;
  margin-bottom: 60px;
}
.hp-section-header h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--hp-text-dark);
  line-height: 1.2;
}
.hp-section-header--light h2 { color: #fff; }

/* ─── Buttons ─── */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.hp-btn--outline {
  background: transparent;
  border: 2px solid var(--hp-gold-light);
  color: var(--hp-gold-light);
}
.hp-btn--outline:hover {
  background: var(--hp-gold);
  border-color: var(--hp-gold);
  color: #fff;
}
.hp-btn--outline-dark {
  background: transparent;
  border: 2px solid var(--hp-gold);
  color: var(--hp-gold);
}
.hp-btn--outline-dark:hover {
  background: var(--hp-gold);
  color: #fff;
}
.hp-btn--gold {
  background: var(--hp-gold);
  border: 2px solid var(--hp-gold);
  color: #fff;
}
.hp-btn--gold:hover {
  background: var(--hp-gold-hover);
  border-color: var(--hp-gold-hover);
  color: #fff;
}

/* ─── Link Arrow ─── */
.hp-link-arrow {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hp-gold);
  transition: color 0.25s;
}
.hp-link-arrow:hover { color: var(--hp-gold-hover); }

/* ═══════════════════════════════════════════════
   1. NAVIGATION
   ═══════════════════════════════════════════════ */
.hp-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s;
}
.hp-nav--scrolled {
  position: fixed;
  background: rgba(38, 40, 43, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hp-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hp-nav-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.hp-nav-links {
  display: none;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-left: 32px;
  padding: 0 0 0 32px;
  height: 100%;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.hp-nav-links li { height: 100%; display: flex; align-items: center; }
.hp-nav-links a {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
  height: 100%;
  display: flex;
  align-items: center;
  border-top: 2px solid transparent;
  margin-top: -1px;
  white-space: nowrap;
}
.hp-nav-links a:hover { color: var(--hp-gold-light); border-top-color: var(--hp-gold-light); }

.hp-nav-cta {
  display: none;
  height: 44px;
  padding: 0 28px;
  border: 2px solid var(--hp-gold-light);
  color: var(--hp-gold-light);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s;
}
.hp-nav-cta:hover { background: var(--hp-gold); border-color: var(--hp-gold); color: #fff; }

/* Nav dropdown */
.hp-nav-dropdown { position: relative; }
.hp-nav-dropdown-toggle { display: flex; align-items: center; gap: 5px; }
.hp-nav-dropdown-toggle svg { width: 10px; height: 10px; opacity: 0.5; }
.hp-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--hp-charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s;
}
.hp-nav-dropdown.dropdown-open .hp-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.hp-nav-dropdown-menu li { height: auto; }
.hp-nav-dropdown-menu li a {
  display: block;
  padding: 8px 24px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,0.5);
  border-top: none;
  height: auto;
  margin-top: 0;
}
.hp-nav-dropdown-menu li a:hover { color: var(--hp-gold-light); background: rgba(255,255,255,0.03); }

/* Mobile toggle */
.hp-nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hp-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile menu */
.hp-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--hp-charcoal);
  padding: 40px 24px;
  z-index: 999;
  overflow-y: auto;
}
.hp-mobile-menu.open { display: block; }
.hp-mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hp-mobile-menu a:hover { color: var(--hp-gold-light); }
.hp-mobile-menu .hp-mobile-divider {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hp-gold);
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
  border: none;
  padding: 0;
}

/* ═══════════════════════════════════════════════
   2. HERO
   ═══════════════════════════════════════════════ */
.hp-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--hp-charcoal);
}
.hp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(38,40,43,0.3) 0%, rgba(38,40,43,0.55) 50%, rgba(38,40,43,0.85) 100%);
}
.hp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0 24px;
}
.hp-hero-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--hp-gold-light);
  margin-bottom: 24px;
}
.hp-hero h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--hp-gold-light);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hp-hero-price {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
}
.hp-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════
   3. ABOUT (Split)
   ═══════════════════════════════════════════════ */
.hp-about {
  padding: var(--section-pad) 0;
}
.hp-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.hp-split-image {
  position: relative;
  overflow: hidden;
}
.hp-split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hp-gold-bg);
  z-index: 0;
}
.hp-split-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.hp-split-content {
  position: relative;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hp-split-content h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--hp-text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}
.hp-split-content p {
  font-size: 15px;
  color: var(--hp-text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.hp-split-content .hp-btn { align-self: flex-start; margin-top: 8px; }

/* ═══════════════════════════════════════════════
   4. STATS / BENEFITS
   ═══════════════════════════════════════════════ */
.hp-stats {
  padding: var(--section-pad) 0;
  background: var(--hp-light-bg);
}
.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  gap: 24px;
}
.hp-stat-item {
  padding: 20px;
}
.hp-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--hp-charcoal);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hp-stat-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hp-text);
}

/* ═══════════════════════════════════════════════
   5. GALLERY PREVIEW
   ═══════════════════════════════════════════════ */
.hp-gallery-preview {
  padding: var(--section-pad) 0;
}
.hp-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.hp-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.hp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.hp-gallery-item:hover img { transform: scale(1.05); }
.hp-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(38,40,43,0.4);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-gallery-item:hover .hp-gallery-overlay { opacity: 1; }
.hp-gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* ═══════════════════════════════════════════════
   6. FEATURE (Reverse Split)
   ═══════════════════════════════════════════════ */
.hp-feature {
  padding: var(--section-pad) 0;
  background: var(--hp-white);
}

/* ═══════════════════════════════════════════════
   7. SPECS + ROOM TABS
   ═══════════════════════════════════════════════ */
.hp-details {
  padding: var(--section-pad) 0;
  background: var(--hp-light-bg);
}
.hp-details-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.hp-details-split > * {
  min-width: 0;
}

/* Specs table */
.hp-specs h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--hp-text-dark);
  line-height: 1.2;
  margin-bottom: 30px;
}
.hp-specs-table {
  width: 100%;
  margin-bottom: 24px;
  table-layout: fixed;
}
.hp-specs-table td {
  padding: 14px 0;
  font-size: 15px;
  border-bottom: 1px dashed var(--hp-border);
  word-wrap: break-word;
}
.hp-specs-table td:first-child { color: var(--hp-text); width: 40%; }
.hp-specs-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--hp-text-dark);
  width: 60%;
}
.hp-specs-table tr:first-child td:last-child {
  color: var(--hp-gold);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}
.hp-specs-agent {
  font-size: 13px;
  color: var(--hp-text);
  margin-bottom: 24px;
}

/* Room tabs */
.hp-rooms-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--hp-border);
  margin-bottom: 30px;
}
.hp-room-tab {
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--hp-text);
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.hp-room-tab:hover { color: var(--hp-gold); }
.hp-room-tab.active { color: var(--hp-gold); border-bottom-color: var(--hp-gold); }

.hp-room-panel { display: none; }
.hp-room-panel.active { display: block; }
.hp-room-panel img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 20px;
}
.hp-img-muted {
  filter: saturate(0.55) brightness(1.06) contrast(0.95);
}
.hp-room-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.hp-room-panel-tags span {
  padding: 5px 14px;
  background: var(--hp-gold-bg);
  border: 1px solid rgba(159,128,84,0.2);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hp-gold);
}
.hp-room-panel p {
  font-size: 15px;
  color: var(--hp-text);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════
   8. CTA BANNER
   ═══════════════════════════════════════════════ */
.hp-cta-banner {
  padding: var(--section-pad) 0;
  background: var(--hp-charcoal);
  text-align: center;
}
.hp-cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--hp-gold-light);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hp-cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   9. AREA GUIDES
   ═══════════════════════════════════════════════ */
.hp-guides {
  padding: var(--section-pad) 0;
}
.hp-guides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.hp-guide-card {
  display: block;
  background: var(--hp-white);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.hp-guide-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.hp-guide-card-image {
  overflow: hidden;
  aspect-ratio: 16/10;
}
.hp-guide-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.hp-guide-card:hover .hp-guide-card-image img { transform: scale(1.05); }
.hp-guide-card-body {
  padding: 28px 24px;
}
.hp-guide-card-tag {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hp-gold);
  margin-bottom: 8px;
}
.hp-guide-card-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--hp-text-dark);
  margin-bottom: 10px;
}
.hp-guide-card-body p {
  font-size: 15px;
  color: var(--hp-text);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   10. AMENITIES GRID
   ═══════════════════════════════════════════════ */
.hp-amenities {
  padding: var(--section-pad) 0;
  background: var(--hp-charcoal);
  color: #fff;
}
.hp-amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.hp-amenity-box {
  padding: 40px 30px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: border-color 0.3s;
}
.hp-amenity-box:hover { border-color: var(--hp-gold); }
.hp-amenity-icon {
  width: 48px;
  height: 48px;
  color: var(--hp-gold-light);
  margin: 0 auto 20px;
}
.hp-amenity-icon svg { width: 100%; height: 100%; }
.hp-amenity-box h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.hp-amenity-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   11. FOOTER
   ═══════════════════════════════════════════════ */
.hp-footer {
  background: var(--hp-charcoal);
  padding: 0 0 0;
}
.hp-footer-accent {
  height: 4px;
  background: var(--hp-gold);
}
.hp-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 80px 0 60px;
}
.hp-footer-brand {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 16px;
}
.hp-footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.hp-footer-col li { margin-bottom: 10px; }
.hp-footer-col a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: color 0.25s;
}
.hp-footer-col a:hover { color: var(--hp-gold-light); }
.hp-footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.hp-footer-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  background: var(--hp-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.25s;
}
.hp-footer-cta:hover { background: var(--hp-gold-hover); color: #fff; }

.hp-footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.hp-footer-copyright p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════ */
.hp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.hp-lightbox.active { display: flex; }
.hp-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
}
.hp-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.25s;
}
.hp-lightbox-close:hover { opacity: 1; }
.hp-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 16px;
  opacity: 0.6;
  transition: opacity 0.25s;
  z-index: 10;
}
.hp-lightbox-nav:hover { opacity: 1; }
.hp-lightbox-prev { left: 16px; }
.hp-lightbox-next { right: 16px; }
.hp-lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════
   INNER PAGE: NAV SOLID
   ═══════════════════════════════════════════════ */
.hp-nav--solid {
  position: relative;
  background: var(--hp-charcoal);
}
.hp-nav--solid.hp-nav--scrolled {
  position: fixed;
  top: 0;
}

/* ═══════════════════════════════════════════════
   INNER PAGE: PAGE HEADER
   ═══════════════════════════════════════════════ */
.hp-page-header {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hp-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #26282b 0%, #2e3033 40%, #3a3226 70%, #9f8054 100%);
}
.hp-page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(159,128,84,0.15) 0%, transparent 60%),
              rgba(38, 40, 43, 0.45);
}
.hp-page-header-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}
.hp-page-header-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--hp-gold);
  margin-bottom: 20px;
}
.hp-page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--hp-gold-light);
  line-height: 1.15;
}
.hp-page-header h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--hp-gold);
  margin: 24px auto 0;
}
.hp-page-header-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Breadcrumb bar */
.hp-breadcrumb {
  background: var(--hp-gold);
  padding: 14px 0;
}
.hp-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hp-breadcrumb a,
.hp-breadcrumb span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.hp-breadcrumb a:hover { color: #fff; }
.hp-breadcrumb .hp-bc-sep {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.hp-breadcrumb .hp-bc-current {
  color: #fff;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════
   INNER PAGE: CONTENT ARTICLE
   ═══════════════════════════════════════════════ */
.hp-content {
  padding: 100px 0 60px;
}
.hp-article {
  max-width: 900px;
}
.hp-article h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--hp-text-dark);
  line-height: 1.25;
  margin: 64px 0 24px;
  padding-bottom: 20px;
  position: relative;
}
.hp-article h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--hp-gold);
}
.hp-article h2:first-child { margin-top: 0; }
.hp-article h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--hp-text-dark);
  margin: 40px 0 14px;
}
.hp-article h4 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--hp-text-dark);
  margin: 28px 0 10px;
}
.hp-article p {
  font-size: 15px;
  color: var(--hp-text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.hp-article ul,
.hp-article ol {
  margin: 0 0 20px 0;
  padding-left: 0;
}
.hp-article ul li,
.hp-article ol li {
  font-size: 15px;
  color: var(--hp-text);
  line-height: 1.8;
  padding: 4px 0 4px 24px;
  position: relative;
}
.hp-article ul li::before {
  content: '\203A\203A';
  position: absolute;
  left: 0;
  color: var(--hp-gold);
  font-weight: 600;
  font-size: 13px;
}
.hp-article ol { padding-left: 20px; }
.hp-article ol li::before { display: none; }
.hp-article ol li { list-style: decimal; padding-left: 8px; }
.hp-article strong { color: var(--hp-text-dark); font-weight: 600; }
.hp-article a { color: var(--hp-gold); font-weight: 500; }
.hp-article a:hover { color: var(--hp-gold-hover); text-decoration: underline; }

/* Intro paragraph */
.hp-article p.hp-article-intro {
  font-size: 19px;
  color: var(--hp-text-dark);
  line-height: 1.8;
  margin-bottom: 36px;
  border-left: 3px solid var(--hp-gold);
  padding-left: 28px;
}

/* Blockquote */
.hp-blockquote {
  background: var(--hp-light-bg);
  border-left: 4px solid var(--hp-gold);
  padding: 32px 40px;
  margin: 40px 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  color: var(--hp-text-dark);
  line-height: 1.6;
}
.hp-blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hp-gold);
}

/* Data table (content pages) */
.hp-data-table {
  width: 100%;
  margin: 32px 0 36px;
  table-layout: fixed;
  border-top: 3px solid var(--hp-gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.hp-data-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.85);
  padding: 16px 16px;
  border-bottom: none;
  background: var(--hp-charcoal);
}
.hp-data-table td {
  padding: 15px 16px;
  font-size: 15px;
  color: var(--hp-text);
  border-bottom: 1px solid var(--hp-border);
  word-wrap: break-word;
  background: var(--hp-white);
}
.hp-data-table td:first-child { font-weight: 500; color: var(--hp-text-dark); }
.hp-data-table tbody tr:hover td { background: rgba(159,128,84,0.04); }
.hp-data-table td strong,
.hp-data-table td b { color: var(--hp-text-dark); }

/* Comparison table */
.hp-compare-table {
  width: 100%;
  margin: 32px 0 36px;
  border-top: 3px solid var(--hp-gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.hp-compare-table th {
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  padding: 16px 16px;
  border-bottom: none;
  background: var(--hp-charcoal);
}
.hp-compare-table th:first-child { font-family: var(--font-body); font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; }
.hp-compare-table td {
  padding: 15px 16px;
  font-size: 15px;
  color: var(--hp-text);
  border-bottom: 1px solid var(--hp-border);
  vertical-align: top;
  background: var(--hp-white);
}
.hp-compare-table td:first-child { font-weight: 500; color: var(--hp-text-dark); width: 28%; }
.hp-compare-table tbody tr:hover td { background: rgba(159,128,84,0.04); }

/* Two-column spec list */
.hp-two-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 32px 0;
}
.hp-two-cols h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--hp-text-dark);
  margin-bottom: 16px;
}
.hp-two-cols ul { margin-bottom: 0; }

/* Image grid (content pages) */
.hp-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 36px 0;
}
.hp-image-grid img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* Inner page CTA (bottom of every content page) */
.hp-inner-cta {
  padding: 120px 0;
  background: var(--hp-charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hp-inner-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--hp-gold);
}
.hp-inner-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(159,128,84,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hp-inner-cta .hp-container {
  position: relative;
  z-index: 1;
}
.hp-inner-cta h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--hp-gold-light);
  margin-bottom: 16px;
}
.hp-inner-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   INNER PAGE: HIGHLIGHT BOX
   ═══════════════════════════════════════════════ */
.hp-highlight-box {
  background: var(--hp-charcoal);
  padding: 40px 40px;
  margin: 40px 0;
  position: relative;
}
.hp-highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--hp-gold);
}
.hp-highlight-box h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--hp-gold-light);
  margin: 0 0 16px;
}
.hp-highlight-box p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 12px;
}
.hp-highlight-box p:last-child { margin-bottom: 0; }
.hp-highlight-box ul { margin: 0; padding: 0; }
.hp-highlight-box ul li {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  padding: 4px 0 4px 24px;
  position: relative;
}
.hp-highlight-box ul li::before {
  content: '\203A\203A';
  position: absolute;
  left: 0;
  color: var(--hp-gold);
  font-weight: 600;
  font-size: 13px;
}
.hp-highlight-box strong { color: var(--hp-gold-light); }
.hp-highlight-box a { color: var(--hp-gold-light); font-weight: 500; }
.hp-highlight-box a:hover { color: #fff; }

/* ═══════════════════════════════════════════════
   INNER PAGE: RELATED GUIDES
   ═══════════════════════════════════════════════ */
.hp-related {
  padding: 100px 0;
  background: var(--hp-light-bg);
}

/* ═══════════════════════════════════════════════
   INNER PAGE: KEY STATS BAR
   ═══════════════════════════════════════════════ */
.hp-key-stats {
  padding: 60px 0;
  background: var(--hp-light-bg);
}
.hp-key-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  text-align: center;
}
.hp-key-stat {
  padding: 32px 20px;
}
.hp-key-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--hp-charcoal);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hp-key-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hp-text);
}

/* ═══════════════════════════════════════════════
   GALLERY PAGE (FULL)
   ═══════════════════════════════════════════════ */
.hp-full-gallery {
  padding: 80px 0;
}
.hp-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.hp-gallery-filter-btn {
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--hp-text);
  border: 1px solid var(--hp-border);
  transition: all 0.25s;
  cursor: pointer;
}
.hp-gallery-filter-btn:hover,
.hp-gallery-filter-btn.active {
  background: var(--hp-gold);
  border-color: var(--hp-gold);
  color: #fff;
}
.hp-full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.hp-full-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.hp-full-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.hp-full-gallery-item:hover img { transform: scale(1.05); }
.hp-full-gallery-item[data-hidden="true"] { display: none; }

/* Floor plan section */
.hp-floorplan {
  padding: 60px 0;
  background: var(--hp-light-bg);
}
.hp-floorplan img {
  max-width: 800px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   ROOM TOUR PAGE
   ═══════════════════════════════════════════════ */
.hp-metrics-bar {
  padding: 60px 0;
  background: var(--hp-light-bg);
}
.hp-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 0;
}
.hp-metric {
  padding: 24px 16px;
}
.hp-metric + .hp-metric { border-left: 1px solid var(--hp-border); }
.hp-metric-value {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--hp-charcoal);
  line-height: 1.1;
  display: block;
  margin-bottom: 6px;
}
.hp-metric-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hp-text);
}

/* Room sections (full page, not tabs) */
.hp-room-section {
  padding: 80px 0;
}
.hp-room-section:nth-child(even) { background: var(--hp-light-bg); }
.hp-room-section-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hp-room-section img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.hp-room-section h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--hp-text-dark);
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */
.hp-contact-hero {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.hp-contact-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-contact {
  padding: 80px 0;
}
.hp-contact-focused {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 20px;
}
.hp-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.hp-contact h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--hp-text-dark);
  margin-bottom: 24px;
}

/* Form */
.hp-form-group {
  margin-bottom: 20px;
}
.hp-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hp-text-dark);
  margin-bottom: 8px;
}
.hp-form-group input,
.hp-form-group textarea,
.hp-form-group select {
  width: 100%;
  height: 54px;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--hp-text-dark);
  border: 1px solid var(--hp-border);
  background: var(--hp-white);
  outline: none;
  transition: border-color 0.25s;
}
.hp-form-group input:focus,
.hp-form-group textarea:focus {
  border-color: var(--hp-gold);
}
.hp-form-group textarea {
  height: 160px;
  padding: 16px 20px;
  resize: vertical;
}
.hp-form-submit {
  height: 54px;
  padding: 0 40px;
  background: var(--hp-gold);
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.25s;
}
.hp-form-submit:hover { background: var(--hp-gold-hover); }

/* Contact info blocks */
.hp-contact-info-block {
  margin-bottom: 32px;
}
.hp-contact-info-block h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--hp-text-dark);
  margin-bottom: 12px;
}
.hp-contact-info-block p {
  font-size: 15px;
  color: var(--hp-text);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════ */
.hp-faq {
  padding: 80px 0;
  background: var(--hp-light-bg);
}
.hp-accordion-item {
  border: 1px solid var(--hp-border-alt);
  margin-bottom: -1px;
  background: var(--hp-white);
}
.hp-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--hp-text-dark);
  transition: color 0.25s;
}
.hp-accordion-header:hover { color: var(--hp-gold); }
.hp-accordion-header .hp-acc-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--hp-gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.hp-accordion-item.open .hp-acc-icon { transform: rotate(45deg); }
.hp-accordion-body {
  display: none;
  padding: 0 25px 20px;
  border-top: 1px solid var(--hp-border);
  font-size: 15px;
  color: var(--hp-text);
  line-height: 1.8;
}
.hp-accordion-item.open .hp-accordion-body { display: block; }
.hp-accordion-body p { margin-bottom: 12px; }
.hp-accordion-body p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════
   RESPONSIVE: TABLET (640px+)
   ═══════════════════════════════════════════════ */
@media (min-width: 640px) {
  .hp-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .hp-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .hp-guides-grid { grid-template-columns: repeat(3, 1fr); }
  .hp-amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-footer-grid { grid-template-columns: 1fr 1fr; }
  .hp-gallery-item { aspect-ratio: 3/4; }
  /* Inner page responsive */
  .hp-two-cols { grid-template-columns: 1fr 1fr; }
  .hp-image-grid { grid-template-columns: 1fr 1fr; }
  .hp-full-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .hp-key-stats-grid { grid-template-columns: repeat(4, 1fr); }
  .hp-key-stat + .hp-key-stat { border-left: 1px solid var(--hp-border); }
  .hp-key-stat-value { font-size: 42px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE: DESKTOP (900px+)
   ═══════════════════════════════════════════════ */
@media (min-width: 900px) {

  .hp-hero h1 { font-size: 60px; }

  .hp-split { grid-template-columns: 1fr 1fr; }
  .hp-split-content { padding: 80px 60px 80px 10%; }
  .hp-split--reverse .hp-split-content { order: 1; padding: 80px 10% 80px 60px; }
  .hp-split--reverse .hp-split-image { order: 2; }
  .hp-section-number { font-size: 140px; }

  .hp-stats-grid { grid-template-columns: repeat(5, 1fr); }
  .hp-stat-item + .hp-stat-item { border-left: 1px solid var(--hp-border); }
  .hp-stat-value { font-size: 60px; }

  .hp-details-split { grid-template-columns: 1fr 1fr; gap: 80px; }

  .hp-amenities-grid { grid-template-columns: repeat(3, 1fr); }

  .hp-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }

  /* Inner page responsive */
  .hp-contact-grid { grid-template-columns: 1.2fr 0.8fr; }
  .hp-room-section-inner { grid-template-columns: 1fr 1fr; }
  .hp-room-section:nth-child(even) .hp-room-section-inner > :first-child { order: 2; }
  .hp-room-section:nth-child(even) .hp-room-section-inner > :last-child { order: 1; }
  .hp-full-gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .hp-page-header { height: 500px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE: LARGE DESKTOP (1100px+)
   ═══════════════════════════════════════════════ */
@media (min-width: 1100px) {
  .hp-hero h1 { font-size: 72px; }
  .hp-section-header h2 { font-size: 48px; }
  .hp-split-content h2 { font-size: 42px; }
  .hp-stats .hp-stat-value { font-size: 72px; }
  .hp-cta-banner h2 { font-size: 48px; }
  .hp-specs h2 { font-size: 42px; }
  .hp-inner-cta h2 { font-size: 48px; }
  .hp-article h2 { font-size: 38px; }
  .hp-key-stat-value { font-size: 52px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE: NAV DESKTOP (1200px+)
   ═══════════════════════════════════════════════ */
@media (min-width: 1200px) {
  .hp-nav-links { display: flex; gap: 16px; margin-left: 20px; padding-left: 20px; }
  .hp-nav-links a { font-size: 11px; letter-spacing: 1px; }
  .hp-nav-cta { display: inline-flex; padding: 0 18px; font-size: 11px; letter-spacing: 1.5px; }
  .hp-nav-toggle { display: none; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE: WIDE DESKTOP (1400px+)
   ═══════════════════════════════════════════════ */
@media (min-width: 1400px) {
  .hp-nav-links { gap: 32px; margin-left: 36px; padding-left: 36px; }
  .hp-nav-links a { font-size: 12px; letter-spacing: 1.5px; }
  .hp-nav-cta { padding: 0 28px; font-size: 12px; letter-spacing: 2px; }
}

/* ═══════════════════════════════════════════════
   MOBILE SECTION PADDING OVERRIDE
   ═══════════════════════════════════════════════ */
@media (max-width: 899px) {
  :root { --section-pad: 80px; }
  .hp-hero h1 { font-size: 36px; }
  .hp-section-number { font-size: 80px; margin-bottom: -16px; }
  .hp-page-header { height: 400px; }
  .hp-inner-cta { padding: 80px 0; }
  .hp-inner-cta h2 { font-size: 32px; }
  .hp-related { padding: 80px 0; }
  .hp-highlight-box { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════
   SKIP LINK (Accessibility)
   ═══════════════════════════════════════════════ */
.hp-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--hp-charcoal);
  color: var(--hp-gold-light);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0 0 6px 6px;
  transition: top 0.2s;
}
.hp-skip-link:focus {
  top: 0;
  outline: 2px solid var(--hp-gold);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════
   FORM CONFIRMATION
   ═══════════════════════════════════════════════ */
.hp-form-success {
  text-align: center;
  padding: 60px 24px;
  animation: fadeInUp 0.5s ease;
}
.hp-form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--hp-gold-bg);
  margin-bottom: 24px;
}
.hp-form-success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--hp-gold);
}
.hp-form-success h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--hp-text-dark);
  margin-bottom: 12px;
}
.hp-form-success p {
  color: var(--hp-text);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ═══════════════════════════════════════════════
   LANDING PAGE — Paid Traffic
   ═══════════════════════════════════════════════ */

/* ─── Hero ─── */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
}
.lp-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

/* ─── Hero Text ─── */
.lp-hero-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--hp-gold-light);
  margin-bottom: 20px;
}
.lp-hero h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 14px;
}
.lp-hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.lp-hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.lp-hero-bullets svg {
  flex-shrink: 0;
  color: var(--hp-gold-light);
}

/* ─── Form Card ─── */
.lp-form-card {
  background: var(--hp-white);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.lp-form-card h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--hp-text-dark);
  margin-bottom: 8px;
}
.lp-form-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--hp-gold-bg);
  border-radius: 6px;
  font-size: 12px;
  color: var(--hp-gold);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.lp-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hp-gold);
  animation: pulse 2s infinite;
}
.lp-form-proof {
  font-size: 12px;
  color: #888;
  margin-bottom: 20px;
  line-height: 1.5;
}
.lp-form-group {
  margin-bottom: 16px;
}
.lp-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--hp-text-dark);
  margin-bottom: 6px;
}
.lp-req {
  color: var(--hp-gold);
}
.lp-form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--hp-border-alt);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--hp-text-dark);
  background: var(--hp-white);
  transition: border-color 0.25s;
}
.lp-form-group input::placeholder {
  color: #bbb;
}
.lp-form-group input:focus {
  outline: none;
  border-color: var(--hp-gold);
  box-shadow: 0 0 0 3px var(--hp-gold-bg);
}
.lp-form-submit {
  width: 100%;
  height: 56px;
  margin-top: 8px;
  border: none;
  border-radius: 6px;
  background: var(--hp-gold);
  color: var(--hp-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.25s;
}
.lp-form-submit:hover {
  background: var(--hp-gold-hover);
}
.lp-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ─── Below-Fold Gallery ─── */
.lp-gallery {
  background: var(--hp-light-bg);
  padding: 80px 0;
}
.lp-gallery-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.lp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.lp-gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.lp-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.lp-gallery-item:hover img {
  transform: scale(1.03);
}
.lp-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-align: left;
}
.lp-full-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--hp-gold);
  text-decoration: none;
  transition: color 0.25s;
}
.lp-full-details:hover {
  color: var(--hp-gold-hover);
}
.lp-full-details svg {
  transition: transform 0.25s;
}
.lp-full-details:hover svg {
  transform: translateX(4px);
}

/* ─── Landing Footer ─── */
.lp-footer {
  padding: 30px 24px;
  text-align: center;
  font-size: 12px;
  color: #999;
  border-top: 1px solid var(--hp-border);
}

/* ─── Responsive: Tablet ─── */
@media (max-width: 1024px) {
  .lp-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 24px 50px;
  }
  .lp-hero h1 {
    font-size: 32px;
  }
  .lp-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* ─── Responsive: Mobile ─── */
@media (max-width: 640px) {
  .lp-hero {
    min-height: auto;
  }
  .lp-hero-content {
    padding: 60px 20px 40px;
    gap: 32px;
  }
  .lp-hero h1 {
    font-size: 24px;
  }
  .lp-hero-sub {
    font-size: 13px;
  }
  .lp-hero-label {
    font-size: 11px;
    letter-spacing: 2px;
  }
  .lp-hero-bullets li {
    font-size: 14px;
  }
  .lp-form-card {
    padding: 28px 24px;
    border-radius: 10px;
  }
  .lp-form-card h2 {
    font-size: 22px;
  }
  .lp-gallery {
    padding: 50px 0;
  }
  .lp-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lp-gallery-item img {
    aspect-ratio: 16 / 10;
  }
}
