/* ============================================================
   JB'S HOME IMPROVEMENT — MASTER STYLESHEET
   The Architectural Editorial Design System
   ============================================================ */

/* 1. GOOGLE FONTS IMPORT */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* 2. CSS CUSTOM PROPERTIES */
:root {
  --primary: #1B2A4A;
  --primary-light: #243660;
  --primary-dark: #111D35;
  --accent: #C8943E;
  --accent-light: #DEB06A;
  --accent-dark: #A67A2E;
  --bg-light: #F8F6F2;
  --bg-cream: #F0ECE3;
  --text-primary: #4A4A4A;
  --text-muted: #8A8A8A;
  --surface: #FFFFFF;
  --footer-bg: #FFFFFF;
  --whatsapp: #25D366;

  --shadow-card: 0 2px 20px rgba(27, 42, 74, 0.08);
  --shadow-card-hover: 0 20px 60px rgba(27, 42, 74, 0.16);
  --shadow-gold: 0 10px 30px rgba(200, 148, 62, 0.25);
  --shadow-gold-strong: 0 14px 40px rgba(200, 148, 62, 0.4);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 30px;

  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  --container-max: 1240px;
  --section-pad: 72px;
  --section-pad-mobile: 48px;
}

/* 3. CSS RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* 4. BASE STYLES */
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  background-color: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.mobile-menu-open {
  overflow: hidden;
}

/* 5. TYPOGRAPHY SCALE */
h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
}

h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.3;
}

p {
  font-size: 16px;
  line-height: 1.8;
}

/* 6. CONTAINER */
.container {
  max-width: var(--container-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* 7. BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--surface);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-strong);
  outline: none;
}

.btn-primary:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 3px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--surface);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: border-color var(--transition-smooth), color var(--transition-smooth), transform var(--transition-smooth);
  white-space: nowrap;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-2px);
  outline: none;
}

.btn-secondary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: var(--surface);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(27, 42, 74, 0.25);
  transition: background var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
  border: none;
  white-space: nowrap;
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(27, 42, 74, 0.35);
  outline: none;
}

.btn-dark:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 3px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--primary);
  transition: background var(--transition-smooth), color var(--transition-smooth), transform var(--transition-smooth);
  white-space: nowrap;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--primary);
  color: var(--surface);
  transform: translateY(-3px);
  outline: none;
}

.btn-outline:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 3px;
}

/* SECTION LABEL */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* 9. CARDS */
.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 32px;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

/* ============================================================
   10. HEADER / NAV
   ============================================================ */

/* TOPBAR */
.topbar {
  background: var(--primary);
  height: 40px;
  display: flex;
  align-items: center;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.topbar-left a {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition-fast);
}

.topbar-left a:hover {
  color: var(--accent-light);
}

.topbar-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-social {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.topbar-social:hover {
  background: var(--accent);
  color: var(--surface);
}

.topbar-social svg {
  width: 13px;
  height: 13px;
}

/* NAVBAR */
.navbar {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(27, 42, 74, 0.1);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-svg {
  width: 180px;
  height: auto;
}

/* REAL LOGO IMAGE */
.logo-img {
  height: 67px;
  width: auto;
  display: block;
}

.logo-footer-img {
  opacity: 1;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links > li > a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 4px;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-smooth);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--accent);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  width: 100%;
}

.nav-links > li > a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

/* DROPDOWN */
.has-dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 3px;
  transition: transform var(--transition-fast);
}

.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(27, 42, 74, 0.15);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), transform var(--transition-smooth), visibility var(--transition-smooth);
  pointer-events: none;
  z-index: 200;
  overflow: visible;
  padding-top: 10px;
}

/* Invisible bridge fills the gap so mouse doesn't lose hover */
.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -10px;
  right: -10px;
  height: 8px;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.dropdown.dd-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  border-left: 3px solid transparent;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--bg-cream);
  border-left-color: var(--accent);
  color: var(--primary);
}

