/* ==========================================================================
   Cloud Interior - Master Design System & Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Outfit', sans-serif;

  --color-gold: #d4af37;
  --color-gold-light: #f3e5ab;
  --color-gold-dark: #a38226;
  --color-gold-glow: rgba(212, 175, 55, 0.35);

  /* Deep slate obsidian surfaces */
  --brand-green: #0b132b;

  --beach-canvas: #0b0f19;

  --color-dark-1: #0a0f1d;
  --color-dark-2: #121827;
  --color-dark-3: #1a2236;
  --color-dark-4: #242f47;

  --color-light-1: #ffffff;
  --color-light-2: #f1f5f9;
  --color-text-muted: rgba(255, 255, 255, 0.85);
  --color-border: rgba(212, 175, 55, 0.2);
  
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);

  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-dark-1);
  color: var(--color-light-1);
  line-height: 1.65;
  overflow-x: hidden;
}

/* High Contrast Description Typography */
p {
  color: rgba(255, 255, 255, 0.88);
}

.text-muted {
  color: rgba(255, 255, 255, 0.82) !important;
}

.form-control-dark::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-dark-1);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Typography Helpers */
.font-heading { font-family: var(--font-heading); }
.text-gold { color: var(--color-gold) !important; }
.text-gold-light { color: var(--color-gold-light) !important; }

.section-title-wrap {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.sub-title {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.main-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-light-1);
  letter-spacing: -0.5px;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 1rem auto 0 auto;
}

/* Enquiry forms -----------------------------------------------------------
   The honeypot is a real, focusable input that people never see: bots fill
   every field they find, so a value here marks the submission as automated.
   It must not be display:none - some bots skip hidden fields. */
.form-hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(46, 160, 96, 0.4);
  background: rgba(46, 160, 96, 0.12);
  color: #7ddba4;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-status.is-error {
  border-color: rgba(214, 84, 84, 0.45);
  background: rgba(214, 84, 84, 0.12);
  color: #f0a2a2;
}

/* On the light theme the dark-surface greens/reds above wash out. */
.theme-beach .form-status { color: #1d6b3f; }
.theme-beach .form-status.is-error { color: #a33131; }

/* Luxury Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-dark-1) !important;
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 1px solid var(--color-gold);
  display: inline-block;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(197, 157, 95, 0.4);
  color: #000 !important;
}

.btn-gold-outline {
  background: transparent;
  color: var(--color-gold) !important;
  border: 1px solid var(--color-gold);
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-gold-outline:hover {
  background: var(--color-gold);
  color: var(--color-dark-1) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* Header CTA: the "Get Quote" button in the sticky header on every page.
   Keeps the rounded shape and white bold label, but takes its colour from the
   brand gold - a deep enough gold that white text still reads cleanly on it. */
.btn-header-cta {
  background: linear-gradient(135deg, #8a6528 0%, #6f4f1e 100%);
  color: #ffffff !important;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2px;
  line-height: 1.2;
  padding: 0.7rem 1.9rem;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.45), 0 6px 16px rgba(110, 79, 30, 0.3);
  display: inline-block;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-header-cta:hover {
  background: linear-gradient(135deg, #9e793e 0%, #7d5a23 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.65), 0 10px 22px rgba(110, 79, 30, 0.4);
}

.btn-header-cta:active {
  transform: translateY(0);
  box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.45), 0 4px 10px rgba(110, 79, 30, 0.3);
}

/* CTA closing the services grid in the brand gold. */
.btn-designers {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #ffffff !important;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.2;
  padding: 0.95rem 2rem;
  border: none;
  border-radius: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-designers:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--color-gold-glow);
}

/* Branded page loader */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #f7f6f2;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__logo {
  position: relative;
  z-index: 1;
  width: min(145px, 44vw);
  height: auto;
  animation: loader-logo-pulse 1.4s ease-in-out infinite;
}

.site-loader__ring {
  position: absolute;
  width: 180px;
  height: 180px;
  max-width: 55vw;
  max-height: 55vw;
  border: 2px solid rgba(197, 157, 95, 0.22);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: loader-ring-spin 1.5s linear infinite;
}

.site-loader__text {
  color: var(--color-gold-dark);
  font-family: var(--font-accent);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: loader-text-fade 1.4s ease-in-out infinite;
}

@keyframes loader-ring-spin { to { transform: rotate(360deg); } }
@keyframes loader-logo-pulse {
  0%, 100% { opacity: 0.72; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1); }
}
@keyframes loader-text-fade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader__ring,
  .site-loader__logo,
  .site-loader__text { animation: none; }
}

/* Header contact drawer */
.contact-drawer-toggle {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  grid-template-columns: repeat(3, 4px);
  grid-template-rows: repeat(3, 4px);
  place-content: center;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: #20232c;
  box-shadow: 0 8px 24px rgba(0,0,0,.24);
}
.contact-drawer-toggle span { width: 4px; height: 4px; border-radius: 50%; background: #fff; }
.contact-drawer-toggle:hover { background: var(--color-gold-dark); transform: scale(1.05); }
.contact-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1060;
  width: min(390px, 100vw);
  height: 100dvh;
  overflow-y: auto;
  color: #fff;
  background: #191919;
  transform: translateX(100%);
  transition: transform .4s ease;
  box-shadow: -15px 0 40px rgba(0,0,0,.35);
}
.contact-drawer.is-open { transform: translateX(0); }
.contact-drawer-backdrop { position: fixed; inset: 0; z-index: 1055; border: 0; background: rgba(0,0,0,.55); opacity: 0; visibility: hidden; transition: .35s ease; }
.contact-drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.contact-drawer-close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border: 1px solid #fff; border-radius: 50%; color: #fff; background: transparent; font-size: 1.2rem; }
.contact-drawer-inner { padding: 82px 28px 36px; }
.contact-drawer-item { padding: 30px 8px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-drawer-item > i { color: var(--color-gold); font-size: 2.1rem; margin-bottom: 12px; }
.contact-drawer-item h3, .contact-drawer-social h3 { color: #fff; font-family: var(--font-accent); font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.contact-drawer-item a { color: rgba(255,255,255,.9); line-height: 1.65; text-decoration: none; }
.contact-drawer-item a:hover { color: var(--color-gold-light); }
.contact-drawer-social { padding: 28px 8px; text-align: center; }
.contact-drawer-social > div { display: flex; justify-content: center; gap: 14px; margin-top: 16px; }
.contact-drawer-social a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--color-gold); border-radius: 50%; color: var(--color-gold-light); }
.contact-drawer-social a:hover { color: #191919; background: var(--color-gold); }
body.contact-drawer-open { overflow: hidden; }
@media (max-width: 991.98px) {
  .contact-drawer-toggle { margin: 1rem 0 0 !important; }
}

/* Renovation before-and-after showcase */
.renovation-before-after { padding: 5rem 0; background: var(--beach-bg-alt, #f5f4f1); }
.transformation-card { height: 100%; margin: 0; overflow: hidden; border: 1px solid rgba(197,157,95,.45); border-radius: 14px; background: #fff; box-shadow: 0 14px 35px rgba(30,24,16,.08); }
.transformation-image { position: relative; height: 380px; overflow: hidden; }
.transformation-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.transformation-card:hover img { transform: scale(1.035); }
.transformation-label { position: absolute; top: 18px; left: 18px; padding: .55rem 1.15rem; border-radius: 30px; color: #fff; background: rgba(24,20,15,.88); font-family: var(--font-accent); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.transformation-card figcaption { padding: 1.15rem 1.4rem; color: var(--beach-ink, #201b16); font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; }
@media (max-width: 767.98px) { .renovation-before-after { padding: 3.5rem 0; } .transformation-image { height: 270px; } }

.btn-designers:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-header-cta:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

/* ==========================================================================
   1. Top Announcement Bar
   ========================================================================== */
.top-bar {
  background-color: #070707;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.825rem;
  padding: 0.5rem 0;
  color: var(--color-text-muted);
}

.top-bar i {
  color: var(--color-gold);
  margin-right: 6px;
}

/* Social icons sit at the right of the top bar. Spacing comes from the flex
   gap, so the shared 6px icon margin above is cleared here. */
.top-bar-social {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.top-bar-social-link {
  color: inherit;
  text-decoration: none;
  line-height: 1;
}

.top-bar-social-link i {
  margin-right: 0;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.top-bar-social-link:hover i {
  transform: translateY(-2px);
  opacity: 0.75;
}

.top-bar-link:hover {
  color: var(--color-gold);
}

/* ==========================================================================
   2. Main Header / Navigation
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-fast);
}

.navbar-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-emblem {
  min-width: 46px;
  height: 46px;
  padding: 0 8px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-dark-1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 4px 15px rgba(197, 157, 95, 0.3);
  flex-shrink: 0;
  letter-spacing: 0.5px;
  overflow: hidden;
  white-space: nowrap;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-light-1);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  font-weight: 600;
  white-space: nowrap;
}

/* Keep the logo block narrow enough for the nav to stay on one line */
@media (min-width: 992px) and (max-width: 1399.98px) {
  .brand-subtitle {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }
}

/* Cloud Interior brand logo styling */
.brand-logo {
  height: 52px;
  width: auto;
  max-width: 100%;
  display: block;
}

@media (min-width: 992px) and (max-width: 1399.98px) {
  .brand-logo {
    height: 44px;
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    height: 40px;
  }
}

.footer-brand-logo {
  height: 58px;
  width: auto;
  max-width: 100%;
  display: block;
  margin-bottom: 1rem;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 1rem 0.9rem !important;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 60%;
}

/* Breathing room between the desktop menu items. Spaces the list rather than
   padding the links, so the hover underline stays tied to the label width.
   Tightened between 992-1400px, where the nav has least room to spare. */
@media (min-width: 992px) {
  .navbar-nav { gap: 0.85rem; }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
  .navbar-nav { gap: 0.35rem; }
}

.dropdown-menu-dark {
  background-color: var(--color-dark-2);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  border-radius: 6px;
  padding: 0.5rem 0;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(197, 157, 95, 0.15);
  color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   Services Mega Menu
   The parent <li> goes position:static so the panel can span the full navbar
   instead of hanging off the link. The toggle carries data-bs-display="static"
   so Bootstrap skips Popper and our own top/left/right rules win.
   -------------------------------------------------------------------------- */
.nav-item.mega-parent {
  position: static;
}

.mega-menu {
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 0;
  padding: 1.75rem 0;
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 0 0 14px 14px;
  box-shadow: var(--shadow-md);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.mega-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem 0.75rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition-fast);
}

.mega-item:last-child {
  border-right: none;
}

/* Circular photo thumbnails - swap the <img> src to change a service image.
   Source files should be square crops (240x240 or larger) so the circular
   mask doesn't cut anything important. */
.mega-icon {
  width: 118px;
  height: 118px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(197, 157, 95, 0.12);
  border: 2px solid var(--color-border);
  transition: var(--transition-fast);
}

.mega-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.mega-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition-fast);
}

.mega-item:hover .mega-icon {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(197, 157, 95, 0.35);
}

.mega-item:hover .mega-icon img {
  transform: scale(1.08);
}

.mega-item:hover .mega-label {
  color: var(--color-gold);
}

/* Collapsed navbar: the panel becomes part of the stacked menu */
@media (max-width: 991.98px) {
  .mega-menu {
    padding: 1.25rem 0.5rem;
    border-radius: 10px;
  }

  .mega-menu > .container {
    padding: 0;
  }

  .mega-menu-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1.5rem;
  }

  .mega-item {
    border-right: none;
    gap: 0.6rem;
  }

  .mega-icon {
    width: 92px;
    height: 92px;
  }

  .mega-label {
    font-size: 0.72rem;
  }
}

@media (max-width: 575.98px) {
  .mega-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-icon {
    width: 84px;
    height: 84px;
  }
}

/* ==========================================================================
   3. Hero Carousel Slider
   ========================================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slider .swiper-slide {
  height: 85vh;
  min-height: 550px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-slider .hero-slide-kitchen {
  background-position: center center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0.2) 50%, rgba(13,13,13,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 750px;
}

.hero-badge {
  background: rgba(197, 157, 95, 0.2);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(5px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 300;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--color-gold) !important;
  width: 50px;
  height: 50px;
  background: rgba(22, 22, 22, 0.7);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: var(--transition-fast);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--color-gold);
  color: var(--color-dark-1) !important;
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 1.2rem !important;
}

.swiper-pagination-bullet {
  background: #ffffff !important;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  background: var(--color-gold) !important;
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* ==========================================================================
   4. Consultation CTA Strip
   ========================================================================== */
/* Full-bleed banner: interior photo across the whole strip, with a dark brown
   slab laid over the left half to carry the headline and button. */
.cta-strip {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  background: #271f14 url("../images/cta-interior.jpg") no-repeat right center;
  /* Source is 960x300 and the strip is 300 tall, so matching the height renders
     the photo at 1:1 and the whole room stays visible. `cover` would scale it
     ~2x on a desktop-width strip and crop away everything but the right half. */
  background-size: auto 100%;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* Past ~2200px the 960-wide photo no longer reaches the slab, which would leave
   a flat brown band between the curve and the image - scale it up instead. */
@media (min-width: 2200px) {
  .cta-strip {
    background-size: cover;
  }
}

/* The slab's right corners take a 48px horizontal radius against a vertical
   radius of 50%, so the two arcs meet at mid-height and read as a single
   shallow half-ellipse bulging right - the curve in the approved design. */
.cta-strip::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 52%;
  background: #271f14;
  border-radius: 0 48px 48px 0 / 0 50% 50% 0;
}

.cta-strip > .container {
  position: relative;
  z-index: 1;
}

/* Held clear of the curve so the headline never crosses the arc. The centred
   .container starts further right as the viewport grows while the slab is a
   flat 52%, so a fixed max-width overruns the arc around 992-1199px - tie the
   cap to the viewport instead. */
.cta-strip-content {
  max-width: min(520px, 34vw);
}

.cta-strip-title {
  /* Sans, not the Playfair used by section headings - matches the approved
     banner artwork, where the headline is set in the geometric sans. */
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 2.9vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 0.85rem 0;
}

/* Supporting line under the headline. Kept well below the title size - at the
   headline's clamp it would wrap to three lines and push the button past the
   300px strip. Colour is hardcoded light like the title: the slab is dark in
   both themes, so there is no .theme-beach pair to add. */
.cta-strip-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.75rem 0;
}

.cta-strip-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.9rem;
  background: #745320;
  border: 2px solid #9c691a;
  border-radius: 10px;
  color: #f4efe8;
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cta-strip-btn:hover,
.cta-strip-btn:focus {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #1a1a1a;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .cta-strip {
    min-height: 250px;
  }

  .cta-strip::before {
    width: 72%;
    border-radius: 0 38px 38px 0 / 0 50% 50% 0;
  }
}

/* Too narrow to hold a slab and a photo side by side - let the slab cover the
   full width and sit the copy on top of the dimmed photo instead. */
@media (max-width: 767.98px) {
  .cta-strip {
    min-height: 0;
    padding: 3rem 0;
    text-align: center;
  }

  .cta-strip::before {
    width: 100%;
    border-radius: 0;
    background: rgba(39, 31, 20, 0.88);
  }

  .cta-strip-content {
    max-width: none;
  }

  .cta-strip-title br {
    display: none;
  }
}

/* ==========================================================================
   5. Key Value Highlights Grid (6 Pillars)
   ========================================================================== */
.value-highlights {
  /* Tighter than the 6rem section rhythm elsewhere: this is a thin trust strip
     between the hero and the About block, not a full section. */
  padding: 2.5rem 0;
  background: var(--color-dark-2);
}

/* Deliberately surface-less: the box sits directly on the section canvas, so
   the icon medallion carries the visual weight instead of a card. Nothing here
   may paint a background or shadow - either would redraw the card edge. */
.feature-box {
  background: transparent;
  border: none;
  /* Only side padding matters now there is no card - vertical padding here just
     stacks on top of the section's own and deepens the strip. */
  padding: 0.75rem 1.5rem;
  text-align: center;
  transition: var(--transition-fast);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-icon-wrap {
  width: 86px;
  height: 86px;
  background: rgba(197, 157, 95, 0.16);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  color: var(--color-gold);
  font-size: 2.15rem;
  transition: var(--transition-fast);
}

.feature-box:hover .feature-icon-wrap {
  background: var(--color-gold);
  color: var(--color-dark-1);
  box-shadow: 0 0 20px rgba(197, 157, 95, 0.4);
}

.feature-title {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-light-1);
}

/* ==========================================================================
   6. About Section
   ========================================================================== */
.about-section {
  padding: 6rem 0;
  background: var(--color-dark-1);
}

.about-text-content {
  padding-right: 2rem;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Short accent rule under the About heading. Left-aligned counterpart to the
   centred .gold-divider the other sections use. */
.about-divider {
  width: 64px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 2px;
  margin-bottom: 1.35rem;
}

.about-highlight {
  font-size: 1rem;
  color: inherit;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.about-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.about-carousel-frame {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-carousel img {
  border-radius: 12px;
  height: 420px;
  object-fit: cover;
}

/* ==========================================================================
   6b. Design Categories ("Let's Design Your Abode")
   A quiet row of line-art categories that sits between About and Services.
   Icons are inline SVG so they inherit currentColor and stay crisp at any size.
   ========================================================================== */
.abode-section {
  padding: 5rem 0;
  background: var(--color-dark-1);
}

.abode-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.abode-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  padding: 1rem 0.5rem;
}

.abode-icon {
  color: var(--color-gold);
  transition: var(--transition-fast);
}

.abode-icon svg {
  display: block;
  width: 76px;
  height: 76px;
}

.abode-item:hover .abode-icon {
  color: var(--color-gold-light);
  transform: translateY(-4px);
}

.abode-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-light-1);
  line-height: 1.35;
}

@media (max-width: 991.98px) {
  .abode-grid { grid-template-columns: repeat(3, 1fr); }
  .abode-icon svg { width: 64px; height: 64px; }
}

@media (max-width: 575.98px) {
  .abode-section { padding: 3.5rem 0; }
  .abode-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .abode-icon svg { width: 56px; height: 56px; }
  .abode-label { font-size: 0.85rem; }
}

/* ==========================================================================
   7. Core Services Grid
   ========================================================================== */
.services-section {
  padding: 6rem 0;
  background: var(--color-dark-2);
}

.service-card {
  background: var(--color-dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition-fast);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-light-1);
}

.service-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-btn-link {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-btn-link:hover {
  color: var(--color-gold-light);
  gap: 12px;
}

/* ==========================================================================
   8. Design to Delivery Process (4 Steps)
   ========================================================================== */
.process-section {
  /* Tighter than the 6rem section rhythm: the steps are a compact icon row,
     not a full content block, so the default padding left it floating. */
  padding: 3rem 0;
  background: var(--color-dark-1);
}

/* Steps read as a row of illustration medallions with a caption underneath -
   no card, no border, no shadow. The circle is the only surface. */
.process-step {
  position: relative;
}

.process-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border: none;
  /* Side padding only - vertical padding here just stacks on the section's. */
  padding: 0 0.75rem;
  text-align: center;
  transition: var(--transition-fast);
}

.process-card:hover {
  transform: translateY(-6px);
}

.process-icon {
  width: 168px;
  height: 168px;
  max-width: 100%;
  margin-bottom: 1.4rem;
  display: grid;
  place-items: center;
  font-size: 3.6rem;
  color: var(--color-gold);
  /* Neutral tint rather than a gold wash, so the glyph carries the colour */
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  transition: var(--transition-fast);
}

.process-card:hover .process-icon {
  transform: scale(1.04);
}

/* Illustrated step: the artwork carries its own green disc and gold ring, so
   the tinted circle behind it is dropped. */
.process-icon-img {
  background: none;
  padding: 0;
}

.process-icon-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-title {
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.4;
  color: var(--color-light-1);
  margin: 0;
}

@media (max-width: 991.98px) {
  .process-icon {
    width: 140px;
    height: 140px;
    font-size: 3rem;
  }
}

@media (max-width: 575.98px) {
  .process-icon {
    width: 116px;
    height: 116px;
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }

  .process-title {
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   9. Interactive Room Gallery / Space Showcase
   ========================================================================== */
.gallery-section {
  padding: 6rem 0;
  background: var(--color-dark-2);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--color-dark-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-gold);
  color: var(--color-dark-1);
  border-color: var(--color-gold);
  font-weight: 600;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 280px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 13, 13, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0.9;
  transition: var(--transition-fast);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: linear-gradient(180deg, rgba(197, 157, 95, 0.2) 0%, rgba(13, 13, 13, 0.95) 100%);
}

.gallery-cat {
  font-size: 0.75rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-light-1);
  margin-top: 4px;
}

/* ==========================================================================
   10. Customer Spotlight & Accordion
   ========================================================================== */
.testimonial-accordion-section {
  padding: 6rem 0;
  background: var(--color-dark-1);
}

/* Feature image standing in for the old spotlight card. Height is set by the
   accordion in the adjacent column, so the photo crops to fill whatever that
   comes to - hence object-fit rather than a fixed ratio. */
.spotlight-media {
  /* Squared and top-aligned rather than stretched to the row. Matching the row
     meant the accordion opening a panel blew the photo up with it. */
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotlight-card {
  background: var(--color-dark-3);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.spotlight-quote {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.spotlight-client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.spotlight-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  object-fit: cover;
}

.spotlight-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.spotlight-role {
  font-size: 0.8rem;
  color: var(--color-gold);
}

.spotlight-stars {
  color: #fb8e28;
  font-size: 0.9rem;
  margin-top: 4px;
}

/* .main-title is centred everywhere else because it lives inside
   .section-title-wrap. Here it sits in a left-aligned column instead. */
.testimonial-accordion-section .main-title {
  text-align: left;
  font-size: 2.25rem;
}

.spotlight-lede {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--color-gold-light);
  margin: 0.75rem 0 2rem;
}

/* Custom Accordion */
.custom-accordion .accordion-item {
  background: var(--color-dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  background: var(--color-dark-3);
  color: var(--color-light-1);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: rgba(197, 157, 95, 0.1);
  color: var(--color-gold);
}

.custom-accordion .accordion-button::after {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(5deg);
}

.custom-accordion .accordion-body {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 1.25rem 1.5rem;
}

/* ==========================================================================
   11. Video Walkthrough Showcase
   ========================================================================== */
.video-section {
  padding: 6.5rem 0;
  background: var(--color-dark-2);
  border-top: 1px solid rgba(197, 157, 95, 0.15);
  border-bottom: 1px solid rgba(197, 157, 95, 0.15);
}

.video-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  background: var(--color-dark-3);
  position: relative;
  transition: var(--transition-fast);
  height: 250px;
}

.video-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: rgba(13, 13, 13, 0.7);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.2rem;
  pointer-events: none;
  transition: var(--transition-fast);
  backdrop-filter: blur(4px);
  z-index: 5;
}

.video-card:hover .video-play-overlay {
  background: var(--color-gold);
  color: var(--color-dark-1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.95) 100%);
  color: var(--color-light-1);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  z-index: 5;
}

/* ==========================================================================
   12. Google Reviews & Motivation
   ========================================================================== */
.reviews-section {
  padding: 6.5rem 0;
  background: var(--color-dark-1);
}

.google-badge-box {
  background: var(--color-dark-2);
  border: 1px solid var(--color-gold);
  border-radius: 14px;
  padding: 1.5rem 2.25rem;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-md);
}

.google-score {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}

.google-stars-wrap i {
  color: #fb8e28;
  font-size: 1.15rem;
}

.reviews-carousel {
  padding-bottom: 55px !important;
  position: relative;
}

.reviews-carousel .swiper-wrapper {
  align-items: stretch;
}

.reviews-carousel .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

.review-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.25rem 1.85rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.review-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(197, 157, 95, 0.2) 0%, rgba(197, 157, 95, 0.08) 100%);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.95rem;
}

.review-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-light-1);
}

.review-date {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.review-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0;
  flex-grow: 1;
}

.reviews-pagination {
  position: absolute;
  bottom: 10px !important;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.reviews-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.25) !important;
  opacity: 1;
  margin: 0 4px !important;
  transition: var(--transition-fast);
}

.reviews-pagination .swiper-pagination-bullet-active {
  background: var(--color-gold) !important;
  width: 28px;
  border-radius: 6px;
}

