/* =========================================================
   INTERO – Total Clarity | Main Stylesheet
   Business Card Color Palette:
     Cream bg:    #EDE8DC / #F5F0E8
     Gold:        #C9A84C  (antique metallic gold - INTERO logo)
     Brown dark:  #3A2E1F  (primary text)
     Brown mid:   #5C4A2A  (secondary text - "Total Clarity")
     Brown line:  #8B7355  (blueprint illustrations, muted text)
     Brown pale:  #C4B59A  (borders, dividers)
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:        #EDE8DC;
  --cream-light:  #F5F0E8;
  --cream-dark:   #DDD6C5;
  --gold:         #C9A84C;
  --gold-dark:    #A8842A;
  --gold-light:   #D4B96A;
  --gold-pale:    #EDD89A;
  --brown-dark:   #3A2E1F;
  --brown:        #5C4A2A;
  --brown-mid:    #7A6240;
  --brown-light:  #8B7355;
  --brown-pale:   #C4B59A;
  --white:        #FEFCF8;
  --off-white:    #F8F4EC;
  --radius:       12px;
  --shadow:       0 4px 28px rgba(58,46,31,0.10);
  --shadow-hover: 0 12px 40px rgba(58,46,31,0.18);
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--brown-dark); background: var(--cream-light); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* =========================================================
   SECTION HEADINGS
   ========================================================= */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--brown-dark);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.section-title::after {
  content: '';
  display: block;
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--brown-light);
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 52px;
  font-style: italic;
}
.section-title-left {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.section-title-left::after {
  content: '';
  display: block;
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 12px 0 0;
  border-radius: 2px;
}
.section-sub-left {
  color: var(--brown-light);
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.7;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(254,252,248,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(58,46,31,0.12); }

.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  padding: 0 28px; height: 72px;
}

.nav-logo { display: flex; align-items: center; gap: 11px; }
.logo-icon { width: 38px; height: 46px; flex-shrink: 0; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: var(--gold); letter-spacing: 3.5px; text-transform: uppercase;
}
.logo-slogan {
  font-size: 8.5px; color: var(--brown-light);
  letter-spacing: 2.5px; text-transform: uppercase; margin-top: 3px;
}

.nav-menu { display: flex; gap: 28px; }
.nav-menu a {
  font-size: 12.5px; font-weight: 500;
  color: var(--brown); letter-spacing: 0.8px; text-transform: uppercase;
  transition: color var(--transition); position: relative; padding-bottom: 2px;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width var(--transition);
}
.nav-menu a:hover { color: var(--gold-dark); }
.nav-menu a:hover::after,
.nav-menu a.active-link::after { width: 100%; }
.nav-menu a.active-link { color: var(--gold-dark); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.btn-portfolio {
  background: var(--gold); color: var(--white);
  padding: 9px 20px; border-radius: 6px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 3px 12px rgba(201,168,76,0.35);
}
.btn-portfolio:hover {
  background: var(--gold-dark); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.45);
}

.social-icons { display: flex; gap: 7px; }
.social-icons a {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--brown-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--brown); transition: all var(--transition);
}
.social-icons a:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--white); transform: translateY(-2px);
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--brown); border-radius: 4px; transition: all var(--transition); }

/* ── Dropdown menu ─────────────────────────────────────── */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1.5px solid var(--gold-light);
  border-radius: 10px; min-width: 220px; padding: 8px 0;
  box-shadow: 0 12px 40px rgba(58,46,31,0.14);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 200;
}
.dropdown::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-bottom: 6px solid var(--gold-light);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown li { list-style: none; }
.dropdown li a {
  display: block; padding: 9px 18px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--brown-dark); text-transform: none;
  transition: background 0.18s, color 0.18s;
  border-bottom: none;
}
.dropdown li a::after { display: none; }
.dropdown li a:hover { background: var(--cream); color: var(--gold); }
.dropdown li a:hover::after { display: none; }

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero {
  position: relative; height: 100vh; min-height: 580px;
  overflow: hidden; margin-top: 72px;
}
.hero-slider { width: 100%; height: 100%; position: relative; }

.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: all; }

