/* ============================================================
   HILLTOP LEGACY VACATION RENTAL — Style System
   Color Palette: Forest Green + Copper
   Typography: DM Serif Display + DM Sans
   ============================================================ */

/* ── Google Fonts are loaded via <link> in each HTML file ── */

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Colors */
  --color-primary:      #1B3A2B;   /* Deep forest green */
  --color-primary-lt:   #2A5A42;   /* Lighter forest green */
  --color-accent:       #C8632A;   /* Copper-terracotta */
  --color-accent-lt:    #F5E6D8;   /* Light copper tint */
  --color-accent-dk:    #9E4D20;   /* Dark copper */
  --color-bg-warm:      #F7F4F0;   /* Warm cream page bg */
  --color-bg-section:   #EEE9E2;   /* Slightly deeper warm */
  --color-bg-light:     #FFFFFF;
  --color-text:         #1C1C1C;
  --color-text-muted:   #5A5A5A;
  --color-text-light:   #8A8A8A;
  --color-white:        #FFFFFF;
  --color-border:       #DDD8D0;
  --color-border-lt:    #EDEAE4;
  --overlay:            rgba(27, 58, 43, 0.72);
  --overlay-dk:         rgba(27, 58, 43, 0.88);

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Font sizes */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  1.875rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-5xl:  3.75rem;
  --text-6xl:  4.5rem;

  /* Spacing */
  --s-xs:  0.5rem;
  --s-sm:  1rem;
  --s-md:  1.5rem;
  --s-lg:  2.5rem;
  --s-xl:  4rem;
  --s-2xl: 6rem;
  --s-3xl: 8rem;

  /* Shadows */
  --sh-xs: 0 1px 3px rgba(0,0,0,0.08);
  --sh-sm: 0 2px 8px rgba(0,0,0,0.10);
  --sh-md: 0 4px 20px rgba(0,0,0,0.10);
  --sh-lg: 0 8px 40px rgba(0,0,0,0.12);
  --sh-xl: 0 16px 60px rgba(0,0,0,0.16);

  /* Border radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill: 999px;

  /* Nav */
  --nav-height: 72px;

  /* Transitions */
  --transition: all 0.25s ease;
  --transition-slow: all 0.4s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 400;
  color: var(--color-primary);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

.container-sm {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

.section {
  padding: var(--s-2xl) 0;
}

.section-sm {
  padding: var(--s-xl) 0;
}

.text-center { text-align: center; }
.text-white   { color: var(--color-white); }
.text-muted   { color: var(--color-text-muted); }
.text-accent  { color: var(--color-accent); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-sm);
}

.eyebrow-lt {
  color: rgba(245, 196, 160, 0.9);
}

.section-heading {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  color: var(--color-primary);
  margin-bottom: var(--s-sm);
}

.section-heading-white {
  color: var(--color-white);
}

.section-sub {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  max-width: 580px;
  line-height: 1.8;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: var(--radius-pill);
  margin: var(--s-sm) 0 var(--s-lg);
}

.divider-center { margin: var(--s-sm) auto var(--s-lg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-dk);
  border-color: var(--color-accent-dk);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  border: none;
  padding-left: 0;
  padding-right: 0;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
}

.btn-ghost:hover {
  color: var(--color-accent-dk);
  gap: 0.75rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav-placeholder { position: relative; z-index: 1000; }

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-lt);
  z-index: 1000;
  transition: var(--transition);
}

.site-nav.scrolled {
  box-shadow: var(--sh-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  list-style: none;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
}

.nav-phone {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

.nav-phone:hover { color: var(--color-accent); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  padding: var(--s-xl) var(--s-lg);
  flex-direction: column;
  gap: var(--s-md);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer a {
  font-size: var(--text-xl);
  font-family: var(--font-heading);
  color: var(--color-primary);
  padding: var(--s-xs) 0;
  border-bottom: 1px solid var(--color-border-lt);
  display: block;
}

.nav-drawer .drawer-cta {
  margin-top: var(--s-md);
}

.nav-spacer {
  height: var(--nav-height);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,25,17,0.88) 0%,
    rgba(10,25,17,0.65) 55%,
    rgba(10,25,17,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-lg);
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 99, 42, 0.25);
  border: 1px solid rgba(200, 99, 42, 0.5);
  color: #F5C4A0;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--s-md);
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, var(--text-6xl));
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--s-md);
  max-width: 700px;
  font-style: italic;
}