.dropdown-item:focus-visible {
  outline: none;
  background: var(--bg-cream);
  border-left-color: var(--accent);
}

.dropdown-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* NAV CTA BUTTON */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--surface);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  white-space: nowrap;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-strong);
  outline: none;
}

.btn-cta:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 3px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.hamburger:hover {
  background: var(--bg-light);
}

.hamburger:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition-smooth), opacity var(--transition-fast);
  transform-origin: center;
}

.mobile-menu-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-dark);
  z-index: 999;
  flex-direction: column;
  padding: 100px 32px 40px;
  overflow-y: auto;
}

.mobile-menu-open .mobile-menu {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--surface);
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links a {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition-fast);
}

.mobile-nav-links a:hover {
  color: var(--accent-light);
}

.mobile-sub-links {
  padding: 8px 0 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-sub-links a {
  font-size: 16px;
  border-bottom: none;
  color: rgba(255, 255, 255, 0.65);
}

.mobile-sub-links a:hover {
  color: var(--accent-light);
}

.mobile-menu-cta {
  margin-top: 32px;
}

/* ============================================================
   11. HERO
   ============================================================ */
.hero {
  background: var(--primary);
  min-height: 63vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 40px
    );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
  gap: 60px;
  width: 100%;
  padding: 56px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(200, 148, 62, 0.15);
  border: 1px solid rgba(200, 148, 62, 0.35);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--surface);
  margin-bottom: 24px;
}

.hero h1 .accent-text {
  color: var(--accent);
}

.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.hero-stat .stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
  width: 100%;
  max-width: 520px;
}

.hero-image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.hero-image-wrap:hover img {
  transform: scale(1.05);
}

.hero-image-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(27, 42, 74, 0.6), transparent);
  pointer-events: none;
}

/* 12. FLOATING CARDS */
.floating-card {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 8px 40px rgba(27, 42, 74, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  z-index: 10;
  animation: float 4.5s ease-in-out infinite;
  white-space: nowrap;
}

.floating-card.float-delay {
  animation-delay: -2.25s;
}

.floating-card-icon {
  font-size: 18px;
}

.floating-card-stars {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 1px;
}

.floating-card-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.floating-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.floating-card-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.float-bottom-left {
  bottom: 36px;
  left: -20px;
}

.float-top-right {
  top: 36px;
  right: -20px;
}

/* ============================================================
   13. TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg-light);
  padding: 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.trust-badge .badge-icon {
  color: var(--accent);
  font-size: 16px;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
section {
  padding: var(--section-pad) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-label {
  justify-content: center;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   14. ABOUT PREVIEW
   ============================================================ */
.about-preview {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 64px;
}

.about-image-stack {
  position: relative;
}

.about-main-img {
  width: 100%;
  max-width: 480px;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover);
  display: block;
}

.about-small-img {
  position: absolute;
  bottom: -32px;
  right: -24px;
  width: 190px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--surface);
  box-shadow: 0 8px 30px rgba(27, 42, 74, 0.2);
}

.about-years-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  color: var(--surface);
  text-align: center;
  z-index: 2;
}

.about-years-badge .years-num {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  line-height: 1;
}

.about-years-badge .years-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-content {
  padding-bottom: 32px;
}

.about-content h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-cream);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.about-feature-item .feat-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================================================
   15. SERVICES GRID
   ============================================================ */
.services-section {
  background: var(--bg-light);
}

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

.service-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.service-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-icon-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(27, 42, 74, 0.15);
}

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

.service-card-body h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 18px;
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-link:hover {
  color: var(--accent-dark);
  gap: 10px;
}

/* Service card — contact/other */
.service-card-contact {
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-md);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  gap: 16px;
}

.service-card-contact:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.service-card-contact h3 {
  color: var(--surface);
  font-size: 22px;
}

.service-card-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================================
   16. WHY CHOOSE US (NAVY)
   ============================================================ */
.why-choose {
  background: var(--primary);
  background-image: radial-gradient(ellipse at 30% 50%, rgba(36, 54, 96, 0.6) 0%, transparent 60%),
                    radial-gradient(ellipse at 70% 30%, rgba(200, 148, 62, 0.05) 0%, transparent 50%);
}