/* ==========================================================================
   13. Brand Partners Logo Carousel
   ========================================================================== */
.brand-partners-section {
  padding: 4.5rem 0;
  background: var(--color-dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-logo-item {
  background: var(--color-dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.brand-logo-item:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.brand-logo-item img {
  max-height: 45px;
  max-width: 80%;
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.65;
  transition: var(--transition-fast);
}

.brand-logo-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* ==========================================================================
   14. Quote Modal & Floating Contact Widgets
   ========================================================================== */
.modal-content-dark {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  color: var(--color-light-1);
  border-radius: 12px;
}

.modal-header-dark {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
}

.modal-title-dark {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-gold);
}

.form-control-dark {
  background: var(--color-dark-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff !important;
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

.form-control-dark:focus {
  background: var(--color-dark-4);
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(197, 157, 95, 0.3);
}

.floating-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.floating-tab {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  color: var(--color-light-1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  cursor: pointer;
}

.floating-tab:hover {
  background: var(--color-gold);
  color: var(--color-dark-1);
  transform: translateX(5px);
}

.floating-tab i {
  font-size: 1.1rem;
  color: var(--color-gold);
}

.floating-tab:hover i {
  color: var(--color-dark-1);
}

/* Collapse the tabs to icons before they can reach the page container */
@media (max-width: 1600px) {
  .floating-sidebar .floating-tab span {
    display: none;
  }
  .floating-tab {
    padding: 12px;
    border-radius: 0 10px 10px 0;
  }
}

/* Below this the container is too narrow to clear the tabs - use the
   WhatsApp quick-action button instead (see .wa-float) */
@media (max-width: 1299.98px) {
  .floating-sidebar {
    display: none;
  }
}

/* ==========================================================================
   15. Comprehensive Footer
   ========================================================================== */
.main-footer {
  background: #090909;
  border-top: 1px solid var(--color-border);
  padding: 6rem 0 2.5rem 0;
  margin-top: 4rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.footer-widget-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-light-1);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--color-gold);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: var(--color-dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--color-gold);
  color: var(--color-dark-1);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  font-size: 0.825rem;
  color: var(--color-text-muted);
}

/* Legal line: one row with gold pipes on desktop, a centred stack on phones
   (the separators are decorative, so they are dropped once it wraps) */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  column-gap: 8px;
  row-gap: 4px;
}

.footer-sep {
  color: var(--color-gold);
  opacity: 0.55;
}

.footer-tagline {
  white-space: nowrap;
}

/* The credit link carries the gold accent rather than the browser default,
   which would land as blue on the light footer. */
.footer-tagline a {
  color: var(--color-gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-tagline a:hover,
.footer-tagline a:focus {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

/* Licence attribution line - deliberately quiet, but it must stay visible for
   the CC BY wardrobe photographs to be used legitimately. */
.footer-credits {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.72rem;
  line-height: 1.6;
  opacity: 0.72;
}

.footer-credits a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .footer-legal {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    row-gap: 6px;
  }

  .footer-sep {
    display: none;
  }

  .footer-tagline {
    white-space: normal;
    text-align: center;
  }
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
  .hero-title { font-size: 2.5rem; }
  .main-title { font-size: 2rem; }
  .about-text-content { padding-right: 0; margin-bottom: 2rem; }
}

@media (max-width: 767.98px) {
  .hero-slider .swiper-slide { height: 70vh; }
  .hero-slider .hero-slide-kitchen { background-position: 62% center; }
  .hero-title { font-size: 2rem; }
  .floating-sidebar { display: none; }
}

/* ==========================================================================
   16. About Us Dedicated Page Styling
   ========================================================================== */
.about-hero-page {
  position: relative;
  margin-bottom: 3.5rem;
  min-height: 420px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.75) 0%, rgba(13, 13, 13, 0.95) 100%), url('../images/hero_bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1rem 4rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.about-hero-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.breadcrumb-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(22, 22, 22, 0.7);
  padding: 8px 22px;
  border-radius: 30px;
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.breadcrumb-custom a {
  color: var(--color-light-1);
}

.breadcrumb-custom a:hover {
  color: var(--color-gold);
}

/* Intro Section & Counters */
.about-intro-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.about-intro-img-wrapper img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-intro-img-wrapper:hover img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, var(--color-dark-2) 0%, var(--color-dark-3) 100%);
  border: 1px solid var(--color-gold);
  padding: 1.25rem 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.experience-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.experience-badge .badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-light-1);
  margin-top: 5px;
}

.counter-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-fast);
}

.counter-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.counter-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
}

.counter-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Highlight card (in-house capability / management) */
.association-card {
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.9) 0%, rgba(34, 34, 34, 0.8) 100%);
  border: 1px solid var(--color-gold);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.association-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
}

.association-logo-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed var(--color-gold);
  padding: 1.5rem 2.5rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

#in-house {
  padding-top: 5rem !important;
  padding-bottom: 5.5rem !important;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

/* Vision & Mission Cards Section */
#vision-mission {
  padding-top: 6rem !important;
  padding-bottom: 6.5rem !important;
  margin-top: 3rem;
  margin-bottom: 4rem;
  border-top: 1px solid rgba(197, 157, 95, 0.12);
  border-bottom: 1px solid rgba(197, 157, 95, 0.12);
}

.vm-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: var(--transition-fast);
}

.vm-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.vm-icon-box {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, rgba(197, 157, 95, 0.15) 0%, rgba(197, 157, 95, 0.05) 100%);
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

/* Team Section */
#team {
  padding-top: 6.5rem !important;
  padding-bottom: 6.5rem !important;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.team-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition-fast);
  height: 100%;
}

.team-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.team-img-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.08);
}

.team-role-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(13, 13, 13, 0.85);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-content {
  padding: 1.75rem;
  text-align: center;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-light-1);
  margin-bottom: 4px;
}

.team-title {
  font-size: 0.85rem;
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.team-social a {
  width: 34px;
  height: 34px;
  background: var(--color-dark-3);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.team-social a:hover {
  background: var(--color-gold);
  color: var(--color-dark-1);

}

.team-showcase-banner {
  background: linear-gradient(135deg, var(--color-dark-3) 0%, var(--color-dark-2) 100%);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

/* Why Choose Cloud Interior Cards */
.why-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: var(--transition-fast);
}

.why-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.why-num {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-light-1);
  margin-bottom: 0.75rem;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Brand Partners Grid */
#brand-partners {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
  margin-top: 2rem;
  margin-bottom: 3rem;
  border-top: 1px solid rgba(197, 157, 95, 0.15);
  border-bottom: 1px solid rgba(197, 157, 95, 0.15);
}

.partner-logo-item {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  transition: var(--transition-fast);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.partner-logo-item:hover {
  border-color: var(--color-gold);
  background: var(--color-dark-3);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

/* Newsletter CTA Section Spacing */
#newsletter {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.newsletter-cta-box {
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(34, 34, 34, 0.95) 100%), url('../images/hero_bg.jpg') center/cover no-repeat;
  border: 1px solid var(--color-gold);
  border-radius: 20px;
  padding: 5rem 3rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   Split Call-To-Action Banner
   Photo fills the whole banner; the copy sits on a dark panel whose right
   edge is an ellipse, so the image shows through the curve.
   -------------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  background: var(--color-dark-2);
}

.cta-banner-media {
  position: absolute;
  inset: 0;
}

.cta-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-banner-panel {
  position: relative;
  z-index: 2;
  width: 60%;
  min-height: 330px;
  padding: 3rem 7.5rem 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(115deg, #13100c 0%, #221b12 60%, #2e2517 100%);
  border-radius: 0 14% 14% 0 / 0 50% 50% 0;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.18;
  color: var(--color-light-1);
  margin-bottom: 0.75rem;
}

.cta-banner-sub {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.75rem;
}

.cta-banner-btn {
  align-self: flex-start;
  background: transparent;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold-light);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cta-banner-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

@media (max-width: 1199.98px) {
  .cta-banner-panel {
    width: 68%;
    padding-right: 6rem;
  }

  .cta-banner-title {
    font-size: 2rem;
  }
}

/* Stacked: the panel covers the photo, so the curve is dropped */
@media (max-width: 767.98px) {
  .cta-banner-panel {
    width: 100%;
    min-height: 260px;
    padding: 2.5rem 1.75rem;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(19, 16, 12, 0.94) 0%, rgba(46, 37, 23, 0.9) 100%);
    text-align: center;
    align-items: center;
  }

  .cta-banner-title {
    font-size: 1.7rem;
  }

  .cta-banner-btn {
    align-self: center;
  }
}

/* ==========================================================================
   17. Dedicated Blog Page Styling
   ========================================================================== */
.blog-hero-page {
  position: relative;
  margin-bottom: 3.5rem;
  min-height: 380px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.8) 0%, rgba(13, 13, 13, 0.95) 100%), url('../images/hero_bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5.5rem 1rem 3.5rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.blog-hero-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.category-pill {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  color: var(--color-light-1);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-fast);
  cursor: pointer;
  display: inline-block;
}

.category-pill:hover,
.category-pill.active {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-dark-1);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

/* Featured Blog Card */
.featured-blog-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.featured-blog-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

.featured-img-box {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.featured-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.featured-blog-card:hover .featured-img-box img {
  transform: scale(1.05);
}

.blog-cat-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(13, 13, 13, 0.85);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}

/* Standard Blog Cards */
.blog-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
}

.blog-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.blog-card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-img-wrapper img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.85rem;
}

.blog-meta i {
  color: var(--color-gold);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-light-1);
  margin-bottom: 0.85rem;
  line-height: 1.4;
  transition: var(--transition-fast);
}

.blog-card:hover .blog-card-title {
  color: var(--color-gold);
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  background: var(--color-gold-dark);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.author-name {
  font-size: 0.8rem;
  color: var(--color-light-1);
  font-weight: 500;
}

.btn-read-more {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-read-more:hover {
  color: var(--color-gold-light);
  transform: translateX(4px);
}

/* Sidebar Widgets */
.sidebar-widget {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-light-1);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 8px;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--color-gold);
}

.widget-category-list li {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.widget-category-list a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.widget-category-list a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.widget-category-list .badge-count {
  background: var(--color-dark-3);
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 10px;
}

.recent-post-item {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
  align-items: center;
}

.recent-post-thumb {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-light-1);
  line-height: 1.3;
  transition: var(--transition-fast);
}

.recent-post-title:hover {
  color: var(--color-gold);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  background: var(--color-dark-3);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.785rem;
  padding: 5px 12px;
  border-radius: 15px;
  transition: var(--transition-fast);
}

.tag-pill:hover {
  background: var(--color-gold);
  color: var(--color-dark-1);
  border-color: var(--color-gold);
}

/* Custom Pagination */
.pagination-custom .page-link {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  color: var(--color-light-1);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin: 0 4px;
  transition: var(--transition-fast);
}

.pagination-custom .page-link:hover,
.pagination-custom .page-item.active .page-link {
  background: var(--color-gold);
  color: var(--color-dark-1);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

/* Listing search/filter: cards hidden by the filter keep their grid slot out
   of the flow, so the remaining cards close up instead of leaving holes. */
.blog-post-item.is-hidden { display: none; }

.blog-empty-state {
  border: 1px dashed var(--color-border);
  border-radius: 14px;
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--color-text-muted);
}

/* ==========================================================================
   17b. Single Blog Article (post) Styling
   ========================================================================== */
.post-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold));
  /* Above the sticky header (1000), below the Bootstrap modal (1055). */
  z-index: 1030;
  pointer-events: none;
}

/* The hero sits on a dark photo on every theme, so its type stays light. */
.post-hero-title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}

.post-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1.25rem;
}

.post-hero-meta i { color: var(--color-gold); }

.post-article {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
}

.post-article-inner { padding: 2rem; }

@media (min-width: 768px) {
  .post-article-inner { padding: 3rem; }
}

.post-cover {
  height: 380px;
  overflow: hidden;
}

.post-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-lede {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--color-light-1);
  border-left: 3px solid var(--color-gold);
  padding-left: 1.15rem;
  margin-bottom: 2rem;
}

/* --- Article body typography --- */
.post-body { font-size: 1rem; }

.post-body h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-light-1);
  margin: 2.75rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-border);
}

.post-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-gold);
  margin: 1.85rem 0 0.75rem;
}

.post-body p {
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 1.15rem;
}

.post-body ul,
.post-body ol {
  color: var(--color-text-muted);
  line-height: 1.85;
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.post-body li { margin-bottom: 0.5rem; }
.post-body li::marker { color: var(--color-gold); }
.post-body strong { color: var(--color-light-1); font-weight: 600; }

.post-body a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body a:hover { color: var(--color-gold-light); }

.post-figure {
  margin: 2rem 0;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
}

.post-figure img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-figure figcaption {
  padding: 0.8rem 1.15rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  background: var(--color-dark-3);
  border-top: 1px solid var(--color-border);
}

.post-quote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--color-dark-3);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-accent);
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--color-light-1);
}

.post-callout {
  margin: 2rem 0;
  padding: 1.5rem 1.65rem;
  background: var(--color-dark-3);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-gold);
  border-radius: 12px;
}

.post-callout-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.post-callout p:last-child,
.post-callout ul:last-child { margin-bottom: 0; }

/* Spec tables scroll on their own instead of stretching the page. */
.post-table-wrap {
  overflow-x: auto;
  margin: 1.75rem 0;
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.post-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.post-table th,
.post-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.post-table th {
  background: var(--color-dark-3);
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.4px;
}

.post-table td { color: var(--color-text-muted); }
.post-table tr:last-child td { border-bottom: 0; }

/* --- Table of contents --- */
.post-toc {
  background: var(--color-dark-3);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem 1.65rem;
  margin-bottom: 2.25rem;
}

.post-toc-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.9rem;
}

.post-toc ol {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--color-text-muted);
}

.post-toc li { margin-bottom: 0.45rem; }
.post-toc li::marker { color: var(--color-gold); }

.post-toc a {
  color: var(--color-light-1);
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.post-toc a:hover { color: var(--color-gold); }

/* --- Tags, share, author, prev/next --- */
.post-footer-bar {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.post-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-dark-3);
  color: var(--color-light-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.post-share-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark-1);
}

.post-author-box {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2.5rem;
  padding: 1.65rem;
  background: var(--color-dark-3);
  border: 1px solid var(--color-border);
  border-radius: 14px;
}

.post-author-img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
  flex-shrink: 0;
}

/* Homepage alternating section rhythm: white / eucalyptus */
body.theme-dark > .value-highlights,
body.theme-dark > .abode-section,
body.theme-dark > .process-section,
body.theme-dark > .testimonial-accordion-section,
body.theme-dark > .reviews-section {
  background: #ffffff !important;
  border-color: rgba(47, 93, 87, 0.14) !important;
}

body.theme-dark > .about-section,
body.theme-dark > .services-section,
body.theme-dark > .gallery-section,
body.theme-dark > .video-section,
body.theme-dark > .brand-partners-section {
  border-color: rgba(255, 255, 255, 0.12) !important;
}

/* White room-category section */
.theme-dark .abode-section::before { color: rgba(47, 93, 87, 0.035); }
.theme-dark .abode-section .sub-title,
.theme-dark .abode-section .main-title,
.theme-dark .abode-label { color: #244944 !important; }
.theme-dark .abode-section .abode-intro,
.theme-dark .abode-section .abode-copy { color: #5b716e; }
.theme-dark .abode-item {
  border-color: rgba(47, 93, 87, 0.16);
  background: #f7faf9;
  box-shadow: 0 16px 34px rgba(36, 73, 68, 0.08);
}
.theme-dark .abode-item::before { color: rgba(47, 93, 87, 0.48); }
.theme-dark .abode-item::after {
  border-color: rgba(47, 93, 87, 0.22);
  color: #2f5d57;
}
.theme-dark .abode-icon {
  border-color: rgba(47, 93, 87, 0.18);
  background: #e7f0ee;
  color: #2f5d57;
}
.theme-dark .abode-item:hover {
  border-color: rgba(47, 93, 87, 0.38);
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(36, 73, 68, 0.14);
}

/* White process section */
.theme-dark .process-section::before { color: rgba(47, 93, 87, 0.035) !important; }
.theme-dark .process-section .sub-title,
.theme-dark .process-section .main-title,
.theme-dark .process-title { color: #244944 !important; }
.theme-dark .process-intro,
.theme-dark .process-card p { color: #5b716e !important; }
.theme-dark .process-card {
  border-color: rgba(47, 93, 87, 0.17) !important;
  background: #f8faf9 !important;
  box-shadow: 0 14px 32px rgba(36, 73, 68, 0.08) !important;
}
.theme-dark .process-icon {
  border-color: rgba(47, 93, 87, 0.20) !important;
  background: #e7f0ee !important;
  color: #2f5d57 !important;
}
.theme-dark .process-number { color: rgba(47, 93, 87, 0.10) !important; }

/* White craftsmanship section */
.theme-dark .testimonial-accordion-section .sub-title,
.theme-dark .testimonial-accordion-section .main-title { color: #244944 !important; }
.theme-dark .testimonial-accordion-section .spotlight-lede { color: #5b716e !important; }
.theme-dark .testimonial-accordion-section .accordion-item {
  border-color: rgba(47, 93, 87, 0.18) !important;
  background: #f7faf9 !important;
}
.theme-dark .testimonial-accordion-section .accordion-button,
.theme-dark .testimonial-accordion-section .accordion-body {
  color: #244944 !important;
  background: transparent !important;
}
.theme-dark .testimonial-accordion-section .spotlight-more {
  background: #2f5d57 !important;
  color: #ffffff !important;
}

/* White client-stories section */
.theme-dark .reviews-section .sub-title,
.theme-dark .reviews-section .main-title,
.theme-dark .reviews-section .review-author,
.theme-dark .reviews-section .testimonial-statement p { color: #244944 !important; }
.theme-dark .reviews-section .reviews-intro,
.theme-dark .reviews-section .review-date,
.theme-dark .reviews-section .review-text,
.theme-dark .reviews-section .testimonial-statement span { color: #5b716e !important; }
.theme-dark .reviews-section .review-card,
.theme-dark .reviews-section .testimonial-statement {
  border-color: rgba(47, 93, 87, 0.17) !important;
  background: #f7faf9 !important;
  box-shadow: 0 16px 34px rgba(36, 73, 68, 0.08) !important;
}
.theme-dark .reviews-section .review-avatar {
  border-color: rgba(47, 93, 87, 0.24) !important;
  background: #e7f0ee !important;
  color: #2f5d57 !important;
}

span.post-author-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2f5d57, #547b75);
  color: #f5f2ec;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.post-author-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-light-1);
  margin-bottom: 0.15rem;
}

.post-author-role {
  font-size: 0.8rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.post-author-bio {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.post-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 575.98px) {
  .post-nav { grid-template-columns: 1fr; }
  .post-author-box { flex-direction: column; text-align: center; }
}

.post-nav-link {
  display: block;
  padding: 1.25rem 1.4rem;
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: var(--transition-fast);
}

.post-nav-link:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.post-nav-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.4rem;
}

.post-nav-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-light-1);
  line-height: 1.45;
}

.post-nav-link.is-next { text-align: right; }

/* --- Sticky sidebar on the article pages --- */
@media (min-width: 992px) {
  .post-sidebar-sticky {
    position: sticky;
    top: 110px;
  }
}

/* ==========================================================================
   18. Dedicated Contact Us Page Styling
   ========================================================================== */
.contact-hero-page {
  position: relative;
  margin-bottom: 3.5rem;
  min-height: 380px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.8) 0%, rgba(13, 13, 13, 0.95) 100%), url('../images/hero_bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5.5rem 1rem 3.5rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.contact-hero-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.contact-info-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 2.25rem 1.75rem;
  height: 100%;
  text-align: center;
  transition: var(--transition-fast);
}

.contact-info-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.contact-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(197, 157, 95, 0.15) 0%, rgba(197, 157, 95, 0.05) 100%);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-gold);
  margin: 0 auto 1.25rem auto;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-light-1);
  margin-bottom: 0.75rem;
}

.contact-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-form-wrapper {
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(34, 34, 34, 0.9) 100%);
  border: 1px solid var(--color-gold);
  border-radius: 18px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  filter: grayscale(85%) invert(90%) contrast(120%);
  transition: var(--transition-smooth);
}

.map-container:hover iframe {
  filter: grayscale(0%) invert(0%) contrast(100%);
}

.social-contact-btn {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  color: var(--color-light-1);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.social-contact-btn:hover {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: var(--color-dark-1);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.social-contact-btn i {
  font-size: 1.3rem;
  color: var(--color-gold);
}

.social-contact-btn:hover i {
  color: var(--color-dark-1);
}

/* ==========================================================================
   19. Dedicated Projects Portfolio Page Styling
   ========================================================================== */
.projects-hero-page {
  position: relative;
  margin-bottom: 3.5rem;
  min-height: 380px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.8) 0%, rgba(13, 13, 13, 0.95) 100%), url('../images/hero_bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5.5rem 1rem 3.5rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.projects-hero-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.project-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.project-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.project-img-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.project-card:hover .project-img-wrapper img {
  transform: scale(1.08);
}

.project-status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}

.project-status-completed {
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid #28a745;
  color: #28a745;
}

.project-status-ongoing {
  background: rgba(255, 193, 7, 0.2);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
}

.project-category-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(13, 13, 13, 0.85);
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
}

.project-body,
.project-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-light-1);
  margin-bottom: 0.5rem;
  transition: var(--transition-fast);
}

.project-card:hover .project-title {
  color: var(--color-gold);
}

.project-location {
  font-size: 0.85rem;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.project-specs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.project-spec-item {
  background: var(--color-dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 6px;
}

.project-spec-item i {
  color: var(--color-gold);
  margin-right: 4px;
}

/* ==========================================================================
   20. Dedicated Architecture Page Styling
   ========================================================================== */
.arch-hero-page {
  position: relative;
  margin-bottom: 3.5rem;
  min-height: 380px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.8) 0%, rgba(13, 13, 13, 0.95) 100%), url('../images/arch_facade.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5.5rem 1rem 3.5rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.arch-hero-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.arch-service-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  height: 100%;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
  position: relative;
}

.arch-service-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.arch-icon-box {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, rgba(197, 157, 95, 0.15) 0%, rgba(197, 157, 95, 0.05) 100%);
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.arch-process-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  height: 100%;
  position: relative;
  transition: var(--transition-fast);
}

.arch-process-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.arch-step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
}

.arch-blueprint-box {
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(34, 34, 34, 0.9) 100%);
  border: 1px solid var(--color-gold);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   21. Dedicated Residential Interiors Page Styling
   ========================================================================== */
.res-hero-page {
  position: relative;
  margin-bottom: 3.5rem;
  min-height: 380px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.8) 0%, rgba(13, 13, 13, 0.95) 100%), url('../images/res_living.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5.5rem 1rem 3.5rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.res-hero-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.res-room-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.res-room-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.res-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.res-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.res-room-card:hover .res-img-wrapper img {
  transform: scale(1.08);
}

.res-room-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.res-room-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-light-1);
  margin-bottom: 0.75rem;
}

.res-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.res-feature-list li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.res-feature-list li i {
  color: var(--color-gold);
  font-size: 0.8rem;
}

.res-spec-box {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-fast);
}

.res-spec-box:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

/* ==========================================================================
   22. Dedicated Commercial Interiors Page Styling
   ========================================================================== */
.com-hero-page {
  position: relative;
  margin-bottom: 3.5rem;
  min-height: 380px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.8) 0%, rgba(13, 13, 13, 0.95) 100%), url('../images/arch_facade.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5.5rem 1rem 3.5rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.com-hero-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.com-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.com-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.com-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.com-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.com-card:hover .com-img-wrapper img {
  transform: scale(1.08);
}

.com-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.com-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-light-1);
  margin-bottom: 0.75rem;
}

.com-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.com-feature-list li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.com-feature-list li i {
  color: var(--color-gold);
  font-size: 0.8rem;
}

.com-spec-box {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-fast);
}

.com-spec-box:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

/* ==========================================================================
   23. Dedicated Turnkey Interiors Page Styling
   ========================================================================== */