.hero h1 em {
  color: #F5C4A0;
  font-style: italic;
}

.hero-sub {
  font-size: clamp(var(--text-base), 1.5vw, var(--text-lg));
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: var(--s-xl);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-sm);
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: var(--s-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
}

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

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-primary);
  background-size: cover;
  background-position: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dk);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-lg);
  padding-bottom: var(--s-xl);
  width: 100%;
}

.page-hero h1 {
  color: var(--color-white);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  margin-bottom: var(--s-xs);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  margin-bottom: var(--s-sm);
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb span { color: rgba(255,255,255,0.45); }

/* ============================================================
   INTRO / ABOUT STRIP
   ============================================================ */
.intro-section {
  background: var(--color-white);
  padding: var(--s-2xl) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2xl);
  align-items: center;
}

.intro-text .section-heading {
  margin-bottom: var(--s-sm);
}

.intro-text p {
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: var(--s-md);
}

.intro-stats {
  display: flex;
  gap: var(--s-xl);
  margin-top: var(--s-xl);
  padding-top: var(--s-lg);
  border-top: 1px solid var(--color-border-lt);
}

.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--color-primary);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-xl);
}

.intro-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: var(--s-md) var(--s-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--sh-lg);
  text-align: center;
}

.intro-badge .badge-num {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  line-height: 1;
}

.intro-badge .badge-label {
  font-size: var(--text-xs);
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* ============================================================
   AMENITY ICONS STRIP
   ============================================================ */
.amenity-strip {
  background: var(--color-primary);
  padding: var(--s-xl) 0;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-md);
  align-items: start;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-sm);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5C4A0;
  font-size: 1.75rem;
}

.amenity-item span {
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ============================================================
   ROOMS SECTION & CARDS
   ============================================================ */
.rooms-section {
  background: var(--color-bg-warm);
  padding: var(--s-2xl) 0;
}

.rooms-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--s-2xl);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-lg);
}

.room-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  box-shadow: var(--sh-xl);
  transform: translateY(-4px);
}

.room-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

.room-card:hover .room-card-img img {
  transform: scale(1.05);
}

.room-tag {
  position: absolute;
  top: var(--s-sm);
  left: var(--s-sm);
  background: rgba(27,58,43,0.9);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.room-tag.accent {
  background: rgba(200,99,42,0.9);
}

.room-card-body {
  padding: var(--s-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card-body h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--s-xs);
}

.room-card-body p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--s-md);
  flex: 1;
}

.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--s-md);
}

.spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--color-accent-lt);
  color: var(--color-accent-dk);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-md) var(--s-lg);
  border-top: 1px solid var(--color-border-lt);
  background: var(--color-bg-warm);
}

.room-card-footer .room-rate {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Room detail page */
.room-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--s-2xl);
  align-items: start;
  margin-top: var(--s-2xl);
}

.room-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  position: relative;
}

.room-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.room-gallery-thumbs img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.75;
  transition: var(--transition);
  border: 2px solid transparent;
}

.room-gallery-thumbs img:hover,
.room-gallery-thumbs img.active {
  opacity: 1;
  border-color: var(--color-accent);
}

.room-info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--s-xl);
  box-shadow: var(--sh-lg);
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.room-info-card h1 {
  font-size: var(--text-2xl);
  margin-bottom: var(--s-xs);
}

.room-info-card .room-tag-detail {
  font-size: var(--text-xs);
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s-md);
}

.room-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: var(--s-lg) 0;
  padding: var(--s-lg) 0;
  border-top: 1px solid var(--color-border-lt);
  border-bottom: 1px solid var(--color-border-lt);
}

.room-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.room-feature-item .feat-icon {
  width: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  font-size: 1rem;
}

.room-book-cta {
  margin-top: var(--s-lg);
}

.room-book-cta .btn {
  width: 100%;
}

/* ============================================================
   ROOMS PAGE — JUMP NAV
   ============================================================ */
.rooms-jump-nav {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-lt);
  position: sticky;
  top: var(--nav-height);
  z-index: 500;
  padding: 0 var(--s-lg);
}

.rooms-jump-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: var(--s-lg);
  overflow-x: auto;
  scrollbar-width: none;
}

.rooms-jump-nav-inner::-webkit-scrollbar { display: none; }

.jump-link {
  display: block;
  padding: var(--s-md) 0;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: var(--transition);
}

