/* ========================================================
   CALIFORNIA CABINETS — Shared Design System
   ======================================================== */

/* ── Variables ── */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #152336;
  --navy-light:  #1e3455;
  --gold:        #b8975a;
  --gold-light:  #d4ae78;
  --gold-pale:   #f0e6d2;
  --cream:       #f8f4ef;
  --cream-dark:  #efe9e0;
  --white:       #ffffff;
  --gray-50:     #fafafa;
  --gray-100:    #f3f4f6;
  --gray-300:    #d1d5db;
  --gray-500:    #6b7280;
  --gray-700:    #374151;
  --text:        #1a1810;

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

  --shadow-sm: 0 1px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 72px rgba(0,0,0,0.16);

  --radius:    4px;
  --radius-lg: 8px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 80px;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--ff-head); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { line-height: 1.72; }

/* ── Utility ── */
.container   { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.container-sm{ max-width: 860px;  margin: 0 auto; padding: 0 40px; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--gray-500); }
.sr-only     { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Eyebrow / Label ── */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── Section headings ── */
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }
.section-lead {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 620px;
  margin-top: 14px;
  line-height: 1.78;
}

/* ── Divider ── */
.gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 0;
  border: none;
}
.center .gold-rule { margin: 16px auto 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,90,0.35); }
.btn-navy    { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.7); color: var(--white); }
.btn-outline-white:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-lg { padding: 17px 40px; font-size: 0.9rem; }
.btn-sm { padding: 10px 22px; font-size: 0.78rem; }

/* ── Sections ── */
section { padding: 96px 0; }
.bg-cream  { background: var(--cream); }
.bg-navy   { background: var(--navy); }
.bg-white  { background: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184,151,90,0.18);
  transition: background var(--transition), box-shadow var(--transition);
}
#nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.3); }

.nav-inner {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 50px; width: auto; filter: brightness(1.1); transition: filter var(--transition); }
.nav-logo:hover img { filter: brightness(1.3); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  margin-left: 12px;
  padding: 11px 24px !important;
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: var(--radius);
  letter-spacing: 0.12em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(184,151,90,0.4); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.4) 60%, rgba(13,27,42,0.25) 100%);
  z-index: 1;
}
.page-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.page-banner-content .eyebrow { color: var(--gold-light); }
.page-banner-content h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-top: 6px; }
.page-banner-content p { color: rgba(255,255,255,0.8); max-width: 560px; margin-top: 10px; font-size: 1.05rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.35); }

/* ============================================================
   HERO (home page full-screen)
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,27,42,0.78) 0%,
    rgba(13,27,42,0.50) 50%,
    rgba(13,27,42,0.82) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(184,151,90,0.45);
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  text-shadow: 0 2px 32px rgba(0,0,0,0.4);
  margin-bottom: 22px;
}
.hero-h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.78;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.9; }
  50%       { transform: scaleY(0.5); opacity: 0.3; }
}

/* ── Hero stats bar ── */
.hero-stats {
  background: var(--navy);
  padding: 0;
}
.hero-stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hstat {
  padding: 28px 0;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}