.slide-bg { position: absolute; inset: 0; }
.slide-bg-1 { background: linear-gradient(135deg, #2A1F0F 0%, #4A3520 50%, #3A2810 100%); }
.slide-bg-2 { background: linear-gradient(135deg, #1F1810 0%, #3D2E1A 50%, #2E2210 100%); }
.slide-bg-3 { background: linear-gradient(135deg, #241A0C 0%, #42311B 50%, #3A2810 100%); }
/* Full-bleed background image with rich dark overlay */
.slide-bg[style] {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.slide-bg[style]::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,9,3,0.88) 0%,
    rgba(20,13,5,0.72) 40%,
    rgba(20,13,5,0.40) 70%,
    rgba(10,6,2,0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.slide-bg[style]::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,6,2,0.30) 0%,
    transparent 30%,
    transparent 70%,
    rgba(10,6,2,0.50) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.slide-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1160px; margin: 0 auto; padding: 0 48px; gap: 32px;
}
.slide-text { flex: 0 0 52%; max-width: 540px; }

.slide-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.4); padding: 5px 14px;
  border-radius: 4px; margin-bottom: 20px;
}

.slide-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 54px); font-weight: 700;
  color: var(--cream-light); line-height: 1.18; margin-bottom: 18px;
}
.slide-text h1 .gold { color: var(--gold); }

.slide-text p {
  color: rgba(237,232,220,0.75); font-size: 15px;
  line-height: 1.75; margin-bottom: 16px;
}

.hero-services { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.hero-svc-tag {
  font-size: 11px; color: var(--gold-pale);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 4px 12px; border-radius: 4px; letter-spacing: 0.5px;
}

.btn-hero {
  display: inline-block;
  border: 1.5px solid var(--gold); color: var(--gold);
  padding: 13px 30px; border-radius: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  transition: all var(--transition);
}
.btn-hero:hover {
  background: var(--gold); color: var(--brown-dark);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.slide-image {
  flex: 0 0 43%; max-width: 440px; height: 440px;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  border: 1px solid rgba(201,168,76,0.2);
}
.slide-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.slide.active .slide-image img { transform: scale(1.04); }

.slider-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(201,168,76,0.3); cursor: pointer;
  transition: all var(--transition); border: 1px solid rgba(201,168,76,0.5);
}
.dot.active { background: var(--gold); transform: scale(1.4); border-color: var(--gold); }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light); width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--gold); color: var(--brown-dark); border-color: var(--gold); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* =========================================================
   SERVICES SECTION — REDESIGNED
   ========================================================= */
.services-section {
  background: var(--cream); padding: 100px 0; position: relative; overflow: hidden;
}

/* Section Header */
.svc-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 56px; flex-wrap: wrap;
}
.svc-header-left { flex: 0 0 auto; }
.svc-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3); padding: 5px 14px;
  border-radius: 100px; margin-bottom: 14px;
}
.svc-eyebrow i { font-size: 0.68rem; }
.svc-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  color: var(--brown-dark); line-height: 1.2;
}
.svc-title span { color: var(--gold); }
.svc-header-right { flex: 1; max-width: 400px; }
.svc-header-right p { font-size: 14px; color: var(--brown-light); line-height: 1.75; margin-bottom: 16px; }
.svc-header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px; transition: gap var(--transition), color var(--transition);
}
.svc-header-cta:hover { color: var(--gold-dark); gap: 12px; }

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Service Card */
.service-card {
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(201,168,76,0.15);
  text-decoration: none; display: block;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-img-wrap { position: relative; height: 300px; overflow: hidden; }
.service-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.service-card:hover .service-img-wrap img { transform: scale(1.1); }

/* ── Overlay — always-visible title + hover/tap reveals full content ── */
.svc-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0;
  overflow: hidden;
}

/* Permanent dark gradient so title is always readable */
.svc-overlay::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,6,2,0.88) 0%,
    rgba(10,6,2,0.45) 40%,
    rgba(10,6,2,0.05) 100%
  );
  transition: background 0.4s ease;
  z-index: 0;
}
.service-card:hover .svc-overlay::before,
.service-card.active .svc-overlay::before {
  background: linear-gradient(
    to top,
    rgba(10,6,2,0.97) 0%,
    rgba(10,6,2,0.80) 55%,
    rgba(10,6,2,0.25) 100%
  );
}

/* Gold top accent bar — slides in on hover/tap */
.svc-overlay::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.3s ease, transform 0.4s ease;
  z-index: 1;
}
.service-card:hover .svc-overlay::after,
.service-card.active .svc-overlay::after {
  opacity: 1; transform: scaleX(1);
}

/* Card body container */
.svc-card-body {
  position: relative; z-index: 2;
  padding: 20px 22px;
  color: #fff;
}

