/* ==========================================================================
   Assetz Codename Sublime — Microsite Stylesheet
   Brand: #2c3e50 (primary), #c0944a (accent)
   Fonts: Playfair Display (headings), DM Sans (body)
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
  --color-primary: #2c3e50;
  --color-primary-light: #3d566e;
  --color-primary-dark: #1a252f;
  --color-accent: #c0944a;
  --color-accent-light: #d4ad6e;
  --color-accent-dark: #a07a38;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f7f4;
  --color-bg-dark: #2c3e50;
  --color-border: #e2e0dc;
  --color-border-light: #f0eeea;
  --color-success: #166534;
  --color-error: #991b1b;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-max: 1200px;
  --nav-height: 72px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.has-staging-banner {
  padding-top: 36px;
}

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

a {
  color: var(--color-accent-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus {
  color: var(--color-accent);
}

ul, ol {
  list-style: none;
}

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

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p + p { margin-top: 1rem; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 0.5rem;
}

/* ---------- Staging Banner ---------- */
.staging-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  padding: 6px 1rem;
  background: #dc2626;
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border-light);
  transition: background var(--transition), box-shadow var(--transition);
}

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

.inner-page .site-nav {
  background: var(--color-primary);
  border-bottom-color: transparent;
}

.inner-page .site-nav .nav-logo img {
  filter: brightness(0) invert(1);
}

.inner-page .site-nav .nav-menu a {
  color: rgba(255,255,255,0.85);
}

.inner-page .site-nav .nav-menu a:hover,
.inner-page .site-nav .nav-menu a.is-active {
  color: var(--color-accent-light);
}

.inner-page .site-nav .btn-nav-cta {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.inner-page .site-nav .nav-toggle-icon,
.inner-page .site-nav .nav-toggle-icon::before,
.inner-page .site-nav .nav-toggle-icon::after {
  background: #fff;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--nav-height);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

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

.nav-menu a.is-active {
  color: var(--color-accent);
  font-weight: 600;
}

.btn-nav-cta {
  background: var(--color-accent);
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-md) !important;
  border: 2px solid var(--color-accent);
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition);
}

.btn-nav-cta:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  position: relative;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  position: absolute;
  left: 9px;
}

.nav-toggle-icon {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle-icon::before {
  content: '';
  top: -7px;
}

.nav-toggle-icon::after {
  content: '';
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- Hero — Homepage ---------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, var(--color-primary-light) 100%);
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/gallery/realistic-cgi-landscape-assetz-codename-sublime-large.webp') center/cover no-repeat;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(192,148,74,0.15);
  border: 1px solid var(--color-accent);
  color: var(--color-accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero h1 .accent {
  color: var(--color-accent-light);
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent-light);
}

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ---------- Hero — Inner Pages ---------- */
.hero-inner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
  text-align: center;
}

.hero-inner h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.hero-inner .h1-sub {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--color-accent-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-inner .h1-title {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.hero-inner p {
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.page-updated {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

.btn-secondary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}

/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-primary);
  color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-dark p {
  color: rgba(255,255,255,0.8);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

/* ---------- Stat Cards ---------- */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.stat-card .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.stat-card .stat-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ---------- Feature Grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192,148,74,0.1);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* ---------- Pricing Table ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card-header {
  background: var(--color-primary);
  color: #fff;
  padding: 1.5rem 2rem;
}

.pricing-card-header h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.pricing-card-header .price-range {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-light);
}

.pricing-card-body {
  padding: 1.75rem 2rem;
}

.pricing-detail {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.92rem;
}

.pricing-detail:last-child {
  border-bottom: none;
}

.pricing-detail .detail-label {
  color: var(--color-text-light);
}

.pricing-detail .detail-value {
  font-weight: 600;
  color: var(--color-primary);
}

/* ---------- Amenity Grid ---------- */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.amenity-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.amenity-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192,148,74,0.1);
  color: var(--color-accent);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
}

.amenity-category {
  margin-bottom: 2.5rem;
}

.amenity-category h3 {
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.85rem;
}

