/* LUXURY THEME ($10k Architectural Design) */
:root {
  --lux-cream: #fdefd5;
  --lux-cream-dark: #eae0c8;
  --lux-espresso: #174074;
  --lux-espresso-light: #3a3a3a;
  --lux-gold: #d89a2b;
  --lux-gold-light: #ecc870;
  --lux-border: rgba(26, 22, 20, 0.08);
  --lux-border-light: rgba(253, 251, 247, 0.15);
  
  --font-h: 'Playfair Display', serif;
  --font-b: 'Manrope', sans-serif;
  
  --ease: cubic-bezier(0.2, 1, 0.3, 1);
}

body {
  margin: 0;
  font-family: var(--font-b);
  background: var(--lux-cream);
  color: var(--lux-espresso);
  -webkit-font-smoothing: antialiased;
}

/* Typography */
.lux-h1, .lux-h2, .lux-h3, .lux-loc-title, .lux-card-title {
  font-family: var(--font-h);
  font-weight: 400;
  margin: 0;
  color: var(--lux-espresso);
}
.lux-h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.lux-h1 em {
  font-style: italic;
  color: var(--lux-gold);
}
.lux-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.lux-eyebrow, .lux-card-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lux-gold);
  margin-bottom: 1rem;
}
.lux-lede {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 2.5rem;
  color: rgba(26, 22, 20, 0.7);
}

/* Layout */
.lux-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
}
.text-center { text-align: center; }

/* Buttons */
.lux-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.lux-btn-primary {
  background: var(--lux-espresso);
  color: var(--lux-cream);
}
.lux-btn-primary:hover {
  background: var(--lux-gold);
  color: #fff;
}
.lux-btn-outline {
  border-color: var(--lux-espresso);
  color: var(--lux-espresso);
}
.lux-btn-outline:hover {
  background: var(--lux-espresso);
  color: var(--lux-cream);
}
.lux-btn-full {
  width: 100%;
}
.lux-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Sections */
.lux-section {
  padding: 8rem 0;
  border-top: 1px solid var(--lux-border);
}
.lux-section-cream { background: var(--lux-cream-dark); }
.lux-section-dark {
  background: var(--lux-espresso);
  color: var(--lux-cream);
}
.lux-section-dark .lux-h2 { color: var(--lux-cream); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 22, 20, 0.08);
  box-shadow: 0 1px 12px rgba(26, 22, 20, 0.06);
}
.site-header.scrolled {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lux-border);
}
.site-header.scrolled .nav-links a { color: var(--lux-espresso); }
.site-header.scrolled .mobile-menu-btn { color: var(--lux-espresso); }
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 5%;
  gap: 2rem;
}

/* Logo — vertically centred inside the 80px header */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}
.site-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--lux-espresso);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--lux-gold); }

/* Book Now — pill button in the navbar */
.nav-cta, a.nav-cta, .btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--lux-gold);
  color: #fff !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover, a.nav-cta:hover, .btn.btn-primary:hover {
  background: var(--lux-espresso);
  color: #fff !important;
  transform: translateY(-1px);
}

/* Hero */
.lux-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.lux-hero-image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.lux-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lux-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(253, 251, 247, 0.9) 0%, rgba(253, 251, 247, 0.4) 50%, rgba(253, 251, 247, 0) 100%);
}
.lux-hero-content {
  max-width: 700px;
}

/* Stats */
.lux-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.lux-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lux-stat-val {
  font-family: var(--font-h);
  font-size: 3rem;
  color: var(--lux-gold);
}
.lux-stat-lbl {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 251, 247, 0.6);
}

/* Grids */
.lux-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Cards */
.lux-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  text-decoration: none;
  color: var(--lux-espresso);
  transition: transform 0.4s var(--ease);
  border: 1px solid var(--lux-border);
}
.lux-card:hover {
  transform: translateY(-5px);
}
.lux-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.lux-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.lux-card:hover .lux-card-img img {
  transform: scale(1.05);
}
.lux-card-body {
  padding: 2.5rem;
}
.lux-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.lux-card-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(26, 22, 20, 0.7);
  margin: 0;
}
.lux-card-dark {
  background: var(--lux-espresso);
  border-color: var(--lux-border-light);
}

