/* =====================================================================
   Naouali & Co, Design System
   Inspired by texasgreatestremodelers.com (Webflow), rebuilt in
   Naouali's taupe + charcoal brand. Font: Inter (Poppins for display).
   ===================================================================== */

:root {
  /* Brand */
  --charcoal: #232020;
  --charcoal-2: #2e2a2a;
  --charcoal-3: #1a1818;
  --taupe: #a4937f;
  --taupe-dark: #8a7866;
  --taupe-light: #c2b4a3;
  --sand: #f6f2ed;
  --sand-2: #efe9e1;
  --white: #ffffff;

  /* Text */
  --text: #2a2624;
  --muted: #6f6760;
  --muted-2: #908379;
  --line: #e6ddd2;
  --line-dark: rgba(255, 255, 255, 0.12);

  /* Trust / success accent (used sparingly, like target's green) */
  --green: #198754;
  --green-soft: #e8f3ed;

  /* Shape */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 18px 50px rgba(35, 32, 32, 0.12);
  --shadow-sm: 0 6px 22px rgba(35, 32, 32, 0.09);
  --shadow-lg: 0 30px 80px rgba(35, 32, 32, 0.18);
  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Poppins", "Inter", sans-serif;
  line-height: 1.12;
  color: var(--charcoal);
  font-weight: 600;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--taupe); }
.center { text-align: center; }