.hstat:last-child { border-right: none; }
.hstat:hover { background: rgba(255,255,255,0.03); }
.hstat-num {
  font-family: var(--ff-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hstat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.sc-img-wrap { overflow: hidden; }
.sc-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.service-card:hover .sc-img { transform: scale(1.06); }
.sc-body {
  padding: 28px 28px 32px;
  border-top: 3px solid var(--gold);
}
.sc-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.sc-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sc-name { font-family: var(--ff-head); font-size: 1.3rem; color: var(--navy); margin-bottom: 10px; }
.sc-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.72; }
.sc-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: gap var(--transition);
}
.sc-link:hover { gap: 10px; }
.sc-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gi {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gi.w2 { grid-column: span 2; }
.gi.h2 { grid-row:    span 2; }
.gi img {
  width: 100%; height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.55s var(--transition);
}
.gi:hover img { transform: scale(1.07); }
.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gi:hover .gi-overlay { opacity: 1; }
.gi-caption { color: white; font-size: 0.82rem; font-weight: 500; }
.gi-zoom {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gi:hover .gi-zoom { opacity: 1; }
.gi-zoom svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; }

/* Gallery filter tabs */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.gf-btn {
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--gray-300);
  color: var(--gray-500);
  background: var(--white);
  transition: var(--transition);
}
.gf-btn:hover { border-color: var(--gold); color: var(--gold); }
.gf-btn.active { background: var(--gold); border-color: var(--gold); color: var(--white); }
.gi[hidden] { display: none; }

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tc-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s;
}
.team-card:hover .tc-photo { transform: scale(1.03); }
.tc-body {
  padding: 22px 24px 26px;
  border-top: 3px solid var(--gold);
}
.tc-name { font-family: var(--ff-head); font-size: 1.2rem; color: var(--navy); }
.tc-role { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.tc-bio { font-size: 0.87rem; color: var(--gray-500); margin-top: 12px; line-height: 1.7; }

/* ============================================================
   FEATURE STRIP / WHY US
   ============================================================ */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-300);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-item {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
  transition: background var(--transition);
}
.feature-item:hover { background: var(--cream); }
.fi-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.fi-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.fi-title { font-family: var(--ff-head); font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.fi-desc { font-size: 0.87rem; color: var(--gray-500); line-height: 1.65; }

/* ============================================================
   SPLIT SECTION (image | text)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.split-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-text.bg-navy .section-lead { color: rgba(255,255,255,0.72); }
.split-text.bg-navy h2 { color: var(--white); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.tcard::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 28px;
  font-family: var(--ff-head);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-pale);
}
.tcard-text { font-size: 0.93rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 20px; position: relative; z-index: 1; }
.tcard-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 700; font-size: 1rem; color: var(--gold);
}
.tcard-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.tcard-location { font-size: 0.78rem; color: var(--gray-500); }

/* ============================================================
   BRANDS
   ============================================================ */
.brands-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 40px 0;
}
.brand-item {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.45;
  transition: opacity var(--transition);
  letter-spacing: -0.01em;
}
.brand-item:hover { opacity: 0.85; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px; left: 10%; right: 10%;
  height: 1px;
  background: var(--gold-pale);
  z-index: 0;
}
.pstep { text-align: center; position: relative; z-index: 1; }
.pstep-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(184,151,90,0.4);
}
.pstep h4 { color: var(--navy); margin-bottom: 8px; }
.pstep p { font-size: 0.87rem; color: var(--gray-500); line-height: 1.65; }

/* ============================================================
   SERVICE DETAIL (services page)
   ============================================================ */
.service-section { padding: 88px 0; }
.service-section:nth-child(even) { background: var(--cream); }
.ss-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.ss-inner.flip { direction: rtl; }
.ss-inner.flip > * { direction: ltr; }
.ss-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ss-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.ss-images img:first-child { grid-column: span 2; height: 280px; }
.ss-images img:hover { transform: scale(1.02); }
.ss-text ul { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.ss-text ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--gray-500);
}
.ss-text ul li::before {
  content: '';
  display: block;
  width: 18px; height: 18px; min-width: 18px;
  border-radius: 50%;
  background: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cc-ico {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cc-ico svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.cc-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.cc-val { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.cc-sub { font-size: 0.8rem; color: var(--gray-500); }

/* Contact form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.cf-title { font-family: var(--ff-head); font-size: 1.7rem; color: var(--navy); margin-bottom: 4px; }
.cf-sub { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition);
  margin-top: 6px;
}
.form-submit:hover { background: var(--gold); }

/* ============================================================
   MAP
   ============================================================ */
.map-embed {
  width: 100%; height: 360px;
  border: none;
  filter: grayscale(15%);
  display: block;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section {
  background: var(--navy);
  padding: 64px 0;
  text-align: center;
}
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 820px;
  margin: 28px auto 36px;
}
.chip {
  padding: 8px 20px;
  border: 1px solid rgba(184,151,90,0.38);
  border-radius: 100px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.chip:hover { border-color: var(--gold); color: var(--gold-light); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 2px; }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: background var(--transition);
}
.lb-close { top: 20px; right: 20px; font-size: 1rem; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }
.lb-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-size: 0.8rem; letter-spacing: 0.1em;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #080e17;
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img { height: 44px; margin-bottom: 18px; filter: brightness(1.2); }
.footer-brand p { font-size: 0.88rem; line-height: 1.72; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.fsoc {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.fsoc:hover { border-color: var(--gold); background: rgba(184,151,90,0.15); }
.fsoc svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.65); }
.footer-col h5 {
  font-family: var(--ff-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: white; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col address { font-style: normal; font-size: 0.87rem; line-height: 1.8; }
.footer-col address a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col address a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .container, .container-sm { padding: 0 24px; }
  section { padding: 64px 0; }
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-img { min-height: 320px; }
  .split-text { padding: 48px 32px; }
  .ss-inner { grid-template-columns: 1fr; }
  .ss-inner.flip { direction: ltr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hstat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gi.w2 { grid-column: span 1; }
}
@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,27,42,0.99);
    padding: 24px 28px;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.9rem; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none !important; }
  .page-banner { height: 360px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-strip { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gi.h2 { grid-row: span 1; }
  .brands-bar { gap: 24px; }
}