.jump-link:hover,
.jump-link.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-accent);
}

/* ============================================================
   ROOMS.HTML — INDIVIDUAL ROOM LISTING
   ============================================================ */
.room-listing {
  padding: var(--s-2xl) 0;
  border-bottom: 1px solid var(--color-border-lt);
}

.room-listing:last-child { border-bottom: none; }

.room-listing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2xl);
  align-items: center;
}

.room-listing-inner.reverse {
  direction: rtl;
}

.room-listing-inner.reverse > * {
  direction: ltr;
}

.room-listing-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.room-listing-gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.room-listing-content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--s-xs);
}

.room-listing-content p {
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: var(--s-md);
}

.room-listing-specs {
  display: flex;
  gap: var(--s-lg);
  margin-bottom: var(--s-lg);
  padding: var(--s-md) 0;
  border-top: 1px solid var(--color-border-lt);
  border-bottom: 1px solid var(--color-border-lt);
}

.room-spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.room-spec-item .spec-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  font-weight: 600;
}

.room-spec-item .spec-value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
}

.room-listing-actions {
  display: flex;
  gap: var(--s-sm);
  flex-wrap: wrap;
}

/* ============================================================
   CTA BANNER SECTION
   ============================================================ */
.cta-section {
  background: var(--color-primary);
  padding: var(--s-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .eyebrow { color: #F5C4A0; }
.cta-section .section-heading { color: var(--color-white); }
.cta-section .section-sub {
  color: rgba(255,255,255,0.75);
  margin: 0 auto var(--s-xl);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--s-sm);
  flex-wrap: wrap;
}

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.features-section {
  background: var(--color-bg-section);
  padding: var(--s-2xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
  margin-top: var(--s-xl);
}

.feature-card {
  background: var(--color-white);
  padding: var(--s-xl) var(--s-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-xs);
  transition: var(--transition-slow);
}

.feature-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-lt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--s-md);
  color: var(--color-accent);
}

.feature-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--s-xs);
  color: var(--color-primary);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  height: 320px;
  overflow: hidden;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-strip img:hover {
  transform: scale(1.04);
}

.gallery-strip .gallery-item:first-child {
  grid-column: span 2;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--color-bg-warm);
  padding: var(--s-2xl) 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--s-2xl);
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.faq-sidebar h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--s-sm);
}

.faq-sidebar p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--s-lg);
  line-height: 1.8;
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-cat-btn {
  text-align: left;
  padding: 0.6rem var(--s-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--color-accent-lt);
  color: var(--color-accent-dk);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  box-shadow: var(--sh-xs);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-md) var(--s-lg);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  gap: var(--s-sm);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  color: white;
}

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

.faq-answer-inner {
  padding: var(--s-sm) var(--s-md) var(--s-lg);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.9;
}

.faq-answer-inner p {
  margin-bottom: var(--s-sm);
}
.faq-answer-inner p:last-child { margin-bottom: 0; }

.faq-answer-inner ul,
.faq-answer-inner ol {
  margin: var(--s-sm) 0 var(--s-sm) var(--s-lg);
}
.faq-answer-inner li {
  margin-bottom: 0.4rem;
}

.faq-answer-inner a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

/* ============================================================
   EXPLORE PAGE
   ============================================================ */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
  margin-top: var(--s-xl);
}

.explore-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: var(--transition-slow);
}

.explore-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}

.explore-card-img {
  height: 200px;
  overflow: hidden;
}

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

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

.explore-card-body {
  padding: var(--s-lg);
}

.explore-distance {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.explore-card-body h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.5rem;
}

.explore-card-body p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   EXTENDED STAY / CONTACT FORMS
   ============================================================ */
.form-section {
  background: var(--color-bg-warm);
  padding: var(--s-2xl) 0;
}

.form-page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--s-2xl);
  align-items: start;
}

.form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--s-2xl);
  box-shadow: var(--sh-md);
}

.form-card h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--s-sm);
}

.form-card .form-intro {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-bottom: var(--s-xl);
}

.form-group {
  margin-bottom: var(--s-lg);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem var(--s-md);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition);
  min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200,99,42,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-md);
}

.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  min-height: 44px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: unset;
  flex-shrink: 0;
  accent-color: var(--color-accent);
  margin-top: 2px;
  cursor: pointer;
}

.form-checkbox span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-top: 0.5rem;
}

