/* ========================================
   Colorado Hospitality Services, Inc.
   Modern Hospitality Website
   ======================================== */

:root {
  --color-bg: #faf8f5;
  --color-bg-alt: #f2efe9;
  --color-dark: #0f1118;
  --color-dark-soft: #1a1d28;
  --color-text: #2c2c2c;
  --color-text-light: #6b6b6b;
  --color-text-lighter: #999;
  --color-gold: #c8a97e;
  --color-gold-light: #dcc8a4;
  --color-gold-dark: #a8894e;
  --color-green: #2d5a3d;
  --color-green-light: #3a7550;
  --color-white: #ffffff;
  --color-border: #e5e0d8;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1280px;
  --container-narrow: 960px;
  --section-pad: clamp(80px, 10vw, 140px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.section {
  padding: var(--section-pad) 0;
}

/* ===== SECTION HEADERS ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--color-gold-light); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: italic;
  color: var(--color-gold-dark);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.7;
}

.section-header.center {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}
.section-header.center .section-desc {
  margin: 0 auto;
}
.section-header.light .section-title { color: var(--color-white); }
.section-header.light .section-desc { color: rgba(255,255,255,0.7); }

/* ===== ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease-smooth);
}
.navbar.scrolled {
  background: rgba(15, 17, 24, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 30px rgba(0,0,0,0.15);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.05em;
}
.logo-divider {
  width: 1px;
  height: 32px;
  background: var(--color-gold);
  opacity: 0.5;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--color-white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: transparent !important;
  border: 1px solid var(--color-gold) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 2px;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--color-gold) !important;
  color: var(--color-dark) !important;
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Fallback slider kept for non-video */
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15,17,24,0.4) 0%,
    rgba(15,17,24,0.6) 50%,
    rgba(15,17,24,0.8) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.hero-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 3rem;
}
.hero-stat { text-align: center; }
.hero-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-white);
}
.hero-stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-top: 0.25rem;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--color-gold);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
}
.hero-cta:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===== ABOUT ===== */
.about { background: var(--color-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-content .section-title { margin-bottom: 1.5rem; }
.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}
.about-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-gold-dark);
}
.signature-line {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-img-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.about-video-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-video {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border: 4px solid var(--color-bg);
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== STATS BAR ===== */
.stats-bar {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,17,24,0.85);
}
.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 1rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--color-white);
  display: inline;
}
.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--color-gold);
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-top: 0.5rem;
}

/* ===== FEATURED PROPERTIES ===== */
.featured { background: var(--color-bg-alt); }
.featured-duo {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

/* Flagship Card (Delta Northglenn) */
.featured-flagship {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.featured-flagship:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}
.featured-flagship-img {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.featured-flagship-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.featured-flagship:hover .featured-flagship-img img { transform: scale(1.04); }
.featured-flagship-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,17,24,0.3), transparent 50%);
}
.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-dark);
  color: var(--color-gold);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.featured-flagship-info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.featured-brand {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.featured-flagship-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0.35rem 0;
  color: var(--color-dark);
}
.featured-location {
  font-size: 0.9rem;
  color: var(--color-text-light);
}
.featured-details {
  font-size: 0.8rem;
  color: var(--color-text-lighter);
  margin-top: 0.25rem;
}
.featured-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-top: 1rem;
}
.featured-cta {
  display: inline-block;
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  transition: color 0.3s;
}
.featured-cta:hover { color: var(--color-dark); }