.why-choose h2 {
  color: var(--surface);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: background var(--transition-smooth), transform var(--transition-smooth);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-4px);
}

.why-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.why-card h3 {
  color: var(--surface);
  margin-bottom: 10px;
  font-size: 19px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================================
   VIDEO / TRANSFORMATION SECTION
   ============================================================ */
.video-section {
  background: var(--primary-dark);
  background-image:
    radial-gradient(ellipse at 20% 60%, rgba(200, 148, 62, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(36, 54, 96, 0.8) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 29, 53, 0.85) 0%, rgba(27, 42, 74, 0.78) 100%);
  pointer-events: none;
}

.video-section .container {
  position: relative;
  z-index: 1;
}

.video-section .section-label {
  justify-content: flex-start;
}

.video-section h2 {
  color: var(--surface);
  max-width: 600px;
  margin-bottom: 40px;
}

.transformation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.transformation-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.transform-arrow {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.transform-problem {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 14px;
  line-height: 1.5;
}

.transform-solution {
  color: var(--surface);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.transform-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.video-section-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   17. PROCESS STEPS
   ============================================================ */
.process-section {
  background: var(--surface);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(25% / 2 + 36px);
  right: calc(25% / 2 + 36px);
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--bg-cream) 0px,
    var(--bg-cream) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(27, 42, 74, 0.25);
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.process-step:hover .step-number {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: var(--shadow-gold);
  transform: scale(1.05);
}

.process-step h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 18px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================================
   18. TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--bg-light);
}

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

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-quote-mark {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'DM Serif Display', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
}

.author-project {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   19. GALLERY PREVIEW
   ============================================================ */
.gallery-preview {
  background: var(--surface);
}

.gallery-grid-asymmetric {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
  min-height: 200px;
}

.gallery-item:first-child img {
  height: 100%;
  min-height: 420px;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 42, 74, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(27, 42, 74, 0.55);
}

.gallery-overlay-icon {
  color: var(--surface);
  font-size: 32px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-link-row {
  text-align: center;
}

.gallery-more-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.gallery-more-link:hover {
  color: var(--accent-dark);
  gap: 14px;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--bg-light);
}

.service-areas-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1.5px solid rgba(27, 42, 74, 0.12);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  cursor: default;
  transition: background var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.area-pill:hover {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: var(--section-pad) 0;
}

.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-section .section-label {
  justify-content: center;
}

.cta-section h2 {
  color: var(--surface);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  font-size: 17px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.cta-social-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-social-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.cta-social-icons {
  display: flex;
  gap: 10px;
}

.cta-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.cta-social-icon svg {
  width: 16px;
  height: 16px;
}

.cta-social-icon:hover {
  background: var(--accent);
  color: var(--surface);
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.footer {
  background: var(--footer-bg);
  padding: 72px 0 0;
  border-top: 1px solid rgba(27, 42, 74, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(27, 42, 74, 0.1);
}

.footer-brand p {
  color: rgba(27, 42, 74, 0.6);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(27, 42, 74, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
}

.footer-social-icon:hover {
  background: var(--accent);
  color: var(--surface);
}

.footer-social-icon:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(27, 42, 74, 0.65);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 6px;
}

.footer-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(27, 42, 74, 0.65);
}

.footer-contact-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(27, 42, 74, 0.65);
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(27, 42, 74, 0.4);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(27, 42, 74, 0.45);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--accent);
}

/* ============================================================
   21. WHATSAPP BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:focus-visible {
  outline: 3px solid var(--whatsapp);
  outline-offset: 4px;
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--surface);
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  opacity: 0;
  animation: pulse 2.5s ease-out infinite;
}

/* ============================================================
   22. ANIMATIONS
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth), transform var(--transition-smooth), background var(--transition-fast);
  box-shadow: 0 4px 16px rgba(27, 42, 74, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-light);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ============================================================
   SERVICE IMAGE HOVER + LIGHTBOX (#slb)
   ============================================================ */
.showcase-img-wrap img,
.kitchen-service-box img,
.video-section img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.showcase-img-wrap:hover img,
.kitchen-service-box:hover img,
.video-section div:hover > img {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
}

#slb {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.94);
  align-items: center; justify-content: center;
}
#slb.slb-open { display: flex; animation: slb-fade 0.22s ease; }
@keyframes slb-fade { from { opacity:0; } to { opacity:1; } }
.slb-inner {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; padding: 60px 80px; box-sizing: border-box;
  cursor: zoom-out;
}
#slb-img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  border-radius: 6px; box-shadow: 0 20px 80px rgba(0,0,0,0.7);
  transition: opacity 0.11s ease, transform 0.11s ease; cursor: default;
}
.slb-close {
  position: fixed; top: 18px; right: 22px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 50%; color: #fff; font-size: 17px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 10001;
}
.slb-close:hover { background: rgba(255,255,255,0.22); }
.slb-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 50%; color: #fff; font-size: 28px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s; z-index: 10001;
}
.slb-arrow:hover { background: rgba(255,255,255,0.22); }
.slb-prev { left: 20px; }
.slb-next { right: 20px; }
.slb-prev:hover { transform: translateY(-50%) scale(1.1); }
.slb-next:hover { transform: translateY(-50%) scale(1.1); }
.slb-counter {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.65); font-size: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: 1px;
  pointer-events: none;
}
@media (max-width: 600px) {
  .slb-inner { padding: 56px 16px; }
  .slb-prev { left: 8px; } .slb-next { right: 8px; }
  .slb-arrow { width: 40px; height: 40px; font-size: 22px; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--primary);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-item .stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  height: 360px;
  padding-bottom: 48px;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 29, 53, 0.85) 0%, rgba(27, 42, 74, 0.7) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 90px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--accent-light);
}