/* ===== Eyebrow ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--taupe-dark);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--taupe);
  display: inline-block;
}
.eyebrow.center-eb { justify-content: center; }
.eyebrow.light { color: var(--taupe-light); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s,
    box-shadow 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn-primary { background: var(--taupe); color: #fff; }
.btn-primary:hover { background: var(--taupe-dark); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(164, 147, 127, 0.4); }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: var(--charcoal-2); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--line); }
.btn-outline:hover { border-color: var(--taupe); color: var(--taupe-dark); transform: translateY(-3px); }
.btn-nav { padding: 11px 22px; background: var(--charcoal); color: #fff; }
.btn-nav:hover { background: var(--taupe); transform: translateY(-1px); }
.btn-block { width: 100%; }
.btn-arrow::after { content: "→"; transition: transform 0.25s var(--ease); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 120px; }
.brand-logo { height: 90px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a:not(.btn) {
  font-weight: 500; font-size: 0.95rem; color: var(--charcoal);
  position: relative; transition: color 0.2s; padding: 4px 0;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--taupe); transition: width 0.25s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--taupe-dark); }
.nav-links a:not(.btn):hover::after,
.nav-links a.is-current::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero (carousel) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.4s var(--ease), transform 7s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(26, 24, 24, 0.86) 0%, rgba(35, 32, 32, 0.7) 45%, rgba(35, 32, 32, 0.4) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 500;
  margin-bottom: 22px; backdrop-filter: blur(4px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.3); }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); color: #fff; font-weight: 700; margin-bottom: 22px; letter-spacing: -0.02em; }
.hero-sub { font-size: clamp(1.02rem, 2vw, 1.2rem); color: rgba(255, 255, 255, 0.9); max-width: 620px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-points { display: flex; gap: 26px; flex-wrap: wrap; }
.hero-points li { display: flex; align-items: center; gap: 9px; font-size: 0.92rem; color: rgba(255, 255, 255, 0.92); font-weight: 500; }
.hero-points .ic { color: var(--taupe-light); font-weight: 700; }

.hero-dots { position: absolute; bottom: 30px; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: 10px; }
.hero-dots button { width: 30px; height: 4px; border-radius: 4px; border: none; background: rgba(255, 255, 255, 0.4); cursor: pointer; transition: background 0.3s, width 0.3s; padding: 0; }
.hero-dots button.active { background: var(--taupe); width: 46px; }

/* ===== Trust bar (stats) ===== */
.trustbar { background: var(--charcoal); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { text-align: center; padding: 42px 18px; border-right: 1px solid var(--line-dark); }
.trust-item:last-child { border-right: none; }
.trust-item strong { display: block; font-family: "Poppins", sans-serif; font-size: clamp(2rem, 4vw, 2.6rem); color: var(--taupe-light); font-weight: 700; }
.trust-item span { font-size: 0.82rem; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; }

/* ===== Sections ===== */
.section { padding: 104px 0; }
.section-sm { padding: 76px 0; }
.section-alt { background: var(--sand); }
.section-dark { background: var(--charcoal); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(2.1rem, 4.4vw, 3rem); margin-bottom: 18px; }
.section-lead { color: var(--muted); font-size: 1.08rem; }
.section-dark .section-lead { color: rgba(255, 255, 255, 0.75); }

/* ===== Split (two-column image + text) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-text h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); margin-bottom: 20px; }
.split-text p { color: var(--muted); margin-bottom: 22px; font-size: 1.04rem; }
.section-dark .split-text p { color: rgba(255, 255, 255, 0.8); }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.split-badge {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--white); color: var(--charcoal);
  border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 16px; max-width: 280px;
}
.split-badge .num { font-family: "Poppins", sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--taupe); line-height: 1; }
.split-badge .lbl { font-size: 0.86rem; color: var(--muted); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* ===== Feature blocks (Why Choose Us) ===== */
.feature-list { display: grid; gap: 26px; margin: 30px 0; }
.feature-item { display: flex; gap: 18px; }
.feature-item .f-ic {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
  background: var(--sand); display: grid; place-items: center; font-size: 1.5rem;
}
.section-dark .feature-item .f-ic { background: rgba(255, 255, 255, 0.08); }
.feature-item h4 { font-size: 1.18rem; margin-bottom: 6px; }
.feature-item p { color: var(--muted); font-size: 0.98rem; margin: 0; }
.section-dark .feature-item p { color: rgba(255, 255, 255, 0.75); }

/* ===== Services cards (with images + CTA) ===== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.svc-media { aspect-ratio: 16/11; overflow: hidden; position: relative; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.08); }
.svc-num {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(35, 32, 32, 0.78); color: #fff; backdrop-filter: blur(4px);
  font-family: "Poppins", sans-serif; font-size: 0.82rem; font-weight: 600;
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
}
.svc-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 1.24rem; margin-bottom: 10px; }
.svc-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; flex: 1; }
.svc-link {
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 0.86rem;
  color: var(--taupe-dark); display: inline-flex; align-items: center; gap: 7px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.svc-link::after { content: "→"; transition: transform 0.25s var(--ease); }
.svc-card:hover .svc-link::after { transform: translateX(5px); }

/* ===== Financing cards ===== */
.fin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.fin-card {
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line-dark);
  border-radius: var(--radius); padding: 36px 30px;
  transition: transform 0.35s var(--ease), background 0.35s, border-color 0.35s;
}
.fin-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.09); border-color: rgba(164, 147, 127, 0.5); }
.fin-card .fin-big { font-family: "Poppins", sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--taupe-light); line-height: 1; margin-bottom: 14px; }
.fin-card h4 { font-size: 1.15rem; color: #fff; margin-bottom: 10px; }
.fin-card p { color: rgba(255, 255, 255, 0.74); font-size: 0.96rem; }

/* light variant for financing page */
.fin-grid.light .fin-card { background: #fff; border: 1px solid var(--line); }
.fin-grid.light .fin-card:hover { box-shadow: var(--shadow); }
.fin-grid.light .fin-card .fin-big { color: var(--taupe); }
.fin-grid.light .fin-card h4 { color: var(--charcoal); }
.fin-grid.light .fin-card p { color: var(--muted); }

/* ===== Process steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step {
  position: relative; padding: 38px 28px 32px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-num {
  font-family: "Poppins", sans-serif; font-size: 3rem; font-weight: 700;
  color: var(--sand-2); line-height: 1; margin-bottom: 12px;
}
.step:hover .step-num { color: var(--taupe-light); }
.step h4 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.95rem; }
.step::after {
  content: "→"; position: absolute; top: 50%; right: -20px; transform: translateY(-50%);
  color: var(--taupe); font-size: 1.3rem; font-weight: 700;
}
.step:last-child::after { display: none; }

/* ===== Testimonials ===== */
.tmt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tmt-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.tmt-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tmt-stars { color: #e6b800; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.tmt-card p { color: var(--text); font-size: 0.98rem; flex: 1; margin-bottom: 22px; }
.tmt-who { display: flex; align-items: center; gap: 14px; }
.tmt-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--taupe);
  color: #fff; display: grid; place-items: center; font-family: "Poppins", sans-serif;
  font-weight: 600; font-size: 1.05rem;
}
.tmt-who strong { display: block; font-size: 0.96rem; color: var(--charcoal); }
.tmt-who span { font-size: 0.84rem; color: var(--muted); }

/* ===== FAQ accordion ===== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 4px; text-align: left;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1.08rem; color: var(--charcoal);
}
.faq-q .faq-ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--sand); display: grid; place-items: center; font-size: 1.2rem; color: var(--taupe-dark); transition: transform 0.3s var(--ease), background 0.3s, color 0.3s; }
.faq-item.open .faq-q .faq-ic { transform: rotate(45deg); background: var(--taupe); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { color: var(--muted); padding: 0 4px 26px; font-size: 0.99rem; }

/* ===== Filters + Gallery ===== */
.filters { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 24px; border-radius: 50px; border: 1px solid var(--line);
  background: #fff; color: var(--muted); font-weight: 500; cursor: pointer;
  font-family: "Inter", sans-serif; font-size: 0.92rem; transition: all 0.25s;
}
.filter-btn:hover { border-color: var(--taupe); color: var(--taupe-dark); }
.filter-btn.is-active { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4/3; cursor: pointer; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 16px 14px; color: #fff; font-weight: 500; font-size: 0.9rem;
  background: linear-gradient(transparent, rgba(35, 32, 32, 0.85));
  transform: translateY(8px); opacity: 0; transition: 0.35s;
}
.gallery-item:hover figcaption { transform: translateY(0); opacity: 1; }
.gallery-item.hide { display: none; }

/* ===== Quote / Contact form ===== */
.quote-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.quote-intro h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.quote-intro > p { color: rgba(255, 255, 255, 0.78); margin-bottom: 30px; font-size: 1.05rem; }
.quote-contact { display: grid; gap: 18px; }
.quote-contact li { display: flex; align-items: center; gap: 14px; font-size: 1.02rem; color: rgba(255, 255, 255, 0.9); }
.quote-contact .qc-ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: rgba(255, 255, 255, 0.08); display: grid; place-items: center; font-size: 1.2rem; }
.quote-contact a:hover { color: var(--taupe-light); }