.field-error {
  display: block;
  font-size: var(--text-xs);
  color: #c0392b;
  margin-top: 0.4rem;
  font-weight: 500;
}

.input-error {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12) !important;
}

.form-submit-error {
  color: #c0392b;
  font-size: var(--text-sm);
  margin-top: var(--s-sm);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--s-2xl) var(--s-lg);
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: var(--s-md);
}

.form-success h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--s-sm);
}

.form-success p {
  color: var(--color-text-muted);
}

/* Form sidebar info */
.form-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

.sidebar-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--s-lg);
  box-shadow: var(--sh-sm);
}

.sidebar-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--s-sm);
}

.sidebar-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-sm);
  margin-bottom: var(--s-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.sidebar-contact-item .contact-icon {
  color: var(--color-accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-contact-item a {
  color: var(--color-accent);
  font-weight: 600;
}

.sidebar-card.accent-card {
  background: var(--color-primary);
  color: var(--color-white);
}

.sidebar-card.accent-card h3 {
  color: var(--color-white);
}

.sidebar-card.accent-card p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--s-md);
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-page {
  padding: var(--s-2xl) 0;
}

.guesty-widget-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
  min-height: 600px;
}

.guesty-widget-wrap iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer-placeholder { }

.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.8);
  padding: var(--s-xl) 0 var(--s-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--s-xl);
  margin-bottom: var(--s-lg);
  padding-bottom: var(--s-lg);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand img {
  height: 32px;
  margin-bottom: var(--s-sm);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 300px;
  margin-bottom: var(--s-md);
}

.footer-social {
  display: flex;
  gap: var(--s-sm);
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s-sm);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
}

.footer-contact-item .fc-icon {
  color: #F5C4A0;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-contact-item a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-sm);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: var(--s-md);
}

.footer-bottom-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   STICKY CTA BAR
   ============================================================ */
#sticky-cta-placeholder { }

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--color-primary);
  border-top: 2px solid var(--color-accent);
  padding: 0.875rem var(--s-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-md);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.sticky-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.sticky-cta-text .sticky-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sticky-cta-text .sticky-tagline {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
}

.sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  flex-shrink: 0;
}

.sticky-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  padding: 0.6rem var(--s-sm);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.sticky-cta-phone:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-2xl) var(--s-lg);
  background: var(--color-bg-warm);
}

.error-page-content .error-num {
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: var(--s-sm);
}

.error-page-content h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--s-sm);
}

.error-page-content p {
  color: var(--color-text-muted);
  max-width: 400px;
  margin: 0 auto var(--s-xl);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .intro-grid,
  .room-listing-inner {
    grid-template-columns: 1fr;
  }

  .room-listing-inner.reverse { direction: ltr; }

  .room-listing-gallery img { height: 300px; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-detail-layout {
    grid-template-columns: 1fr;
  }

  .room-info-card {
    position: static;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

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

  .footer-brand { grid-column: span 2; }

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

  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --s-2xl: 4rem;
    --s-3xl: 5rem;
  }

  .container,
  .container-sm {
    padding: 0 var(--s-md);
  }

  /* Nav */
  .nav-links,
  .nav-cta .nav-phone,
  .nav-cta .btn {
    display: none;
  }

  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }

  /* Hero */
  .hero { min-height: 85vh; }
  .hero h1 { font-size: 2.25rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  /* Page hero */
  .page-hero { height: 240px; }

  /* Grid layouts */
  .intro-grid,
  .room-listing-inner,
  .features-grid,
  .explore-grid,
  .form-page-layout,
  .room-detail-layout {
    grid-template-columns: 1fr;
  }

  .intro-badge {
    position: static;
    margin-top: var(--s-lg);
    display: inline-block;
  }

  .intro-stats { gap: var(--s-lg); }

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

  .rooms-grid { grid-template-columns: 1fr; }

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
    height: 200px;
  }

  .gallery-strip .gallery-item:first-child { grid-column: span 1; }

  .room-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: unset; }

  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Sticky CTA — compact single row */
  .sticky-cta { padding: 0.75rem var(--s-md); gap: 0.75rem; }
  .sticky-cta-text { display: none; }
  .sticky-cta-actions { flex: 1; flex-direction: row; gap: 0.5rem; }
  .sticky-cta-actions .btn,
  .sticky-cta-phone { flex: 1; justify-content: center; white-space: nowrap; }

  /* Form inputs — touch targets */
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 48px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .form-checkbox { min-height: 44px; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }

  .room-listing-specs { flex-wrap: wrap; gap: var(--s-md); }
  .room-listing-actions { flex-direction: column; }
  .room-listing-actions .btn { width: 100%; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-nav, .sticky-cta, #sticky-cta-placeholder { display: none; }
  .nav-spacer { display: none; }
  body { background: white; }
}