.breadcrumb-sep {
  opacity: 0.4;
}

.breadcrumb-current {
  color: var(--accent-light);
}

.page-hero h1 {
  color: var(--surface);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  max-width: 600px;
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.story-section {
  background: var(--primary-dark);
  background-image:
    radial-gradient(ellipse at 10% 50%, rgba(200, 148, 62, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(36, 54, 96, 0.7) 0%, transparent 60%);
}

.story-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 64px;
  align-items: center;
}

.story-img {
  width: 100%;
  max-width: 440px;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.story-content h2 {
  color: var(--surface);
  margin-bottom: 24px;
}

.story-content p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
  font-size: 16px;
}

.mission-vision {
  background: var(--bg-light);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.mv-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.mv-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.mv-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.values-section {
  background: var(--surface);
}

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

.value-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  background: var(--surface);
}

.value-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.social-proof-bar {
  background: var(--bg-cream);
  padding: 72px 0;
}

.social-proof-inner {
  text-align: center;
}

.social-proof-inner h3 {
  color: var(--primary);
  margin-bottom: 32px;
}

.social-proof-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: var(--surface);
  font-size: 14px;
  font-weight: 700;
  transition: background var(--transition-smooth), transform var(--transition-smooth);
}

.btn-social-proof:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

.btn-social-proof svg {
  width: 18px;
  height: 18px;
}

.about-projects-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.about-projects-row img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--transition-smooth);
}

.about-projects-row img:hover {
  transform: scale(1.03);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-intro {
  background: var(--primary-dark);
  background-image:
    radial-gradient(ellipse at 20% 60%, rgba(200, 148, 62, 0.06) 0%, transparent 55%);
}

.services-intro .container {
  position: relative;
  z-index: 1;
}

.services-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 29, 53, 0.82) 0%, rgba(27, 42, 74, 0.78) 100%);
  pointer-events: none;
}

.services-intro-inner {
  max-width: 700px;
}

.services-intro h2 {
  color: var(--surface);
  margin-bottom: 20px;
}