/* Location Cards */
.lux-loc-card {
  background: #fff;
  border: 1px solid var(--lux-border);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.lux-loc-img {
  aspect-ratio: 16/9;
}
.lux-loc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lux-loc-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.lux-loc-body .lux-btn {
  margin-top: auto;
}
.lux-loc-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.lux-loc-address {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(26, 22, 20, 0.6);
  margin-bottom: 2rem;
}

/* Footer overrides */
.site-footer {
  background: var(--lux-espresso);
  color: var(--lux-cream);
  padding: 6rem 0 2rem;
  border-top: none;
}
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-logo img {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(253, 251, 247, 0.6);
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 15px;
}
.social-link {
  color: rgba(253, 251, 247, 0.6);
  transition: color 0.3s ease;
}
.social-link:hover {
  color: var(--lux-gold);
}
.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366 !important;
  font-weight: 600;
}
.footer-wa-link:hover {
  color: #1ebd57 !important;
}
.site-footer a {
  color: rgba(253, 251, 247, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer a:hover {
  color: var(--lux-gold);
}
.footer-heading {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--lux-cream);
}
.footer-links-list {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-links-list li { margin-bottom: 0.75rem; }
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--lux-border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(253, 251, 247, 0.5);
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* -----------------------------------------------------------------------
   Mobile menu overlay — hidden on desktop, full-screen overlay on mobile
   ----------------------------------------------------------------------- */
.mobile-menu {
  display: none;          /* hidden by default on ALL viewports */
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(253, 239, 213, 0.98);
  flex-direction: column;
  padding: 24px 5%;
  overflow-y: auto;
  transition: opacity 0.25s ease;
}
.mobile-menu.open {
  display: flex;          /* toggled by JS */
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--lux-espresso);
  cursor: pointer;
  align-self: flex-end;
  padding: 8px;
  margin-bottom: 16px;
  line-height: 0;
}
.mobile-menu .mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu .mobile-nav-links a {
  color: var(--lux-espresso);
  text-decoration: none;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(23,64,116,0.08);
}
.mobile-menu .nav-cta-mobile {
  margin-top: 24px;
}

/* Hamburger button — hidden on desktop */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 8px;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.mobile-menu-btn svg { width: 24px; height: 24px; }

@media (max-width: 768px) {
  .lux-stats-grid { grid-template-columns: 1fr 1fr; }
  .lux-hero-overlay {
    background: linear-gradient(180deg, rgba(253, 251, 247, 0.5) 0%, rgba(253, 251, 247, 0.95) 50%, rgba(253, 251, 247, 1) 100%);
  }
  .lux-hero-content { margin-top: 100px; padding-bottom: 40px; }
  .nav-links { display: none !important; }  /* hide desktop nav on mobile */
  .site-header { background: var(--lux-espresso); }
  .site-header .nav-links a { color: #fff; }
  .lux-cta-group { flex-direction: column; }
  /* Show hamburger on mobile */
  .mobile-menu-btn { display: flex !important; }
}

/* Navigation touch target fixes (Issue 4 — WCAG 2.5.5) */
/* Desktop nav links: inline-block with 44px minimum height */
header .nav-links a,
.site-header .nav-links a,
.nav-links a {
  padding: 14px 15px !important;
  display: inline-block !important;
  min-height: 44px !important;
  box-sizing: border-box !important;
  line-height: 1.15 !important;
}

/* Mobile nav links: block-level full-width tap targets */
.mobile-menu .mobile-nav-links a,
.mobile-nav-links a {
  padding: 14px 20px !important;
  display: block !important;
  min-height: 44px !important;
  box-sizing: border-box !important;
}



/* ================================================================
   BLOG & SHARED PAGE CLASSES (from style.css, appended 2026-07-05)
   These classes are used by index.php (blog/archive), single posts,
   and other style.css-based templates.
   ================================================================ */

/* 18. BLOG SECTION */


.blog-card {
  background: var(--c-surface); border: var(--gold-border); border-radius: var(--radius);
  overflow: hidden; transition: transform var(--dur) var(--ease);
}
.blog-card:hover { transform: translateY(-4px); }

.blog-card-thumb { height: 200px; overflow: hidden; }
.blog-card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur) var(--ease);
}
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }

.blog-card-body { padding: 24px; }

.blog-card-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--c-gold); margin-bottom: 12px;
}
.blog-card-title {
  font-family: var(--font-heading); font-size: 1.1rem; color: var(--c-text);
  line-height: 1.4; margin-bottom: 10px;
}
.blog-card-title a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.blog-card-title a:hover { color: var(--c-gold); }
.blog-card-excerpt { color: var(--c-text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.blog-card-link {
  color: var(--c-gold); font-size: 0.85rem; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--dur) var(--ease);
}
.blog-card-link:hover { gap: 10px; color: var(--c-gold-light); }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-card-date { color: var(--c-text-faint); font-size: 0.78rem; }

@media screen and (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media screen and (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
  }
}

/* -------------------------------------------------------------------------- */

.blog-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 28px !important; }



/* ================================================================
   SERVICES, PRICING, PILLARS, AND FAQS CLASSES (from style.css)
   ================================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.service-card {
  background: #ffffff;
  border: 1px solid rgba(216, 154, 43, 0.18);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 36px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  box-shadow: 0 4px 20px rgba(23, 64, 116, 0.03);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--lux-gold);
  box-shadow: 0 20px 40px rgba(216, 154, 43, 0.12);
}
.service-card h3 {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--lux-espresso);
  margin: 0 0 16px 0;
}
.service-card p {
  color: rgba(23, 64, 116, 0.75) !important;
  font-size: 0.95rem;
  line-height: 1.6;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(216, 154, 43, 0.1);
  border: 1px solid rgba(216, 154, 43, 0.25);
  margin-bottom: 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.pricing-category {
  background: #ffffff;
  border: 1px solid rgba(216, 154, 43, 0.18);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(23, 64, 116, 0.03);
}
.pricing-category h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--lux-gold);
  margin: 0 0 24px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(216, 154, 43, 0.15);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(216, 154, 43, 0.08);
  color: rgba(23, 64, 116, 0.8);
  font-size: 0.95rem;
}
.price-row:last-child {
  border-bottom: none;
}
.price-row span:last-child {
  color: var(--lux-espresso);
  font-weight: 700;
  white-space: nowrap;
  margin-left: 16px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.pillar-card {
  text-align: center;
  padding: 44px 36px;
  background: #ffffff;
  border: 1px solid rgba(216, 154, 43, 0.18);
  border-radius: 12px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 4px 20px rgba(23, 64, 116, 0.03);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(216, 154, 43, 0.08);
}
.pillar-card h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--lux-espresso);
  margin: 0 0 16px 0;
}
.pillar-card p {
  color: rgba(23, 64, 116, 0.75) !important;
  font-size: 0.95rem;
  line-height: 1.6;
}
.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(216, 154, 43, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(216, 154, 43, 0.2);
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(216, 154, 43, 0.18);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--lux-espresso);
  font-family: var(--font-h);
  font-size: 1.15rem;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: var(--lux-gold);
}
.faq-answer {
  color: rgba(23, 64, 116, 0.75);
  line-height: 1.7;
  font-size: 0.98rem;
  padding-bottom: 24px;
}