.turnkey-hero-page {
  position: relative;
  margin-bottom: 3.5rem;
  min-height: 380px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.8) 0%, rgba(13, 13, 13, 0.95) 100%), url('../images/proj_3bhk.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5.5rem 1rem 3.5rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.turnkey-hero-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Matches .const-card / .renov-card so the service pages share one card look */
.turnkey-phase-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.turnkey-phase-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.turnkey-phase-num {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.turnkey-phase-card h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.turnkey-phase-card p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

#turnkey-overview .row.g-4 > [class*='col-'] {
  display: flex;
}

/* Reserve two title lines so the body copy lines up across the grid */
@media (min-width: 768px) {
  #turnkey-overview .turnkey-phase-card > h4 {
    min-height: 3.5rem;
  }
}

.turnkey-guarantee-box {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition-fast);
}

.turnkey-guarantee-box:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

/* ==========================================================================
   24. Dedicated Construction Page Styling
   ========================================================================== */
.const-hero-page {
  position: relative;
  margin-bottom: 3.5rem;
  min-height: 380px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.8) 0%, rgba(13, 13, 13, 0.95) 100%), url('../images/arch_blueprint.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5.5rem 1rem 3.5rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.const-hero-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.const-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}

/* Image variant supplies its own padding via .const-card-body */
.const-card:has(.const-img-wrapper) {
  padding: 0;
}

#const-overview .row.g-4 > [class*='col-'] {
  display: flex;
}

/* Reserve two title lines so the body copy lines up across the grid */
@media (min-width: 768px) {
  #const-overview .const-card > h4 {
    min-height: 3.7rem;
  }
}

.const-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.const-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.const-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.const-card:hover .const-img-wrapper img {
  transform: scale(1.08);
}

.const-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.const-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-light-1);
  margin-bottom: 0.75rem;
}

.const-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.const-feature-list li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.const-feature-list li i {
  color: var(--color-gold);
  font-size: 0.8rem;
}

.const-spec-box {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-fast);
}

.const-spec-box:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

/* ==========================================================================
   25. Dedicated Luxury Renovations Page Styling
   ========================================================================== */
.renov-hero-page {
  position: relative;
  margin-bottom: 3.5rem;
  min-height: 380px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.8) 0%, rgba(13, 13, 13, 0.95) 100%), url('../images/res_living.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5.5rem 1rem 3.5rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.renov-hero-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.renov-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}

/* Image variant supplies its own padding via .renov-card-body */
.renov-card:has(.renov-img-wrapper) {
  padding: 0;
}

.renov-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.renov-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.renov-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.renov-card:hover .renov-img-wrapper img {
  transform: scale(1.08);
}

.renov-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.renov-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-light-1);
  margin-bottom: 0.75rem;
}

.renov-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.renov-feature-list li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.renov-feature-list li i {
  color: var(--color-gold);
  font-size: 0.8rem;
}

.renov-spec-box {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-fast);
}

.renov-spec-box:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}











.project-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(22, 22, 22, 0.85);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}

/* ==========================================================================
   WhatsApp Quick Action - shown at every width, including desktop
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: var(--transition-fast);
}

.wa-float:hover,
.wa-float:focus {
  color: #ffffff;
  transform: translateY(-3px);
}

/* ==========================================================================
   Call Quick Action - right-hand counterpart of .wa-float, stacked above it
   so both sit together in the same corner at every width
   ========================================================================== */
.call-float {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 1000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: var(--transition-fast);
}

.call-float:hover,
.call-float:focus {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
  color: #000000;
  transform: translateY(-3px);
}

/* ==========================================================================
   Small-screen overflow guard
   A `.row.g-5` placed directly inside `.container` pulls -24px on each side,
   which is more than the container's 12px padding - that pushed the page
   wider than the viewport on phones. Match the gutter to the padding.
   ========================================================================== */
@media (max-width: 767.98px) {
  .container > .row.g-5 {
    --bs-gutter-x: 1.5rem;
  }
}

/* ==========================================================================
   Beach White Theme  (`body.theme-beach` - applied to every page)
   Flips the content sections from the dark palette to a warm off-white
   ("beach white") canvas. The gold accents stay; the page hero banners and the
   newsletter CTA stay dark as contrast anchors, while the top bar, sticky
   header and footer share the light treatment. Only rules that would
   otherwise leave light-on-light (or
   dark-on-dark) text are overridden here - everything else keeps inheriting
   the base stylesheet, so removing the body class restores the dark theme.
   ========================================================================== */
body, body.theme-dark, body.theme-beach {
  --beach-bg: #080c14;          /* main deep obsidian canvas */
  --beach-bg-alt: #0e1424;      /* alternating band */
  --beach-surface: #131b2e;     /* cards */
  --beach-surface-alt: #1a233b; /* card hover */
  --beach-ink: #ffffff;         /* headings / body text */
  --beach-ink-soft: rgba(255, 255, 255, 0.88);
  --beach-ink-muted: rgba(255, 255, 255, 0.68);
  --beach-line: rgba(212, 175, 55, 0.18);
  --gold-ink: #d4af37;          /* gold for headings/accents */
  --gold-ink-strong: #f3e5ab;   /* bright gold for text */

  --color-border: rgba(212, 175, 55, 0.22);
  --color-text-muted: rgba(255, 255, 255, 0.75);

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 10px 26px rgba(212, 175, 55, 0.25);

  background-color: var(--color-dark-1);
  color: #ffffff;
}

/* Base typography */
.theme-beach p { color: var(--beach-ink-soft); }
.theme-beach .text-muted { color: var(--beach-ink-muted) !important; }
.theme-beach .main-title,
.theme-beach .feature-title,
.theme-beach .service-title,
.theme-beach .process-title,
.theme-beach .spotlight-name,
.theme-beach .review-author { color: var(--beach-ink); }
.theme-beach .sub-title,
.theme-beach .text-gold,
.theme-beach .service-btn-link,
.theme-beach .spotlight-role,
.theme-beach .google-score,
.theme-beach .about-highlight { color: var(--beach-ink-muted) !important; }
.theme-beach .service-btn-link:hover { color: var(--color-gold-dark) !important; }

/* Scrollbar track follows the canvas - shares the token, so it cannot drift */
html:has(body.theme-beach) ::-webkit-scrollbar-track { background: var(--beach-canvas); }

/* Bootstrap colour utilities used across the pages */
.theme-beach .text-white { color: #ffffff !important; }
.theme-beach .text-white-50 { color: rgba(255, 255, 255, 0.65) !important; }
/* `.bg-dark-2` is used as an alternating band wrapper on the inner pages */
.theme-beach .bg-dark-2 { background: var(--color-dark-2) !important; }

/* --- Zones that deliberately stay dark ----------------------------------
   Every page hero banner and the photo-backed newsletter CTA keep the dark
   treatment, so any light text inside them has to be re-asserted after the
   flips above.
   ----------------------------------------------------------------------- */
.theme-beach :is(.hero-section,
                 .newsletter-cta-box,
                 .about-hero-page,
                 .blog-hero-page,
                 .contact-hero-page,
                 .projects-hero-page,
                 .arch-hero-page,
                 .res-hero-page,
                 .com-hero-page,
                 .turnkey-hero-page,
                 .const-hero-page,
                 .renov-hero-page) p { color: rgba(255, 255, 255, 0.85); }

.theme-beach :is(.hero-section,
                 .newsletter-cta-box,
                 .about-hero-page,
                 .blog-hero-page,
                 .contact-hero-page,
                 .projects-hero-page,
                 .arch-hero-page,
                 .res-hero-page,
                 .com-hero-page,
                 .turnkey-hero-page,
                 .const-hero-page,
                 .renov-hero-page) .text-white { color: #ffffff !important; }

.theme-beach :is(.hero-section,
                 .newsletter-cta-box,
                 .about-hero-page,
                 .blog-hero-page,
                 .contact-hero-page,
                 .projects-hero-page,
                 .arch-hero-page,
                 .res-hero-page,
                 .com-hero-page,
                 .turnkey-hero-page,
                 .const-hero-page,
                 .renov-hero-page) .text-white-50 { color: rgba(255, 255, 255, 0.5) !important; }

.theme-beach :is(.hero-section,
                 .newsletter-cta-box,
                 .about-hero-page,
                 .blog-hero-page,
                 .contact-hero-page,
                 .projects-hero-page,
                 .arch-hero-page,
                 .res-hero-page,
                 .com-hero-page,
                 .turnkey-hero-page,
                 .const-hero-page,
                 .renov-hero-page) .text-muted { color: rgba(255, 255, 255, 0.75) !important; }

.theme-beach :is(.hero-section,
                 .newsletter-cta-box,
                 .about-hero-page,
                 .blog-hero-page,
                 .contact-hero-page,
                 .projects-hero-page,
                 .arch-hero-page,
                 .res-hero-page,
                 .com-hero-page,
                 .turnkey-hero-page,
                 .const-hero-page,
                 .renov-hero-page) :is(.text-gold, .sub-title) { color: var(--color-gold) !important; }

.theme-beach :is(.hero-section,
                 .newsletter-cta-box,
                 .about-hero-page,
                 .blog-hero-page,
                 .contact-hero-page,
                 .projects-hero-page,
                 .arch-hero-page,
                 .res-hero-page,
                 .com-hero-page,
                 .turnkey-hero-page,
                 .const-hero-page,
                 .renov-hero-page) .text-gold-light { color: var(--color-gold-light) !important; }

.theme-beach .hero-desc { color: rgba(255, 255, 255, 0.9); }

/* The pale `--color-gold-light` is only legible on the dark banners (re-asserted
   above). Everywhere else it lands on the beach canvas, so lead paragraphs get
   the deeper gold that still clears contrast at body size. */
.theme-beach .text-gold-light { color: var(--gold-ink-strong) !important; }

/* --- 15. Footer: same light treatment as the sticky header ---------------- */
.theme-beach .main-footer {
  background: var(--beach-bg-alt);
  border-top-color: var(--color-border);
  color: var(--beach-ink-soft);
}

.theme-beach .main-footer p { color: var(--beach-ink-soft); }
.theme-beach .main-footer .text-muted { color: var(--beach-ink-muted) !important; }
.theme-beach .footer-widget-title { color: var(--beach-ink); }
.theme-beach .footer-links a:hover { color: var(--gold-ink); }
.theme-beach .main-footer .text-gold { color: var(--gold-ink) !important; }

.theme-beach .social-btn {
  background: var(--beach-surface);
  border-color: var(--color-border);
  color: var(--gold-ink);
}

.theme-beach .social-btn:hover {
  background: var(--color-gold);
  color: var(--color-dark-1);
}

.theme-beach .footer-bottom {
  border-top-color: var(--beach-line);
  color: var(--beach-ink-muted);
}

.theme-beach .footer-sep { color: var(--gold-ink); }

/* --- 1 & 2. Top bar, header, nav and mega menu --------------------------- */
.theme-beach .top-bar {
  background-color: var(--beach-bg-alt);
  border-bottom-color: rgba(36, 31, 25, 0.08);
  color: var(--beach-ink-soft);
}

.theme-beach .top-bar i,
.theme-beach .top-bar-link:hover { color: var(--gold-ink); }

.theme-beach .main-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--color-border);
}

.theme-beach .brand-title { color: var(--beach-ink); }
.theme-beach .brand-subtitle { color: var(--gold-ink); }

.theme-beach .nav-link { color: var(--beach-ink-soft) !important; }
.theme-beach .nav-link:hover,
.theme-beach .nav-link.active { color: var(--gold-ink) !important; }
.theme-beach .nav-link::after { background: var(--gold-ink); }
.theme-beach .navbar-toggler .text-gold { color: var(--gold-ink) !important; }

.theme-beach .dropdown-menu-dark { background-color: var(--beach-surface); }
.theme-beach .dropdown-item { color: var(--beach-ink-soft); }
.theme-beach .dropdown-item:hover { color: var(--gold-ink); }

.theme-beach .mega-menu {
  background: var(--beach-surface);
  border-color: var(--color-border);
}
.theme-beach .mega-item { border-right-color: rgba(36, 31, 25, 0.09); }
.theme-beach .mega-item:last-child { border-right: none; }
.theme-beach .mega-label { color: var(--beach-ink); }
.theme-beach .mega-item:hover .mega-label { color: var(--gold-ink); }

/* --- 4. Consultation CTA banner ----------------------------------------- */
/* No beach override: the banner is a dark slab over a photo by design, and
   stays dark on every theme. */

/* --- 5. Key value highlights -------------------------------------------- */
.theme-beach .value-highlights { background: var(--beach-bg-alt); }
/* The box is transparent in the base sheet; no surface override here, or the
   white card comes back. */
.theme-beach .feature-icon-wrap {
  background: rgba(197, 157, 95, 0.16);
  color: var(--color-gold-dark);
}

/* --- 6. About ------------------------------------------------------------ */
/* Canvas tint, so it reads as a band against the white sections either side. */
.theme-beach .about-section { background: var(--beach-bg); }
/* Brand green rather than the shared heading ink used by the other sections. */
.theme-beach .about-heading { color: var(--brand-green); }
.theme-beach .about-divider { background: var(--gold-ink); }
.theme-beach .about-desc { color: var(--beach-ink-soft); }