.services-intro p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  margin-bottom: 28px;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--surface);
  font-size: 16px;
  font-weight: 600;
}

.benefit-check {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

/* ALTERNATING SERVICE ROWS */
.services-showcase {
  background: var(--surface);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--bg-cream);
}

.service-row:last-child {
  border-bottom: none;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse > * {
  direction: ltr;
}

.service-row-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover);
  transition: transform var(--transition-smooth);
}

.service-row-img:hover {
  transform: scale(1.02);
}

.service-row-content .section-label {
  justify-content: flex-start;
}

.service-row-content h2 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: clamp(22px, 3vw, 32px);
}

.service-row-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.service-includes {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 28px;
}

.service-includes li {
  font-size: 14px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-includes li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   WHY CHOOSE COMPACT (horizontal strip)
   ============================================================ */
.why-compact {
  background: var(--primary);
  padding: 52px 0;
}

.why-compact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  text-align: center;
}

.why-compact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.why-compact-icon {
  font-size: 28px;
}

.why-compact-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   KITCHENS PAGE
   ============================================================ */
.kitchen-services-detail {
  background: var(--surface);
}

.kitchen-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.kitchen-service-box {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.kitchen-service-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  background: var(--surface);
}

.kitchen-service-box h3 {
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--bg-cream);
}

.kitchen-service-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kitchen-service-box li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-primary);
}

.kitchen-service-box li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.why-remodel {
  background: var(--bg-light);
}

.why-remodel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.remodel-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.remodel-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.remodel-benefit p {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.5;
}

/* KITCHEN GALLERY */
.kitchen-gallery {
  background: var(--surface);
}

.kitchen-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.kitchen-gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.kitchen-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.kitchen-gallery-item:hover img {
  transform: scale(1.06);
}

.kitchen-gallery-item .gallery-overlay {
  background: rgba(27, 42, 74, 0);
  transition: background var(--transition-smooth);
}

.kitchen-gallery-item:hover .gallery-overlay {
  background: rgba(27, 42, 74, 0.5);
}

/* KITCHEN FEATURE CARDS */
.kitchen-features {
  background: var(--bg-cream);
}

.kitchen-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.kitchen-feature-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.kitchen-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.kitchen-feature-card .feat-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.kitchen-feature-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

/* FAQ ACCORDION */
.faq-section {
  background: var(--bg-light);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition-smooth), background var(--transition-fast);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--surface);
}

.faq-answer {
  display: none;
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filter-bar {
  background: var(--surface);
  padding: 24px 0;
  border-bottom: 1px solid var(--bg-cream);
}

.gallery-filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  background: var(--bg-light);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.filter-tab:hover {
  background: var(--bg-cream);
  color: var(--primary);
}

.filter-tab.active {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
  position: relative;
}

.filter-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.filter-tab:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* MASONRY GALLERY */
.gallery-masonry {
  background: var(--bg-light);
  padding: var(--section-pad) 0;
}

.masonry-grid {
  columns: 3;
  column-gap: 16px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-smooth);
}

.masonry-item:hover img {
  transform: scale(1.04);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 42, 74, 0);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background var(--transition-smooth), border-color var(--transition-smooth);
}

.masonry-item:hover .masonry-overlay {
  background: rgba(27, 42, 74, 0.55);
  border-color: rgba(200, 148, 62, 0.5);
}

.masonry-label {
  color: var(--surface);
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.masonry-item:hover .masonry-label {
  opacity: 1;
  transform: translateY(0);
}

/* BEFORE / AFTER */
.before-after {
  background: var(--bg-light);
  padding-top: 0;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ba-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.ba-header {
  background: var(--primary);
  padding: 14px 20px;
  text-align: center;
}

.ba-header h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.ba-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ba-divider {
  width: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.ba-divider-line {
  width: 1px;
  height: 40px;
  background: var(--accent);
}

.ba-divider-arrow {
  color: var(--accent);
  font-size: 18px;
}

.ba-labels {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

.ba-label {
  text-align: center;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SOCIAL STRIP */
.social-strip {
  background: var(--bg-cream);
  padding: 64px 0;
  text-align: center;
}

.social-strip h3 {
  color: var(--primary);
  margin-bottom: 32px;
}

.social-strip-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-social-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--primary);
  transition: background var(--transition-smooth), color var(--transition-smooth), transform var(--transition-smooth);
}

.btn-social-strip:hover {
  background: var(--primary);
  color: var(--surface);
  transform: translateY(-3px);
}

.btn-social-strip svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--bg-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: start;
}

.contact-form-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.contact-form-card h3 {
  color: var(--primary);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--bg-cream);
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--accent);
}

