/* ============================================
   MARTINEZ PAINTING — Brand-Driven Design System
   Colors: Gold #C9902A, Dark Navy #1E2235, White/Off-white
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Brand Colors */
  --brand-gold: #C9902A;
  --brand-gold-light: #E8AF34;
  --brand-gold-dark: #9A6A14;
  --brand-gold-subtle: rgba(201, 144, 42, 0.1);
  --brand-navy: #1E2235;
  --brand-navy-mid: #2A2F45;
  --brand-navy-light: #3A4060;

  /* Surfaces */
  --color-bg: #F9F7F4;
  --color-surface: #FFFFFF;
  --color-surface-2: #F4F2EE;
  --color-border: #E2DDD6;
  --color-divider: #EAE7E2;

  /* Text */
  --color-text: #1A1714;
  --color-text-muted: #6B6560;
  --color-text-faint: #B0AAA3;
  --color-text-inverse: #FFFFFF;

  /* Primary (Gold as accent) */
  --color-primary: var(--brand-gold);
  --color-primary-hover: var(--brand-gold-dark);
  --color-primary-active: #7A5010;

  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(30, 34, 53, 0.08);
  --shadow-md: 0 4px 16px rgba(30, 34, 53, 0.1);
  --shadow-lg: 0 12px 40px rgba(30, 34, 53, 0.14);
  --shadow-gold: 0 4px 24px rgba(201, 144, 42, 0.25);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 200ms var(--ease-out);

  /* Layout */
  --content-max: 1180px;
  --content-narrow: 720px;

  /* Fonts */
  --font-display: 'Oswald', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

/* --- Base Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  min-height: 100dvh;
}
img, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); font-weight: 600; }
p, li { text-wrap: pretty; max-width: 72ch; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }

/* --- Utilities --- */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.section-pad { padding-block: clamp(var(--space-12), 7vw, var(--space-24)); }
.gold-text { color: var(--brand-gold); }
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-gold);
  margin-bottom: var(--space-3);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-12);
}
.section-header h2 {
  font-size: var(--text-xl);
  color: var(--brand-navy);
  margin-bottom: var(--space-4);
}
.section-desc {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  max-width: 60ch;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.7em 1.5em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-lg {
  padding: 0.8em 1.8em;
  font-size: var(--text-base);
}
.btn-full { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--brand-gold);
  color: #fff;
  border-color: var(--brand-gold);
}
.btn-primary:hover {
  background: var(--brand-gold-dark);
  border-color: var(--brand-gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-color: #fff;
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(30, 34, 53, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-3) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  padding: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--brand-gold); }
.nav-cta { margin-left: auto; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  margin-left: auto;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: var(--space-3);
  padding: 0 var(--space-4) var(--space-4);
  background: rgba(30, 34, 53, 0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}
.mobile-menu.open {
  max-height: 400px;
  padding: var(--space-4) var(--space-4) var(--space-5);
}
.mobile-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}
.mobile-nav-links a {
  flex: 1 1 auto;
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-3);
  text-align: center;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.mobile-nav-links a:hover {
  background: rgba(201,144,42,0.2);
  color: var(--brand-gold-light);
  border-color: rgba(201,144,42,0.3);
}
.mobile-call-btn {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-1);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--brand-navy);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-8);
  padding: clamp(var(--space-16), 8vw, var(--space-24)) clamp(var(--space-6), 6vw, var(--space-24));
  max-width: var(--content-max);
  margin: 0 auto;
  overflow: hidden;
}
/* Full-width hero bg */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-navy);
  z-index: -2;
}
/* Gold accent line */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
}
/* Full viewport dark band */
body > main > .hero {
  width: 100%;
  max-width: 100%;
  padding-left: clamp(var(--space-6), 8vw, 10vw);
  padding-right: clamp(var(--space-6), 8vw, 10vw);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201, 144, 42, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(201, 144, 42, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(201, 144, 42, 0.15);
  border: 1px solid rgba(201, 144, 42, 0.3);
  color: var(--brand-gold-light);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.4em 0.9em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  text-transform: uppercase;
}
.badge-star { color: var(--brand-gold); }
.hero-headline {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-5);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--space-8);
  max-width: 50ch;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat { display: flex; flex-direction: column; gap: 0.2em; }
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--brand-gold);
  line-height: 1;
}
.stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-shield { width: clamp(160px, 18vw, 260px); opacity: 0.7; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--brand-navy-mid);
  padding: var(--space-6) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  font-weight: 500;
  justify-content: center;
  padding: var(--space-2);
}
.trust-item svg { color: var(--brand-gold); flex-shrink: 0; }

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--color-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,144,42,0.3);
}
.service-card--featured {
  background: var(--brand-navy);
  border-color: var(--brand-gold);
  color: #fff;
}
.service-card--featured h3 { color: var(--brand-gold-light); }
.service-card--featured p { color: rgba(255,255,255,0.75); }
.service-card--featured .service-list li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.12); }
.service-card--featured .service-list li::before { background: var(--brand-gold); }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-gold-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--brand-gold);
}
.service-card--featured .service-icon {
  background: rgba(201,144,42,0.2);
}
.service-card h3 {
  font-size: var(--text-lg);
  color: var(--brand-navy);
  margin-bottom: var(--space-3);
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  line-height: 1.7;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.service-list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
  border-bottom: 1px solid var(--color-divider);
  padding-bottom: var(--space-2);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--brand-gold);
  border-radius: 2px;
}
.card-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--brand-gold);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.25em 0.7em;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--color-surface-2, #F4F2EE); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(var(--space-10), 5vw, var(--space-20));
  align-items: center;
}
.about-visual { display: flex; flex-direction: column; gap: var(--space-6); }
.about-card-wrap {
  position: relative;
  background: var(--brand-navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}
.about-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}
.about-logo-display {
  width: 180px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-3);
}
.about-card-info {
  text-align: center;
  color: #fff;
}
.about-card-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--brand-gold-light);
}
.about-card-info span { font-size: var(--text-sm); color: rgba(255,255,255,0.6); }
.about-card-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 72px;
  height: 72px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.tag {
  display: inline-block;
  background: var(--brand-gold-subtle);
  border: 1px solid rgba(201,144,42,0.25);
  color: var(--brand-gold-dark);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.35em 0.8em;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-content { display: flex; flex-direction: column; gap: var(--space-5); }
.about-content h2 {
  font-size: var(--text-2xl);
  color: var(--brand-navy);
}
.about-content p { color: var(--color-text-muted); line-height: 1.75; }
.about-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-4);
}
.value-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.value-icon {
  width: 28px;
  height: 28px;
  background: var(--brand-gold);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item strong { display: block; color: var(--brand-navy); font-size: var(--text-sm); margin-bottom: 2px; }
.value-item span { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ============================================
   PROCESS
   ============================================ */
.process { background: var(--brand-navy); }
.process .section-header h2 { color: #fff; }
.process .section-label { color: var(--brand-gold-light); }
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: var(--space-4);
  align-items: center;
}
.process-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.process-step:hover {
  background: rgba(201,144,42,0.1);
  border-color: rgba(201,144,42,0.3);
}
.step-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: var(--space-4);
  opacity: 0.6;
}
.process-step h3 {
  font-size: var(--text-base);
  color: #fff;
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.process-step p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 22ch;
  margin: 0 auto;
}
.process-arrow {
  font-size: var(--text-xl);
  color: var(--brand-gold);
  opacity: 0.5;
  font-weight: 300;
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas { background: var(--color-bg); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.area-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--brand-navy);
  transition: all var(--transition);
}
.area-item:hover {
  border-color: var(--brand-gold);
  background: var(--brand-gold-subtle);
  color: var(--brand-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.area-item svg { color: var(--brand-gold); flex-shrink: 0; }
.area-item em { color: var(--color-text-muted); font-style: normal; font-size: var(--text-xs); }
.area-item--more {
  background: var(--brand-gold-subtle);
  border-color: rgba(201,144,42,0.3);
  color: var(--brand-gold-dark);
}
.areas-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.areas-note a {
  color: var(--brand-gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--color-surface-2, #F4F2EE); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.stars { font-size: 1.2rem; color: var(--brand-gold); letter-spacing: 0.05em; }
.testimonial-card blockquote {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}
.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--brand-navy);
  color: var(--brand-gold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--brand-navy); font-size: var(--text-sm); }
.testimonial-author span { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 60%, #7A4A10 100%);
  padding: clamp(var(--space-12), 6vw, var(--space-20)) 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: var(--text-2xl);
  color: #fff;
  margin-bottom: var(--space-2);
}
.cta-text p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-base);
}
.cta-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.cta-actions .btn-primary {
  background: #fff;
  color: var(--brand-gold-dark);
  border-color: #fff;
}
.cta-actions .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--color-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}
.contact-info h2 {
  font-size: var(--text-xl);
  color: var(--brand-navy);
  margin-bottom: var(--space-4);
}
.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.75;
}
.contact-details { display: flex; flex-direction: column; gap: var(--space-4); }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  transition: color var(--transition);
}
.contact-detail-item:hover .detail-value { color: var(--brand-gold); }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-gold-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
  flex-shrink: 0;
}
.detail-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 2px;
}
.detail-value {
  display: block;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--brand-navy);
  transition: color var(--transition);
}