/* ============================================================
   ROOMS PAGE — INTRO TEXT
   ============================================================ */
.rooms-page-intro {
  max-width: 660px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: var(--text-md);
  line-height: 1.75;
  margin-top: var(--s-md);
}

/* ============================================================
   AMENITY ICONS — DARK VERSION (rooms page, light backgrounds)
   ============================================================ */
.amenity-icon-dark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-bg-warm);
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin: 0 auto var(--s-sm);
}

.amenity-label-dark {
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
}

/* ============================================================
   EXPLORE PAGE — REDESIGNED
   ============================================================ */

/* Intro grid */
.explore-intro-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-2xl);
  align-items: start;
}

.explore-intro-text .section-heading {
  margin-top: var(--s-sm);
}

.explore-intro-text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 560px;
  margin-top: var(--s-md);
}

.explore-intro-stats {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  min-width: 180px;
}

.explore-stat-card {
  background: var(--color-bg-section);
  border: 1px solid var(--color-border-lt);
  border-radius: var(--radius-lg);
  padding: var(--s-md) var(--s-lg);
  text-align: center;
}

.explore-stat-icon {
  color: var(--color-accent);
  margin-bottom: var(--s-xs);
}

.explore-stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-primary);
  line-height: 1;
}

.explore-stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* Filter bar */
.explore-filters {
  display: flex;
  gap: var(--s-sm);
  flex-wrap: wrap;
}

.explore-filter-btn {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
}

.explore-filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.explore-filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

/* Cards grid */
.explore-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}

.explore-card-new {
  background: var(--color-bg-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-lt);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
}

.explore-card-new:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.explore-card-visual {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-card-visual-icon {
  opacity: 0.85;
}

.explore-card-distance-badge {
  position: absolute;
  top: var(--s-sm);
  right: var(--s-sm);
  background: rgba(0,0,0,0.35);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.explore-card-body-new {
  padding: var(--s-lg);
}

.explore-card-category {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--s-xs);
}

.explore-card-body-new h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--s-sm);
  line-height: 1.2;
}

.explore-card-body-new p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--s-md);
}

.explore-card-tip {
  background: var(--color-bg-warm);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.6rem 0.875rem;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.tip-label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  font-size: 0.7rem;
  margin-bottom: 0.2rem;
}

/* ============================================================
   EXTENDED STAY FORM — SECTION LABELS & NEW STYLES
   ============================================================ */
.form-section-label {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-border);
  padding-bottom: var(--s-xs);
  margin: var(--s-xl) 0 var(--s-md);
}

.form-section-label:first-of-type {
  margin-top: var(--s-md);
}

.form-section-note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--s-md);
  margin-top: -0.5rem;
}

.file-upload-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--s-xs);
}

.file-upload-hint {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

input[type="file"] {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text);
  padding: 0.6rem 0;
  cursor: pointer;
}

.btn-lg {
  padding: 0.9rem 2.5rem;
  font-size: var(--text-md);
}

/* ============================================================
   RESPONSIVE — EXPLORE & ROOMS PAGE
   ============================================================ */
@media (max-width: 1024px) {
  .explore-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .explore-intro-grid {
    grid-template-columns: 1fr;
  }

  .explore-intro-stats {
    flex-direction: row;
    min-width: unset;
  }

  .explore-stat-card {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .explore-cards-grid {
    grid-template-columns: 1fr;
  }

  .explore-intro-stats {
    flex-direction: column;
  }

  .explore-filter-btn {
    padding: 0.4rem 0.875rem;
  }
}

/* ============================================================
   FORM UTILITIES (used on contact + extended-stay pages)
   ============================================================ */
.required { color: var(--color-accent); }

.form-group.full-width { grid-column: 1 / -1; }

.form-actions {
  margin-top: var(--s-xl);
  padding-top: var(--s-lg);
  border-top: 1px solid var(--color-border-lt);
}

.success-message {
  background: #f0faf4;
  border: 2px solid #27ae60;
  border-radius: var(--radius-lg);
  padding: var(--s-xl);
  text-align: center;
  margin-top: var(--s-xl);
}
.success-message h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: #1a5c36;
  margin-bottom: var(--s-sm);
}
.success-message p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-accent);
  margin-top: 3px;
  cursor: pointer;
  min-height: unset;
}
.checkbox-item label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  font-weight: 400;
  cursor: pointer;
}

