/* ═══════════════════════════════════════════════════════════
   LUXXORA INTERIORS — Premium Interior Design Theme
   Palette: Charcoal #1A1A1A | Gold #C9A84C | Cream #F8F5F0 | White #FFFFFF
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --gold:      #C9A84C;
  --gold-lt:   #E8C96A;
  --gold-dk:   #A8893A;
  --char:      #1A1A1A;
  --char-mid:  #2D2D2D;
  --char-lt:   #3D3D3D;
  --cream:     #F8F5F0;
  --cream-dk:  #EDE8E0;
  --white:     #FFFFFF;
  --gray:      #8A8A8A;
  --gray-lt:   #D0D0D0;
  --text:      #2D2D2D;
  --text-lt:   #5A5A5A;

  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Outfit', system-ui, sans-serif;

  --hdr-h: 80px;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 30px rgba(201,168,76,0.25);
  --trans: all 0.3s ease;
  --wrap: 1240px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--trans); }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-head);
  line-height: 1.2;
  color: var(--char);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--text-lt); line-height: 1.8; }

/* ─── Utilities ─── */
.wrap    { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.gold    { color: var(--gold); }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bg-cream { background: var(--cream); }
.bg-char  { background: var(--char); }

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-lt);
  max-width: 580px;
  margin: 0 auto 48px;
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  margin: 16px auto 40px;
  border-radius: 2px;
}
.divider-left { margin: 16px 0 40px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--char);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--char);
}
.btn-dark {
  background: var(--char);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--char-lt);
  transform: translateY(-2px);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* ─── Skip Link ─── */
.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}
.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--char);
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 10000;
  left: 10px;
}

/* ═══════════════════════════
   HEADER / NAV
   ═══════════════════════════ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--hdr-h);
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: var(--trans);
}
#site-header.scrolled {
  height: 68px;
  background: rgba(26,26,26,0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--char);
}
.logo-words { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Desktop Nav */
.nav-d ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-d ul li { position: relative; }
.nav-d ul li a {
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  transition: var(--trans);
}
.nav-d ul li a:hover,
.nav-d ul li a.cur { color: var(--gold); }
.nav-d ul li.has-drop > a::after {
  content: ' ▾';
  font-size: 0.75rem;
}

/* Dropdown */
.has-drop {
  position: relative;
}
/* Bridge pseudo-element fills the gap between nav link and dropdown so mouse
   movement into the menu doesn't break hover and cause it to disappear */
.has-drop::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px; /* matches the gap below */
  z-index: 998;
}
.drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--char-mid);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 999;
  /* Small top padding so the bridge pseudo-element and dropdown overlap slightly */
  margin-top: 0;
}
.has-drop:hover .drop-menu,
.has-drop .drop-menu[style*="block"] { display: block; animation: fadeDown 0.2s ease; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.drop-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 400;
}
.drop-menu a:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
}
.d-icon { font-size: 1.1rem; }

/* Nav CTA */
.nav-r { flex-shrink: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--char);
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--trans);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--trans);
}

/* Mobile nav — styles now inline in header.php to prevent caching */
body.nav-open { overflow: hidden; }

/* Suppress any WordPress auto-generated or plugin mobile menus on mobile */
@media screen and (max-width: 900px) {
  .wp-block-navigation__responsive-container.is-menu-open,
  .wp-block-navigation__responsive-container-overlay,
  #primary-menu-container.toggled-on,
  .main-navigation.toggled,
  .main-navigation .menu-toggle ~ div { display: none !important; }
}


/* ═══════════════════════════
   HERO SECTION
   ═══════════════════════════ */