/* ---------- Floor Plan Cards ---------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.plan-card:hover {
  box-shadow: var(--shadow-lg);
}

.plan-card-image {
  padding: 1.5rem;
  background: var(--color-bg-alt);
  text-align: center;
}

.plan-card-image img {
  max-height: 350px;
  margin: 0 auto;
}

.plan-card-info {
  padding: 1.5rem 2rem;
}

.plan-card-info h3 {
  margin-bottom: 0.75rem;
}

/* ---------- Location Map ---------- */
.location-map {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
}

.location-map img {
  width: 100%;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.location-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.location-card h4 {
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.location-card ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.location-card li {
  padding: 0.25rem 0;
  font-size: 0.92rem;
  color: var(--color-text-light);
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.is-active {
  border-color: var(--color-accent);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  line-height: 1.4;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform var(--transition);
}

.faq-item.is-active .faq-question::after {
  content: '\2212';
  transform: rotate(180deg);
}

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

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

.faq-answer p + p {
  margin-top: 0.75rem;
}

/* ---------- Contact Form ---------- */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

#contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.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(192,148,74,0.15);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.4 0L6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

#contact-form button[type="submit"] {
  width: 100%;
  padding: 0.85rem;
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 0.5rem;
}

#contact-form button[type="submit"]:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-1px);
}

#contact-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ---------- Reviews / Testimonials ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.review-stars {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ---------- Two-Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col-text h2 {
  margin-bottom: 1rem;
}

.two-col-text p {
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.two-col-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Content Prose ---------- */
.prose {
  max-width: 780px;
  margin: 0 auto;
}

.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.prose ul,
.prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
  color: var(--color-text-light);
}

.prose strong {
  color: var(--color-primary);
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--color-primary);
  padding: 3.5rem 0;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-top: 1rem;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 700px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

/* ---------- Table ---------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.data-table thead {
  background: var(--color-primary);
  color: #fff;
}

.data-table th {
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}

.data-table td {
  padding: 0.85rem 1.25rem;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--color-border-light);
}

.data-table tbody tr:hover {
  background: var(--color-bg-alt);
}

/* ---------- Tags / Badges ---------- */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-accent {
  background: rgba(192,148,74,0.12);
  color: var(--color-accent-dark);
}

.badge-primary {
  background: rgba(44,62,80,0.1);
  color: var(--color-primary);
}

/* ---------- Content Image ---------- */
.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.content-image img {
  width: 100%;
  display: block;
}

.content-image figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  text-align: center;
}

/* ---------- Info Box ---------- */
.info-box {
  background: rgba(192,148,74,0.08);
  border-left: 4px solid var(--color-accent);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.info-box strong {
  color: var(--color-primary);
}

/* ---------- 404 Page ---------- */
.page-404 {
  text-align: center;
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-404 h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--color-border);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.page-404 h2 {
  margin-bottom: 1rem;
}

.page-404 p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Responsive: Tablet & Below (<900px) ---------- */
@media (max-width: 899px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - var(--nav-height));
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 2rem 1.5rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }

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

  .inner-page .nav-menu {
    background: var(--color-primary-dark);
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    padding: 0.85rem 0.5rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-border-light);
  }

  .inner-page .nav-menu a {
    border-bottom-color: rgba(255,255,255,0.1);
  }

  .btn-nav-cta {
    text-align: center;
    margin-top: 1rem;
  }

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

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

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

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

  .hero-content {
    padding: 3rem 0;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  #contact-form {
    padding: 1.75rem;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }
}

/* ---------- Responsive: Mobile (<600px) ---------- */
@media (max-width: 599px) {
  :root {
    --nav-height: 60px;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stat-cards {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

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

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

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

  .footer-disclaimer {
    max-width: 100%;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .hero-inner {
    padding: calc(var(--nav-height) + 2rem) 0 2rem;
  }

  .cta-band {
    padding: 2.5rem 0;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-nav,
  .nav-toggle,
  .staging-banner,
  .cta-band,
  .btn {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero,
  .hero-inner {
    background: #f5f5f5 !important;
    color: #000;
    min-height: auto;
    padding: 2rem 0;
  }

  .hero h1,
  .hero-inner h1 {
    color: #000;
  }
}