/* Service number — always visible */
.svc-num {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); opacity: 0.7;
  display: block; margin-bottom: 4px;
  transform: translateY(0);
  transition: opacity 0.3s ease;
}

/* Title — ALWAYS visible */
.svc-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: #fff; line-height: 1.25;
  margin: 0;
  transition: transform 0.35s ease, margin 0.35s ease;
}

/* Icon — hidden by default, slides down from top on hover/tap */
.svc-icon-wrap {
  position: absolute; z-index: 2;
  top: 20px; left: 22px;
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.45);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}
.service-card:hover .svc-icon-wrap,
.service-card.active .svc-icon-wrap {
  opacity: 1; transform: translateY(0);
}

/* Description — hidden, slides up on hover/tap */
.svc-card-body p {
  font-size: 0.79rem; color: rgba(255,255,255,0.72);
  line-height: 1.65; margin: 0;
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease 0.05s, opacity 0.35s ease 0.05s, margin 0.35s ease;
}
.service-card:hover .svc-card-body p,
.service-card.active .svc-card-body p {
  max-height: 100px; opacity: 1; margin-top: 8px;
}

/* Title shifts up slightly when content expands */
.service-card:hover .svc-card-body h3,
.service-card.active .svc-card-body h3 {
  transform: translateY(-4px);
  margin-bottom: 4px;
}

/* Explore link — hidden, appears last */
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
  margin-top: 0;
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease 0.15s, opacity 0.3s ease 0.15s, margin 0.3s ease 0.15s;
}
.service-card:hover .svc-link,
.service-card.active .svc-link {
  max-height: 40px; opacity: 1; margin-top: 12px;
}
.svc-link i { transition: transform 0.25s ease; }
.service-card:hover .svc-link i,
.service-card.active .svc-link i { transform: translateX(4px); }

/* CTA Card */
.service-card-cta {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #5C3A18 100%);
  border-color: rgba(201,168,76,0.3);
}
.service-card-cta:hover { transform: translateY(-8px); }
.svc-cta-inner {
  padding: 36px 28px; height: 300px;
  display: flex; flex-direction: column; justify-content: center;
}
.svc-cta-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold);
  margin-bottom: 20px;
}
.svc-cta-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: #fff;
  line-height: 1.3; margin-bottom: 12px;
}
.svc-cta-inner p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 16px; }
.svc-cta-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.svc-cta-tags span {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.5px;
  color: var(--gold-light);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 3px 10px; border-radius: 100px;
}
.svc-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--brown-dark);
  padding: 11px 20px; border-radius: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px;
  transition: background var(--transition), transform var(--transition);
  align-self: flex-start;
}
.service-card-cta:hover .svc-cta-btn { background: var(--gold-light); transform: translateX(4px); }

/* Service card scroll-reveal entrance */
.service-card:not(.service-card-cta) {
  opacity: 0;
  transform: translateY(36px);
  transition: transform var(--transition), box-shadow var(--transition),
              opacity 0.55s ease, transform 0.55s ease;
}
.service-card:not(.service-card-cta).svc-inview {
  opacity: 1;
  transform: translateY(0);
}
.services-grid .service-card:nth-child(2) { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.16s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.16s; }

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } .svc-header { flex-direction: column; align-items: flex-start; } }

/* =========================================================
   ABOUT SECTION — REDESIGNED
   ========================================================= */
.about-section {
  background: var(--off-white); padding: 100px 0; position: relative; overflow: hidden;
}
.about-section::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Two-column layout */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Left: Image column */
.about-img-col { position: relative; }
.about-img-main-wrap { position: relative; border-radius: 20px; overflow: visible; }
.about-main-img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 24px 64px rgba(58,46,31,0.2);
  object-fit: cover; height: 480px;
  border: 1px solid rgba(201,168,76,0.2);
  display: block;
}
/* Floating accent image */
.about-img-accent {
  position: absolute; bottom: -28px; right: -28px;
  width: 180px; height: 180px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(58,46,31,0.25);
  border: 3px solid var(--off-white);
  z-index: 2;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

/* Stats row */
.about-stats-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 48px;
  box-shadow: var(--shadow);
}
.about-stat { text-align: center; flex: 1; }
.about-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.about-stat-plus { font-size: 1.2rem; color: var(--gold); }
.about-stat-label { display: block; font-size: 0.72rem; color: var(--brown-light); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.about-stat-divider { width: 1px; height: 40px; background: rgba(201,168,76,0.2); flex-shrink: 0; }

/* Right: Text column */
.about-text-col {}
.about-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3); padding: 5px 14px;
  border-radius: 100px; margin-bottom: 18px;
}
.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 700;
  color: var(--brown-dark); line-height: 1.2; margin-bottom: 24px;
}
.about-heading span { color: var(--gold); }
.about-quote {
  border-left: 3px solid var(--gold);
  padding: 12px 20px;
  background: rgba(201,168,76,0.06);
  border-radius: 0 10px 10px 0;
  margin-bottom: 24px;
  font-size: 0.92rem; font-style: italic;
  color: var(--brown); line-height: 1.7;
}
.about-quote i { color: var(--gold); margin-right: 6px; font-size: 0.8rem; }
.about-intro {
  font-size: 14px; line-height: 1.85;
  color: var(--brown); margin-bottom: 28px;
}
.about-intro strong { color: var(--brown-dark); }