/* Coming Soon Card (Greeley) */
.featured-coming-soon {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.featured-coming-soon:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}
.featured-coming-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.featured-coming-img.has-rendering img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.featured-coming-soon:hover .featured-coming-img.has-rendering img { transform: scale(1.04); }
.coming-soon-tag {
  background: var(--color-green) !important;
  color: var(--color-white) !important;
}
.coming-soon-visual {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-soft) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
}
.coming-soon-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(200,169,126,0.03) 20px,
    rgba(200,169,126,0.03) 40px
  );
}
.coming-soon-icon {
  width: 60px;
  height: 60px;
  opacity: 0.3;
}
.coming-soon-icon svg {
  width: 100%;
  height: 100%;
  color: var(--color-gold);
}
.coming-soon-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 0.4rem 1.25rem;
  border: 1px solid rgba(200,169,126,0.3);
  border-radius: 2px;
  position: relative;
}
.featured-coming-info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.featured-coming-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0.35rem 0;
  color: var(--color-dark);
}
.featured-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green);
}
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--color-green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===== RECENT DEVELOPMENTS ===== */
.developments { background: var(--color-bg); }
.developments-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.dev-card {
  display: flex;
  gap: 2rem;
  background: var(--color-white);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s var(--ease-out);
  border-left: 3px solid var(--color-gold);
}
.dev-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.dev-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  text-align: center;
  flex-shrink: 0;
}
.dev-month {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.1;
}
.dev-year {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-lighter);
  letter-spacing: 0.05em;
}
.dev-content { flex: 1; }
.dev-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
.dev-tag.new {
  background: var(--color-green);
  color: var(--color-white);
}
.dev-tag.renovation {
  background: var(--color-gold);
  color: var(--color-dark);
}
.dev-tag.acquisition {
  background: var(--color-dark);
  color: var(--color-gold);
}
.dev-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}
.dev-location {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}
.dev-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}
.dev-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.dev-meta span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-lighter);
  background: var(--color-bg-alt);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .dev-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  .dev-date {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: flex-start;
  }
}

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--color-bg); }
.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}
.filter-select {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-light);
  background: var(--color-white);
  cursor: pointer;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.portfolio-empty {
  text-align: center;
  padding: 3rem;
  color: var(--color-text-light);
  font-size: 1rem;
}

/* Property Card */
.property-card {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  animation: cardAppear 0.5s var(--ease-out) forwards;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
@keyframes cardAppear {
  to { opacity: 1; transform: translateY(0); }
}
.property-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.property-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.property-card:hover .property-card-img img { transform: scale(1.08); }
.property-card-brand {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-white);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark);
}
.property-card-rating {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--color-dark);
  color: var(--color-gold);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 600;
}
.property-card-body { padding: 1rem 1.25rem; }
.property-card-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}
.property-card-location {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}
.property-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--color-text-lighter);
}
.property-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Property Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,17,24,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--color-white);
  border-radius: 6px;
  max-width: 640px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out);
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(15,17,24,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 1.2rem;
  transition: background 0.3s;
}
.modal-close:hover { background: var(--color-dark); }
.modal-body { padding: 2rem; }
.modal-brand {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.modal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}
.modal-location {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}
.modal-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}
.modal-detail-item label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-lighter);
  margin-bottom: 0.25rem;
}
.modal-detail-item span {
  font-size: 0.95rem;
  color: var(--color-dark);
  font-weight: 500;
}
.modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.modal-book-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.3s;
}
.modal-book-btn:hover {
  background: var(--color-gold-dark);
}
.modal-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.3s;
}
.modal-call-btn:hover {
  border-color: var(--color-dark);
  background: var(--color-dark);
  color: var(--color-white);
}