.quote-form { background: #fff; border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); }
.quote-form h3 { font-size: 1.4rem; margin-bottom: 6px; }
.quote-form .form-sub { color: var(--muted); font-size: 0.94rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--charcoal); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: "Inter", sans-serif; font-size: 0.95rem; color: var(--text); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--taupe); box-shadow: 0 0 0 3px rgba(164, 147, 127, 0.18);
}
.field textarea { resize: vertical; }
.form-status { margin-top: 14px; font-size: 0.92rem; font-weight: 500; text-align: center; min-height: 1.2em; }
.form-status.success { color: var(--green); }
.form-status.error { color: #c0392b; }

/* ===== CTA strip ===== */
.cta-band {
  position: relative; text-align: center; padding: 110px 0; color: #fff; overflow: hidden;
  background: linear-gradient(rgba(35, 32, 32, 0.82), rgba(35, 32, 32, 0.88)),
    url("static/images/kitchen-cabinets/IMG_2395.jpeg") center/cover no-repeat;
  background-attachment: scroll, fixed;
}
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3rem); color: #fff; margin-bottom: 16px; max-width: 880px; margin-inline: auto; }
.cta-band p { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; margin-bottom: 30px; max-width: 620px; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }

/* ===== Page hero (subpages) ===== */
.page-hero {
  position: relative; padding: 170px 0 80px; color: #fff; text-align: center;
  background: linear-gradient(rgba(26, 24, 24, 0.78), rgba(35, 32, 32, 0.82)),
    url("static/images/kitchen-cabinets/IMG_2397.jpeg") center/cover no-repeat;
}
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.4rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255, 255, 255, 0.85); max-width: 620px; margin: 0 auto; font-size: 1.08rem; }
.crumbs { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 18px; letter-spacing: 0.04em; }
.crumbs a:hover { color: var(--taupe-light); }

/* ===== Service detail rows (services page) ===== */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--line); }
.svc-detail:last-child { border-bottom: none; }
.svc-detail.reverse .svcd-media { order: 2; }
.svc-detail img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
/* Branded placeholder tile for services that don't have a photo yet */
.ph-tile { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--taupe-dark) 100%);
  display: grid; place-items: center; text-align: center; padding: 26px; }
.ph-tile span { color: #fff; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1.15rem; line-height: 1.5; opacity: 0.95; }
.ph-tile small { display: block; margin-top: 8px; font-weight: 400; font-size: 0.78rem; opacity: 0.6; letter-spacing: 0.04em; }
.svc-media .ph-tile { border-radius: 0; box-shadow: none; aspect-ratio: 16/11; }
.svc-detail h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 14px; }
.svc-detail .svc-eyebrow { color: var(--taupe-dark); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px; }
.svc-detail p { color: var(--muted); margin-bottom: 18px; }

