/* ==========================================================================
   Castro Valley Handyman — Site Styles
   Palette: Navy (#2C3E5A), Bronze/Tan (#A88B5C), Cream (#F7F3EC), Charcoal (#1A1F2B)
   Typography: Fraunces (display) + Inter Tight (body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Inter+Tight:wght@400;500;600;700&display=swap');

:root {
  --navy: #2C3E5A;
  --navy-deep: #1F2D44;
  --bronze: #A88B5C;
  --bronze-light: #C4A777;
  --cream: #F7F3EC;
  --cream-warm: #EFE7D6;
  --charcoal: #1A1F2B;
  --gray: #6B7280;
  --gray-light: #E5E0D5;
  --white: #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', -apple-system, sans-serif;

  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(26, 31, 43, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 31, 43, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 31, 43, 0.12);

  --container: 1200px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Top utility bar
   ========================================================================== */
.utility-bar {
  background: var(--charcoal);
  color: var(--cream);
  font-size: 13px;
  padding: 8px 0;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.utility-bar a {
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.utility-bar a:hover { color: var(--bronze-light); }
.utility-bar .util-left,
.utility-bar .util-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.utility-bar svg { width: 14px; height: 14px; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand .logo-mark { width: 48px; height: 48px; object-fit: contain; }
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-text .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.nav-brand-text .brand-sub {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bronze);
}
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--navy-deep); color: var(--white) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle svg { width: 28px; height: 28px; color: var(--charcoal); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: var(--bronze);
  color: var(--white);
}
.btn-secondary:hover {
  background: #92774B;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(168, 139, 92, 0.12), transparent 60%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--bronze);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--bronze);
  font-weight: 500;
}
.hero p.lead {
  font-size: 19px;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-logo-frame::after {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px dashed var(--bronze);
  border-radius: 50%;
  opacity: 0.35;
}
.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(26, 31, 43, 0.12));
}

/* ==========================================================================
   Sections
   ========================================================================== */
section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header.left { text-align: left; }
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 46px);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin: 0 auto;
}
.section-header.left h2 { margin: 0; }
.section-header p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--gray);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-header.left p { margin-left: 0; margin-right: 0; }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip {
  background: var(--navy);
  color: var(--cream);
  padding: 40px 0;
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item svg {
  width: 32px;
  height: 32px;
  color: var(--bronze-light);
  flex-shrink: 0;
}
.trust-item-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.trust-item-text span {
  font-size: 13px;
  color: rgba(247, 243, 236, 0.7);
}

/* ==========================================================================
   Service cards (home page preview)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--bronze);
  transition: width 0.4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--bronze-light);
}
.service-card:hover::before { width: 100%; }
.service-card .icon {
  width: 48px;
  height: 48px;
  background: var(--cream-warm);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
}
.service-card .icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.service-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.55;
}

/* ==========================================================================
   Full services list (services page)
   ========================================================================== */
.services-detailed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-light);
}
.service-row {
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-light);
  padding-right: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.service-row:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--gray-light);
}
.service-row:nth-child(even) {
  padding-left: 32px;
}
.service-row .num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--bronze);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 4px;
}
.service-row h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.25;
}
.service-row p {
  color: var(--gray);
  font-size: 15px;
}

/* ==========================================================================
   About / split content
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-image {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(168, 139, 92, 0.3), transparent 60%);
}
.split-image .accent-text {
  position: relative;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 700;
  color: var(--bronze);
  opacity: 0.8;
  letter-spacing: -0.03em;
  line-height: 0.9;
}
.split-image .accent-sub {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  color: var(--cream);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.split-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.split-content p {
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: 18px;
  line-height: 1.65;
}
.split-content p:last-of-type { margin-bottom: 32px; }

/* ==========================================================================
   Service area
   ========================================================================== */
.area-section {
  background: var(--charcoal);
  color: var(--cream);
}
.area-section .section-header h2 { color: var(--white); }
.area-section .section-header p { color: rgba(247, 243, 236, 0.75); }
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.area-list span {
  padding: 10px 22px;
  border: 1px solid rgba(168, 139, 92, 0.4);
  border-radius: 100px;
  font-size: 15px;
  color: var(--cream);
  transition: all var(--transition);
}
.area-list span:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--white);
}
.area-list span.primary {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--white);
  font-weight: 600;
  padding: 12px 28px;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(168, 139, 92, 0.35);
}
.area-list span.primary::before {
  content: '★ ';
  font-size: 12px;
  margin-right: 4px;
  vertical-align: 1px;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(168, 139, 92, 0.18), transparent 60%);
}
.cta-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.cta-banner h2 em { color: var(--bronze-light); font-style: italic; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .btn-secondary { background: var(--bronze); }
.cta-banner .btn-outline { color: var(--white); border-color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--navy); }