/* ===== BRANDS ===== */
.brands { background: var(--color-bg-alt); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.brand-card {
  background: var(--color-white);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease-out);
  border: 1px solid transparent;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--color-gold);
}
.brand-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-border);
}
.brand-logo-text.choice { color: #0060a9; }
.brand-logo-text.wyndham { color: #00205b; }
.brand-logo-text.hilton { color: #003b5c; }
.brand-logo-text.ihg { color: #007ec3; }
.brand-logo-text.marriott { color: #a4343a; }
.brand-logo-text.bestwestern { color: #c89b3c; }
.brand-logo-text.g6 { color: #e84e1b; }
.brand-sub {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.brand-count {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  background: var(--color-bg-alt);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

/* ===== SERVICES ===== */
.services {
  position: relative;
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,17,24,0.88);
}
.services .container { position: relative; z-index: 2; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(10px);
}
.service-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-gold);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
}
.service-icon svg {
  width: 100%;
  height: 100%;
  color: var(--color-gold);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

/* ===== BEYOND HOTELS ===== */
.beyond { background: var(--color-bg); }
.beyond-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.beyond-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.beyond-card.reverse { grid-template-columns: 1.2fr 1fr; }
.beyond-card.reverse .beyond-img { order: 2; }
.beyond-img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.beyond-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.beyond-card:hover .beyond-img img { transform: scale(1.03); }
.beyond-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}
.beyond-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}
.beyond-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.beyond-list li {
  font-size: 0.85rem;
  color: var(--color-text-light);
  padding-left: 1rem;
  position: relative;
}
.beyond-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
}

/* ===== COVERAGE ===== */
.coverage { background: var(--color-bg-alt); }
.coverage-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: start;
}
.coverage-hero-state {
  background: var(--color-dark);
  border-radius: 6px;
  padding: 2.5rem;
  color: var(--color-white);
}
.coverage-hero-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.coverage-hero-header h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-white);
}
.coverage-hero-count {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.coverage-regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.coverage-region h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 0.5rem;
}
.coverage-region p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.coverage-other-states {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.coverage-state-card {
  background: var(--color-white);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s var(--ease-out);
}
.coverage-state-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.coverage-state-icon {
  width: 48px;
  height: 48px;
  background: var(--color-dark);
  color: var(--color-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.coverage-state-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.15rem;
}
.coverage-count {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.4rem;
}
.coverage-state-card p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

/* ===== CONTACT ===== */
.contact { background: var(--color-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info .section-title { margin-bottom: 1rem; }
.contact-info > p {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 0.2rem;
}
.contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-lighter);
  margin-bottom: 0.15rem;
}
.contact-item p {
  font-size: 0.95rem;
  color: var(--color-dark);
}
.contact-form-wrap {
  background: var(--color-white);
  border-radius: 4px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-size: 0.9rem;
  color: var(--color-dark);
  background: var(--color-bg);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
}
.form-group textarea { resize: vertical; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}
.form-submit:hover {
  background: var(--color-gold-dark);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-dark);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.footer-tagline {
  font-style: italic;
  margin-top: 0.5rem;
}
.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--color-gold); }
.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-duo { grid-template-columns: 1fr 1fr; }
  .featured-flagship-img { height: 260px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-layout { grid-template-columns: 1fr; }
  .coverage-regions { grid-template-columns: 1fr 1fr; }
  .coverage-other-states { flex-direction: row; gap: 1rem; }
  .coverage-state-card { flex: 1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-dark);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s var(--ease-out);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }

  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hero-stat-divider { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-images { order: -1; }
  .about-video { height: 300px; }
  .about-img-accent { left: auto; right: -15px; bottom: -15px; width: 140px; height: 140px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bg { background-attachment: scroll; }
  .services-bg { background-attachment: scroll; }

  .featured-duo { grid-template-columns: 1fr; }
  .featured-flagship-img { height: 280px; }
  .featured-coming-img { height: 200px; }

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

  .beyond-card,
  .beyond-card.reverse { grid-template-columns: 1fr; }
  .beyond-card.reverse .beyond-img { order: 0; }

  .coverage-layout { grid-template-columns: 1fr; }
  .coverage-regions { grid-template-columns: 1fr; }
  .coverage-other-states { flex-direction: column; }

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

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

  .modal { width: 95%; }
  .modal-img { height: 200px; }
  .modal-details { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .portfolio-filters { flex-direction: column; align-items: flex-start; }
  .filter-group { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== SENSITIVE DATA BLUR ===== */
.sensitive-blur span {
  filter: blur(6px);
  -webkit-filter: blur(6px);
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
  transition: filter 0.3s ease;
}
.sensitive-blur label {
  opacity: 0.5;
}

.modal-sensitive-lock {
  margin: 0.5rem 0 1rem;
}

.sensitive-lock-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 169, 126, 0.1);
  color: #c8a97e;
  border: 1px solid rgba(200, 169, 126, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sensitive-lock-btn:hover {
  background: rgba(200, 169, 126, 0.2);
  border-color: #c8a97e;
}
.sensitive-lock-btn.unlocked {
  background: rgba(45, 90, 61, 0.15);
  color: #5a9e6f;
  border-color: rgba(45, 90, 61, 0.3);
  cursor: default;
}
.sensitive-lock-btn svg {
  flex-shrink: 0;
}