/* Icon Points */
.about-points { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.about-point { display: flex; gap: 16px; align-items: flex-start; }
.about-point-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem;
  margin-top: 2px;
}
.about-point-text strong {
  display: block; font-size: 0.9rem; font-weight: 700;
  color: var(--brown-dark); margin-bottom: 4px;
}
.about-point-text p { font-size: 0.82rem; color: var(--brown-light); line-height: 1.65; }

/* CTA Row */
.about-cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-about-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--brown-dark);
  padding: 13px 24px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
  transition: all var(--transition);
}
.btn-about-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.45); }
.btn-about-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(201,168,76,0.5); color: var(--brown);
  padding: 12px 22px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 600;
  transition: all var(--transition);
}
.btn-about-secondary:hover { background: var(--gold); color: var(--brown-dark); border-color: var(--gold); }

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-accent { width: 130px; height: 130px; right: -12px; bottom: -12px; }
  .about-main-img { height: 320px; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
/* =========================================================
   WORDS OF APPRECIATION — REDESIGNED
   ========================================================= */
/* Hide any orphaned text nodes at top of testimonials section */
.testimonials-section > .testi-bg-pattern ~ *:not(.container):not(.testi-bg-pattern) { display: none; }

.testimonials-section {
  background: linear-gradient(160deg, #1C1208 0%, #2E1F0A 50%, #3A2E1F 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.testi-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.testi-bg-pattern::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%);
}

/* Header */
.testi-header { text-align: center; margin-bottom: 56px; }
.testi-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 100px; margin-bottom: 20px;
}
.testi-eyebrow i { font-size: 0.68rem; color: var(--gold); }
.testi-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700; color: #fff; line-height: 1.2;
  margin-bottom: 14px;
}
.testi-heading span { color: var(--gold); }
.testi-subheading {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  max-width: 520px; margin: 0 auto 24px; line-height: 1.75;
}
.testi-rating-bar {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 8px 20px; border-radius: 100px;
}
.testi-rating-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.testi-rating-text { font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 500; }

/* Slider */
.testi-slider-wrap {
  display: flex; align-items: center; gap: 16px;
}
.testi-track-outer { flex: 1; overflow: hidden; }
.testi-track {
  display: flex; gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card */
.testi-card {
  flex: 0 0 calc(50% - 12px);
  min-width: calc(50% - 12px);
}
.testi-card-inner {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.testi-card-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.testi-card:hover .testi-card-inner {
  border-color: rgba(201,168,76,0.4);
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.testi-card:hover .testi-card-inner::before { opacity: 1; }

/* Quote icon */
.testi-quote-icon {
  color: var(--gold);
  font-size: 1.6rem;
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}

/* Text */
.testi-text {
  font-size: 0.97rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

/* Divider */
.testi-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  margin-bottom: 22px;
}

/* Footer */
.testi-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.testi-avatar-wrap {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: #fff;
  border: 2px solid rgba(201,168,76,0.5);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.testi-client-info { display: flex; flex-direction: column; gap: 4px; }
.testi-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: #fff; margin: 0;
}
.testi-role {
  font-size: 0.76rem; color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 5px;
}
.testi-role i { color: var(--gold); font-size: 0.65rem; }
.testi-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.testi-stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 2px; }
.testi-project-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light);
  font-size: 0.68rem; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
  white-space: nowrap;
}
.testi-project-tag i { font-size: 0.62rem; color: var(--gold); }

/* Arrows */
.testi-arrow {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  cursor: pointer;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  z-index: 2;
}
.testi-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}