/* ── HERO: full rewrite to fix empty space on desktop-mode mobile ── */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #2a2218;
  /* No min-height: image fills via absolute, content determines height */
}
/* The background image fills the full hero via absolute positioning */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.08) 0%,
    rgba(10,10,10,0.05) 25%,
    rgba(10,10,10,0.45) 60%,
    rgba(10,10,10,0.92) 100%
  );
}
/* Geometric accent */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: min(500px, 60vw);
  height: min(500px, 60vw);
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--hdr-h) + 80px);
  padding-bottom: 70px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 12px;
  font-style: italic;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.hero h1 span { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.hero-stat span {
  display: block;
  font-family: var(--ff-head);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}
.hero-stat p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* Scroll indicator */
.scroll-ind {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 32px;
  margin-top: 20px;
}
.scroll-ind::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════════════
   INTRO / BRAND STRIP
   ═══════════════════════════ */
.brand-strip {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
  padding: 20px 0;
}
.brand-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--char);
  font-size: 0.9rem;
  font-weight: 600;
}
.strip-icon { font-size: 1.2rem; }

/* ═══════════════════════════
   ABOUT SECTION (homepage)
   ═══════════════════════════ */
.about-grid { gap: 80px; }
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-dk);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  aspect-ratio: 1;
  background: var(--char);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}
.about-img-accent .acc-num {
  font-family: var(--ff-head);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.about-img-accent .acc-txt {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.3;
  padding: 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feat-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feat-item h5 {
  font-size: 0.9rem;
  margin-bottom: 2px;
  font-family: var(--ff-body);
  font-weight: 600;
}
.feat-item p { font-size: 0.82rem; }

/* ═══════════════════════════
   SERVICES GRID (homepage preview)
   ═══════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.srv-card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
  cursor: pointer;
  position: relative;
}
.srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--trans);
}
.srv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.srv-card:hover::before { transform: scaleX(1); }
.srv-card-img {
  aspect-ratio: 16/9;
  background: var(--cream-dk);
  overflow: hidden;
}
.srv-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.srv-card:hover .srv-card-img img { transform: scale(1.05); }
.srv-card-body { padding: 24px; }
.srv-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.srv-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: var(--ff-body);
  font-weight: 700;
  color: var(--char);
}
.srv-card-body p {
  font-size: 0.88rem;
  color: var(--text-lt);
  margin-bottom: 20px;
}
.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--trans);
}
.srv-link:hover { gap: 10px; }
.srv-link::after { content: '→'; }

/* ═══════════════════════════
   PROCESS SECTION
   ═══════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--char);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0 auto 20px;
}
.step-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-family: var(--ff-body);
  font-weight: 700;
}
.step-card p { font-size: 0.85rem; }

/* ═══════════════════════════
   GALLERY PREVIEW (homepage)
   ═══════════════════════════ */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,26,26,0.85));
  opacity: 0;
  transition: var(--trans);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}
.gallery-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--char);
  font-size: 1.5rem;
  font-weight: 700;
  transition: var(--trans);
  opacity: 0;
}
.gallery-item:hover .gallery-plus { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ═══════════════════════════
   TESTIMONIALS
   ═══════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testi-card::before {
  content: '"';
  font-family: var(--ff-head);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}
.testi-stars { color: #F5C518; font-size: 1rem; margin-bottom: 16px; }
.testi-text {
  font-size: 0.9rem;
  color: var(--text-lt);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.2rem;
  color: var(--char);
  font-weight: 700;
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--char); }
.testi-loc  { font-size: 0.78rem; color: var(--gray); }

/* ═══════════════════════════
   CTA BANNER
   ═══════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--char) 0%, var(--char-mid) 50%, var(--char) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 { color: var(--white); }
.cta-text p { color: rgba(255,255,255,0.65); margin-top: 12px; max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ═══════════════════════════
   BLOG CARDS
   ═══════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-img {
  aspect-ratio: 16/9;
  background: var(--cream-dk);
  overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-body { padding: 24px; }
.blog-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-body h3 {
  font-size: 1.05rem;
  font-family: var(--ff-body);
  font-weight: 700;
  color: var(--char);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-body p { font-size: 0.85rem; margin-bottom: 16px; }
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--gray);
  border-top: 1px solid var(--cream-dk);
  padding-top: 14px;
}
.blog-read-more {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.82rem;
  transition: var(--trans);
}
.blog-read-more:hover { gap: 8px; }

/* ═══════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--char) 0%, var(--char-mid) 100%);
  padding: 120px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 60%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.45); }

/* ═══════════════════════════
   SERVICE DETAIL PAGE
   ═══════════════════════════ */
.service-detail { padding: 0 0 80px; }
.service-hero-img {
  overflow: hidden;
  width: 100%;
  height: 480px;
  margin-bottom: 0;
}
.service-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.service-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.service-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--cream);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.service-list { display: flex; flex-direction: column; gap: 10px; }
.service-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--trans);
  background: var(--white);
}
.service-list a:hover, .service-list a.active {
  background: var(--char);
  color: var(--gold);
}
.service-list a::before { content: '›'; color: var(--gold); font-size: 1.2rem; }