input[type="file"] {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text);
  padding: 0.6rem 0;
  cursor: pointer;
  width: 100%;
  min-height: unset;
  border: none;
  background: none;
}

.file-upload-hint {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.btn-lg {
  padding: 0.9rem 2.5rem;
  font-size: var(--text-md);
}

/* ============================================================
   CONTACT PAGE — METHODS STRIP
   ============================================================ */
.contact-methods-strip {
  background: var(--color-primary);
  padding: var(--s-xl) 0;
}
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}
.contact-method {
  text-align: center;
  padding: var(--s-md);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.contact-method:last-child { border-right: none; }
.contact-method-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-sm);
  color: #F5C4A0;
}
.contact-method-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.contact-method-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: white;
  line-height: 1.4;
}
.contact-method-value a {
  color: white;
  text-decoration: none;
}
.contact-method-value a:hover { color: #F5C4A0; }

/* ============================================================
   EXTENDED STAY — SIDEBAR LIST STYLES
   ============================================================ */
.included-list {
  list-style: none;
  padding: 0;
  margin: var(--s-sm) 0 0;
}
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--color-border-lt);
  line-height: 1.4;
}
.included-list li:last-child { border-bottom: none; }
.included-list li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: var(--s-sm) 0 0;
  counter-reset: steps;
}
.process-steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: var(--s-sm);
  padding: var(--s-sm) 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.process-steps li:last-child { border-bottom: none; }
.process-steps li::before {
  content: counter(steps);
  background: var(--color-accent);
  color: white;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.process-steps li strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: white;
}
.process-steps li span {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.65);
  margin-top: 0.15rem;
  line-height: 1.4;
}
.sidebar-card.accent-green {
  background: var(--color-primary);
}
.sidebar-card.accent-green h3 { color: white; }

/* Contact sidebar info items */
.info-item {
  padding: var(--s-sm) 0;
  border-bottom: 1px solid var(--color-border-lt);
}
.info-item:last-child { border-bottom: none; }
.info-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.info-value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
}
.info-value a { color: var(--color-accent); }

/* Extended-stay intro stats reuse */
.es-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2xl);
  align-items: center;
}
.es-stat-row {
  display: flex;
  gap: var(--s-xl);
  margin-top: var(--s-xl);
  padding-top: var(--s-lg);
  border-top: 1px solid var(--color-border-lt);
}
.es-stat { text-align: center; }
.es-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-primary);
  line-height: 1;
}
.es-stat span {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* Contact page response card */
.response-promise {
  display: flex;
  align-items: flex-start;
  gap: var(--s-sm);
  background: var(--color-accent-lt);
  border-radius: var(--radius-md);
  padding: var(--s-md);
  margin-bottom: var(--s-md);
}
.response-promise-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.response-promise p {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}
.response-promise strong { color: var(--color-primary); }

@media (max-width: 768px) {
  .contact-methods-grid { grid-template-columns: 1fr; }
  .contact-method { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .contact-method:last-child { border-bottom: none; }
  .es-intro-grid { grid-template-columns: 1fr; }
  .es-stat-row { gap: var(--s-md); }
}

/* ============================================================
   ROOM DETAIL PAGE — REDESIGNED (contact-page style)
   ============================================================ */

/* Specs strip — green bar with 4 key room stats */
.room-specs-strip {
  background: var(--color-primary);
  padding: var(--s-xl) 0;
}
.room-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-lg);
}
.room-spec-tile {
  text-align: center;
  padding: var(--s-md);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.room-spec-tile:last-child { border-right: none; }
.room-spec-tile-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-sm);
  color: #F5C4A0;
}
.room-spec-tile-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.room-spec-tile-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: white;
  line-height: 1.4;
}

/* Room page two-column layout (like form-page-layout) */
.room-page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--s-2xl);
  align-items: start;
}

/* Gallery card (like form-card) */
.room-gallery-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--s-xl);
  box-shadow: var(--sh-md);
}