/* ===== Check list ===== */
.check-list { display: grid; gap: 12px; margin-bottom: 28px; }
.check-list li { padding-left: 32px; position: relative; font-weight: 500; color: var(--text); }
.section-dark .check-list li { color: rgba(255, 255, 255, 0.9); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 2px; width: 20px; height: 20px;
  background: var(--green); color: #fff; border-radius: 50%; display: grid;
  place-items: center; font-size: 0.7rem;
}
.check-list.two-col { grid-template-columns: 1fr 1fr; }

/* ===== Footer ===== */
.footer { background: var(--charcoal-3); color: rgba(255, 255, 255, 0.74); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col a { display: block; color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: var(--taupe-light); }
.footer-logo { height: 58px; background: #fff; padding: 8px 12px; border-radius: 10px; margin-bottom: 16px; }
.footer-tag { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 18px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, 0.08); display: grid; place-items: center; margin: 0; transition: background 0.25s, transform 0.25s; }
.footer-social a:hover { background: var(--taupe); transform: translateY(-3px); }
.newsletter { display: flex; gap: 8px; margin-top: 8px; }
.newsletter input { flex: 1; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line-dark); background: rgba(255, 255, 255, 0.06); color: #fff; font-family: "Inter", sans-serif; font-size: 0.9rem; }
.newsletter input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter input:focus { outline: none; border-color: var(--taupe); }
.newsletter button { padding: 12px 18px; border-radius: 10px; border: none; background: var(--taupe); color: #fff; font-weight: 600; cursor: pointer; font-family: "Poppins", sans-serif; transition: background 0.25s; }
.newsletter button:hover { background: var(--taupe-dark); }
.footer-note { font-size: 0.78rem; color: rgba(255, 255, 255, 0.45); margin-top: 12px; }
.footer-bottom {
  border-top: 1px solid var(--line-dark); margin-top: 50px; padding: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap; font-size: 0.84rem; color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a:hover { color: var(--taupe-light); }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20, 18, 18, 0.93); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.lightbox-close { position: absolute; top: 22px; right: 30px; background: none; border: none; color: #fff; font-size: 2.6rem; cursor: pointer; line-height: 1; }

/* ===== Map embed ===== */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 360px; border: 0; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.d5 { transition-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide { transition: opacity 0.6s; transform: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .svc-grid, .tmt-grid, .gallery { grid-template-columns: repeat(2, 1fr); }
  .fin-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
}
@media (max-width: 900px) {
  .split, .quote-grid, .svc-detail, .svc-detail.reverse { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-media, .svc-detail.reverse .svcd-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
}
@media (max-width: 900px) {
  /* Fixed backgrounds are janky / unsupported on most mobile browsers (esp. iOS) */
  .cta-band { background-attachment: scroll, scroll; }
}
@media (max-width: 760px) {
  /* Shorter header + smaller logo to reclaim vertical space on phones */
  .nav-inner { height: 84px; }
  .brand-logo { height: 60px; }
  html { scroll-padding-top: 92px; }

  .nav-links {
    position: fixed; top: 84px; right: 0; height: calc(100vh - 84px); width: min(82vw, 300px);
    background: #fff; flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 28px 26px; box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    transform: translateX(110%); transition: transform 0.35s var(--ease); overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; padding: 12px 0; }
  .nav-links .btn-nav { margin-top: 10px; text-align: center; }
  .nav-toggle { display: flex; }
  .section { padding: 72px 0; }
  .steps::after, .step::after { display: none; }

  /* Badge: full-width-ish under the image so the label stops wrapping one word per line */
  .split-media { margin-bottom: 56px; }
  .split-badge { left: 50%; transform: translateX(-50%); bottom: -34px; max-width: none; width: min(92%, 340px); }
  .split-badge .num { font-size: 2rem; }
  .split-badge .lbl { font-size: 0.82rem; }
}
@media (max-width: 560px) {
  .svc-grid, .tmt-grid, .gallery, .steps, .check-list.two-col { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 30px 12px; }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding-top: 96px; min-height: 88vh; }
  .quote-form { padding: 26px 20px; }
  .page-hero { padding: 120px 0 60px; }
}