/* Dots */
.testi-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 36px;
}
.tdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer; transition: all 0.3s;
}
.tdot.active {
  background: var(--gold);
  width: 24px; border-radius: 4px;
  box-shadow: 0 0 8px rgba(201,168,76,0.5);
}

/* Trust bar */
.testi-trust-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  margin-top: 52px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 20px 32px;
}
.ttb-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 28px;
  font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 500;
}
.ttb-item i { color: var(--gold); font-size: 0.9rem; }
.ttb-divider {
  width: 1px; height: 30px;
  background: rgba(201,168,76,0.2);
}

@media (max-width: 900px) {
  .testi-card { flex: 0 0 calc(100% - 0px); min-width: 100%; }
  .testi-trust-bar { flex-direction: column; gap: 14px; padding: 24px 16px; }
  .ttb-divider { display: none; }
  .ttb-item { padding: 0; }
}

/* =========================================================
   BLOG SECTION — REDESIGNED
   ========================================================= */
.blog-section { background: var(--cream); padding: 100px 0; }

/* Section Header */
.blog-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 52px; flex-wrap: wrap;
}
.blog-header-left {}
.blog-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3); padding: 5px 14px;
  border-radius: 100px; margin-bottom: 14px;
}
.blog-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 42px); font-weight: 700;
  color: var(--brown-dark); line-height: 1.2;
}
.blog-heading span { color: var(--gold); }
.blog-header-right { max-width: 380px; }
.blog-header-right p { font-size: 14px; color: var(--brown-light); line-height: 1.75; margin-bottom: 14px; }
.blog-view-all {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px; transition: gap var(--transition), color var(--transition);
}
.blog-view-all:hover { color: var(--gold-dark); gap: 12px; }

/* Blog Layout */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Featured Post */
.blog-featured {
  display: block; text-decoration: none;
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-hover);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-featured:hover { transform: translateY(-6px); }
.blog-featured-img {
  position: relative; height: 520px; overflow: hidden;
}
.blog-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease; display: block;
}
.blog-featured:hover .blog-featured-img img { transform: scale(1.06); }
.blog-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,6,2,0.95) 0%, rgba(10,6,2,0.55) 50%, rgba(10,6,2,0.1) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
}
.blog-ftag {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 10px;
  align-self: flex-start;
}
.blog-fdate {
  font-size: 0.72rem; color: rgba(255,255,255,0.5);
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.blog-fdate i { color: var(--gold); font-size: 0.65rem; }
.blog-featured-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 700; color: #fff;
  line-height: 1.25; margin-bottom: 12px;
}
.blog-featured-overlay p {
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 18px;
}
.blog-flink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.blog-featured:hover .blog-flink { gap: 12px; }

/* Small Cards Column */
.blog-small-col {
  display: flex; flex-direction: column; gap: 16px;
}
.blog-small-card {
  display: flex; gap: 0; text-decoration: none;
  background: var(--white); border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-small-card:hover { transform: translateX(6px); box-shadow: var(--shadow-hover); border-color: rgba(201,168,76,0.3); }
.blog-small-img {
  width: 120px; flex-shrink: 0; overflow: hidden;
}
.blog-small-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.blog-small-card:hover .blog-small-img img { transform: scale(1.1); }
.blog-small-body {
  padding: 16px 18px; display: flex; flex-direction: column; justify-content: center;
}
.blog-stag {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold-dark); background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2px 8px; border-radius: 4px; margin-bottom: 6px;
  align-self: flex-start;
}
.blog-small-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--brown-dark); line-height: 1.35; margin-bottom: 6px;
}
.blog-small-body p { font-size: 0.78rem; color: var(--brown-light); line-height: 1.55; margin-bottom: 8px; }
.blog-slink {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--gold); transition: gap var(--transition);
}
.blog-small-card:hover .blog-slink { gap: 8px; }