/* ═══════════════════════════
   GALLERY PAGE
   ═══════════════════════════ */
.gallery-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--cream-dk);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: var(--trans);
  font-family: var(--ff-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--char);
  border-color: var(--char);
  color: var(--gold);
}
.gallery-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gal-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--cream-dk);
}
.gal-item.wide { grid-column: span 2; aspect-ratio: 16/7; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--trans);
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-item:hover img { transform: scale(1.06); }
.gal-zoom {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--char);
  transform: scale(0.7);
  transition: var(--trans);
}
.gal-item:hover .gal-zoom { transform: scale(1); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}
.lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: var(--char);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-weight: 700;
}

/* ═══════════════════════════
   ABOUT PAGE
   ═══════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
}
.team-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--cream-dk);
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid var(--gold);
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.team-card p { font-size: 0.82rem; color: var(--gold); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--trans);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.value-icon { font-size: 2.5rem; margin-bottom: 20px; }
.value-card h3 { font-size: 1.15rem; font-family: var(--ff-body); font-weight: 700; margin-bottom: 10px; }

/* ═══════════════════════════
   CONTACT PAGE
   ═══════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-ico {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h5 {
  font-size: 0.9rem;
  font-family: var(--ff-body);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: 0.9rem;
  color: var(--text-lt);
}
.contact-ctas { display: flex; gap: 12px; margin-top: 32px; }
.map-embed {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  border: 2px solid var(--cream-dk);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* Contact Form */
.contact-form { background: var(--white); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--char);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--trans);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ═══════════════════════════
   BLOG PAGE
   ═══════════════════════════ */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.blog-sidebar-widget {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}
.blog-sidebar-widget h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  font-size: 1rem;
}
.cat-list a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dk);
  font-size: 0.88rem;
  color: var(--text);
  transition: var(--trans);
}
.cat-list a:hover { color: var(--gold); }
.cat-list a span { color: var(--gray); font-size: 0.8rem; }
.recent-post {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dk);
}
.recent-post-img {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  background: var(--cream-dk);
  flex-shrink: 0;
  overflow: hidden;
}
.recent-post-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-post h5 {
  font-size: 0.85rem;
  font-family: var(--ff-body);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
}
.recent-post span { font-size: 0.75rem; color: var(--gray); }

/* ═══════════════════════════
   SINGLE BLOG POST
   ═══════════════════════════ */
.post-content {
  max-width: 760px;
}
.post-content h2, .post-content h3 { margin: 32px 0 16px; }
.post-content p { margin-bottom: 20px; }
.post-content img { border-radius: var(--radius-lg); margin: 28px 0; }
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 40px; }
.tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--cream);
  border: 1px solid var(--cream-dk);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--text-lt);
  font-weight: 500;
}

/* ═══════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════ */
.float-btns {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 800;
}
.wa-float {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--trans);
  position: relative;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-tip {
  position: absolute;
  right: 68px;
  background: var(--char);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}
.wa-float:hover .wa-tip { opacity: 1; }
.wa-tip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--char);
  border-right: none;
}
.phone-float {
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: var(--trans);
  font-size: 1.4rem;
}
.phone-float:hover { transform: scale(1.1); }

/* ═══════════════════════════
   FOOTER
   ═══════════════════════════ */
#site-footer {
  background: var(--char);
  padding-top: 72px;
}
.ft-g {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ft-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-top: 20px;
  line-height: 1.8;
  max-width: 300px;
}
.soc-row { display: flex; gap: 10px; margin-top: 24px; }
.soc-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--trans);
}
.soc-btn:hover { background: var(--gold); color: var(--char); }
.fc h5 {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.fc a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: var(--trans);
}
.fc a:hover { color: var(--gold); padding-left: 6px; }
.ft-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.ft-legal { display: flex; gap: 24px; }
.ft-legal a { color: rgba(255,255,255,0.3); transition: var(--trans); }
.ft-legal a:hover { color: var(--gold); }