/* Main image */
.room-main-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 420px;
  margin-bottom: 0.75rem;
}
.room-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}

/* Thumbnail strip */
.room-thumbnail-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.room-thumbnail-strip .thumbnail {
  width: 100%;
  height: 76px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.7;
  border: 2px solid transparent;
  transition: var(--transition);
  display: block;
}
.room-thumbnail-strip .thumbnail:hover,
.room-thumbnail-strip .thumbnail.active {
  opacity: 1;
  border-color: var(--color-accent);
}

/* Room description inside gallery card */
.room-description {
  padding-top: var(--s-lg);
  margin-top: var(--s-lg);
  border-top: 1px solid var(--color-border-lt);
}
.room-description h2 {
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--s-sm);
}
.room-description p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: var(--s-md);
}
.room-description p:last-child { margin-bottom: 0; }

/* Room sidebar (like form-sidebar) */
.room-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

/* Feature list in sidebar */
.room-feature-clean {
  list-style: none;
  padding: 0;
  margin: var(--s-sm) 0 0;
}
.room-feature-clean li {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border-lt);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.room-feature-clean li:last-child { border-bottom: none; }
.room-feature-clean li svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
  overflow: visible;
}

/* Phone link inside accent sidebar card */
.sidebar-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
  margin-top: var(--s-md);
  padding-top: 3px;
  overflow: visible;
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.sidebar-phone-link:hover { color: white; }
.sidebar-phone-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  overflow: visible;
}

/* Room story section */
.room-story {
  background: var(--color-white);
  padding: var(--s-2xl) 0;
}
.room-story-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--s-lg);
}
.room-story-inner h2 {
  font-size: var(--text-2xl);
  color: var(--color-primary);
  margin-bottom: var(--s-lg);
}
.room-story-inner p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.95;
  margin-bottom: var(--s-md);
}
.room-story-inner p:last-child { margin-bottom: 0; }

/* Related rooms section */
.related-rooms {
  background: var(--color-bg-section);
  padding: var(--s-2xl) 0;
}
.related-rooms-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-lg);
}
.related-rooms-inner h2 {
  font-size: var(--text-2xl);
  color: var(--color-primary);
  margin-bottom: var(--s-xl);
  text-align: center;
}
.related-rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-xl);
}
.room-card-image {
  height: 220px;
  overflow: hidden;
}
.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.room-card:hover .room-card-image img {
  transform: scale(1.04);
}
.room-card h3 {
  padding: var(--s-md) var(--s-md) var(--s-xs);
  font-size: var(--text-lg);
  color: var(--color-primary);
}
.room-card-bed {
  padding: 0 var(--s-md) var(--s-xs);
  font-size: var(--text-xs);
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.room-card-text {
  padding: 0 var(--s-md) var(--s-md);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}
.room-card .btn {
  margin: 0 var(--s-md) var(--s-md);
}

/* Footer phone icon — prevent stroke clipping */
.footer-contact-item .fc-icon svg {
  overflow: visible;
}

/* Who it's for grid inside extended stay content card */
.es-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
  margin-top: var(--s-lg);
}
.es-who-card {
  background: var(--color-bg-warm);
  border-radius: var(--radius-md);
  padding: var(--s-lg) var(--s-md);
  border: 1px solid var(--color-border-lt);
}
.es-who-card .es-who-icon {
  width: 40px;
  height: 40px;
  background: var(--color-accent-lt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: var(--s-sm);
}
.es-who-card h4 {
  font-size: var(--text-base);
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}
.es-who-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Responsive — room page layout */
@media (max-width: 992px) {
  .room-page-layout {
    grid-template-columns: 1fr;
  }
  .room-sidebar {
    position: static;
  }
  .room-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .room-spec-tile:nth-child(2) { border-right: none; }
  .room-spec-tile:nth-child(1),
  .room-spec-tile:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
}
@media (max-width: 768px) {
  .room-specs-grid { grid-template-columns: repeat(2, 1fr); }
  .room-spec-tile { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .room-spec-tile:nth-child(2n) { border-right: none; }
  .room-spec-tile:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .room-spec-tile:nth-child(3),
  .room-spec-tile:nth-child(4) { border-bottom: none; }
  .room-main-image { height: 280px; }
  .room-thumbnail-strip .thumbnail { height: 60px; }
  .related-rooms-grid { grid-template-columns: 1fr; }
  .es-who-grid { grid-template-columns: 1fr; }
}