.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  border-bottom-color: var(--accent);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A8A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-trust {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.contact-card-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.contact-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-card-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}

.contact-card-value a {
  color: var(--primary);
  transition: color var(--transition-fast);
}

.contact-card-value a:hover {
  color: var(--accent);
}

.contact-info-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.contact-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.contact-social-icon svg {
  width: 16px;
  height: 16px;
}

.contact-social-icon:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.contact-trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.contact-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: var(--surface);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--bg-cream);
}

/* MAP PLACEHOLDER */
.map-section {
  background: var(--surface);
  padding-top: 0;
}

.map-placeholder {
  background: #E8E4DC;
  height: 400px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 600;
}

.map-pin {
  font-size: 48px;
}

/* QUICK CALL BAR */
.quick-call-bar {
  background: var(--primary);
  padding: 28px 0;
}

.quick-call-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.quick-call-text {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   23. RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-compact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kitchen-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ============================================================
   24. RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-mobile);
  }

  /* HEADER */
  .topbar-left .topbar-item:nth-child(3),
  .topbar-left .topbar-sep:nth-child(4) {
    display: none;
  }

  .topbar-left .topbar-item:nth-child(5),
  .topbar-left .topbar-sep:nth-child(6) {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-right-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* HERO */
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 60px 0;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrap {
    max-width: 100%;
  }

  .float-bottom-left,
  .float-top-right {
    display: none;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat .stat-number {
    font-size: 28px;
  }

  /* TRUST BAR */
  .trust-bar-inner {
    height: auto;
    padding: 20px 0;
    justify-content: center;
    gap: 20px;
  }

  /* ABOUT GRID */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-small-img {
    display: none;
  }

  .about-years-badge {
    left: auto;
    right: 24px;
  }

  /* SERVICES GRID */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* WHY */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* PROCESS */
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps::before {
    display: none;
  }

  /* TESTIMONIALS */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* GALLERY PREVIEW */
  .gallery-grid-asymmetric {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* VALUES */
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* STORY */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-img {
    max-width: 100%;
    height: 340px;
  }

  /* MISSION VISION */
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  /* ABOUT PROJECTS ROW */
  .about-projects-row {
    grid-template-columns: 1fr;
  }

  /* SERVICES ALTERNATING */
  .service-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-row.reverse {
    direction: ltr;
  }

  /* KITCHEN */
  .kitchen-services-grid {
    grid-template-columns: 1fr;
  }

  .why-remodel-grid {
    grid-template-columns: 1fr;
  }

  .kitchen-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kitchen-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* GALLERY MASONRY */
  .masonry-grid {
    columns: 2;
  }

  /* CONTACT */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-card {
    padding: 32px;
  }

  /* CTA */
  .cta-section .section-label {
    justify-content: center;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* QUICK CALL */
  .quick-call-inner {
    flex-direction: column;
    text-align: center;
  }

  /* WHY COMPACT */
  .why-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* PROCESS */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================================
   25. RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .topbar {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .hero-stat-sep {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid-asymmetric {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 1;
  }

  .masonry-grid {
    columns: 1;
  }

  .ba-grid {
    grid-template-columns: 1fr;
  }

  .service-areas-pills {
    gap: 8px;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }

  .why-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kitchen-gallery-grid {
    grid-template-columns: 1fr;
  }

  .social-proof-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .video-section-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .kitchen-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}