/* --- 6b. Design categories ------------------------------------------------ */
/* Always white, independent of the alternating-band token. */
.theme-beach .abode-section { background: #ffffff; }
.theme-beach .abode-icon { color: var(--gold-ink); }
.theme-beach .abode-item:hover .abode-icon { color: var(--color-gold-dark); }
.theme-beach .abode-label { color: var(--beach-ink); }

/* --- 7. Services --------------------------------------------------------- */
.theme-beach .services-section { background: var(--beach-bg); }
.theme-beach .service-card {
  background: var(--beach-surface);
  border-color: var(--beach-line);
}
.theme-beach .service-desc { color: var(--beach-ink-soft); }

/* --- 8. Process ---------------------------------------------------------- */
.theme-beach .process-section { background: #ffffff; }
/* No surface override here - the step is transparent in the base sheet, and
   painting a card back on would undo the medallion layout. */
.theme-beach .process-icon {
  background: rgba(8, 50, 31, 0.09);
  color: var(--brand-green);
}
/* Needed here too - the theme rule above outranks the plain .process-icon-img */
.theme-beach .process-icon-img { background: none; }

/* --- 9. Gallery (overlays stay dark - they sit on photos) ---------------- */
.theme-beach .gallery-section { background: var(--beach-bg-alt); }
.theme-beach .filter-btn {
  background: var(--beach-surface);
  border-color: var(--beach-line);
  color: var(--beach-ink-soft);
}
.theme-beach .filter-btn:hover,
.theme-beach .filter-btn.active {
  background: var(--color-gold);
  color: #1a1a1a;
  border-color: var(--color-gold);
}

/* --- 10. Spotlight & accordion ------------------------------------------ */
.theme-beach .testimonial-accordion-section { background: var(--beach-bg); }
.theme-beach .testimonial-accordion-section .main-title { color: var(--beach-ink); }
.theme-beach .spotlight-lede { color: var(--gold-ink-strong); }
.theme-beach .spotlight-card { background: var(--beach-surface); }
.theme-beach .spotlight-quote { color: var(--beach-ink-soft); }
.theme-beach .custom-accordion .accordion-item {
  background: var(--beach-surface);
  border-color: var(--beach-line);
}
.theme-beach .custom-accordion .accordion-button {
  background: var(--beach-surface);
  color: var(--beach-ink);
}
.theme-beach .custom-accordion .accordion-button:not(.collapsed) {
  background: rgba(197, 157, 95, 0.14);
  color: var(--gold-ink);
}
.theme-beach .custom-accordion .accordion-button::after { filter: none; }
.theme-beach .custom-accordion .accordion-body { color: var(--beach-ink-soft); }

/* --- 11. Video showcase (cards sit on video, captions stay dark) --------- */
.theme-beach .video-section { background: var(--beach-bg-alt); }

/* --- 12. Google reviews -------------------------------------------------- */
.theme-beach .reviews-section { background: var(--beach-bg); }
.theme-beach .google-badge-box { background: var(--beach-surface); }
.theme-beach .review-card { background: var(--beach-surface); }
.theme-beach .review-text { color: var(--beach-ink-soft); }
.theme-beach .review-avatar,
.theme-beach .review-avatar.text-gold { color: var(--gold-ink) !important; }
.theme-beach .reviews-pagination .swiper-pagination-bullet {
  background: rgba(36, 31, 25, 0.22) !important;
}

/* --- 13. Brand partners -------------------------------------------------- */
.theme-beach .brand-partners-section {
  background: var(--beach-bg-alt);
  border-top-color: var(--beach-line);
}
.theme-beach .brand-logo-item {
  background: var(--beach-surface);
  border-color: var(--beach-line);
}
.theme-beach .brand-logo-item img {
  filter: grayscale(100%);
  opacity: 0.7;
}

/* The pale badge inside the dark newsletter box needs the ink gold back */
.theme-beach .newsletter-cta-box .badge.text-gold { color: var(--gold-ink) !important; }

/* The CTA banner panel stays dark, so its copy stays light */
.theme-beach .cta-banner-sub { color: rgba(255, 255, 255, 0.85); }
.theme-beach .cta-banner-title { color: var(--color-light-1); }

/* --- 14. Quote modal, forms & floating widgets -------------------------- */
.theme-beach .modal-content-dark {
  background: var(--beach-surface);
  color: var(--beach-ink);
}
.theme-beach .modal-header-dark { border-bottom-color: var(--beach-line); }
.theme-beach .modal-title-dark { color: var(--gold-ink); }
.theme-beach .btn-close-white { filter: none; }

.theme-beach .form-control-dark,
.theme-beach .form-control-dark.bg-dark {
  background: var(--beach-surface) !important;
  border-color: rgba(36, 31, 25, 0.16) !important;
  color: var(--beach-ink) !important;
}
.theme-beach .form-control-dark:focus {
  border-color: var(--color-gold) !important;
  box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.18) !important;
}
.theme-beach .form-control-dark::placeholder { color: rgba(36, 31, 25, 0.45) !important; }

.theme-beach .floating-tab {
  background: var(--beach-surface);
  color: var(--beach-ink);
}
.theme-beach .floating-tab:hover { color: #1a1a1a; }

/* --- 16. About Us page --------------------------------------------------- */
.theme-beach .counter-card,
.theme-beach .vm-card,
.theme-beach .team-card,
.theme-beach .why-card,
.theme-beach .partner-logo-item { background: var(--beach-surface); }
.theme-beach .association-card,
.theme-beach .team-showcase-banner {
  background: linear-gradient(135deg, #ffffff 0%, var(--beach-surface-alt) 100%);
}
.theme-beach .association-logo-box { background: rgba(197, 157, 95, 0.08); }
.theme-beach .experience-badge {
  background: linear-gradient(135deg, #ffffff 0%, var(--beach-surface-alt) 100%);
}
.theme-beach .experience-badge .badge-text,
.theme-beach .why-title,
.theme-beach .team-name { color: var(--beach-ink); }
.theme-beach .why-desc,
.theme-beach .counter-label { color: var(--beach-ink-muted); }
.theme-beach .team-title { color: var(--gold-ink); }
.theme-beach .team-social a { background: var(--beach-surface-alt); }
.theme-beach .team-social a:hover { color: #1a1a1a; }
/* Gradient numerals: darken the top stop so they read on white */
.theme-beach .why-num,
.theme-beach .arch-step-num {
  background: linear-gradient(135deg, var(--color-gold) 0%, #7a5720 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.theme-beach .counter-num,
.theme-beach .partner-logo-item { color: var(--gold-ink); }
.theme-beach .partner-logo-item:hover { background: var(--beach-surface-alt); }

/* --- 17. Blog page ------------------------------------------------------- */
.theme-beach .category-pill,
.theme-beach .featured-blog-card,
.theme-beach .blog-card,
.theme-beach .sidebar-widget,
.theme-beach .pagination-custom .page-link { background: var(--beach-surface); }
.theme-beach .category-pill,
.theme-beach .blog-card-title,
.theme-beach .widget-title,
.theme-beach .recent-post-title,
.theme-beach .author-name,
.theme-beach .pagination-custom .page-link { color: var(--beach-ink); }
/* The theme surface rule above outranks the base .category-pill.active gradient,
   so the selected state has to be repainted here or it reads as unselected. */
.theme-beach .category-pill:hover,
.theme-beach .category-pill.active,
.theme-beach .pagination-custom .page-link:hover,
.theme-beach .pagination-custom .page-item.active .page-link {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  border-color: var(--color-gold);
  color: #1a1a1a;
}
.theme-beach .blog-card:hover .blog-card-title,
.theme-beach .recent-post-title:hover { color: var(--gold-ink); }
.theme-beach .blog-meta,
.theme-beach .blog-card-excerpt,
.theme-beach .widget-category-list a,
.theme-beach .tag-pill { color: var(--beach-ink-muted); }
.theme-beach .widget-category-list a:hover { color: var(--gold-ink); }
.theme-beach .blog-card-footer { border-top-color: var(--beach-line); }
.theme-beach .widget-category-list .badge-count,
.theme-beach .tag-pill { background: var(--beach-surface-alt); }
.theme-beach .widget-category-list .badge-count { color: var(--gold-ink); }
.theme-beach .tag-pill:hover { background: var(--color-gold); color: #1a1a1a; }
.theme-beach .btn-read-more { color: var(--gold-ink); }
.theme-beach .btn-read-more:hover { color: var(--color-gold-dark); }
.theme-beach .blog-empty-state { border-color: var(--beach-line); color: var(--beach-ink-muted); }

/* --- 17b. Single article page ------------------------------------------- */
.theme-beach .post-article,
.theme-beach .post-nav-link { background: var(--beach-surface); }
/* The tinted blocks inside the article - callout, quote, TOC, table head,
   caption strip, author box - all share the warm off-white. */
.theme-beach .post-toc,
.theme-beach .post-quote,
.theme-beach .post-callout,
.theme-beach .post-author-box,
.theme-beach .post-share-btn,
.theme-beach .post-figure figcaption,
.theme-beach .post-table th { background: var(--beach-surface-alt); }
.theme-beach .post-article,
.theme-beach .post-nav-link,
.theme-beach .post-toc,
.theme-beach .post-callout,
.theme-beach .post-author-box,
.theme-beach .post-share-btn,
.theme-beach .post-figure,
.theme-beach .post-table-wrap { border-color: var(--beach-line); }
.theme-beach .post-body h2 { border-bottom-color: var(--beach-line); }
.theme-beach .post-figure figcaption,
.theme-beach .post-table th,
.theme-beach .post-table td { border-top-color: var(--beach-line); border-bottom-color: var(--beach-line); }
.theme-beach .post-footer-bar { border-top-color: var(--beach-line); }
.theme-beach .post-lede,
.theme-beach .post-quote,
.theme-beach .post-body h2,
.theme-beach .post-toc a,
.theme-beach .post-nav-title,
.theme-beach .post-author-name,
.theme-beach .post-share-btn,
.theme-beach .post-body strong { color: var(--beach-ink); }
.theme-beach .post-body p,
.theme-beach .post-body ul,
.theme-beach .post-body ol,
.theme-beach .post-toc ol,
.theme-beach .post-table td,
.theme-beach .post-figure figcaption,
.theme-beach .post-share,
.theme-beach .post-author-bio { color: var(--beach-ink-soft); }
.theme-beach .post-body h3,
.theme-beach .post-body a,
.theme-beach .post-callout-title,
.theme-beach .post-toc-title,
.theme-beach .post-nav-label,
.theme-beach .post-author-role,
.theme-beach .post-table th { color: var(--gold-ink); }
.theme-beach .post-body a:hover,
.theme-beach .post-toc a:hover { color: var(--color-gold-dark); }
.theme-beach .post-share-btn:hover { color: #1a1a1a; }

/* --- 18. Contact page ---------------------------------------------------- */
.theme-beach .contact-info-card,
.theme-beach .social-contact-btn { background: var(--beach-surface); }
.theme-beach .contact-card-title,
.theme-beach .social-contact-btn { color: var(--beach-ink); }
.theme-beach .social-contact-btn:hover { color: #1a1a1a; }
.theme-beach .contact-card-desc { color: var(--beach-ink-muted); }
.theme-beach .contact-form-wrapper,
.theme-beach .arch-blueprint-box {
  background: linear-gradient(135deg, #ffffff 0%, var(--beach-surface-alt) 100%);
}
/* the base filter inverts the map for the dark theme - not needed on light */
.theme-beach .map-container iframe { filter: grayscale(25%); }
.theme-beach .map-container:hover iframe { filter: grayscale(0%); }

/* --- 19. Projects page --------------------------------------------------- */
.theme-beach .project-card { background: var(--beach-surface); }
.theme-beach .project-title { color: var(--beach-ink); }
.theme-beach .project-card:hover .project-title { color: var(--gold-ink); }
.theme-beach .project-location { color: var(--gold-ink); }
.theme-beach .project-desc { color: var(--beach-ink-muted); }
.theme-beach .project-spec-item {
  background: var(--beach-surface-alt);
  border-color: var(--beach-line);
  color: var(--beach-ink-muted);
}

/* --- 20-25. Service pages (architecture, residential, commercial,
   turnkey, construction, renovations) ------------------------------------ */
.theme-beach .arch-service-card,
.theme-beach .arch-process-card,
.theme-beach .res-room-card,
.theme-beach .res-spec-box,
.theme-beach .com-card,
.theme-beach .com-spec-box,
.theme-beach .turnkey-phase-card,
.theme-beach .turnkey-guarantee-box,
.theme-beach .const-card,
.theme-beach .const-spec-box,
.theme-beach .renov-card,
.theme-beach .renov-spec-box { background: var(--beach-surface); }
.theme-beach .turnkey-phase-card p { color: var(--beach-ink-muted); }
.theme-beach .turnkey-phase-num { color: var(--gold-ink); }
.theme-beach .res-room-title,
.theme-beach .com-card-title,
.theme-beach .const-card-title,
.theme-beach .renov-card-title { color: var(--beach-ink); }
.theme-beach .res-feature-list li,
.theme-beach .com-feature-list li,
.theme-beach .const-feature-list li,
.theme-beach .renov-feature-list li { color: var(--beach-ink-muted); }

/* ==========================================================================
   Cloud Interior - Luxury Master Design Overhaul
   ========================================================================== */

/* 1. Header & Navigation Refinements */
.main-header {
  background: rgba(10, 15, 29, 0.88) !important;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  transition: all 0.4s ease;
}

.brand-logo {
  height: 54px !important;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.03);
}

.navbar-nav .nav-link {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.5rem 1.1rem !important;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-gold) !important;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.btn-header-cta {
  background: linear-gradient(135deg, #d4af37 0%, #a38226 100%) !important;
  color: #0b0f19 !important;
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.65rem 1.6rem;
  border-radius: 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35) !important;
  transition: all 0.3s ease;
}

.btn-header-cta:hover {
  background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 100%) !important;
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.55) !important;
}

/* 2. Hero Section Enhancements */
.hero-section {
  position: relative;
  background-color: #0a0f1d;
}

.hero-overlay {
  background: radial-gradient(circle at center, rgba(10, 15, 29, 0.3) 0%, rgba(10, 15, 29, 0.88) 85%) !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50px;
  color: var(--color-gold-light);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  font-size: clamp(2.4rem, 5vw, 4.2rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.5px !important;
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-title span {
  background: linear-gradient(135deg, #ffffff 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 650px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* 3. Luxury Cards & Interactive Components */
.why-card,
.service-card,
.project-card,
.package-card,
.blog-post-card {
  background: linear-gradient(145deg, rgba(18, 24, 39, 0.95) 0%, rgba(10, 15, 29, 0.95) 100%) !important;
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.why-card:hover,
.service-card:hover,
.project-card:hover,
.package-card:hover,
.blog-post-card:hover {
  border-color: rgba(212, 175, 55, 0.5) !important;
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.18) !important;
}

/* 4. Gold Action Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%) !important;
  color: #0b0f19 !important;
  font-family: var(--font-accent) !important;
  font-weight: 700 !important;
  letter-spacing: 0.7px !important;
  text-transform: uppercase !important;
  border-radius: 8px !important;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3) !important;
  transition: all 0.3s ease !important;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5) !important;
  color: #000000 !important;
}

.btn-gold-outline {
  border-color: var(--color-gold) !important;
  color: var(--color-gold) !important;
  font-family: var(--font-accent) !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
}

.btn-gold-outline:hover {
  background: var(--color-gold) !important;
  color: #0b0f19 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35) !important;
}

/* 5. Floating Action Buttons */
.wa-float,
.call-float {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

.wa-float {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
}

.call-float {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #0b0f19;
}

.wa-float:hover,
.call-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* 6. Footer Master Styling */
footer {
  background: #070a14 !important;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-brand-logo {
  height: 52px !important;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

/* 7. Section Titles & Dividers */
.main-title {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: -0.5px;
}

.sub-title {
  font-family: var(--font-accent) !important;
  letter-spacing: 3.5px !important;
  font-weight: 700 !important;
  color: var(--color-gold) !important;
}

.gold-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent) !important;
}

/* Construction remains available as a page, but is intentionally omitted
   from the Services navigation menu. */
.mega-menu-grid > a[href="construction.html"] {
  display: none !important;
}

.mega-menu-grid {
  grid-template-columns: repeat(5, 1fr);
}

/* ========================================================================== 
   Services mega menu — premium card layout
   ========================================================================== */
@media (min-width: 992px) {
  .mega-menu {
    top: calc(100% - 1px);
    padding: 1.25rem 0 1.45rem;
    background:
      radial-gradient(circle at 50% 0%, rgba(197, 157, 95, 0.09), transparent 42%),
      rgba(12, 15, 25, 0.985);
    border: 1px solid rgba(197, 157, 95, 0.2);
    border-top: 1px solid rgba(197, 157, 95, 0.35);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    transform-origin: top center;
    animation: megaMenuReveal 220ms ease-out;
  }

  .mega-menu .container { max-width: 1320px; }

  .mega-menu-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .mega-item {
    position: relative;
    display: grid;
    grid-template-rows: 132px auto;
    gap: 0;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.035);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
  }

  .mega-item::after {
    content: '\2192';
    position: absolute;
    right: 1rem;
    bottom: 0.82rem;
    color: var(--color-gold);
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .mega-icon {
    position: relative;
    width: 100%;
    height: 132px;
    border: 0;
    border-radius: 0;
    background: #151923;
  }

  .mega-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 10, 17, 0.38), transparent 65%);
    pointer-events: none;
  }

  .mega-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86) contrast(1.03);
  }

  .mega-label {
    display: block;
    padding: 1rem 2.5rem 1rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-accent);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.075em;
  }

  .mega-item:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 157, 95, 0.6) !important;
    background: rgba(197, 157, 95, 0.09);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
  }

  .mega-item:hover .mega-icon {
    transform: none;
    border-color: transparent;
    box-shadow: none;
  }

  .mega-item:hover .mega-icon img { transform: scale(1.065); }
  .mega-item:hover .mega-label { color: #e6c66b; }
  .mega-item:hover::after { opacity: 1; transform: translateX(0); }
}

@keyframes megaMenuReveal {
  from { opacity: 0; transform: translateY(-8px) scaleY(0.98); }
  to { opacity: 1; transform: translateY(0) scaleY(1); }
}

@media (max-width: 991.98px) {
  .mega-menu {
    margin: 0.25rem 0 0.65rem;
    padding: 0.7rem;
    border: 1px solid rgba(197, 157, 95, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
  }

  .mega-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .mega-item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.7rem;
    min-width: 0;
    padding: 0.55rem;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.025);
  }

  .mega-icon {
    width: 48px;
    height: 48px;
    border-width: 1px;
    border-radius: 8px;
  }

  .mega-label {
    min-width: 0;
    font-size: 0.67rem;
    line-height: 1.25;
    letter-spacing: 0.055em;
  }
}

@media (max-width: 420px) {
  .mega-menu-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .mega-menu { animation: none; }
  .mega-item, .mega-icon img, .mega-item::after { transition: none; }
}

/* ========================================================================== 
   Cloud Interior signature brown theme — primary #602B00
   ========================================================================== */
:root {
  --brand-green: #602b00;
  --beach-canvas: #2a1100;
  --color-dark-1: #2a1100;
  --color-dark-2: #401b00;
  --color-dark-3: #602b00;
  --color-dark-4: #793d0c;
  --color-gold: #e1b75d;
  --color-gold-light: #f8e7bd;
  --color-gold-dark: #b88832;
  --color-gold-glow: rgba(225, 183, 93, 0.34);
  --color-light-1: #fffaf2;
  --color-light-2: #f8ead8;
  --color-text-muted: rgba(255, 247, 235, 0.86);
  --color-border: rgba(225, 183, 93, 0.24);
}

body.theme-dark,
.theme-dark .about-section,
.theme-dark .services-section,
.theme-dark .projects-section,
.theme-dark .testimonials-section,
.theme-dark .process-section,
.theme-dark .blog-section {
  background-color: #2a1100;
}

.theme-dark .top-bar {
  background: #1c0a00 !important;
  border-bottom-color: rgba(225, 183, 93, 0.18) !important;
}

.theme-dark .main-header {
  background: rgba(52, 21, 0, 0.96) !important;
  border-bottom-color: rgba(225, 183, 93, 0.24) !important;
}

.theme-dark footer {
  background: #1c0a00 !important;
  border-top-color: rgba(225, 183, 93, 0.26) !important;
}

.theme-dark .mega-menu {
  background:
    radial-gradient(circle at 50% 0%, rgba(225, 183, 93, 0.13), transparent 44%),
    rgba(48, 18, 0, 0.99) !important;
  border-color: rgba(225, 183, 93, 0.28) !important;
}

.theme-dark .mega-item {
  background: rgba(255, 243, 224, 0.045);
  border-color: rgba(255, 235, 205, 0.11) !important;
}

.theme-dark .mega-item:hover {
  background: rgba(225, 183, 93, 0.12);
  border-color: rgba(225, 183, 93, 0.65) !important;
}

.theme-dark .service-card,
.theme-dark .testimonial-card,
.theme-dark .blog-card,
.theme-dark .project-card,
.theme-dark .arch-service-card,
.theme-dark .const-card,
.theme-dark .renov-card,
.theme-dark .feature-card,
.theme-dark .process-card,
.theme-dark .stat-card {
  background-color: #401b00 !important;
  border-color: rgba(225, 183, 93, 0.2) !important;
}

.theme-dark .service-card:hover,
.theme-dark .testimonial-card:hover,
.theme-dark .blog-card:hover,
.theme-dark .project-card:hover,
.theme-dark .arch-service-card:hover,
.theme-dark .feature-card:hover {
  border-color: rgba(225, 183, 93, 0.55) !important;
  box-shadow: 0 18px 38px rgba(29, 10, 0, 0.42) !important;
}

.theme-dark .form-control-dark,
.theme-dark .form-select,
.theme-dark .accordion-item,
.theme-dark .accordion-button,
.theme-dark .modal-content,
.theme-dark .contact-drawer {
  background-color: #401b00 !important;
  border-color: rgba(225, 183, 93, 0.22) !important;
  color: #fffaf2 !important;
}

.theme-dark .btn-header-cta,
.theme-dark .btn-gold {
  background: linear-gradient(135deg, #f0cf83 0%, #c69235 100%) !important;
  color: #351400 !important;
}

.theme-dark .btn-gold-outline {
  border-color: #e1b75d !important;
  color: #fff2d8 !important;
}

.theme-dark .btn-gold-outline:hover {
  background: #e1b75d !important;
  color: #351400 !important;
}

.theme-dark .hero-overlay {
  background: linear-gradient(90deg, rgba(34, 11, 0, 0.9) 0%, rgba(96, 43, 0, 0.47) 54%, rgba(42, 17, 0, 0.2) 100%) !important;
}

.theme-dark ::selection {
  background: #e1b75d;
  color: #351400;
}

@media (max-width: 991.98px) {
  .theme-dark .navbar-collapse {
    background: #351500 !important;
    border-color: rgba(225, 183, 93, 0.22) !important;
  }
}

/* Secondary palette: sophisticated warm grey */
:root {
  --color-gold: #b9b5b0;
  --color-gold-light: #e8e5e1;
  --color-gold-dark: #85807a;
  --color-gold-glow: rgba(185, 181, 176, 0.3);
  --color-border: rgba(185, 181, 176, 0.26);
  --shadow-gold: 0 8px 25px rgba(185, 181, 176, 0.2);
}

.theme-dark .top-bar,
.theme-dark .main-header,
.theme-dark footer,
.theme-dark .mega-menu,
.theme-dark .service-card,
.theme-dark .testimonial-card,
.theme-dark .blog-card,
.theme-dark .project-card,
.theme-dark .arch-service-card,
.theme-dark .const-card,
.theme-dark .renov-card,
.theme-dark .feature-card,
.theme-dark .process-card,
.theme-dark .stat-card,
.theme-dark .form-control-dark,
.theme-dark .form-select,
.theme-dark .accordion-item,
.theme-dark .accordion-button,
.theme-dark .modal-content,
.theme-dark .contact-drawer,
.theme-dark .navbar-collapse {
  border-color: rgba(185, 181, 176, 0.24) !important;
}

.theme-dark .mega-menu {
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 181, 176, 0.12), transparent 44%),
    rgba(48, 18, 0, 0.99) !important;
}

.theme-dark .mega-item:hover,
.theme-dark .service-card:hover,
.theme-dark .testimonial-card:hover,
.theme-dark .blog-card:hover,
.theme-dark .project-card:hover,
.theme-dark .arch-service-card:hover,
.theme-dark .feature-card:hover {
  border-color: rgba(185, 181, 176, 0.68) !important;
}

.theme-dark .mega-item:hover { background: rgba(185, 181, 176, 0.12); }

.theme-dark .btn-header-cta,
.theme-dark .btn-gold {
  background: linear-gradient(135deg, #dedbd7 0%, #9f9a94 100%) !important;
  border-color: #c5c1bc !important;
  color: #351400 !important;
  box-shadow: 0 8px 24px rgba(185, 181, 176, 0.22) !important;
}

.theme-dark .btn-gold-outline {
  border-color: #b9b5b0 !important;
  color: #eeeae6 !important;
}

.theme-dark .btn-gold-outline:hover {
  background: #b9b5b0 !important;
  color: #351400 !important;
}

.theme-dark ::selection {
  background: #b9b5b0;
  color: #351400;
}

/* Cinematic 2BHK hero video */
.hero-section .swiper-slide { overflow: hidden; }

.hero-background-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero-section .hero-overlay { z-index: 1; }
.hero-section .swiper-slide > .container { position: relative; z-index: 2; }

@media (max-width: 767.98px) {
  .hero-background-video { object-position: 58% center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-background-video { display: none; }
}

/* ========================================================================== 
   Editorial three-column mega menu
   ========================================================================== */
@media (min-width: 992px) {
  .theme-dark .mega-menu {
    left: 50% !important;
    right: auto !important;
    width: min(1320px, calc(100vw - 48px)) !important;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(96, 43, 0, 0.18) !important;
    border-radius: 0 0 18px 18px !important;
    background: #f6f4f1 !important;
    box-shadow: 0 28px 70px rgba(42, 17, 0, 0.3) !important;
    transform: translateX(-50%);
  }

  .mega-menu.show { animation: editorialMegaReveal 220ms ease-out both; }
  .mega-menu .container { max-width: none; padding: 0; }

  .mega-menu-grid {
    display: grid !important;
    grid-template-columns: minmax(240px, 0.85fr) minmax(470px, 1.65fr) minmax(260px, 0.95fr) !important;
    gap: 0 !important;
    align-items: stretch;
  }

  .mega-menu-intro,
  .mega-menu-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    padding: 2.15rem 2rem;
    color: #2d2824;
  }

  .mega-menu-intro {
    grid-column: 1;
    grid-row: 1 / span 5;
    background: #e9e6e2;
    border-right: 1px solid #d8d3ce;
  }

  .mega-menu-feature {
    grid-column: 3;
    grid-row: 1 / span 5;
    background: #602b00;
    color: #fffaf2;
    border-left: 1px solid rgba(96, 43, 0, 0.14);
  }

  .mega-menu-kicker {
    margin-bottom: 1.15rem;
    color: #77716b;
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .mega-menu-feature .mega-menu-kicker { color: #c7c2bd; }

  .mega-menu-intro h3,
  .mega-menu-feature h3 {
    margin: 0 0 1rem;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 1.5vw, 1.65rem);
    font-weight: 700;
    line-height: 1.25;
  }

  .mega-menu-intro p,
  .mega-menu-feature p {
    margin-bottom: 1.4rem;
    color: #69635e;
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .mega-menu-feature p { color: rgba(255, 250, 242, 0.76); }

  .mega-menu-intro > a,
  .mega-menu-feature > button {
    margin-top: auto;
    color: #602b00;
    font-family: var(--font-accent);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.03em;
  }

  .mega-menu-intro > a span { margin-left: 0.35rem; }

  .mega-menu-feature > button {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #b9b5b0;
    border-radius: 8px;
    background: #b9b5b0;
    color: #351400;
    text-align: left;
    transition: background 180ms ease, transform 180ms ease;
  }

  .mega-menu-feature > button span { float: right; }
  .mega-menu-feature > button:hover { background: #d7d3ce; transform: translateY(-2px); }

  .mega-menu-grid > .mega-item {
    grid-column: 2;
    display: grid !important;
    grid-template-columns: 66px minmax(0, 1fr) 24px;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 1rem !important;
    min-height: 76px;
    padding: 0.6rem 1.4rem !important;
    overflow: visible;
    border: 0 !important;
    border-bottom: 1px solid #e1ddd9 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .mega-menu-grid > .mega-item:last-of-type { border-bottom: 0 !important; }

  .mega-menu-grid > .mega-item::after {
    content: '→';
    position: static;
    color: #8a847e;
    font-size: 1rem;
    opacity: 1;
    transform: none;
  }

  .mega-menu-grid > .mega-item .mega-icon {
    position: relative;
    width: 66px !important;
    height: 54px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: #e9e6e2;
    box-shadow: none !important;
    transform: none !important;
  }

  .mega-menu-grid > .mega-item .mega-icon::after { display: none; }

  .mega-menu-grid > .mega-item .mega-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(18%) saturate(0.72);
  }

  .mega-menu-grid > .mega-item .mega-label {
    padding: 0;
    color: #28231f;
    font-size: 0.79rem !important;
    font-weight: 650;
    line-height: 1.35;
    letter-spacing: 0.045em;
  }

  .mega-menu-grid > .mega-item:hover { background: #efedeb !important; }
  .mega-menu-grid > .mega-item:hover .mega-label { color: #602b00; }
  .mega-menu-grid > .mega-item:hover .mega-icon img { transform: scale(1.06); }
}

@keyframes editorialMegaReveal {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (max-width: 991.98px) {
  .mega-menu-intro,
  .mega-menu-feature { display: none; }
}

/* Redesigned value proposition cards */
.theme-dark .value-highlights {
  position: relative;
  padding: 5.25rem 0;
  overflow: hidden;
  background: #351500;
}

.theme-dark .value-highlights::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -250px;
  border: 1px solid rgba(185, 181, 176, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(185, 181, 176, 0.025), 0 0 0 140px rgba(185, 181, 176, 0.018);
}

.value-highlights-heading {
  position: relative;
  max-width: 680px;
  margin-bottom: 2.25rem;
}

.value-highlights-heading span {
  display: block;
  margin-bottom: 0.65rem;
  color: #b9b5b0;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.value-highlights-heading h2 {
  margin: 0;
  color: #fffaf2;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.18;
}

.theme-dark .value-highlights .feature-box {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  min-height: 158px;
  padding: 1.5rem;
  text-align: left;
  border: 1px solid rgba(185, 181, 176, 0.16);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.045);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.theme-dark .value-highlights .feature-box::after {
  content: '';
  position: absolute;
  left: 0;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 2px;
  border-radius: 2px;
  background: #b9b5b0;
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 220ms ease, transform 220ms ease;
}

.theme-dark .value-highlights .feature-box:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 181, 176, 0.45);
  background: rgba(255, 250, 242, 0.075);
  box-shadow: 0 18px 36px rgba(23, 8, 0, 0.25);
}

.theme-dark .value-highlights .feature-box:hover::after { opacity: 1; transform: scaleY(1); }

.theme-dark .value-highlights .feature-icon-wrap {
  width: 58px;
  height: 58px;
  margin: 0;
  border: 1px solid rgba(185, 181, 176, 0.28);
  border-radius: 12px;
  background: #602b00;
  color: #d4d0cb;
  font-size: 1.3rem;
}

.theme-dark .value-highlights .feature-box:hover .feature-icon-wrap {
  background: #b9b5b0;
  color: #351400;
  box-shadow: none;
  transform: rotate(-4deg);
}

.theme-dark .value-highlights .feature-title {
  margin: 0.2rem 0 0.45rem;
  color: #fffaf2;
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.025em;
  text-transform: none;
}

.theme-dark .value-highlights .feature-box p {
  margin: 0;
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.78rem;
  line-height: 1.6;
}

@media (max-width: 575.98px) {
  .theme-dark .value-highlights { padding: 4rem 0; }
  .theme-dark .value-highlights .feature-box { min-height: auto; padding: 1.25rem; }
}

/* ========================================================================== 
   Eucalyptus theme — primary #2F5D57 (no black primary surfaces)
   ========================================================================== */
:root {
  --brand-green: #2f5d57;
  --beach-canvas: #244944;
  --color-dark-1: #244944;
  --color-dark-2: #2f5d57;
  --color-dark-3: #3d6f68;
  --color-dark-4: #527f78;
  --color-light-1: #fffdf9;
  --color-light-2: #f0eeea;
  --color-text-muted: rgba(255, 253, 249, 0.84);
  --color-border: rgba(190, 194, 191, 0.3);
}

body.theme-dark,
.theme-dark .about-section,
.theme-dark .services-section,
.theme-dark .projects-section,
.theme-dark .testimonials-section,
.theme-dark .process-section,
.theme-dark .blog-section {
  background-color: #244944;
}

.theme-dark .top-bar { background: #335f59 !important; }

.theme-dark .main-header {
  background: rgba(47, 93, 87, 0.97) !important;
  border-bottom-color: rgba(220, 224, 221, 0.24) !important;
}

.theme-dark footer {
  background: #1f433f !important;
  border-top-color: rgba(220, 224, 221, 0.24) !important;
}

.theme-dark .value-highlights { background: #365f5a !important; }

.theme-dark .value-highlights .feature-icon-wrap,
.theme-dark .mega-menu-feature {
  background: #2f5d57 !important;
}

/* Cloud Approach: light editorial band with eucalyptus typography */
.theme-dark .value-highlights {
  background: #ffffff !important;
}

.theme-dark .value-highlights::before {
  border-color: rgba(47, 93, 87, 0.10);
  box-shadow: 0 0 0 70px rgba(47, 93, 87, 0.035),
              0 0 0 140px rgba(47, 93, 87, 0.02);
}

.theme-dark .value-highlights-heading span,
.theme-dark .value-highlights-heading h2,
.theme-dark .value-highlights .feature-title {
  color: #244944;
}

.theme-dark .value-highlights .feature-box {
  border-color: rgba(47, 93, 87, 0.18);
  background: #f7faf9;
  box-shadow: 0 12px 30px rgba(36, 73, 68, 0.07);
}

.theme-dark .value-highlights .feature-box:hover {
  border-color: rgba(47, 93, 87, 0.42);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(36, 73, 68, 0.13);
}

.theme-dark .value-highlights .feature-box::after {
  background: #2f5d57;
}

.theme-dark .value-highlights .feature-icon-wrap {
  border-color: rgba(47, 93, 87, 0.25);
  background: #e8f0ee !important;
  color: #2f5d57;
}

.theme-dark .value-highlights .feature-box:hover .feature-icon-wrap {
  background: #2f5d57 !important;
  color: #ffffff;
}

.theme-dark .value-highlights .feature-box p {
  color: #52706c;
}

.theme-dark .mega-menu {
  background: #f4f3f0 !important;
  border-color: rgba(47, 93, 87, 0.18) !important;
  box-shadow: 0 28px 70px rgba(25, 62, 58, 0.26) !important;
}

.theme-dark .service-card,
.theme-dark .testimonial-card,
.theme-dark .blog-card,
.theme-dark .project-card,
.theme-dark .arch-service-card,
.theme-dark .const-card,
.theme-dark .renov-card,
.theme-dark .feature-card,
.theme-dark .process-card,
.theme-dark .stat-card,
.theme-dark .form-control-dark,
.theme-dark .form-select,
.theme-dark .accordion-item,
.theme-dark .accordion-button,
.theme-dark .modal-content,
.theme-dark .contact-drawer {
  background-color: #2f5d57 !important;
}

.theme-dark .hero-overlay {
  background: linear-gradient(90deg, rgba(28, 69, 64, 0.92) 0%, rgba(47, 93, 87, 0.54) 54%, rgba(47, 93, 87, 0.18) 100%) !important;
}

.theme-dark .btn-header-cta,
.theme-dark .btn-gold {
  background: linear-gradient(135deg, #e4e5e3 0%, #b6bbb8 100%) !important;
  border-color: #d2d5d3 !important;
  color: #23433f !important;
}

.theme-dark .btn-gold-outline:hover {
  color: #23433f !important;
}

.mega-menu-intro > a,
.mega-menu-grid > .mega-item:hover .mega-label {
  color: #2f5d57 !important;
}

.theme-dark .mega-menu-feature > button {
  color: #23433f !important;
}

.theme-dark ::selection {
  background: #c9cdca;
  color: #23433f;
}

@media (max-width: 991.98px) {
  .theme-dark .navbar-collapse {
    background: #2a534e !important;
    border-color: rgba(220, 224, 221, 0.22) !important;
  }

  .theme-dark .mega-menu { background: rgba(255, 255, 255, 0.055) !important; }
}

/* About section: clearly separated editorial columns */
.theme-dark .about-section {
  padding: 6.5rem 0;
  background: #244944;
}

.about-split-row {
  --bs-gutter-x: clamp(3rem, 7vw, 7rem);
  position: relative;
}

.about-copy-column,
.about-visual-column {
  display: flex;
  align-items: center;
}

.about-copy-column { position: relative; }

.about-copy-column::after {
  content: '';
  position: absolute;
  top: 4%;
  right: calc(var(--bs-gutter-x) * -0.5);
  width: 1px;
  height: 92%;
  background: linear-gradient(to bottom, transparent, rgba(185, 181, 176, 0.42) 18%, rgba(185, 181, 176, 0.42) 82%, transparent);
}

.about-text-content {
  width: 100%;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.about-visual-column .about-carousel-frame {
  width: 100%;
  padding: 0.65rem;
  border: 1px solid rgba(185, 181, 176, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 48px rgba(22, 56, 52, 0.26);
}

.about-visual-column .about-carousel,
.about-visual-column .about-carousel img { border-radius: 12px; }

.theme-dark .abode-section {
  position: relative;
  padding-top: 5.5rem;
  border-top: 1px solid rgba(185, 181, 176, 0.2);
  background: #2f5d57;
}

@media (max-width: 991.98px) {
  .about-split-row { --bs-gutter-x: 1.5rem; }
  .about-copy-column::after { display: none; }
  .about-copy-column,
  .about-visual-column { display: block; }
  .about-text-content {
    padding: 0 0 2.5rem;
    border-bottom: 1px solid rgba(185, 181, 176, 0.24);
  }
  .about-visual-column { margin-top: 2.5rem !important; }
}

/* Typographic CLOUD Interior wordmark */
.main-header .navbar-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.42rem;
  min-width: 205px;
  line-height: 1;
}

.main-header .navbar-brand .brand-logo { display: none !important; }

.main-header .navbar-brand::before {
  content: 'CLOUD';
  color: #fffdf9;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.main-header .navbar-brand::after {
  content: 'Interior';
  color: #d3d5d3;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.main-footer .footer-brand-logo { display: none !important; }

.main-footer .footer-brand-logo + p::before {
  content: 'CLOUD  Interior';
  display: block;
  margin-bottom: 1.35rem;
  color: #fffdf9;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 750;
  letter-spacing: 0.09em;
}

.site-loader__logo { display: none !important; }

.site-loader::after {
  content: 'CLOUD  Interior';
  color: #fffdf9;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  font-weight: 750;
  letter-spacing: 0.12em;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .main-header .navbar-brand { min-width: 168px; gap: 0.28rem; }
  .main-header .navbar-brand::before { font-size: 1.15rem; letter-spacing: 0.11em; }
  .main-header .navbar-brand::after { font-size: 1rem; }
}

@media (max-width: 575.98px) {
  .main-header .navbar-brand { min-width: 0; gap: 0.28rem; }
  .main-header .navbar-brand::before { font-size: 1.08rem; letter-spacing: 0.1em; }
  .main-header .navbar-brand::after { font-size: 0.98rem; }
}

/* Six-stage interior design journey */
.theme-dark .process-section {
  position: relative;
  padding: 6.5rem 0;
  overflow: hidden;
  background: #eef0ed;
}

.theme-dark .process-section::before {
  content: 'PROCESS';
  position: absolute;
  right: -0.04em;
  top: -0.18em;
  color: rgba(47, 93, 87, 0.045);
  font-family: var(--font-heading);
  font-size: clamp(7rem, 18vw, 16rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
  pointer-events: none;
}

.theme-dark .process-section .section-title-wrap { position: relative; max-width: 820px; margin-inline: auto; }
.theme-dark .process-section .main-title { color: #294d48; }
.theme-dark .process-section .sub-title { color: #66736f !important; }

.process-intro {
  max-width: 660px;
  margin: 1.15rem auto 0;
  color: #69726f !important;
  font-size: 0.92rem;
}

.process-grid { position: relative; }

.theme-dark .process-card {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
  height: 100%;
  min-height: 190px;
  padding: 2rem 1.75rem;
  overflow: hidden;
  border: 1px solid #d5dad7 !important;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 12px 30px rgba(38, 73, 68, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.theme-dark .process-card:hover {
  transform: translateY(-6px);
  border-color: #8ca09b !important;
  box-shadow: 0 20px 38px rgba(38, 73, 68, 0.13);
}

.theme-dark .process-icon {
  width: 62px;
  height: 62px;
  margin: 0;
  border: 1px solid rgba(47, 93, 87, 0.18);
  border-radius: 14px;
  background: #dfe7e4;
  color: #2f5d57;
  font-size: 1.35rem;
  box-shadow: none;
}

.theme-dark .process-card:hover .process-icon {
  transform: none;
  background: #2f5d57;
  color: #fff;
  box-shadow: none;
}

.process-number {
  position: absolute;
  right: 1rem;
  top: 0.45rem;
  color: rgba(47, 93, 87, 0.09);
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.theme-dark .process-title {
  position: relative;
  margin: 0.25rem 0 0.55rem;
  color: #294d48;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}

.theme-dark .process-card p {
  position: relative;
  margin: 0;
  color: #6e7673;
  font-size: 0.8rem;
  line-height: 1.65;
}

@media (max-width: 575.98px) {
  .theme-dark .process-section { padding: 4.5rem 0; }
  .theme-dark .process-card { min-height: auto; padding: 1.5rem; grid-template-columns: 54px minmax(0, 1fr); }
  .theme-dark .process-icon { width: 54px; height: 54px; }
}

/* Home Construction is intentionally excluded from all service navigation
   and visible service listings. The standalone file is retained internally. */
a.mega-item[href="construction.html"],
li:has(> a[href="construction.html"]),
#services [class*="col-"]:has(.service-card a[href="construction.html"]) {
  display: none !important;
}

/* Keep the consultation strip on the same eucalyptus surface as adjacent sections. */
.theme-dark .cta-strip {
  background-color: #2f5d57;
  border-color: rgba(185, 181, 176, 0.24);
}

.theme-dark .cta-strip::before {
  background: #2f5d57;
}

.theme-dark .cta-strip-btn {
  background: #b9b5b0;
  border-color: #d0cdca;
  color: #244944;
}

.theme-dark .cta-strip-btn:hover,
.theme-dark .cta-strip-btn:focus {
  background: #e2dfdc;
  border-color: #e2dfdc;
  color: #244944;
}

@media (max-width: 767.98px) {
  .theme-dark .cta-strip::before {
    background: rgba(47, 93, 87, 0.9);
  }
}

/* Independence Day offer marquee */
.offer-marquee {
  position: relative;
  flex: 1 1 360px;
  min-width: 180px;
  max-width: 560px;
  margin: 0 1.5rem;
  overflow: hidden;
  color: #fffdf9;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.075em;
  white-space: nowrap;
}

.offer-marquee::before,
.offer-marquee::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 28px;
  pointer-events: none;
}

.offer-marquee::before { left: 0; background: linear-gradient(90deg, #335f59, transparent); }
.offer-marquee::after { right: 0; background: linear-gradient(-90deg, #335f59, transparent); }

.offer-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
  animation: offerMarquee 22s linear infinite;
}

.offer-marquee-track span { color: #d6d8d6; }
.offer-marquee-track strong { color: #fff; font-weight: 750; }
.offer-marquee:hover .offer-marquee-track { animation-play-state: paused; }

@keyframes offerMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 991.98px) {
  .offer-marquee { max-width: 420px; margin-inline: 0.8rem; }
}

@media (max-width: 767.98px) {
  .top-bar .container { flex-wrap: nowrap !important; }
  .top-bar .top-bar-item:first-child { display: none; }
  .offer-marquee { flex-basis: auto; max-width: none; margin: 0 0.75rem 0 0; }
  .top-bar .top-bar-item:last-child .top-bar-social { display: none; }
}

@media (max-width: 480px) {
  .top-bar .top-bar-item:last-child { display: none; }
  .offer-marquee { width: 100%; margin: 0; font-size: 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  .offer-marquee-track { animation: none; }
  .offer-marquee { text-align: center; text-overflow: ellipsis; }
}

/* Match the process section to the shared eucalyptus page background. */
.theme-dark .process-section {
  background: #244944;
}

.theme-dark .process-section::before {
  color: rgba(255, 255, 255, 0.035);
}

.theme-dark .process-section .main-title {
  color: #fffdf9;
}

.theme-dark .process-section .sub-title {
  color: #c7cbc8 !important;
}

.theme-dark .process-section .process-intro {
  color: rgba(255, 253, 249, 0.72) !important;
}

.theme-dark .process-section .gold-divider {
  background: linear-gradient(90deg, transparent, #b9b5b0, transparent) !important;
}

/* Wider promotional marquee within the desktop utility bar. */
@media (min-width: 992px) {
  .top-bar .container {
    max-width: 1540px;
    flex-wrap: nowrap !important;
  }

  .top-bar .top-bar-item {
    flex: 0 0 auto;
  }

  .offer-marquee {
    flex: 1 1 720px;
    width: auto;
    max-width: 820px;
    margin-inline: clamp(1rem, 2.2vw, 2.5rem);
  }
}

@media (min-width: 1400px) {
  .offer-marquee { max-width: 920px; }
}

/* Section boundaries for same-colour eucalyptus surfaces. */
body.theme-dark > section:not(.hero-section) {
  border-top: 1px solid rgba(201, 205, 202, 0.28);
}

body.theme-dark > .process-section {
  border-top-color: rgba(201, 205, 202, 0.48);
  box-shadow: inset 0 18px 34px -30px rgba(9, 35, 32, 0.9);
}

body.theme-dark > section:not(.hero-section) {
  position: relative;
}

/* Editorial client stories */
.theme-dark .reviews-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: #2f5d57;
}

.theme-dark .reviews-section::before {
  content: 'STORIES';
  position: absolute;
  left: -0.03em;
  top: -0.2em;
  color: rgba(255, 255, 255, 0.03);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.reviews-section .section-title-wrap { position: relative; max-width: 820px; margin-inline: auto; }

.reviews-intro {
  max-width: 660px;
  margin: 1.15rem auto 0;
  color: rgba(255, 253, 249, 0.7) !important;
  font-size: 0.92rem;
}

.testimonial-statement {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto 3.25rem;
  padding: 1.4rem 1.65rem;
  border: 1px solid rgba(218, 221, 219, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  text-align: left;
}

.testimonial-statement i {
  color: #c7cbc8;
  font-size: 2.1rem;
}

.testimonial-statement p {
  margin: 0;
  color: #fffdf9;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: italic;
  line-height: 1.55;
}

.testimonial-statement span {
  color: #c7cbc8;
  font-family: var(--font-accent);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.theme-dark .reviews-carousel { padding: 0.5rem 0.5rem 3.75rem !important; }

.theme-dark .review-card {
  position: relative;
  justify-content: flex-start;
  min-height: 310px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid #d9ddda !important;
  border-radius: 18px;
  background: #f5f4f1 !important;
  box-shadow: 0 16px 38px rgba(18, 52, 48, 0.18);
}

.theme-dark .review-card::after {
  content: '“';
  position: absolute;
  right: 1rem;
  bottom: -0.36em;
  color: rgba(47, 93, 87, 0.075);
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
}

.theme-dark .review-card:hover {
  transform: translateY(-7px);
  border-color: #aab6b2 !important;
  box-shadow: 0 24px 48px rgba(18, 52, 48, 0.28) !important;
}

.theme-dark .review-avatar {
  width: 54px;
  height: 54px;
  border: 0;
  background: #dce5e2;
  color: #2f5d57 !important;
}

.theme-dark .review-author { color: #294d48; }
.theme-dark .review-date { color: #727a77; font-size: 0.72rem; letter-spacing: 0.035em; }

.theme-dark .spotlight-stars { margin: 0.75rem 0 1rem !important; }
.theme-dark .spotlight-stars i { display: none; }
.theme-dark .spotlight-stars::before {
  content: 'CLIENT STORY';
  display: inline-block;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  background: #e2e7e5;
  color: #55716c;
  font-family: var(--font-accent);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.theme-dark .review-text {
  position: relative;
  z-index: 1;
  color: #515b58;
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.75;
}

.theme-dark .reviews-pagination .swiper-pagination-bullet { background: rgba(255,255,255,.55) !important; }
.theme-dark .reviews-pagination .swiper-pagination-bullet-active { background: #fff !important; }

@media (max-width: 767.98px) {
  .theme-dark .reviews-section { padding: 5rem 0; }
  .testimonial-statement { grid-template-columns: 42px minmax(0,1fr); }
  .testimonial-statement span { grid-column: 2; }
  .theme-dark .review-card { min-height: 280px; }
}

/* Full-screen percentage website loader */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: #183c38;
  opacity: 1;
  visibility: visible;
  transition: opacity 600ms cubic-bezier(.65,0,.35,1), visibility 600ms;
}

.site-loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.045), transparent 34%);
  pointer-events: none;
}

.site-loader::after { content: none !important; }

.site-loader.is-hidden { opacity: 0; visibility: hidden; }
.site-loader__ring,
.site-loader__logo { display: none !important; }

.loader-display {
  position: relative;
  width: min(360px, 76vw);
  color: #fffdf9;
  text-align: center;
}

.loader-percent {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 0.8;
  font-family: var(--font-heading);
  font-variant-numeric: tabular-nums;
}

.loader-percent span {
  min-width: 2ch;
  font-size: clamp(5rem, 12vw, 8.5rem);
  font-weight: 700;
  letter-spacing: -0.075em;
}

.loader-percent small {
  margin: 0 0 0.1em 0.12em;
  color: #c9cdca;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 650;
}

.loader-rule {
  position: relative;
  width: 100%;
  height: 2px;
  margin-top: 1.15rem;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}

.loader-rule i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #d4d7d5;
  transition: width 100ms linear;
}

.loader-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 0.7rem;
  font-family: var(--font-accent);
}

.loader-caption strong {
  color: #fffdf9;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.loader-caption span {
  color: #aeb7b3;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

@media (prefers-reduced-motion: reduce) {
  .site-loader { transition-duration: 150ms; }
  .loader-rule i { transition: none; }
}

/* Signature services — balanced editorial bento layout */
.theme-dark .services-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  background: #dfe4e1;
}

.theme-dark .services-section::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -250px;
  top: -270px;
  border: 1px solid rgba(47, 93, 87, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(47, 93, 87, 0.025), 0 0 0 160px rgba(47, 93, 87, 0.018);
}

.theme-dark .services-section .section-title-wrap { position: relative; max-width: 760px; margin-inline: auto; }
.theme-dark .services-section .main-title { color: #294d48; }
.theme-dark .services-section .sub-title { color: #61716d !important; }
.theme-dark .services-section .text-muted { color: #67736f !important; }

@media (min-width: 992px) {
  .theme-dark .services-section > .container > .row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 0;
    counter-reset: service-card;
  }

  .theme-dark .services-section > .container > .row > [class*='col-'] {
    width: auto;
    max-width: none;
    padding: 0;
    grid-column: span 2;
  }

  .theme-dark .services-section > .container > .row > [class*='col-']:nth-child(4),
  .theme-dark .services-section > .container > .row > [class*='col-']:nth-child(6) {
    grid-column: span 3;
  }
}

.theme-dark .services-section .service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(47, 93, 87, 0.14) !important;
  border-radius: 20px;
  background: #f8f7f4 !important;
  box-shadow: 0 14px 32px rgba(36, 73, 68, 0.09);
  counter-increment: service-card;
}

.theme-dark .services-section .service-card::before {
  content: '0' counter(service-card);
  position: absolute;
  z-index: 3;
  top: 1rem;
  left: 1rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  background: rgba(35, 72, 67, 0.82);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.theme-dark .services-section .service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(47, 93, 87, 0.42) !important;
  box-shadow: 0 24px 46px rgba(36, 73, 68, 0.17) !important;
}

.theme-dark .services-section .service-img-wrapper { height: 245px; }
.theme-dark .services-section .service-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 59, 55, 0.22), transparent 58%);
  pointer-events: none;
}

.theme-dark .services-section .service-body { padding: 1.65rem 1.75rem 1.8rem; }
.theme-dark .services-section .service-title { color: #294d48; font-size: 1.22rem; }
.theme-dark .services-section .service-desc { color: #606b68; line-height: 1.7; }
.theme-dark .services-section .service-btn-link { color: #2f5d57; }
.theme-dark .services-section .service-btn-link:hover { color: #203f3b; }

.theme-dark .services-section .btn-designers {
  padding: 0.9rem 1.8rem;
  border: 1px solid #2f5d57;
  border-radius: 999px;
  background: #2f5d57;
  color: #fff;
  box-shadow: 0 10px 24px rgba(47,93,87,.18);
}

.theme-dark .services-section .btn-designers:hover {
  background: #244944;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .theme-dark .services-section { padding: 5rem 0; }
  .theme-dark .services-section .service-img-wrapper { height: 220px; }
}

/* Keep Signature Services on the shared website background. */
.theme-dark .services-section {
  background: #244944;
}

.theme-dark .services-section::before {
  border-color: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018), 0 0 0 160px rgba(255, 255, 255, 0.012);
}

.theme-dark .services-section .main-title {
  color: #fffdf9;
}

.theme-dark .services-section .sub-title {
  color: #c7cbc8 !important;
}

.theme-dark .services-section .text-muted {
  color: rgba(255, 253, 249, 0.72) !important;
}

.theme-dark .services-section .gold-divider {
  background: linear-gradient(90deg, transparent, #b9b5b0, transparent) !important;
}

/* Horizontal signature-service cards */
@media (min-width: 992px) {
  .theme-dark .services-section > .container > .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
  }

  .theme-dark .services-section > .container > .row > [class*='col-'],
  .theme-dark .services-section > .container > .row > [class*='col-']:nth-child(4) {
    grid-column: span 1;
  }

  .theme-dark .services-section > .container > .row > [class*='col-']:nth-child(6) {
    grid-column: 1 / -1;
  }

  .theme-dark .services-section .service-card {
    display: grid;
    grid-template-columns: minmax(210px, 42%) minmax(0, 1fr);
    min-height: 270px;
    height: 100%;
  }

  .theme-dark .services-section > .container > .row > [class*='col-']:nth-child(6) .service-card {
    grid-template-columns: minmax(320px, 34%) minmax(0, 1fr);
  }

  .theme-dark .services-section .service-img-wrapper {
    height: 100%;
    min-height: 270px;
  }

  .theme-dark .services-section .service-img-wrapper img {
    height: 100%;
    object-fit: cover;
  }

  .theme-dark .services-section .service-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1.8rem;
  }

  .theme-dark .services-section .service-btn-link {
    margin-top: auto;
    padding-top: 0.7rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .theme-dark .services-section > .container > .row > [class*='col-'] {
    width: 100%;
  }

  .theme-dark .services-section .service-card {
    display: grid;
    grid-template-columns: 38% minmax(0, 1fr);
  }

  .theme-dark .services-section .service-img-wrapper {
    height: 100%;
    min-height: 245px;
  }

  .theme-dark .services-section .service-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* Desktop expanding service showcase */
@media (min-width: 992px) {
  .theme-dark .services-section > .container {
    max-width: 1480px;
  }

  .theme-dark .services-section > .container > .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.85rem;
    margin-inline: 0;
    counter-reset: service-card;
  }

  .theme-dark .services-section > .container > .row > [class*='col-'],
  .theme-dark .services-section > .container > .row > [class*='col-']:nth-child(4),
  .theme-dark .services-section > .container > .row > [class*='col-']:nth-child(6) {
    width: auto;
    max-width: none;
    min-width: 0;
    padding: 0;
    flex: 1 1 0;
    transition: flex .55s cubic-bezier(.2,.8,.2,1);
  }

  .theme-dark .services-section > .container > .row > [class*='col-']:hover,
  .theme-dark .services-section > .container > .row > [class*='col-']:focus-within {
    flex: 3.25 1 0;
  }

  .theme-dark .services-section .service-card,
  .theme-dark .services-section > .container > .row > [class*='col-']:nth-child(6) .service-card {
    position: relative;
    display: block;
    min-height: 520px;
    height: 520px;
    border-radius: 18px;
    background: #294d48 !important;
  }

  .theme-dark .services-section .service-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 0;
    height: 100%;
  }

  .theme-dark .services-section .service-img-wrapper::after {
    background: linear-gradient(180deg, rgba(18,38,35,.04) 25%, rgba(18,38,35,.94) 100%);
  }

  .theme-dark .services-section .service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s ease, filter .45s ease;
  }

  .theme-dark .services-section .service-card:hover .service-img-wrapper img,
  .theme-dark .services-section .service-card:focus-within .service-img-wrapper img {
    transform: scale(1.045);
  }

  .theme-dark .services-section .service-body {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 0;
    padding: 2rem 1.4rem 1.7rem;
    color: #fff;
  }

  .theme-dark .services-section .service-title {
    margin: 0;
    color: #fff !important;
    font-size: 1.08rem;
    line-height: 1.25;
    text-shadow: 0 2px 16px rgba(0,0,0,.35);
    transition: font-size .4s ease, margin .4s ease;
  }

  .theme-dark .services-section .service-desc,
  .theme-dark .services-section .service-btn-link {
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(14px);
    transition: max-height .5s ease, opacity .35s ease .08s, transform .4s ease .08s, margin .4s ease;
  }

  .theme-dark .services-section .service-desc {
    color: rgba(255,255,255,.82) !important;
    line-height: 1.65;
  }

  .theme-dark .services-section .service-btn-link {
    color: #fff !important;
  }

  .theme-dark .services-section .service-card:hover .service-title,
  .theme-dark .services-section .service-card:focus-within .service-title {
    margin-bottom: 0.85rem;
    font-size: 1.42rem;
  }

  .theme-dark .services-section .service-card:hover .service-desc,
  .theme-dark .services-section .service-card:focus-within .service-desc {
    max-height: 190px;
    margin-bottom: 1.15rem;
    opacity: 1;
    transform: translateY(0);
  }

  .theme-dark .services-section .service-card:hover .service-btn-link,
  .theme-dark .services-section .service-card:focus-within .service-btn-link {
    max-height: 48px;
    padding-top: 0.2rem;
    opacity: 1;
    transform: translateY(0);
  }

  .theme-dark .services-section .service-card::before {
    top: 1rem;
    left: 1rem;
  }
}

/* Three-step Interior Calculator */
.calculator-nav-link {
  border: 0;
  background: transparent;
}

.calculator-modal .modal-dialog { max-width: 920px; }
.calculator-modal .modal-content {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 22px;
  background: #f5f4f1 !important;
  color: #294d48 !important;
  box-shadow: 0 35px 80px rgba(12, 42, 38, .38);
}

.calculator-close {
  position: absolute;
  z-index: 5;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(47,93,87,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  color: #294d48;
}

.calculator-layout { display: grid; grid-template-columns: 310px minmax(0,1fr); min-height: 590px; }
.calculator-aside { padding: 3.25rem 2.25rem; background: #2f5d57; color: #fff; }
.calculator-kicker,.calculator-step-label { color: #aeb8b4; font-size: .65rem; font-weight: 700; letter-spacing: .17em; }
.calculator-aside h2 { margin: 1rem 0; color: #fff; font-size: 2rem; line-height: 1.2; }
.calculator-aside > p { color: rgba(255,255,255,.68); font-size: .84rem; }
.calculator-progress { position: relative; margin: 3rem 0 0; padding: 0; }
.calculator-progress::before { content:''; position:absolute; left:18px; top:20px; bottom:20px; width:1px; background:rgba(255,255,255,.2); }
.calculator-progress li { position:relative; display:flex; align-items:center; gap:.8rem; margin:0 0 1.35rem; color:rgba(255,255,255,.5); }
.calculator-progress b { z-index:1; display:grid; place-items:center; width:36px; height:36px; border:1px solid rgba(255,255,255,.3); border-radius:50%; background:#2f5d57; font-size:.72rem; }
.calculator-progress li.active { color:#fff; }
.calculator-progress li.active b { background:#d3d5d3; color:#294d48; }

.calculator-form { display:flex; flex-direction:column; padding:3.4rem 3rem 2.2rem; }
.calculator-step,.calculator-result { display:none; flex:1; }
.calculator-step.active,.calculator-result.active { display:block; }
.calculator-step h3,.calculator-result h3 { margin:.75rem 0 1.75rem; color:#294d48; font-size:1.55rem; }
.calculator-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
.calculator-grid label,.calculator-quality { color:#54615d; font-size:.76rem; font-weight:650; }
.calculator-full { grid-column:1/-1; }
.calculator-grid input,.calculator-grid select,.calculator-quality select {
  width:100%; margin-top:.45rem; padding:.85rem 1rem; border:1px solid #cdd4d1; border-radius:9px; background:#fff; color:#294d48; outline:none;
}
.calculator-grid input:focus,.calculator-grid select:focus,.calculator-quality select:focus { border-color:#2f5d57; box-shadow:0 0 0 3px rgba(47,93,87,.1); }
.calculator-options { display:grid; grid-template-columns:repeat(2,1fr); gap:.75rem; margin-bottom:1.3rem; }
.calculator-options input { position:absolute; opacity:0; }
.calculator-options span { display:flex; align-items:center; gap:.7rem; min-height:58px; padding:.75rem 1rem; border:1px solid #d4d9d6; border-radius:10px; background:#fff; color:#56615e; font-size:.76rem; cursor:pointer; }
.calculator-options i { color:#6f827d; font-size:1rem; }
.calculator-options input:checked + span { border-color:#2f5d57; background:#e1e9e6; color:#294d48; }
.calculator-quality { display:block; }
.calculator-consent { display:flex!important; align-items:center; gap:.65rem; font-weight:500!important; }
.calculator-consent input { width:auto; margin:0; }
.calculator-actions { display:flex; justify-content:space-between; gap:1rem; margin-top:2rem; padding-top:1.4rem; border-top:1px solid #dde1df; }
.calculator-actions button,.calculator-whatsapp { display:inline-flex; align-items:center; justify-content:center; gap:.55rem; padding:.8rem 1.2rem; border-radius:9px; font-size:.76rem; font-weight:700; }
.calculator-back { border:1px solid #cbd2cf; background:transparent; color:#5c6864; }
.calculator-next,.calculator-submit { margin-left:auto; border:1px solid #2f5d57; background:#2f5d57; color:#fff; }
.calculator-submit { display:none; }
.calculator-estimate { display:block; margin:1rem 0; color:#2f5d57; font-size:clamp(2.25rem,5vw,3.6rem); }
.calculator-result p { color:#66716e; }
.calculator-whatsapp { width:max-content; margin-top:1rem; background:#1aa260; color:#fff; }

@media (max-width: 767.98px) {
  .calculator-modal .modal-dialog { margin:.5rem; }
  .calculator-layout { grid-template-columns:1fr; min-height:0; }
  .calculator-aside { padding:1.6rem 1.4rem; }
  .calculator-aside h2 { max-width:80%; font-size:1.35rem; }
  .calculator-aside > p { display:none; }
  .calculator-progress { display:flex; margin:1.2rem 0 0; }
  .calculator-progress::before { left:18px; right:18px; top:18px; bottom:auto; width:auto; height:1px; }
  .calculator-progress li { flex:1; flex-direction:column; gap:.35rem; margin:0; font-size:.62rem; }
  .calculator-form { padding:1.6rem 1.35rem; }
  .calculator-grid,.calculator-options { grid-template-columns:1fr; }
}

/* Left sidebar: keep Call and social profiles; remove Email and WhatsApp. */
.floating-sidebar > .floating-tab[data-bs-target="#quoteModal"],
.floating-sidebar > a.floating-tab[href^="https://wa.me/"] {
  display: none !important;
}

/* Desktop header: keep the complete navigation on one aligned row. */
@media (min-width: 992px) {
  .main-header .container {
    width: min(100% - 40px, 1640px);
    max-width: 1640px;
    flex-wrap: nowrap;
  }

  .main-header .navbar-brand {
    flex: 0 0 auto;
    min-width: 185px;
    margin-right: clamp(1rem, 2vw, 2.5rem) !important;
    white-space: nowrap;
  }

  .main-header .navbar-collapse {
    min-width: 0;
  }

  .main-header .navbar-nav {
    flex-wrap: nowrap;
    align-items: center;
    gap: clamp(0.1rem, 0.65vw, 0.75rem);
    white-space: nowrap;
  }

  .main-header .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    padding-inline: clamp(0.35rem, 0.55vw, 0.65rem) !important;
    white-space: nowrap;
  }

  .calculator-nav-link { width: auto; }

  .main-header .btn-header-cta {
    flex: 0 0 auto;
    min-width: 142px;
    padding-inline: 1.15rem !important;
    white-space: nowrap;
  }

  .contact-drawer-toggle { flex: 0 0 auto; }
}

@media (min-width: 992px) and (max-width: 1240px) {
  .main-header .navbar-brand { min-width: 150px; margin-right: 0.65rem !important; }
  .main-header .navbar-brand::before { font-size: 1rem; }
  .main-header .navbar-brand::after { font-size: 0.9rem; }
  .main-header .nav-link { font-size: 0.73rem !important; padding-inline: 0.25rem !important; }
  .main-header .btn-header-cta { min-width: 112px; padding-inline: 0.75rem !important; font-size: 0.68rem !important; }
}

/* Equal spacing between all desktop navigation items. */
@media (min-width: 1241px) {
  .main-header .navbar-nav {
    gap: clamp(1rem, 1.35vw, 1.55rem);
  }

  .main-header .navbar-nav .nav-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .main-header .btn-header-cta {
    margin-left: clamp(1rem, 1.35vw, 1.55rem) !important;
  }

  .contact-drawer-toggle {
    margin-left: clamp(1rem, 1.35vw, 1.55rem) !important;
  }
}

/* Premium room-category cards */
.theme-dark .abode-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 6.5rem 0 7rem;
  border-block: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at 8% 14%, rgba(255,255,255,.075), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(185,181,176,.09), transparent 27%),
    #294f4a;
}

.theme-dark .abode-section::before {
  content: 'ROOMS';
  position: absolute;
  z-index: -1;
  top: -0.18em;
  right: -0.04em;
  color: rgba(255,255,255,.025);
  font-family: var(--font-heading);
  font-size: clamp(9rem, 21vw, 23rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}

.theme-dark .abode-section .section-title-wrap {
  max-width: 760px;
  margin-inline: auto;
}

.theme-dark .abode-section .sub-title { color: #c7cfcc !important; }
.theme-dark .abode-section .main-title { color: #fffdf9; }

.abode-intro {
  max-width: 620px;
  margin: 1rem auto 0;
  color: rgba(255,255,255,.68);
  font-size: 1rem;
  line-height: 1.7;
}

.theme-dark .abode-grid {
  counter-reset: room-card;
  gap: 1rem;
  margin-top: 3.25rem;
}

.theme-dark .abode-item {
  position: relative;
  align-items: flex-start;
  min-height: 285px;
  padding: 1.5rem 1.35rem 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 18px 38px rgba(15,45,41,.16);
  text-align: left;
  counter-increment: room-card;
  transition: transform .4s ease, background .4s ease, border-color .4s ease, box-shadow .4s ease;
}

.theme-dark .abode-item::before {
  content: '0' counter(room-card);
  position: absolute;
  top: 1.25rem;
  right: 1.2rem;
  color: rgba(255,255,255,.46);
  font-family: var(--font-accent);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.theme-dark .abode-item::after {
  content: '\2197';
  position: absolute;
  right: 1.25rem;
  bottom: 1.15rem;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  transition: transform .35s ease, background .35s ease, color .35s ease;
}

.theme-dark .abode-item:hover {
  transform: translateY(-9px);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.105);
  box-shadow: 0 28px 52px rgba(10,36,33,.28);
}

.theme-dark .abode-item:hover::after {
  transform: rotate(45deg);
  background: #f2f0eb;
  color: #294f4a;
}

.theme-dark .abode-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: .45rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  color: #d5d3ce;
}

.theme-dark .abode-icon svg { width: 48px; height: 48px; }

.theme-dark .abode-item:hover .abode-icon {
  transform: none;
  background: #f2f0eb;
  color: #2f5d57;
}

.theme-dark .abode-label {
  max-width: 165px;
  color: #fffdf9;
  font-family: var(--font-heading);
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.3;
}

.abode-copy {
  display: block;
  padding-right: 1rem;
  color: rgba(255,255,255,.6);
  font-size: .84rem;
  line-height: 1.55;
}

@media (max-width: 1199.98px) {
  .theme-dark .abode-grid { grid-template-columns: repeat(3, 1fr); }
  .theme-dark .abode-item { min-height: 260px; }
}

@media (max-width: 767.98px) {
  .theme-dark .abode-section { padding: 5rem 0; }
  .theme-dark .abode-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .theme-dark .abode-item { min-height: 245px; padding: 1.2rem; }
}

@media (max-width: 479.98px) {
  .theme-dark .abode-grid { grid-template-columns: 1fr; }
  .theme-dark .abode-item { min-height: 220px; }
  .theme-dark .abode-label { max-width: none; }
}

/* Editorial bento gallery */
.theme-dark .gallery-section {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 7rem;
  border-block: 1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 88% 8%, rgba(255,255,255,.065), transparent 25%),
    #234743;
}

.theme-dark .gallery-section::before {
  content: 'GALLERY';
  position: absolute;
  top: -.08em;
  left: -.03em;
  color: rgba(255,255,255,.022);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.07em;
  pointer-events: none;
}

.theme-dark .gallery-section .section-title-wrap {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
}

.theme-dark .gallery-section .main-title { color: #fffdf9; }
.theme-dark .gallery-section .sub-title { color: #c7cfcc !important; }

.gallery-intro {
  max-width: 640px;
  margin: 1rem auto 0;
  color: rgba(255,255,255,.66);
  line-height: 1.7;
}

.theme-dark .gallery-filters {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 2.5rem;
  padding: .42rem;
  gap: .35rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
}

.theme-dark .gallery-filters .filter-btn {
  padding: .68rem 1.2rem;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.72);
}

.theme-dark .gallery-filters .filter-btn:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.theme-dark .gallery-filters .filter-btn.active {
  color: #294f4a;
  background: #f2f0eb;
  box-shadow: 0 8px 20px rgba(10,36,33,.22);
}

@media (min-width: 992px) {
  .theme-dark .gallery-section > .container > .row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 250px;
    gap: 1rem;
    margin: 0;
  }

  .theme-dark .gallery-section .gallery-item-wrap {
    width: auto;
    max-width: none;
    padding: 0;
  }

  .theme-dark .gallery-section .gallery-featured {
    grid-column: span 7;
    grid-row: span 2;
  }

  .theme-dark .gallery-section .gallery-side { grid-column: span 5; }
  .theme-dark .gallery-section .gallery-standard { grid-column: span 4; }

  .theme-dark .gallery-section .gallery-item {
    height: 100%;
    margin: 0;
  }
}

.theme-dark .gallery-section .gallery-item {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(9,34,31,.24);
}

.theme-dark .gallery-section .gallery-overlay {
  display: block;
  padding: 1.35rem;
  background: linear-gradient(180deg, transparent 32%, rgba(12,31,29,.94) 100%);
  opacity: 1;
}

.theme-dark .gallery-section .gallery-cat {
  position: absolute;
  left: 1.25rem;
  bottom: 3.95rem;
  color: #d2d0cb;
  font-size: .62rem;
  letter-spacing: .16em;
}

.gallery-name {
  position: absolute;
  left: 1.25rem;
  right: 4.2rem;
  bottom: 1.35rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.03rem;
  font-weight: 650;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}

.gallery-view-icon {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease, background .35s ease, color .35s ease;
}

.theme-dark .gallery-section .gallery-item:hover .gallery-overlay {
  background: linear-gradient(180deg, rgba(26,65,60,.05), rgba(12,31,29,.96));
}

.theme-dark .gallery-section .gallery-item:hover .gallery-name,
.theme-dark .gallery-section .gallery-item:hover .gallery-view-icon {
  opacity: 1;
  transform: translateY(0);
}

.theme-dark .gallery-section .gallery-item:hover .gallery-view-icon {
  background: #f2f0eb;
  color: #294f4a;
}

@media (max-width: 991.98px) {
  .theme-dark .gallery-section .gallery-item { height: 290px; margin-bottom: 0; }
  .theme-dark .gallery-section .gallery-item-wrap { margin-bottom: 1rem; }
  .gallery-name, .gallery-view-icon { opacity: 1; transform: none; }
}

@media (max-width: 575.98px) {
  .theme-dark .gallery-section { padding: 5rem 0; }
  .theme-dark .gallery-filters {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    border-radius: 14px;
  }
  .theme-dark .gallery-filters .filter-btn { flex: 0 0 auto; }
}

/* Refined equal-height consultation CTA */
.theme-dark .cta-strip {
  min-height: 0;
  padding: 5rem 0;
  border-block: 1px solid rgba(255,255,255,.1);
  background: #294f4a;
}

.theme-dark .cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  width: auto;
  border-radius: 0;
  background:
    radial-gradient(circle at 6% 18%, rgba(255,255,255,.07), transparent 25%),
    radial-gradient(circle at 94% 82%, rgba(185,181,176,.08), transparent 24%);
  pointer-events: none;
}

.cta-strip-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 450px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 28px 70px rgba(10,35,32,.26);
}

.cta-strip-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: none;
  min-height: 100%;
  padding: clamp(2.5rem, 5vw, 5rem);
}

.cta-strip-kicker {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.2rem;
  color: #c9cfcc;
  font-family: var(--font-accent);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.cta-strip-kicker::before {
  content: '';
  width: 34px;
  height: 1px;
  background: #b9b5b0;
}

.theme-dark .cta-strip-title {
  max-width: 520px;
  margin-bottom: 1.15rem;
  color: #fffdf9;
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 4vw, 4.3rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.theme-dark .cta-strip-sub {
  max-width: 520px;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,.72);
  font-size: 1.03rem;
  line-height: 1.7;
}

.cta-strip-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.48);
  font-family: var(--font-accent);
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cta-strip-meta i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b9b5b0;
}

.theme-dark .cta-strip-btn {
  gap: .8rem;
  padding: .95rem 1.45rem;
  border: 1px solid #f2f0eb;
  border-radius: 999px;
  background: #f2f0eb;
  color: #294f4a;
  box-shadow: 0 12px 28px rgba(10,35,32,.2);
}

.theme-dark .cta-strip-btn i { transition: transform .3s ease; }
.theme-dark .cta-strip-btn:hover i { transform: translateX(5px); }

.cta-strip-media {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

.cta-strip-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,31,29,.75));
  pointer-events: none;
}

.cta-strip-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  transition: transform .8s ease;
}

.cta-strip-shell:hover .cta-strip-media img { transform: scale(1.035); }

.cta-strip-media figcaption {
  position: absolute;
  z-index: 2;
  right: 1.6rem;
  bottom: 1.5rem;
  left: 1.6rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
}

.cta-strip-media figcaption span {
  font-family: var(--font-accent);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.cta-strip-media figcaption strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
}

@media (max-width: 991.98px) {
  .theme-dark .cta-strip { padding: 4rem 0; text-align: left; }
  .cta-strip-shell { grid-template-columns: 1fr; }
  .cta-strip-content { min-height: 410px; }
  .cta-strip-media, .cta-strip-media img { min-height: 390px; }
}

@media (max-width: 575.98px) {
  .theme-dark .cta-strip { padding: 3rem 0; }
  .cta-strip-shell { border-radius: 20px; }
  .cta-strip-content { min-height: 0; padding: 2.2rem 1.5rem 2.4rem; }
  .theme-dark .cta-strip-title { font-size: 2.35rem; }
  .theme-dark .cta-strip-title br { display: none; }
  .cta-strip-media, .cta-strip-media img { min-height: 300px; }
  .cta-strip-media figcaption { align-items: flex-start; flex-direction: column; }
}

/* Geometric interior-concept banner */
.theme-dark .cta-strip-shell {
  border-color: rgba(41,79,74,.13);
  background: #f5f3ee;
  box-shadow: 0 30px 75px rgba(10,35,32,.28);
}

.theme-dark .cta-strip-content {
  position: relative;
  z-index: 4;
  background:
    linear-gradient(90deg, rgba(245,243,238,1) 78%, rgba(245,243,238,.88) 92%, rgba(245,243,238,0));
}

.theme-dark .cta-strip-kicker { color: #5e716d; }
.theme-dark .cta-strip-kicker::before { background: #2f5d57; }

.theme-dark .cta-strip-title {
  color: #244944;
  font-size: clamp(2.3rem, 3.55vw, 3.9rem);
}

.theme-dark .cta-strip-sub { color: #66736f; }
.theme-dark .cta-strip-meta { color: #70807c; }
.theme-dark .cta-strip-meta i { background: #b8a995; }

.theme-dark .cta-strip-btn {
  border-color: #2f5d57;
  background: #2f5d57;
  color: #fff;
  box-shadow: 0 12px 28px rgba(47,93,87,.2);
}

.theme-dark .cta-strip-btn:hover,
.theme-dark .cta-strip-btn:focus {
  border-color: #244944;
  background: #244944;
  color: #fff;
}

.cta-collage {
  position: relative;
  isolation: isolate;
  min-height: 450px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(47,93,87,.035), transparent 42%),
    #f5f3ee;
}

.cta-collage::before {
  content: '';
  position: absolute;
  inset: 8% 6% 7% 0;
  border: 1px solid rgba(47,93,87,.1);
  border-left: 0;
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
}

.cta-collage-shape {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  filter: drop-shadow(0 18px 24px rgba(20,49,45,.18));
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}

.cta-collage-shape img,
.cta-strip-media.cta-collage .cta-collage-shape img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.cta-collage-living {
  z-index: 3;
  right: 12%;
  bottom: 0;
  width: 56%;
  height: 91%;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.cta-collage-living img { object-position: 52% center; }

.cta-collage-kitchen {
  left: 1%;
  bottom: 5%;
  width: 38%;
  height: 50%;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.cta-collage-bedroom {
  right: -5%;
  bottom: 3%;
  width: 35%;
  height: 69%;
  clip-path: polygon(48% 0, 100% 100%, 0 100%);
}

.cta-collage-orbit {
  position: absolute;
  z-index: 1;
  top: 9%;
  right: 9%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #bd8a56;
  box-shadow: 0 12px 30px rgba(189,138,86,.24);
}

.cta-collage-diamond {
  position: absolute;
  z-index: 4;
  top: 28%;
  left: 16%;
  width: 45px;
  height: 45px;
  transform: rotate(45deg);
  background: #2f5d57;
}

.cta-collage-note {
  position: absolute;
  z-index: 5;
  right: 1.3rem;
  bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: .75rem .9rem;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 10px;
  background: rgba(28,59,55,.84);
  color: #fff;
  backdrop-filter: blur(8px);
}

.cta-collage-note span {
  font-family: var(--font-accent);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cta-collage-note strong {
  font-family: var(--font-serif);
  font-size: .92rem;
  font-style: italic;
  font-weight: 400;
}

.cta-strip-shell:hover .cta-collage-living { transform: translateY(-6px); }
.cta-strip-shell:hover .cta-collage-kitchen { transform: translate(-5px, -4px); }
.cta-strip-shell:hover .cta-collage-bedroom { transform: translate(5px, -3px); }

@media (max-width: 991.98px) {
  .theme-dark .cta-strip-content { background: #f5f3ee; }
  .cta-collage { min-height: 420px; }
}

@media (max-width: 575.98px) {
  .cta-collage { min-height: 330px; }
  .cta-collage-orbit { width: 62px; height: 62px; }
  .cta-collage-diamond { width: 34px; height: 34px; }
  .cta-collage-note { right: .8rem; bottom: .8rem; }
}

/* Compact concept banner on the shared website background */
.theme-dark .cta-strip {
  display: block;
  padding: 0;
  border: 0 !important;
  background: #294f4a;
}

.theme-dark .cta-strip > .container {
  width: 100%;
  max-width: none;
  padding: 1rem 2rem .75rem;
}

.theme-dark .cta-strip-shell {
  min-height: 360px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 28px;
  background: #294f4a;
  box-shadow: 0 20px 48px rgba(10,35,32,.2);
}

.theme-dark .cta-strip-content {
  padding: clamp(2.25rem, 4vw, 3.5rem);
  background: #294f4a;
}

.theme-dark .cta-strip-kicker { color: #c9cfcc; }
.theme-dark .cta-strip-kicker::before { background: #b9b5b0; }

.theme-dark .cta-strip-title {
  color: #fffdf9;
  font-size: clamp(2.15rem, 3.25vw, 3.45rem);
}

.theme-dark .cta-strip-sub { color: rgba(255,255,255,.7); }
.theme-dark .cta-strip-meta { color: rgba(255,255,255,.5); }

.theme-dark .cta-strip-btn {
  border-color: #f2f0eb;
  background: #f2f0eb;
  color: #294f4a;
}

.theme-dark .cta-strip-btn:hover,
.theme-dark .cta-strip-btn:focus {
  border-color: #dedbd5;
  background: #dedbd5;
  color: #244944;
}

.theme-dark .cta-collage {
  min-height: 360px;
  background: #294f4a;
}

.theme-dark .cta-collage::before {
  border-color: rgba(255,255,255,.1);
}

@media (max-width: 991.98px) {
  .theme-dark .cta-strip > .container { max-width: none; }
  .theme-dark .cta-strip-shell { grid-template-columns: 1fr; }
  .theme-dark .cta-collage { min-height: 360px; }
}

@media (max-width: 575.98px) {
  .theme-dark .cta-strip { padding: 0; }
  .theme-dark .cta-strip > .container { padding: 1rem; }
.theme-dark .cta-strip-shell { border-radius: 20px; }
  .theme-dark .cta-collage { min-height: 310px; }
}

/* Editorial craftsmanship section */
.theme-dark .testimonial-accordion-section {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0;
  border-block: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 8% 12%, rgba(255,255,255,.055), transparent 26%),
    #234743;
}

.theme-dark .testimonial-accordion-section::before {
  content: 'CRAFT';
  position: absolute;
  right: -.03em;
  bottom: -.18em;
  color: rgba(255,255,255,.024);
  font-family: var(--font-heading);
  font-size: clamp(10rem, 21vw, 23rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.07em;
  pointer-events: none;
}

.theme-dark .testimonial-accordion-section > .container > .row {
  position: relative;
  align-items: stretch;
  --bs-gutter-x: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 28px 66px rgba(10,35,32,.24);
}

.theme-dark .testimonial-accordion-section > .container > .row > .col-lg-6:first-child {
  padding: .85rem;
}

.theme-dark .testimonial-accordion-section > .container > .row > .col-lg-6:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.4rem, 4.5vw, 4.5rem);
}

.theme-dark .spotlight-media {
  position: relative;
  height: 100%;
  min-height: 660px;
  aspect-ratio: auto;
  border: 0;
  border-radius: 19px;
  box-shadow: none;
}

.theme-dark .spotlight-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,31,29,.78));
  pointer-events: none;
}

.theme-dark .spotlight-media img {
  transition: transform .8s ease;
}

.theme-dark .spotlight-media:hover img { transform: scale(1.035); }

.spotlight-media-note {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  bottom: 1.35rem;
  left: 1.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  color: #fff;
}

.spotlight-media-note span {
  flex: 0 0 auto;
  font-family: var(--font-accent);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.spotlight-media-note strong {
  max-width: 330px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  text-align: right;
}

.theme-dark .testimonial-accordion-section .sub-title {
  margin-bottom: .75rem;
  color: #c7cfcc !important;
}

.theme-dark .testimonial-accordion-section .main-title {
  max-width: 590px;
  color: #fffdf9;
  font-size: clamp(2.35rem, 3.4vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.theme-dark .testimonial-accordion-section .spotlight-lede {
  margin: 1rem 0 2.2rem;
  color: rgba(255,255,255,.65);
  font-size: .98rem;
  font-weight: 500;
}

.theme-dark #whyChooseAccordion {
  counter-reset: craft-step;
  border-top: 1px solid rgba(255,255,255,.14);
}

.theme-dark #whyChooseAccordion .accordion-item {
  margin: 0;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  border-radius: 0 !important;
  background: transparent;
  counter-increment: craft-step;
}

.theme-dark #whyChooseAccordion .accordion-button {
  position: relative;
  gap: 1rem;
  padding: 1.25rem 2.7rem 1.25rem 3.6rem;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.78);
  font-size: 1.02rem;
  transition: color .3s ease, padding-left .3s ease;
}

.theme-dark #whyChooseAccordion .accordion-button::before {
  content: '0' counter(craft-step);
  position: absolute;
  left: .1rem;
  color: rgba(255,255,255,.38);
  font-family: var(--font-accent);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.theme-dark #whyChooseAccordion .accordion-button::after {
  filter: grayscale(1) brightness(3);
  opacity: .65;
}

.theme-dark #whyChooseAccordion .accordion-button:not(.collapsed) {
  padding-left: 4rem;
  background: transparent;
  color: #fff;
}

.theme-dark #whyChooseAccordion .accordion-body {
  max-width: 620px;
  padding: .1rem 2.8rem 1.45rem 4rem;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
}

.spotlight-more {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem 1.25rem;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.spotlight-more:hover {
  transform: translateY(-2px);
  background: #f2f0eb;
  color: #294f4a;
}

.spotlight-more i { transition: transform .3s ease; }
.spotlight-more:hover i { transform: translateX(4px); }

@media (max-width: 991.98px) {
  .theme-dark .testimonial-accordion-section { padding: 5rem 0; }
  .theme-dark .testimonial-accordion-section > .container > .row { border-radius: 22px; }
  .theme-dark .spotlight-media { min-height: 500px; }
  .theme-dark .testimonial-accordion-section > .container > .row > .col-lg-6:last-child { padding: 2.5rem 2rem 3rem; }
}

@media (max-width: 575.98px) {
  .theme-dark .spotlight-media { min-height: 390px; }
  .spotlight-media-note { align-items: flex-start; flex-direction: column; gap: .5rem; }
  .spotlight-media-note strong { text-align: left; }
  .theme-dark .testimonial-accordion-section > .container > .row > .col-lg-6:last-child { padding: 2rem 1.35rem 2.5rem; }
}

/* Services marquee below the concept banner */
.cta-design-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(20,57,53,.34);
}

.cta-design-marquee::before,
.cta-design-marquee::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 8vw;
  pointer-events: none;
}

.cta-design-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #294f4a, transparent);
}

.cta-design-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #294f4a, transparent);
}

.cta-design-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 66px;
  white-space: nowrap;
  animation: ctaServicesMarquee 28s linear infinite;
  will-change: transform;
}

.cta-design-marquee:hover .cta-design-marquee-track { animation-play-state: paused; }

.cta-design-marquee-track span {
  color: rgba(255,255,255,.76);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  font-weight: 550;
  letter-spacing: -.01em;
}

.cta-design-marquee-track i {
  width: 7px;
  height: 7px;
  margin: 0 clamp(1.5rem, 3vw, 3.5rem);
  transform: rotate(45deg);
  border: 1px solid #c7c3bd;
  background: transparent;
}

@keyframes ctaServicesMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 575.98px) {
  .cta-design-marquee-track { min-height: 58px; animation-duration: 22s; }
}

.theme-dark .cta-strip + .call-float ~ .main-footer,
.theme-dark .main-footer {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  .cta-design-marquee-track { animation: none; }
}

/* About page: date-free company working timeline */
.about-timeline-section {
  padding: 6.5rem 0;
  background: #244944;
}

.about-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 7%;
  right: 7%;
  top: 28px;
  height: 1px;
  background: rgba(201, 205, 202, 0.32);
}

.about-timeline-item { position: relative; text-align: center; }
.about-timeline-item > span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.35rem;
  border: 1px solid rgba(218, 221, 219, 0.45);
  border-radius: 50%;
  background: #2f5d57;
  color: #d4d7d5;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
}

.about-timeline-item > div {
  min-height: 205px;
  padding: 1.45rem 1.1rem;
  border: 1px solid rgba(201, 205, 202, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.about-timeline-item:hover > div { transform: translateY(-6px); background: rgba(255,255,255,.075); border-color: rgba(201,205,202,.45); }
.about-timeline-item i { margin-bottom: 1rem; color: #c7cbc8; font-size: 1.35rem; }
.about-timeline-item h3 { margin-bottom: .65rem; color: #fffdf9; font-size: .96rem; }
.about-timeline-item p { margin: 0; color: rgba(255,253,249,.66); font-size: .76rem; line-height: 1.65; }

@media (max-width: 991.98px) {
  .about-timeline { grid-template-columns: 1fr; gap: 0; margin-left: 1rem; }
  .about-timeline::before { left: 27px; right: auto; top: 25px; bottom: 25px; width: 1px; height: auto; }
  .about-timeline-item { display: grid; grid-template-columns: 56px minmax(0,1fr); gap: 1rem; text-align: left; margin-bottom: 1rem; }
  .about-timeline-item > span { margin: 0; }
  .about-timeline-item > div { min-height: 0; }
}

/* Use the full desktop header width instead of leaving empty bands. */
@media (min-width: 1241px) {
  .main-header .navbar-brand {
    margin-right: 1rem !important;
  }

  .main-header .navbar-collapse {
    display: flex !important;
    align-items: center;
    flex: 1 1 auto;
  }

  .main-header .navbar-nav {
    flex: 1 1 auto;
    justify-content: space-evenly;
    gap: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .main-header .navbar-nav > .nav-item {
    flex: 0 0 auto;
  }

  .main-header .btn-header-cta {
    margin-left: 1rem !important;
  }

  .contact-drawer-toggle {
    margin-left: 0.85rem !important;
  }
}

/* Final homepage colour cadence — intentionally last in the cascade */
body.theme-dark > :is(.value-highlights, .abode-section, .process-section, .testimonial-accordion-section, .reviews-section) {
  background: #fff !important;
  border-block: 1px solid rgba(47, 93, 87, .14) !important;
}

body.theme-dark > :is(.abode-section, .process-section, .testimonial-accordion-section, .reviews-section)
  :is(.main-title, .sub-title, .feature-title, .abode-label, .process-title, .review-author, .testimonial-statement p) {
  color: #244944 !important;
}

body.theme-dark > :is(.abode-section, .process-section, .testimonial-accordion-section, .reviews-section)
  :is(p, .abode-intro, .abode-copy, .process-intro, .spotlight-lede, .reviews-intro, .review-date, .review-text, .testimonial-statement span) {
  color: #5b716e !important;
}

.theme-dark .abode-section::before,
.theme-dark .process-section::before { color: rgba(47, 93, 87, .035) !important; }

.theme-dark .abode-item,
.theme-dark .process-card,
.theme-dark .testimonial-accordion-section .accordion-item,
.theme-dark .reviews-section :is(.review-card, .testimonial-statement) {
  border-color: rgba(47, 93, 87, .17) !important;
  background: #f7faf9 !important;
  box-shadow: 0 15px 34px rgba(36, 73, 68, .08) !important;
}

.theme-dark .abode-icon,
.theme-dark .process-icon,
.theme-dark .reviews-section .review-avatar {
  border-color: rgba(47, 93, 87, .22) !important;
  background: #e7f0ee !important;
  color: #2f5d57 !important;
}

.theme-dark .abode-item::before { color: rgba(47, 93, 87, .5) !important; }
.theme-dark .abode-item::after { border-color: rgba(47, 93, 87, .22) !important; color: #2f5d57 !important; }
.theme-dark .process-number { color: rgba(47, 93, 87, .1) !important; }

.theme-dark .testimonial-accordion-section :is(.accordion-button, .accordion-body) {
  background: transparent !important;
  color: #244944 !important;
}

.theme-dark .testimonial-accordion-section .spotlight-more {
  background: #2f5d57 !important;
  color: #fff !important;
}

/* Classic dark-green footer */
.theme-dark .main-footer,
.theme-dark footer {
  background: #0c2400 !important;
  border-top-color: rgba(255, 255, 255, .14) !important;
}

.theme-dark .main-footer .footer-social a {
  background: rgba(255, 255, 255, .11) !important;
  border-color: rgba(255, 255, 255, .12) !important;
}

/* Breathing room between the CTA composition and services marquee */
.theme-dark .cta-strip .cta-design-marquee {
  margin-top: clamp(1.75rem, 3vw, 3rem);
}

@media (max-width: 575.98px) {
  .theme-dark .cta-strip .cta-design-marquee { margin-top: 1.25rem; }
}

/* White CTA section canvas; retain the green card and marquee surfaces */
body.theme-dark > .cta-strip {
  background: #ffffff !important;
  border-block-color: rgba(47, 93, 87, .14) !important;
}

body.theme-dark > .cta-strip::before {
  background: none !important;
}

.theme-dark .cta-strip .cta-strip-shell {
  background: #294f4a !important;
}

/* Match the services marquee to the footer green */
.theme-dark .cta-strip .cta-design-marquee {
  background: #0c2400 !important;
  border-color: rgba(255, 255, 255, .14) !important;
}

.theme-dark .cta-strip .cta-design-marquee::before {
  background: linear-gradient(90deg, #0c2400, transparent) !important;
}

.theme-dark .cta-strip .cta-design-marquee::after {
  background: linear-gradient(-90deg, #0c2400, transparent) !important;
}

/* Alternating page sections shared by the homepage and every inner page */
body.theme-dark > section:nth-of-type(even):not(.cta-strip):not(.hero-section):not([class*="-hero-page"]) {
  background: #ffffff !important;
  border-block-color: rgba(47, 93, 87, .14) !important;
}

body.theme-dark > section:nth-of-type(odd):not(.cta-strip):not(.hero-section):not([class*="-hero-page"]) {
  background-color: #2f5d57 !important;
  border-block-color: rgba(255, 255, 255, .12) !important;
}

body.theme-dark > section:nth-of-type(even):not(.cta-strip):not(.hero-section):not([class*="-hero-page"])
  :is(.main-title, .sub-title, .font-heading, .feature-title, .service-card-title, .blog-card-title,
      .widget-title, .accordion-button, h1, h2, h3, h4, h5, h6) {
  color: #244944 !important;
}

body.theme-dark > section:nth-of-type(even):not(.cta-strip):not(.hero-section):not([class*="-hero-page"])
  :is(p, li, .text-muted, .blog-card-excerpt, .accordion-body) {
  color: #5b716e !important;
}

body.theme-dark > section:nth-of-type(even):not(.cta-strip):not(.hero-section):not([class*="-hero-page"])
  :is(.counter-card, .vm-card, .service-card, .arch-service-card, .blog-card, .sidebar-widget,
      .accordion-item, .contact-info-card, .process-card, .feature-box, .partner-logo-item) {
  background-color: #f7faf9 !important;
  border-color: rgba(47, 93, 87, .17) !important;
  box-shadow: 0 14px 32px rgba(36, 73, 68, .08) !important;
}

body.theme-dark > section:nth-of-type(even):not(.cta-strip):not(.hero-section):not([class*="-hero-page"])
  :is(.gold-divider, .section-divider) {
  border-color: #2f5d57 !important;
}

/* Keep captions placed directly over photographs light and readable */
body.theme-dark > section:nth-of-type(even)
  :is(.gallery-overlay, .project-overlay, .service-card-image-overlay) * {
  color: #ffffff !important;
}

/* ========================================================================== 
   About page — premium editorial interface
   ========================================================================== */
.theme-dark .about-hero-page {
  min-height: 690px;
  margin: 0;
  padding: clamp(5rem, 8vw, 7.5rem) 0 clamp(4rem, 6vw, 6rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.08), transparent 27%),
    radial-gradient(circle at 88% 78%, rgba(190,144,93,.13), transparent 28%),
    #244f49 !important;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.theme-dark .about-hero-page::after {
  left: auto;
  right: 2.5%;
  bottom: -1px;
  width: min(42vw, 620px);
  height: 1px;
  transform: none;
  background: rgba(255,255,255,.3);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
}

.about-hero-copy { position: relative; z-index: 3; }
.about-hero-page .breadcrumb-custom {
  justify-content: flex-start;
  margin-bottom: 2.25rem;
  color: rgba(255,255,255,.66);
}
.about-hero-page .breadcrumb-custom a:hover { color: #fff; }
.about-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
  color: #d0d5d2;
  font-family: var(--font-accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.about-hero-eyebrow::before { content: ''; width: 34px; height: 1px; background: #d0d5d2; }
.about-hero-copy h1 {
  max-width: 710px;
  margin: 0 0 1.5rem;
  color: #fffdf9;
  font-family: var(--font-heading);
  font-size: clamp(2.65rem, 5vw, 5rem);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -.055em;
}
.about-hero-copy > p {
  max-width: 610px;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}
.about-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.25rem 1.8rem; }
.about-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: .95rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: #f5f3ee;
  color: #244944;
  font-family: var(--font-accent);
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease;
}
.about-primary-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(10,35,31,.24); }
.about-text-link { color: rgba(255,255,255,.78); font-weight: 600; }
.about-text-link i { margin-left: .5rem; font-size: .8rem; }
.about-text-link:hover { color: #fff; }

.about-hero-feature {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 34px 34px 120px 34px;
  box-shadow: 0 34px 70px rgba(8,35,31,.3);
}
.about-hero-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8,33,30,.86));
}
.about-hero-feature > img { width: 100%; height: 520px; object-fit: cover; }
.about-hero-feature-copy {
  position: absolute;
  z-index: 2;
  left: 2rem;
  right: 8rem;
  bottom: 2rem;
  color: #fff;
}
.about-hero-feature-copy span { display: block; margin-bottom: .4rem; font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.about-hero-feature-copy strong { display: block; max-width: 390px; font-family: var(--font-serif); font-size: 1.35rem; font-style: italic; font-weight: 400; line-height: 1.35; }
.about-hero-seal {
  position: absolute;
  z-index: 3;
  top: 1.4rem;
  right: 1.4rem;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  padding: 1rem;
  border-radius: 50%;
  background: #c18f59;
  color: #fff;
  text-align: center;
}
.about-hero-seal strong { display: block; font-size: 1.5rem; line-height: 1; }
.about-hero-seal span { font-size: .61rem; font-weight: 700; line-height: 1.25; letter-spacing: .06em; text-transform: uppercase; }

#intro { padding-block: clamp(5rem, 8vw, 8rem) !important; }
.about-story-visual { position: relative; min-height: 590px; max-width: 640px; }
.about-story-visual figure { margin: 0; overflow: hidden; box-shadow: 0 24px 48px rgba(36,73,68,.16); }
.about-story-main { position: absolute; inset: 0 11% 9% 0; border-radius: 22px 100px 22px 22px; }
.about-story-main img { width: 100%; height: 100%; object-fit: cover; }
.about-story-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 47%;
  height: 42%;
  border: 8px solid #fff;
  border-radius: 18px;
}
.about-story-detail img { width: 100%; height: 100%; object-fit: cover; }
.about-story-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  padding: .9rem 1.1rem;
  border-radius: 10px;
  background: rgba(20,59,54,.9);
  color: #fff;
  backdrop-filter: blur(8px);
}
.about-story-caption span { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.about-story-caption strong { font-family: var(--font-serif); font-size: 1.05rem; font-style: italic; font-weight: 400; }
#intro .about-highlight { color: #2f5d57 !important; font-weight: 700; letter-spacing: .02em; }
.about-trust-grid .counter-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 145px;
  padding: 1.2rem .9rem;
  border-radius: 16px;
}
.about-trust-grid .counter-num { color: #2f5d57 !important; font-size: 1.55rem; }
.about-trust-grid .counter-label { color: #46635f !important; font-size: .73rem; line-height: 1.4; }

.about-timeline-section { position: relative; overflow: hidden; }
.about-timeline-section::after {
  content: 'PROCESS';
  position: absolute;
  right: -.04em;
  bottom: -.16em;
  color: rgba(255,255,255,.025);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 18vw, 19rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.about-timeline-section .container { position: relative; z-index: 1; }

#vision-mission { padding-block: clamp(5rem, 8vw, 7rem) !important; }
.about-purpose-grid .vm-card {
  min-height: 360px;
  padding: 2rem;
  border-radius: 20px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.about-purpose-grid .vm-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(36,73,68,.14) !important; }
.vm-index { position: absolute; top: 1.4rem; right: 1.5rem; color: rgba(47,93,87,.34); font-size: .68rem; font-weight: 700; letter-spacing: .14em; }
.about-purpose-grid .vm-icon-box { background: #e6efed; color: #2f5d57; border-color: rgba(47,93,87,.18); }

#brand-partners .partner-logo-item {
  min-height: 92px;
  border-radius: 14px;
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.14) !important;
  color: #fff !important;
}

@media (max-width: 1199.98px) {
  .about-hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .about-hero-feature, .about-hero-feature > img { min-height: 470px; height: 470px; }
}

@media (max-width: 991.98px) {
  .theme-dark .about-hero-page { padding-top: 4.5rem; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-copy { max-width: 760px; }
  .about-hero-feature { min-height: 440px; }
  .about-hero-feature > img { height: 440px; }
  .about-story-visual { min-height: 520px; margin-inline: auto; }
}

@media (max-width: 575.98px) {
  .theme-dark .about-hero-page { min-height: 0; padding: 3.25rem 0 4rem; }
  .about-hero-page .breadcrumb-custom { margin-bottom: 1.5rem; }
  .about-hero-copy h1 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .about-hero-actions { align-items: flex-start; flex-direction: column; }
  .about-hero-feature, .about-hero-feature > img { min-height: 350px; height: 350px; }
  .about-hero-feature { border-radius: 22px 22px 70px 22px; }
  .about-hero-seal { width: 90px; height: 90px; }
  .about-hero-feature-copy { left: 1.25rem; right: 5.5rem; bottom: 1.3rem; }
  .about-hero-feature-copy strong { font-size: 1rem; }
  .about-story-visual { min-height: 430px; }
  .about-story-main { right: 5%; }
  .about-story-detail { width: 52%; height: 38%; border-width: 5px; }
  .about-trust-grid .counter-card { min-height: 120px; }
  .about-purpose-grid .vm-card { min-height: 0; }
}

/* About page rebuild: unified section system */
.about-story-section,
.about-principles-section,
.about-process-section,
.about-capabilities-section,
.about-values-section,
.about-partners-section { padding: clamp(5rem, 8vw, 8rem) 0; }

.about-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  color: #2f5d57;
  font-family: var(--font-accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.about-section-kicker::before { content: ''; width: 30px; height: 1px; background: currentColor; }
.about-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}
.about-section-heading h2,
.about-story-copy h2,
.about-capabilities-copy h2,
.about-partners-head h2 {
  margin: 0;
  color: #244944;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.3vw, 4.3rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -.05em;
}
.about-section-heading > p,
.about-partners-head > p { margin: 0; color: #607572; line-height: 1.75; }
.about-section-heading-center { display: block; max-width: 850px; margin-inline: auto; text-align: center; }

/* Story */
.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7.5rem);
}
.about-story-section .about-story-visual { min-height: 610px; max-width: none; }
.about-story-section .about-story-main { inset: 0 12% 7% 0; border-radius: 24px 110px 24px 24px; }
.about-story-section .about-story-detail { width: 45%; height: 39%; }
.about-story-number {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 3;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #244944;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.about-story-lead { margin: 1.5rem 0 1rem; color: #244944 !important; font-family: var(--font-serif); font-size: 1.35rem; line-height: 1.55; }
.about-story-copy > p:not(.about-story-lead) { color: #607572 !important; line-height: 1.8; }
.about-signature { margin-top: 2rem; padding: 1.25rem 0 0 1.25rem; border-top: 1px solid rgba(47,93,87,.16); border-left: 3px solid #2f5d57; }
.about-signature span { display: block; color: #71827f; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.about-signature strong { color: #244944; font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; font-weight: 400; }
.about-fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border: 1px solid rgba(47,93,87,.16);
  border-radius: 18px;
  overflow: hidden;
  background: #f7faf9;
}
.about-fact-strip > div { min-height: 150px; padding: 1.5rem; border-right: 1px solid rgba(47,93,87,.14); }
.about-fact-strip > div:last-child { border-right: 0; }
.about-fact-strip strong { display: block; margin-bottom: .5rem; color: #2f5d57; font-family: var(--font-heading); font-size: 2rem; }
.about-fact-strip span { display: block; max-width: 170px; color: #627572; font-size: .78rem; line-height: 1.5; }

/* Principles */
.about-principles-section { position: relative; overflow: hidden; background: #294f4a !important; }
.about-principles-section::before { content: 'VALUES'; position: absolute; right: -.03em; top: -.15em; color: rgba(255,255,255,.025); font: 700 clamp(9rem,22vw,22rem)/1 var(--font-heading); letter-spacing: -.08em; }
.about-principles-section .container { position: relative; z-index: 1; }
.about-section-heading-light .about-section-kicker,
.about-principles-section h2 { color: #fffdf9 !important; }
.about-section-heading-light > p { color: rgba(255,255,255,.65) !important; }
.about-principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.about-principles-grid article { position: relative; min-height: 300px; padding: 1.6rem; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.055); transition: transform .3s ease, background .3s ease; }
.about-principles-grid article:hover { transform: translateY(-8px); background: rgba(255,255,255,.1); }
.about-principles-grid article > span { position: absolute; top: 1.35rem; right: 1.35rem; color: rgba(255,255,255,.42); font-size: .68rem; letter-spacing: .12em; }
.about-principles-grid i { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 3.5rem; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; color: #d2d6d3; font-size: 1.25rem; }
.about-principles-grid h3 { color: #fff !important; font-size: 1.15rem; }
.about-principles-grid p { margin: 0; color: rgba(255,255,255,.62) !important; font-size: .84rem; line-height: 1.65; }

/* Process */
.about-process-section { background: #fff !important; }
.about-process-list { border-top: 1px solid rgba(47,93,87,.17); }
.about-process-list article {
  display: grid;
  grid-template-columns: 58px 64px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 1.4rem;
  padding: 1.35rem .5rem;
  border-bottom: 1px solid rgba(47,93,87,.16);
  transition: padding .25s ease, background .25s ease;
}
.about-process-list article:hover { padding-inline: 1.1rem; background: #f6f9f8; }
.about-process-list article > span { color: rgba(47,93,87,.42); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.about-process-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: #e7f0ee; color: #2f5d57; }
.about-process-list h3 { margin: 0 0 .25rem; color: #244944 !important; font-size: 1.05rem; }
.about-process-list p { margin: 0; color: #607572 !important; font-size: .82rem; }
.about-process-list em { color: #71827f; font-size: .72rem; font-style: normal; letter-spacing: .08em; text-align: right; text-transform: uppercase; }

/* Capabilities */
.about-capabilities-section { background: #294f4a !important; }
.about-capabilities-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; gap: clamp(3rem,6vw,6rem); }
.about-capabilities-copy { padding-block: 1rem; }
.about-capabilities-copy .about-section-kicker,
.about-capabilities-copy h2 { color: #fffdf9 !important; }
.about-capabilities-copy > p { max-width: 570px; margin: 1.4rem 0 2.4rem; color: rgba(255,255,255,.65) !important; line-height: 1.75; }
.about-capability-list { border-top: 1px solid rgba(255,255,255,.15); }
.about-capability-list a { display: grid; grid-template-columns: 40px 1fr 36px; align-items: center; gap: 1rem; padding: 1.05rem .2rem; border-bottom: 1px solid rgba(255,255,255,.15); color: #fff; }
.about-capability-list a span { color: rgba(255,255,255,.45); font-size: .65rem; }
.about-capability-list a strong { font-size: .92rem; font-weight: 600; }
.about-capability-list a i { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; font-size: .72rem; transition: background .25s ease, color .25s ease; }
.about-capability-list a:hover i { background: #f3f1ec; color: #294f4a; }
.about-capabilities-image { position: relative; min-height: 620px; margin: 0; overflow: hidden; border-radius: 24px 100px 24px 24px; }
.about-capabilities-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,31,28,.85)); }
.about-capabilities-image img { width: 100%; height: 100%; object-fit: cover; }
.about-capabilities-image figcaption { position: absolute; z-index: 2; left: 2rem; bottom: 2rem; color: #fff; }
.about-capabilities-image figcaption span { display: block; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.about-capabilities-image figcaption strong { font-family: var(--font-serif); font-size: 1.4rem; font-style: italic; font-weight: 400; }

/* Compact capabilities band — approximately 60% less vertical space */
.about-capabilities-section {
  padding-block: 2.25rem !important;
}
.about-capabilities-layout { align-items: center; }
.about-capabilities-copy { padding-block: 0; }
.about-capabilities-copy h2 {
  font-size: clamp(1.9rem, 3.1vw, 3.15rem);
  line-height: 1.03;
}
.about-capabilities-copy .about-section-kicker { margin-bottom: .55rem; }
.about-capabilities-copy > p {
  margin: .75rem 0 1.15rem;
  font-size: .82rem;
  line-height: 1.55;
}
.about-capability-list a { padding-block: .58rem; }
.about-capabilities-image {
  min-height: 340px;
  height: 340px;
  border-radius: 20px 70px 20px 20px;
}
.about-capabilities-image figcaption { left: 1.4rem; bottom: 1.25rem; }
.about-capabilities-image figcaption strong { font-size: 1.05rem; }

/* Values */
.about-values-section { background: #fff !important; }
#vision-mission.about-values-section {
  margin: 0 !important;
  padding: clamp(5rem, 8vw, 8rem) 0 !important;
}
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.about-values-grid article { position: relative; min-height: 350px; padding: 2rem; border: 1px solid rgba(47,93,87,.17); border-radius: 20px; background: #f7faf9; overflow: hidden; }
.about-values-grid article::after { content: ''; position: absolute; right: -60px; bottom: -60px; width: 150px; height: 150px; border: 1px solid rgba(47,93,87,.08); border-radius: 50%; box-shadow: 0 0 0 35px rgba(47,93,87,.025); }
.about-values-grid article > span { color: #71827f; font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.about-values-grid i { display: grid; place-items: center; width: 62px; height: 62px; margin: 3rem 0 1.4rem; border-radius: 16px; background: #e7f0ee; color: #2f5d57; font-size: 1.3rem; }
.about-values-grid h3 { color: #244944 !important; font-size: 1.25rem; }
.about-values-grid p { color: #607572 !important; font-size: .88rem; line-height: 1.7; }

/* Partners */
.about-partners-section { background: #294f4a !important; }
#brand-partners.about-partners-section {
  margin: 0 !important;
  padding: clamp(5rem, 8vw, 8rem) 0 !important;
}
.about-partners-head { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 3rem; margin-bottom: 3.5rem; }
.about-partners-head .about-section-kicker,
.about-partners-head h2 { color: #fffdf9 !important; }
.about-partners-head > p { color: rgba(255,255,255,.65) !important; }
.about-partner-cloud { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; overflow: hidden; }
.about-partner-cloud span { display: grid; place-items: center; min-height: 100px; padding: 1rem; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.82); font-family: var(--font-accent); font-size: .9rem; font-weight: 600; transition: background .25s ease, color .25s ease; }
.about-partner-cloud span:hover { background: rgba(255,255,255,.09); color: #fff; }

.about-logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
}
.about-logo-slider::before,
.about-logo-slider::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(35px, 7vw, 110px);
  pointer-events: none;
}
.about-logo-slider::before { left: 0; background: linear-gradient(90deg, #294f4a, transparent); }
.about-logo-slider::after { right: 0; background: linear-gradient(-90deg, #294f4a, transparent); }
.home-logo-slider::before { background: linear-gradient(90deg, #2f5d57, transparent); }
.home-logo-slider::after { background: linear-gradient(-90deg, #2f5d57, transparent); }
.about-logo-track {
  display: flex;
  width: max-content;
  animation: aboutLogoMarquee 32s linear infinite;
  will-change: transform;
}
.about-logo-slider:hover .about-logo-track { animation-play-state: paused; }
.about-logo-group { display: flex; flex-shrink: 0; }
.about-logo-slide {
  display: grid;
  place-items: center;
  width: clamp(155px, 15vw, 230px);
  height: 125px;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.12);
  background: #ffffff;
}
.about-logo-slide img {
  width: auto;
  max-width: 125px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.about-logo-slide:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.07);
}
@keyframes aboutLogoMarquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .about-logo-track { animation: none; } }

@media (max-width: 991.98px) {
  .about-section-heading, .about-story-layout, .about-capabilities-layout, .about-partners-head { grid-template-columns: 1fr; }
  .about-story-copy { max-width: 760px; }
  .about-fact-strip { grid-template-columns: repeat(2, 1fr); }
  .about-fact-strip > div:nth-child(2) { border-right: 0; }
  .about-fact-strip > div:nth-child(-n+2) { border-bottom: 1px solid rgba(47,93,87,.14); }
  .about-principles-grid { grid-template-columns: repeat(2, 1fr); }
  .about-process-list article { grid-template-columns: 45px 54px 1fr; }
  .about-process-list em { display: none; }
  .about-capabilities-image { min-height: 340px; height: 340px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-values-grid article { min-height: 260px; }
  .about-values-grid i { margin-top: 2rem; }
  .about-partner-cloud { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575.98px) {
  .about-story-section .about-story-visual { min-height: 430px; }
  .about-fact-strip { grid-template-columns: 1fr; }
  .about-fact-strip > div { min-height: 115px; border-right: 0; border-bottom: 1px solid rgba(47,93,87,.14); }
  .about-fact-strip > div:last-child { border-bottom: 0; }
  .about-principles-grid { grid-template-columns: 1fr; }
  .about-principles-grid article { min-height: 250px; }
  .about-principles-grid i { margin-bottom: 2.25rem; }
  .about-process-list article { grid-template-columns: 36px 46px 1fr; gap: .75rem; padding-block: 1.1rem; }
  .about-process-icon { width: 44px; height: 44px; }
  .about-capabilities-section { padding-block: 2rem !important; }
  .about-capabilities-image { min-height: 300px; height: 300px; border-radius: 18px 50px 18px 18px; }
  .about-capabilities-image figcaption { left: 1.25rem; bottom: 1.25rem; }
  .about-partner-cloud { grid-template-columns: repeat(2, 1fr); }
  .about-partner-cloud span { min-height: 82px; }
  .about-logo-slide { width: 145px; height: 96px; padding: 1rem 1.4rem; }
  .about-logo-slide img { max-width: 95px; max-height: 46px; }
}

/* Projects page — editorial cards and room bento gallery */
#projects-grid {
  padding-block: clamp(4.5rem, 7vw, 7rem) !important;
  background: #ffffff !important;
}
#projects-grid .gallery-filters {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: .45rem;
  border: 1px solid rgba(47,93,87,.16);
  border-radius: 999px;
  background: #f3f5f3;
  box-shadow: 0 12px 28px rgba(36,73,68,.1);
}
#projects-grid .filter-btn { border: 0; color: #5c716e; background: transparent; }
#projects-grid .filter-btn.active,
#projects-grid .filter-btn:hover { color: #244944; background: #fff; box-shadow: 0 7px 18px rgba(36,73,68,.1); }
#projects-grid .project-card {
  overflow: hidden;
  border: 1px solid rgba(36,73,68,.2) !important;
  border-radius: 18px !important;
  background: #101927 !important;
  box-shadow: 0 20px 42px rgba(19,43,39,.15) !important;
  transition: transform .35s ease, box-shadow .35s ease !important;
}
#projects-grid .project-card:hover { transform: translateY(-9px); box-shadow: 0 30px 54px rgba(19,43,39,.23) !important; }
#projects-grid .project-img-wrapper { height: 315px; }
#projects-grid .project-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
#projects-grid .project-card:hover .project-img-wrapper img { transform: scale(1.045); }
#projects-grid .project-tag { top: 1.1rem; right: 1.1rem; left: auto; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; background: rgba(17,24,34,.88); color: #fff; }
#projects-grid .project-body { min-height: 250px; padding: 1.6rem; }
body.theme-dark #projects-grid .project-title { color: #ffffff !important; }
body.theme-dark #projects-grid .project-cat { color: #c9cecb !important; }
body.theme-dark #projects-grid .project-desc { color: rgba(255,255,255,.66) !important; }
body.theme-dark #projects-grid .btn-read-more { color: #d3d7d4 !important; }

.projects-room-section { padding: clamp(5rem, 8vw, 8rem) 0; background: #294f4a !important; overflow: hidden; }
.projects-room-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 3rem; margin-bottom: 2.75rem; }
.projects-room-heading span { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: .9rem; color: #cbd1ce; font-size: .7rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.projects-room-heading span::before { content: ''; width: 30px; height: 1px; background: currentColor; }
.projects-room-heading h2 { margin: 0; color: #fff !important; font-family: var(--font-heading); font-size: clamp(2.2rem,4vw,4rem); line-height: 1.08; letter-spacing: -.05em; }
.projects-room-heading p { margin: 0; color: rgba(255,255,255,.64) !important; line-height: 1.75; }
.projects-room-filters { display: flex; width: fit-content; max-width: 100%; margin: 0 auto 3.25rem; padding: .42rem; overflow-x: auto; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.055); }
.projects-room-filters button { flex: 0 0 auto; padding: .75rem 1.25rem; border: 0; border-radius: 999px; background: transparent; color: rgba(255,255,255,.7); font-weight: 600; }
.projects-room-filters button:hover { color: #fff; }
.projects-room-filters button.active { background: #f4f2ed; color: #244944; }
.projects-room-grid { display: grid; grid-template-columns: 1.45fr 1fr; grid-template-rows: repeat(2, 245px); gap: 1rem; }
.projects-room-item { position: relative; display: block; height: 100%; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; box-shadow: 0 18px 38px rgba(8,31,28,.22); }
.projects-room-item[hidden] { display: none !important; }
.projects-room-feature { grid-row: span 2; }
.projects-room-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.projects-room-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,26,24,.88)); }
.projects-room-item:hover img { transform: scale(1.045); }
.projects-room-item figcaption { position: absolute; z-index: 2; left: 1.3rem; right: 1.3rem; bottom: 1.2rem; display: flex; justify-content: space-between; align-items: center; color: #fff; font-family: var(--font-heading); font-size: .95rem; font-weight: 650; }
.projects-room-item figcaption i { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; font-size: .72rem; }

@media (max-width: 991.98px) {
  .projects-room-heading { grid-template-columns: 1fr; }
  .projects-room-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 240px; }
  .projects-room-feature { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 575.98px) {
  #projects-grid .gallery-filters { justify-content: flex-start; overflow-x: auto; }
  #projects-grid .project-img-wrapper { height: 265px; }
  .projects-room-filters { justify-content: flex-start; border-radius: 16px; }
  .projects-room-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .projects-room-item, .projects-room-feature { grid-column: auto; grid-row: auto; height: 280px; }
}
/* Expanded SEO service landing pages */
body.theme-dark > section.seo-content-section:not(.seo-green) { padding: 92px 0; background: #fff !important; color: #244f48; }
body.theme-dark > section.seo-content-section.seo-green { padding: 92px 0; background: #2f655d !important; color: #fff; }
body.theme-dark > section.seo-content-section.seo-content-section.seo-content-section.seo-content-section:not(.seo-green) { background:#fff !important; }
body.theme-dark > section.seo-content-section.seo-content-section.seo-content-section.seo-content-section.seo-green { background:#2f655d !important; }
.seo-content-section .seo-eyebrow { display:block; margin-bottom:12px; color:#9a7650; font-size:.78rem; font-weight:800; letter-spacing:.18em; text-transform:uppercase; }
.seo-content-section.seo-green .seo-eyebrow { color:#d3c6b8; }
.seo-content-section .seo-heading { max-width:850px; margin:0 0 18px; font-size:clamp(2rem,4vw,3.65rem); line-height:1.04; color:inherit; }
.seo-content-section .seo-lead { max-width:780px; margin-bottom:38px; color:#687773; font-size:1.08rem; line-height:1.8; }
.seo-content-section.seo-green .seo-lead { color:#d7e0dd; }
.seo-card-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.seo-card { height:100%; padding:28px; border:1px solid rgba(47,101,93,.18); border-radius:20px; background:#f5f6f3; box-shadow:0 14px 35px rgba(20,55,48,.07); }
.seo-green .seo-card { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.18); box-shadow:none; }
.seo-card i { display:grid; place-items:center; width:48px; height:48px; margin-bottom:24px; border-radius:14px; background:#2f655d; color:#fff; font-size:1.15rem; }
.seo-green .seo-card i { background:#f4f1eb; color:#2f655d; }
.seo-card h3 { margin-bottom:12px; color:inherit; font-size:1.22rem; }
.seo-card p { margin:0; color:#687773; line-height:1.7; }
.seo-green .seo-card p { color:#d7e0dd; }
.seo-split { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.seo-split img { width:100%; height:480px; object-fit:cover; border-radius:26px; }
.seo-check-list { display:grid; gap:14px; margin:28px 0 0; padding:0; list-style:none; }
.seo-check-list li { display:flex; gap:12px; align-items:flex-start; line-height:1.65; }
.seo-check-list i { margin-top:6px; color:#b88a59; }
.seo-step-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:0; counter-reset:service-step; }
.seo-step { position:relative; padding:28px 24px; border-top:1px solid currentColor; counter-increment:service-step; }
.seo-step::before { content:"0" counter(service-step); display:block; margin-bottom:32px; color:#b88a59; font-weight:800; letter-spacing:.08em; }
.seo-step h3 { font-size:1.15rem; color:inherit; }
.seo-step p { margin:0; color:#687773; line-height:1.65; }
.seo-green .seo-step p { color:#d7e0dd; }
@media (max-width:991.98px){.seo-card-grid,.seo-step-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.seo-split{grid-template-columns:1fr}.seo-split img{height:400px}}
@media (max-width:575.98px){body.theme-dark > section.seo-content-section{padding:66px 0}.seo-card-grid,.seo-step-grid{grid-template-columns:1fr}.seo-split img{height:320px}}
/* Blog index — premium editorial interface */
.blog-index .blog-hero-page {
  min-height: 540px;
  margin: 0;
  padding: 8rem 1rem 6rem;
  background:
    linear-gradient(90deg, rgba(8,36,31,.94) 0%, rgba(25,69,61,.82) 52%, rgba(8,36,31,.67) 100%),
    url('../images/new-living-master.png') center 58%/cover no-repeat;
  border: 0;
}
.blog-index .blog-hero-page::after { width: 100%; height: 1px; background: rgba(255,255,255,.2); }
.blog-index .blog-hero-page .container { max-width: 1100px; text-align: left; }
.blog-index .blog-hero-page .breadcrumb-custom { justify-content:flex-start; margin-bottom:3.5rem; }
.blog-index .blog-hero-kicker { display:inline-flex; align-items:center; gap:.7rem; margin-bottom:1rem; color:#d8cec2; font-size:.76rem; font-weight:800; letter-spacing:.2em; text-transform:uppercase; }
.blog-index .blog-hero-kicker::before { content:''; width:34px; height:1px; background:currentColor; }
.blog-index .blog-hero-page h1 { max-width:870px; margin-inline:0; font-size:clamp(2.8rem,6vw,5.7rem) !important; line-height:.98; letter-spacing:-.055em; }
.blog-index .blog-hero-page .lead { max-width:720px; margin:1.5rem 0 0 !important; color:rgba(255,255,255,.72) !important; font-family:var(--font-body); font-size:1.08rem; line-height:1.75; }
.blog-hero-topics { display:flex; flex-wrap:wrap; align-items:center; gap:.8rem; margin-top:2rem; color:rgba(255,255,255,.78); font-size:.76rem; font-weight:750; letter-spacing:.08em; text-transform:uppercase; }
.blog-hero-topics i { width:4px; height:4px; border-radius:50%; background:#bf925f; }

body.blog-index > #blog-content { padding:clamp(5rem,8vw,8rem) 0 !important; background:#f3f2ed !important; color:#244f48; }
.blog-index-heading { display:grid; grid-template-columns:1.1fr .9fr; align-items:end; gap:4rem; max-width:1160px; margin:0 auto 3rem; }
.blog-index-heading span { display:block; margin-bottom:.75rem; color:#9a7650; font-size:.72rem; font-weight:800; letter-spacing:.18em; text-transform:uppercase; }
.blog-index-heading h2 { max-width:720px; margin:0; color:#244f48 !important; font-size:clamp(2.1rem,4vw,4rem); line-height:1.05; letter-spacing:-.045em; }
.blog-index-heading p { margin:0; color:#657571 !important; line-height:1.8; }

.blog-index #blogFilters { width:fit-content; max-width:100%; margin-inline:auto; padding:.45rem; overflow-x:auto; flex-wrap:nowrap !important; justify-content:flex-start !important; border:1px solid rgba(36,79,72,.13); border-radius:999px; background:#fff; box-shadow:0 12px 30px rgba(24,58,51,.08); }
.blog-index .category-pill { flex:0 0 auto; padding:.72rem 1.1rem; border:0; border-radius:999px; background:transparent !important; color:#657571 !important; box-shadow:none !important; font-weight:700; }
.blog-index .category-pill:hover,.blog-index .category-pill.active { background:#2f655d !important; color:#fff !important; transform:none; }

.blog-index .featured-blog-card { display:grid; grid-template-columns:1.08fr .92fr; min-height:430px; border:1px solid rgba(36,79,72,.15) !important; border-radius:24px; background:#fff !important; box-shadow:0 20px 50px rgba(25,60,53,.10) !important; }
.blog-index .featured-blog-card:hover { border-color:rgba(36,79,72,.28) !important; transform:translateY(-5px); box-shadow:0 28px 65px rgba(25,60,53,.16) !important; }
.blog-index .featured-img-box { height:100%; min-height:430px; }
.blog-index .featured-blog-card > div:last-child { display:flex; flex-direction:column; justify-content:center; padding:3rem !important; }
.blog-index .blog-cat-badge { top:1.25rem; left:1.25rem; border:0; background:#f5f2eb; color:#2f655d; font-weight:800; }
.blog-index .featured-blog-card h2,.blog-index .featured-blog-card h2 a { color:#244f48 !important; font-size:clamp(1.8rem,3vw,2.8rem); line-height:1.08; letter-spacing:-.035em; }
.blog-index .featured-blog-card p { color:#687773 !important; line-height:1.75; }
.blog-index .featured-blog-card .btn-gold { align-self:flex-start; border-radius:999px; background:#2f655d !important; color:#fff !important; box-shadow:none; }
.blog-index .blog-meta { color:#78847f !important; }
.blog-index .blog-meta i { color:#9a7650 !important; }

.blog-index #blogGrid > [class*='col-'] { display:flex; }
.blog-index .blog-card { width:100%; border:1px solid rgba(36,79,72,.14) !important; border-radius:20px; background:#fff !important; box-shadow:0 15px 36px rgba(25,60,53,.07); }
.blog-index .blog-card:hover { border-color:rgba(36,79,72,.3) !important; transform:translateY(-7px); box-shadow:0 24px 48px rgba(25,60,53,.13); }
.blog-index .blog-card-img-wrapper { height:245px; }
.blog-index .blog-card-body { padding:1.65rem; }
.blog-index .blog-card-title,.blog-index .blog-card-title a { color:#244f48 !important; font-size:1.24rem; line-height:1.35; }
.blog-index .blog-card-excerpt { color:#697873 !important; font-size:.9rem; line-height:1.72; }
.blog-index .blog-card-footer { border-top-color:rgba(36,79,72,.12) !important; }
.blog-index .author-avatar { border:0; background:#e1e7e3; color:#2f655d; }
.blog-index .author-name { color:#536863 !important; }
.blog-index .btn-read-more { color:#2f655d !important; }

.blog-index #blog-content > .container > .row > .col-lg-4 { align-self:flex-start; position:sticky; top:120px; }
.blog-index .sidebar-widget { margin-bottom:1rem; padding:1.5rem; border:1px solid rgba(36,79,72,.14) !important; border-radius:18px; background:#fff !important; box-shadow:0 12px 30px rgba(25,60,53,.06); }
.blog-index .widget-title { color:#244f48 !important; font-size:1.05rem; }
.blog-index .widget-title::after { background:#b88a59; }
.blog-index .sidebar-widget .form-control { min-height:48px; border-color:#d8dfdc !important; background:#f5f6f3 !important; color:#244f48 !important; }
.blog-index .sidebar-widget .btn-gold { border-color:#2f655d !important; background:#2f655d !important; color:#fff !important; }
.blog-index .widget-category-list a,.blog-index .recent-post-title { color:#536863 !important; }
.blog-index .widget-category-list a:hover,.blog-index .recent-post-title:hover { color:#2f655d !important; }
.blog-index .widget-category-list .badge-count,.blog-index .tag-pill { border-color:#d7dfdc; background:#f2f4f1; color:#2f655d; }
.blog-index .tag-pill:hover { background:#2f655d; color:#fff; }
.blog-index .sidebar-widget p { color:#687773 !important; }
.blog-index .recent-post-thumb { width:72px; height:72px; border:0; border-radius:12px; }
.blog-index .blog-empty-state { border-color:rgba(36,79,72,.25); color:#657571; background:#fff; }

@media (max-width:991.98px){
  .blog-index .blog-hero-page{min-height:500px;padding-top:7rem}
  .blog-index-heading{grid-template-columns:1fr;gap:1.25rem}
  .blog-index .featured-blog-card{grid-template-columns:1fr}
  .blog-index .featured-img-box{height:380px;min-height:0}
  .blog-index #blog-content > .container > .row > .col-lg-4{position:static}
}
@media (max-width:575.98px){
  .blog-index .blog-hero-page{min-height:520px;padding:6rem 1.25rem 4rem}
  .blog-index .blog-hero-page .breadcrumb-custom{margin-bottom:2rem}
  .blog-index .blog-hero-page h1{font-size:2.75rem !important}
  .blog-index #blogFilters{border-radius:16px;margin-inline:0;width:100%}
  .blog-index .featured-img-box{height:270px}
  .blog-index .featured-blog-card > div:last-child{padding:1.6rem !important}
  .blog-index .blog-card-img-wrapper{height:230px}
}
/* Trusted-materials carousel shared by individual service pages */
body.theme-dark > section.service-brand-carousel.service-brand-carousel.service-brand-carousel.service-brand-carousel {
  margin: 0 !important;
  padding: clamp(5rem, 8vw, 7.5rem) 0 !important;
  background: #2f655d !important;
  border-block: 1px solid rgba(255,255,255,.12) !important;
  overflow: hidden;
}
.service-brand-heading { margin-bottom: 2rem; }
.service-brand-heading .sub-title { color: rgba(255,255,255,.68) !important; }
.service-brand-heading h2 { margin: .55rem 0 0; color: #fff !important; font-family: var(--font-heading); font-size: clamp(1.85rem,3vw,2.65rem); }
.service-brand-carousel .about-logo-slider { border-color: rgba(255,255,255,.18); box-shadow: 0 20px 46px rgba(12,48,42,.18); }
.service-brand-carousel .about-logo-slider::before { background: linear-gradient(90deg,#2f655d 8%,transparent); }
.service-brand-carousel .about-logo-slider::after { background: linear-gradient(-90deg,#2f655d 8%,transparent); }
.service-brand-carousel .about-logo-slide { height: 128px; border-right-color: #d8dfdc; }
@media (max-width:575.98px){
  body.theme-dark > section.service-brand-carousel.service-brand-carousel.service-brand-carousel.service-brand-carousel { padding: 4.25rem 0 !important; }
  .service-brand-carousel .about-logo-slide { width: 150px; height: 100px; padding: 1rem 1.3rem; }
  .service-brand-carousel .about-logo-slide img { max-width: 100px; max-height: 46px; }
}