/* Form */
.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brand-navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.7em 1em;
  font-size: var(--text-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(201,144,42,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-faint);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  max-width: none;
  margin-top: calc(-1 * var(--space-2));
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--brand-navy);
  color: rgba(255,255,255,0.75);
  padding-top: clamp(var(--space-12), 6vw, var(--space-20));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--space-4); }
.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.footer-brand p { font-size: var(--text-sm); line-height: 1.7; max-width: 32ch; }
.footer-phone {
  display: inline-block;
  color: var(--brand-gold-light);
  font-size: var(--text-lg);
  font-family: var(--font-display);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--brand-gold); }
.footer-links h4 {
  font-size: var(--text-sm);
  color: #fff;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--brand-gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-contact h4 {
  font-size: var(--text-sm);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-1);
}
.footer-contact p { font-size: var(--text-sm); line-height: 1.6; }
.footer-contact a:not(.btn) {
  color: var(--brand-gold-light);
  font-size: var(--text-base);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-contact a:not(.btn):hover { color: var(--brand-gold); }
.footer-hours { font-size: var(--text-xs); color: rgba(255,255,255,0.45); margin-top: var(--space-1); }
.footer-cta-btn { margin-top: var(--space-3); align-self: flex-start; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.4); max-width: none; }
.footer-tagline { font-weight: 600; color: var(--brand-gold) !important; opacity: 0.8; }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .process-arrow { display: none; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .about-visual { flex-direction: row; align-items: flex-start; gap: var(--space-6); }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-menu:not(.open) { max-height: 0 !important; padding: 0 !important; gap: 0 !important; overflow: hidden; border-top: none !important; }

  .hero {
    min-height: 70vh;
    padding: var(--space-12) var(--space-6);
  }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { gap: var(--space-4); flex-wrap: wrap; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

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

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

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

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

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

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: var(--space-6); }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-visual { flex-direction: column; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; gap: var(--space-3); }
  .stat-divider { width: 40px; height: 1px; }
}