@media (max-width: 860px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-featured-img { height: 340px; }
  .blog-section-header { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-section { background: var(--cream); padding: 96px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 44px; }
.faq-col { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--cream-light); border-radius: 10px; overflow: hidden;
  border: 1.5px solid rgba(201,168,76,0.18); transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open { border-color: var(--gold); box-shadow: 0 4px 20px rgba(201,168,76,0.2); background: var(--white); }
.faq-question {
  width: 100%; background: none; border: none; padding: 16px 18px;
  text-align: left; font-size: 13.5px; font-weight: 500; color: var(--brown-dark);
  cursor: pointer; display: flex; align-items: flex-start; gap: 10px;
  transition: color var(--transition); line-height: 1.5;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon { font-size: 10px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  font-size: 13px; line-height: 1.75; color: var(--brown-light);
  padding: 0 18px 18px; border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 12px; margin-top: 0;
}

/* =========================================================
   CONTACT BANNER
   ========================================================= */
.contact-banner {
  background: linear-gradient(135deg, #2A1F0F 0%, #4A3520 60%, #3A2810 100%);
  padding: 72px 0; position: relative; overflow: hidden;
}
.contact-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}
.contact-banner-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}
.contact-banner-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px); color: var(--cream-light); font-weight: 700;
}
.contact-banner-left h2 span { color: var(--gold); }
.contact-banner-left p { color: rgba(237,232,220,0.7); font-size: 14px; margin-top: 6px; }

.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-item i { color: var(--gold); font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.contact-item span,
.contact-item a { font-size: 13.5px; color: rgba(237,232,220,0.82); line-height: 1.5; transition: color var(--transition); }
.contact-item a:hover { color: var(--gold); }

.btn-consult {
  display: inline-block; background: var(--gold); color: var(--brown-dark);
  padding: 14px 30px; border-radius: 6px; font-size: 13px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4); transition: all var(--transition); white-space: nowrap;
}
.btn-consult:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.5); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--brown-dark); color: var(--cream-light);
  padding-top: 72px; position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 56px; }

.footer-brand { margin-bottom: 20px; }
.footer-logo-brand {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  color: var(--gold); letter-spacing: 3.5px; text-transform: uppercase;
}
.footer-logo-slogan {
  font-size: 9px; color: var(--brown-pale); letter-spacing: 2.5px;
  text-transform: uppercase; display: block; margin-top: 3px;
}
.footer-col h3 {
  font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 600;
  margin-bottom: 20px; color: var(--cream-light); letter-spacing: 0.5px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-about p { font-size: 13.5px; line-height: 1.85; color: rgba(237,232,220,0.6); }
.footer-services-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.footer-svc {
  font-size: 11px; color: var(--brown-pale);
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.15);
  padding: 3px 10px; border-radius: 4px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(237,232,220,0.6);
  transition: color var(--transition), padding-left var(--transition); display: inline-block;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-item i { color: var(--gold); font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span,
.footer-contact-item a { font-size: 12.5px; color: rgba(237,232,220,0.65); line-height: 1.6; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(237,232,220,0.4); }
.footer-bottom strong { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(237,232,220,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* =========================================================
   FLOATING CTA
   ========================================================= */
.float-cta {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--brown-dark); width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  box-shadow: 0 6px 24px rgba(201,168,76,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-cta:hover { transform: scale(1.1) rotate(-8deg); box-shadow: 0 10px 32px rgba(201,168,76,0.65); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal-ready { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-ready.revealed { opacity: 1; transform: translateY(0); }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.blog-grid .blog-card:nth-child(2) { transition-delay: 0.08s; }
.blog-grid .blog-card:nth-child(3) { transition-delay: 0.08s; }
.blog-grid .blog-card:nth-child(4) { transition-delay: 0.16s; }
.faq-col:nth-child(2) .faq-item { transition-delay: 0.06s; }

/* =========================================================
   NAV OVERLAY
   ========================================================= */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(58,46,31,0.5); z-index: 998; backdrop-filter: blur(2px);
}
.nav-overlay.active { display: block; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .nav-menu {
    display: none; flex-direction: column; gap: 0;
    position: fixed; top: 72px; left: 0; width: 270px;
    height: calc(100vh - 72px); background: var(--cream-light);
    z-index: 999; padding: 16px 0;
    box-shadow: 4px 0 24px rgba(58,46,31,0.18); overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li a {
    display: block; padding: 14px 28px; font-size: 13px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .hamburger { display: flex; }
  .social-icons { display: none; }
  .slide-content { flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 24px; }
  .slide-text { flex: none; max-width: 100%; }
  .slide-image { display: none; }
  .hero-services { justify-content: center; }
  .faq-grid { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-banner-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .navbar-inner { padding: 0 16px; }
  .btn-portfolio { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero { height: 78vh; }
  .slide-text h1 { font-size: 26px; }
  .float-cta { bottom: 20px; right: 16px; width: 48px; height: 48px; font-size: 17px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}