/* ═══════════════════════════
   ANIMATIONS
   ═══════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════
   RESPONSIVE
   ═══════════════════════════ */
/* ─── Tablet (≤1100px) ─── */
/* ─── Tablet (≤1100px) ─── */
@media (max-width: 1100px) {
  .services-grid, .grid-3, .blog-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .ft-g { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .service-content-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Mobile (≤768px) ─── */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; }
  .wrap { padding: 0 16px; }

  /* ── Navigation: force hamburger ── */
  .nav-d { display: none !important; }
  .nav-r  { display: none !important; }
  .burger { display: flex !important; }

  /* ── Hero ── */
  .hero {
    align-items: flex-end;
    background-position: center center !important;
    min-height: auto;
    height: auto;
  }
  .hero .wrap {
    padding-top: calc(var(--hdr-h) + 16px);
    padding-bottom: 40px;
  }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-stats {
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 16px;
  }
  .hero-stat { flex: 1 1 40%; min-width: 0; }
  .hero-stat span { font-size: 1.5rem; }
  .hero-stat p { font-size: 0.72rem; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-btns .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-bg::after { display: none; }

  /* ── Typography ── */
  h2 { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  h3 { font-size: clamp(1.15rem, 4vw, 1.5rem); }

  /* ── Sections ── */
  .section, .cta-banner { padding: 56px 0; }
  .section-sm { padding: 40px 0; }

  /* ── All grids → single column ── */
  .grid-2,
  .grid-3,
  .grid-4,
  .services-grid,
  .blog-grid,
  .testi-grid,
  .gallery-full,
  .process-steps,
  .values-grid,
  .about-features,
  .form-row { grid-template-columns: 1fr; }

  /* ── Brand strip ── */
  .brand-strip-inner { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .strip-item { font-size: 0.82rem; }

  /* ── About ── */
  .about-img-accent { display: none; }
  .about-grid { gap: 40px; }
  .about-img-main { aspect-ratio: 16/9; }

  /* ── Gallery ── */
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gal-item.wide { grid-column: span 1; }
  .gallery-full { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-filter { gap: 8px; flex-wrap: wrap; }
  .filter-btn { font-size: 0.78rem; padding: 6px 14px; }

  /* ── Teams ── */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── CTA banner ── */
  .cta-inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-actions { justify-content: center; flex-wrap: wrap; }
  .cta-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* ── Footer ── */
  .ft-g { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ft-bot { flex-direction: column; gap: 12px; text-align: center; }

  /* ── Blog ── */
  .blog-layout { grid-template-columns: 1fr; }
  .blog-card { grid-template-columns: 1fr !important; }
  .blog-img { aspect-ratio: 16/9; height: auto !important; }

  /* ── Service pages ── */
  .service-content-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 90px 0 32px; }
  .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .service-hero-img { height: 300px; margin-bottom: 32px; }
  .service-detail { padding: 0 0 48px; }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }

  /* ── Buttons ── */
  .btn { padding: 13px 22px; font-size: 0.88rem; }
}

/* ─── Small Mobile (≤480px) ─── */
@media (max-width: 560px) {
  .wrap { padding: 0 14px; }

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

  .hero-stat { flex: 1 1 45%; }
  .hero .wrap { padding-top: calc(var(--hdr-h) + 16px); padding-bottom: 36px; }
  .hero { min-height: auto; height: auto; align-items: flex-end; }

  .brand-strip-inner { gap: 12px; }
  .strip-item { flex: 1 1 40%; justify-content: center; }

  .ft-g { grid-template-columns: 1fr; gap: 24px; }
  .team-grid { grid-template-columns: 1fr; }

  .section-label { font-size: 0.7rem; }
  .section, .cta-banner { padding: 44px 0; }
  .about-grid { gap: 28px; }
  .testi-card, .srv-card, .blog-card { padding: 20px; }
}