/* ==========================================================================
   Page header (sub-pages)
   ========================================================================== */
.page-header {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(168, 139, 92, 0.1), transparent 60%);
}
.page-header .container { position: relative; }
.page-header .breadcrumb {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.page-header .breadcrumb a:hover { color: var(--navy); }
.page-header h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.02em;
  max-width: 800px;
}
.page-header h1 em {
  font-style: italic;
  color: var(--bronze);
  font-weight: 500;
}
.page-header p.lead {
  font-size: 19px;
  color: var(--gray);
  margin-top: 18px;
  max-width: 640px;
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}
.contact-info p {
  color: var(--charcoal);
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6;
}
.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-top: 1px solid var(--gray-light);
}
.contact-method:last-child { border-bottom: 1px solid var(--gray-light); }
.contact-method .icon {
  width: 44px;
  height: 44px;
  background: var(--cream-warm);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.contact-method .icon svg { width: 20px; height: 20px; }
.contact-method-content strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-method-content a,
.contact-method-content span {
  font-size: 18px;
  color: var(--navy);
  font-weight: 500;
  font-family: var(--font-display);
}
.contact-method-content a:hover { color: var(--bronze); }
.contact-method-content small {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
  font-family: var(--font-body);
  font-weight: 400;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form > p {
  color: var(--gray);
  margin-bottom: 28px;
  font-size: 15px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--cream);
  transition: all var(--transition);
  color: var(--charcoal);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(44, 62, 90, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; padding: 16px; margin-top: 8px; }
.form-note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 14px;
  text-align: center;
}

/* Photo upload */
.label-optional {
  font-weight: 400;
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-left: 4px;
}
.file-upload {
  position: relative;
}
.file-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  border: 1.5px dashed var(--gray-light);
  background: var(--cream);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  transition: all var(--transition);
}
.file-upload-label:hover {
  border-color: var(--bronze);
  background: var(--cream-warm);
  color: var(--navy-deep);
}
.file-upload input[type="file"]:focus + .file-upload-label {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(44, 62, 90, 0.1);
}
.file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.file-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--cream-warm);
  border: 1px solid var(--gray-light);
  border-radius: 100px;
  font-size: 13px;
  color: var(--charcoal);
  font-weight: 500;
}
.file-chip em {
  font-style: normal;
  color: var(--gray);
  font-weight: 400;
  font-size: 12px;
}
.field-hint {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-top: 8px;
  line-height: 1.5;
}

/* Licensing disclosure */
.disclosure-banner {
  background: var(--cream-warm);
  border-left: 3px solid var(--bronze);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 32px;
}
.disclosure-banner h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.disclosure-banner p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0;
}
.disclosure-banner p + p {
  margin-top: 8px;
}
.footer-disclosure {
  font-size: 12px;
  color: rgba(247, 243, 236, 0.55);
  line-height: 1.55;
  padding-top: 18px;
  margin-bottom: 18px;
  border-top: 1px solid rgba(247, 243, 236, 0.1);
  max-width: 900px;
}

/* ==========================================================================
   About page extras
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
}
.value-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}
.value-card .num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand .logo-mark { width: 44px; height: 44px; object-fit: contain; background: var(--cream); border-radius: 50%; padding: 2px; }
.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.footer-brand-text strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}
.footer-brand-text span {
  font-size: 11px;
  color: rgba(247, 243, 236, 0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-tagline {
  color: rgba(247, 243, 236, 0.7);
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
}
footer h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a {
  color: rgba(247, 243, 236, 0.7);
  font-size: 14px;
  transition: color var(--transition);
}
footer ul a:hover { color: var(--bronze-light); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(247, 243, 236, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(247, 243, 236, 0.5);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero { padding: 60px 0 70px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-logo-frame { max-width: 280px; }

  .trust-strip .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-detailed { grid-template-columns: 1fr; }
  .service-row,
  .service-row:nth-child(odd),
  .service-row:nth-child(even) {
    padding: 24px 0;
    border-right: none;
  }

  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-image { aspect-ratio: 16/10; }
  .split-image .accent-text { font-size: 80px; }

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

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

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

  section { padding: 60px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--gray-light);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .nav { position: relative; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .utility-bar { font-size: 12px; }
  .utility-bar .util-left { gap: 12px; }
  .cta-banner .container { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero p.lead, .hero-actions, .hero-eyebrow {
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero p.lead { animation-delay: 0.35s; }
.hero-actions { animation-delay: 0.5s; }
.hero-visual { animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s both; }
