/* ══════════════════════════════════════════════════════
   JMT Wood Build · Solid Craft Builder Design
   Graphite · White · JMT Red
   ══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;600;700&family=Barlow:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  /* ── Graphite + JMT Red palette ── */
  --charcoal:     #171717;
  --charcoal-soft:#3c3f40;
  --charcoal-mute:#74797a;
  --amber:        #e31e2f;
  --amber-deep:   #b91826;
  --amber-soft:   #f06b76;
  --forest:       #171717;
  --forest-deep:  #111111;
  --forest-soft:  #2c3032;
  --cream:        #fafafa;
  --cream-deep:   #e7e9e8;
  --line:         #d9dddc;
  --white:        #ffffff;
  --error:        #b91c1c;

  /* Legacy aliases (so existing class names keep working) */
  --stone: var(--cream);
  --stone-deep: var(--cream-deep);
  --stone-line: var(--line);
  --ink: var(--charcoal);
  --ink-soft: var(--charcoal-soft);
  --ink-mute: var(--charcoal-mute);
  --brass: var(--amber);
  --brass-deep: var(--amber-deep);
  --brass-soft: var(--amber-soft);
  --dark: var(--charcoal);
  --navy: var(--forest);
  --navy-light: var(--forest-soft);
  --slate: var(--forest);
  --copper: var(--amber);
  --copper-hover: var(--amber-deep);
  --copper-light: var(--amber-soft);
  --gold: var(--amber);
  --text: var(--charcoal);
  --text-light: var(--charcoal-soft);
  --text-muted: var(--charcoal-mute);
  --border: var(--line);
  --green: var(--forest-soft);
  --off-white: var(--cream-deep);

  /* Type */
  --serif: 'Barlow Semi Condensed', 'Arial Narrow', sans-serif;
  --sans:  'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --label: 'DM Sans', 'Inter', sans-serif;
  --headline: var(--serif);
  --content: var(--sans);
  --nav-font: var(--sans);

  /* Layout */
  --max-width: 1200px;
  --max-narrow: 960px;
  --header-h: 84px;
  --radius: 6px;
  --radius-lg: 10px;
  --transition: 0.25s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background: var(--cream);
  font-size: 1.0625rem;
}
img { display:block; max-width:100%; height:auto; }
a { color:inherit; text-decoration:none; }
::selection { background: var(--amber); color: var(--white); }

/* ═══════════════ NAVIGATION ═══════════════ */

.header-desktop {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background var(--transition), box-shadow var(--transition);
}
.header-desktop.scrolled { box-shadow: 0 6px 24px rgba(28,25,23,0.08); }
.header-desktop .header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: var(--header-h);
  padding: 0 24px;
  gap: 16px;
}
.header-desktop .logo-col {
  display: flex; align-items: center;
  margin-right: auto;
}
.header-desktop .logo-col img { height: 46px; width: auto; }
.header-desktop .nav-col { padding: 0 8px; }
.header-desktop .cta-col { padding: 0 4px; text-align: center; display:flex; align-items:center; gap:10px;}
.header-desktop .cta-col-2 { padding: 0 4px; text-align: center; }

.nav-menu { display: flex; list-style: none; gap: 4px; }
.nav-menu li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-menu > li > a:hover { color: var(--amber); }
.nav-menu > li > a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--amber);
  width: 0;
  margin: 4px auto 0;
  transition: width var(--transition);
}
.nav-menu > li > a:hover::after { width: 24px; }
.nav-menu .submenu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 100;
  box-shadow: 0 16px 40px rgba(28,25,23,0.12);
}
.nav-menu li:hover .submenu { display: block; }
.nav-menu .submenu a {
  display: block;
  padding: 12px 18px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--cream);
  transition: all var(--transition);
}
.nav-menu .submenu a:last-child { border-bottom: 0; }
.nav-menu .submenu a:hover {
  color: var(--amber);
  background: var(--cream);
  padding-left: 24px;
}

.btn-nav-phone {
  display: inline-flex; align-items:center; gap:8px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
  color: var(--forest);
  padding: 10px 4px;
  border: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-nav-phone:hover { color: var(--amber-deep); }
.btn-nav-phone::before { content: '☎'; font-size:0.95rem; color: var(--amber); }

.btn-nav-quote {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--forest);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--forest);
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-nav-quote:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}

/* ── Mobile Navigation ── */
.header-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.header-mobile .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.header-mobile .logo-col img { height: 38px; width:auto; }
.header-mobile .menu-toggle {
  background: none; border: 1px solid var(--line);
  font-size: 1.4rem; color: var(--forest); cursor: pointer;
  padding: 6px 12px; line-height: 1; border-radius: var(--radius);
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--charcoal);
  padding: 90px 24px 100px;
  overflow-y: auto;
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-overlay .close-btn {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none;
  font-size: 2rem; color: var(--white); cursor: pointer;
}
.mobile-nav-overlay ul { list-style: none; }
.mobile-nav-overlay > ul > li { border-bottom: 1px solid rgba(255,255,255,0.12); }
.mobile-nav-overlay > ul > li > a {
  display: block; padding: 18px 0;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--white);
  letter-spacing: 0.01em;
}
.mobile-nav-overlay .submenu { list-style: none; padding-left: 16px; padding-bottom: 14px; }
.mobile-nav-overlay .submenu a {
  display: block; padding: 8px 0;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.78);
}

/* ═══════════════ BUTTONS ═══════════════ */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 0.95rem; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em; white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--amber); color: var(--white);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-deep);
  border-color: var(--amber-deep);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--charcoal); border-color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }
.btn-white { background: var(--white); color: var(--forest); border-color: var(--white); }
.btn-white:hover { background: var(--amber); color: var(--white); border-color: var(--amber); }
.btn-ghost {
  background: transparent; color: var(--forest);
  padding-left: 0; padding-right: 0;
  border: none;
  border-bottom: 2px solid var(--amber);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--amber-deep); border-bottom-color: var(--amber-deep); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 17px 36px; font-size: 1rem; }

/* ═══════════════ SECTIONS ═══════════════ */

.section { padding: 96px 24px; background: var(--cream); }
.section--white { background: var(--white); }
.section--deep { background: var(--cream-deep); }
.section--forest { background: var(--forest); color: var(--cream); }
.section--forest .section-title,
.section--forest h2,
.section--forest h3 { color: var(--white); }
.section--forest p { color: rgba(255,255,255,0.85); }

.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-inner--narrow { max-width: var(--max-narrow); margin: 0 auto; }

.section-label {
  font-family: var(--label);
  font-size: 0.8rem; font-weight: 600;
  color: var(--amber-deep);
  text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 14px;
  display: inline-flex; align-items:center; gap:10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px; background: var(--amber);
}
.section--forest .section-label { color: var(--amber-soft); }
.section--forest .section-label::before { background: var(--amber-soft); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600; line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 18px;
  max-width: 720px;
}
.section-title em { color: var(--amber); font-style: normal; font-weight: 600; }
.section--forest .section-title { color: var(--white); }

.section-subtitle {
  font-family: var(--sans);
  font-size: 1.05rem; color: var(--charcoal-soft);
  max-width: 640px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-title { margin-left: auto; margin-right: auto; }
.text-center .section-subtitle { margin: 0 auto 16px; }

.section-head { margin-bottom: 56px; }

/* ═══════════════ HERO ═══════════════ */

.hero {
  background: var(--charcoal);
  position: relative;
  padding: calc(var(--header-h) + 56px) 24px 96px;
  overflow: hidden;
}
.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.hero .hero-title { color: var(--white); }
.hero .hero-title em { color: var(--amber-soft); }
.hero .hero-eyebrow { color: var(--amber-soft); }
.hero .hero-eyebrow::before { background: var(--amber-soft); }
.hero .hero-subtitle { color: rgba(255,255,255,0.82); }
.hero .hero-trust { border-top-color: rgba(255,255,255,0.15); }
.hero .hero-trust-item { color: rgba(255,255,255,0.72); }
.hero .hero-trust-item strong { color: var(--white); }
.hero .hero-trust-stars { color: var(--amber-soft); }
.hero .hero-trust-divider { background: rgba(255,255,255,0.2); }
.hero-eyebrow {
  font-family: var(--label);
  font-size: 0.8rem; font-weight: 600;
  color: var(--amber-deep);
  text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: inline-flex; align-items:center; gap:12px;
}
.hero-eyebrow::before {
  content: ''; display:inline-block;
  width: 32px; height: 2px; background: var(--amber);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  margin-bottom: 22px;
}
.hero-title em { font-style: normal; color: var(--amber); font-weight: 600; }
.hero-subtitle {
  font-family: var(--sans);
  font-size: 1.1rem;
  color: var(--charcoal-soft);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust {
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-trust-item {
  display: flex; align-items:center; gap:8px;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  font-weight: 500;
}
.hero-trust-item strong { color: var(--charcoal); font-weight: 700; }
.hero-trust-stars { color: var(--amber); letter-spacing: 1px; font-size: 0.95rem; }
.hero-trust-divider { width:1px; height:14px; background: var(--line); }

.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border: 3px solid var(--charcoal);
  padding: 0;
  background: var(--white);
  box-shadow: 12px 12px 0 var(--amber);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-image-caption {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--charcoal);
  color: var(--cream);
  padding: 8px 14px;
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ─── Hero Form Card ─── */
.hero-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  box-shadow: 0 8px 48px rgba(28,20,10,0.10), 0 2px 8px rgba(28,20,10,0.05);
}
.hero-form-label {
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-form-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}
.hero-form-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 4px;
}
.hero-form-sub {
  font-size: 0.88rem;
  color: var(--charcoal-mute);
  margin-bottom: 24px;
  line-height: 1.5;
}
.hero-form .form-submit { margin-top: 4px; }
.hero-form-phone {
  text-align: center;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--charcoal-mute);
}
.hero-form-phone a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Legacy hero-bg / hero-overlay / hero-content support for broken pages */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { width:100%; height:100%; object-fit:cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(28,25,23,0.88) 0%, rgba(28,25,23,0.78) 45%, rgba(28,25,23,0.60) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-width); margin: 0 auto;
}
.hero-content .hero-title { color: var(--white); }
.hero-content .hero-subtitle { color: rgba(255,255,255,0.85); max-width: 600px; }
.hero-content .hero-eyebrow { color: var(--amber-soft); }
.hero-content .hero-eyebrow::before { background: var(--amber-soft); }
.hero-content .btn-outline,
.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.62);
  background: rgba(28,25,23,0.22);
}
.hero-content .btn-outline:hover,
.hero .btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.hero-sm {
  padding: calc(var(--header-h) + 72px) 24px 80px;
  background: var(--charcoal);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.hero-sm .hero-sm-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-sm .hero-sm-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28,25,23,0.88) 0%, rgba(28,25,23,0.76) 46%, rgba(28,25,23,0.58) 100%),
    linear-gradient(180deg, rgba(28,25,23,0.30) 0%, rgba(28,25,23,0.18) 42%, rgba(28,25,23,0.42) 100%);
}
.hero-sm .hero-sm-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 1;
  filter: saturate(0.92) contrast(0.96);
}
.hero-sm .hero-sm-bg--family img {
  object-position: center 58%;
}
.hero-sm .hero-grid {
  display: block;
  position: relative;
  z-index: 2;
}
.hero-sm .hero-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  max-width: 800px;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0,0,0,0.28);
  text-wrap: balance;
  overflow-wrap: break-word;
}
.hero-sm .hero-eyebrow { color: var(--amber-soft); }
.hero-sm .hero-eyebrow::before { background: var(--amber-soft); }
.hero-sm .hero-subtitle {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 14px rgba(0,0,0,0.24);
}
.hero-sm .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.66);
  background: rgba(28,25,23,0.26);
}
.hero-sm .btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

/* ═══════════════ CREDENTIALS STRIP ═══════════════ */

.credentials-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 24px;
  box-shadow: 0 2px 12px rgba(28,25,23,0.05);
}
.credentials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex; align-items:center; justify-content:space-between;
  gap: 32px; flex-wrap: wrap;
}
.credentials-strip .label {
  font-family: var(--label);
  font-size: 0.8rem; font-weight: 600;
  color: var(--charcoal-mute);
  text-transform: uppercase; letter-spacing: 0.18em;
  white-space: nowrap;
}
.credentials-list {
  display: flex; align-items:center; gap: 36px;
  flex-wrap: wrap;
  flex: 1;
}
.credentials-list span {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.credentials-list span em { font-style: normal; color: var(--amber); }

.credentials-list .cred-fmb img { height: 32px; width: auto; display: block; }

.credentials-list .cred-google {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid #dfe1e5;
  border-radius: 8px;
  padding: 6px 14px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  white-space: nowrap;
}
.credentials-list .cred-google .google-g {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff;
  border: 1px solid #dfe1e5;
  font-family: 'Product Sans', Arial, sans-serif;
  font-size: 0.82rem; font-weight: 700;
  color: #4285f4;
  line-height: 1;
}
.credentials-list .cred-google .google-stars {
  color: var(--amber-soft);
  font-size: 0.82rem;
  letter-spacing: 1px;
}
.credentials-list .cred-google .google-score {
  font-weight: 700;
  color: var(--charcoal);
}
.credentials-list .cred-google .google-count {
  color: var(--charcoal-mute);
  font-size: 0.8rem;
}

/* ═══════════════ SERVICE CARDS ═══════════════ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  text-align: left;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(28,20,10,0.06);
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--amber);
  box-shadow: 0 16px 40px rgba(28,20,10,0.10);
}
.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 0;
  border-radius: 0;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 28px 28px 32px; display:flex; flex-direction:column; flex:1; }
.service-card .service-num {
  font-family: var(--label);
  font-size: 0.72rem; font-weight: 600;
  color: var(--amber-deep); letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-card h3 {
  font-family: var(--sans);
  font-size: 1.4rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.95rem; color: var(--charcoal-soft);
  line-height: 1.7; margin-bottom: 20px; flex: 1;
}
.service-card .btn-ghost { align-self: flex-start; padding: 4px 0; font-size: 0.85rem; }

/* ═══════════════ ABOUT (Owner) ═══════════════ */

.about-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 72px;
  align-items: center;
  margin-top: 56px;
}
.about-image {
  position: relative;
  border: 3px solid var(--charcoal);
  padding: 0;
  background: var(--white);
  box-shadow: 12px 12px 0 var(--amber);
  max-height: 420px;
  overflow: hidden;
}
.about-image img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; max-height: 420px;
}
.about-image--family {
  width: min(100%, 460px);
  justify-self: center;
  max-height: none;
  overflow: hidden;
}
.about-image--family img {
  display: block;
  aspect-ratio: 4/3;
  max-height: none;
  object-position: center;
}
.about-image-caption {
  margin: 0;
  padding: 14px 16px 15px;
  background: var(--white);
  border-top: 3px solid var(--charcoal);
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.about-text .pull-quote {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 3px solid var(--amber);
  letter-spacing: -0.005em;
}
.about-text p {
  margin-bottom: 16px; font-size: 1rem;
  line-height: 1.75; color: var(--charcoal-soft);
}
.about-text .signature {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 24px;
  display: block;
}
.about-text .signature small {
  display: block;
  font-family: var(--label);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--charcoal-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ═══════════════ PROCESS / TIMELINE ═══════════════ */

.process-section { background: var(--cream-deep); padding: 96px 24px; }
.timeline {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--amber);
  opacity: 0.5;
}
.timeline-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.timeline-num {
  width: 56px; height: 56px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--cream-deep);
  border: 2px solid var(--amber);
  color: var(--amber-deep);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex; align-items:center; justify-content:center;
  position: relative;
  z-index: 1;
}
.timeline-step:hover .timeline-num {
  background: var(--amber);
  color: var(--white);
}
.timeline-step h4 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.timeline-step p {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

/* Legacy 3-step support */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.process-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  color: var(--charcoal);
  transition: all var(--transition);
}
.process-card:hover { transform: translateY(-2px); border-color: var(--amber); }
.process-number {
  font-family: var(--serif);
  font-size: 2.4rem; font-weight: 600;
  color: var(--amber); line-height: 1; margin-bottom: 14px;
}
.process-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 600; margin-bottom: 10px;
  color: var(--charcoal);
}
.process-card p { font-size: 0.93rem; line-height: 1.7; color: var(--charcoal-soft); margin-bottom: 18px; }
.process-card .btn { color: var(--forest); border-color: var(--forest); background: transparent; }
.process-card .btn:hover { background: var(--forest); color: var(--cream); }

/* ═══════════════ PROJECTS GALLERY ═══════════════ */

.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--cream);
  border: 1px solid var(--line);
  display: block;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); filter: brightness(0.6); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(28,25,23,0.92) 0%, rgba(28,25,23,0.0) 55%);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--white); font-size: 1.3rem;
  display: block;
}
.gallery-overlay small {
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--amber-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}
.gallery-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--cream);
  color: var(--charcoal);
  padding: 6px 14px;
  border-radius: 0;
  border: 2px solid var(--charcoal);
  font-family: var(--label); font-size: 0.7rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  z-index: 2;
}

/* Smaller variant for projects.html grid */
.gallery-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ═══════════════ TESTIMONIALS ═══════════════ */

.testimonials-section {
  background: var(--charcoal);
  padding: 96px 24px;
}
.testimonials-section .section-title,
.testimonials-section .section-label,
.testimonials-section .section-subtitle { color: var(--white); }
.testimonials-section .section-label::before { background: var(--amber-soft); }
.testimonials-section .section-label { color: var(--amber-soft); }

.reviews-summary {
  display: flex; align-items:center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  margin: 32px auto 48px;
  padding: 20px 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,132,26,0.4);
  border-radius: var(--radius);
  max-width: 640px;
}
.reviews-score {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--amber-soft);
  line-height: 1;
}
.reviews-stars { color: var(--amber-soft); letter-spacing: 3px; font-size: 1.2rem; }
.reviews-meta {
  display: flex; flex-direction: column; gap: 4px;
  text-align: left;
}
.reviews-meta span { color: rgba(255,255,255,0.85); font-size: 0.85rem; }
.reviews-meta strong { color: var(--white); font-weight: 600; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,132,26,0.25);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -8px; left: 20px;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--amber);
  line-height: 1;
}
.testimonial-stars { color: var(--amber-soft); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  color: rgba(255,255,255,0.92);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--label); font-weight: 700; color: var(--white); font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.testimonial-name { font-family: var(--sans); font-weight: 600; color: var(--white); font-size: 0.92rem; }
.testimonial-meta { font-family: var(--label); font-size: 0.7rem; color: var(--amber-soft); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px; }

/* ═══════════════ PARTNER LOGOS STRIP ═══════════════ */

.partner-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 24px;
}
.partner-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.partner-strip-label {
  font-family: var(--label);
  font-size: 0.72rem; font-weight: 600;
  color: var(--charcoal-mute);
  text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 24px;
}
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.partner-logos img {
  height: 44px;
  width: auto;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: all var(--transition);
  object-fit: contain;
}
.partner-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.partner-logos .partner-logo-fmb {
  height: 56px;
}
.partner-logos .partner-logo-award {
  height: 64px;
  opacity: 0.85;
  filter: none;
}
.partner-logos .partner-logo-interline {
  height: 58px;
  opacity: 0.95;
  filter: none;
}

/* ═══════════════ TESTIMONIALS CAROUSEL (Auto-slide) ═══════════════ */

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}
.testimonials-track {
  display: flex;
  width: max-content;
  animation: scrollTestimonials 60s linear infinite;
}
.testimonials-track:hover {
  animation-play-state: paused;
}
@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonial-slide {
  flex-shrink: 0;
  width: 380px;
  margin-right: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,132,26,0.25);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.testimonial-slide::before {
  content: '"';
  position: absolute;
  top: -8px; left: 20px;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--amber);
  line-height: 1;
}
.testimonial-slide-stars { color: var(--amber-soft); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-slide-text {
  color: rgba(255,255,255,0.92);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-slide-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
.testimonial-slide-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--label); font-weight: 700; color: var(--white); font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.testimonial-slide-name { font-family: var(--sans); font-weight: 600; color: var(--white); font-size: 0.92rem; }
.testimonial-slide-meta { font-family: var(--label); font-size: 0.7rem; color: var(--amber-soft); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--charcoal);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 8px;
}
.google-badge img { height: 20px; width: auto; }

/* ═══════════════ SERVICE AREAS ═══════════════ */

.areas-section { background: var(--cream); }
.areas-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; margin-top: 48px; }
.areas-list {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 24px;
}
.area-chip {
  display: inline-flex; align-items:center; gap: 8px;
  padding: 12px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: all var(--transition);
}
.area-chip::before { content: '◆'; color: var(--amber); font-size: 0.7rem; }
.area-chip:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.area-chip:hover::before { color: var(--amber-soft); }

/* ═══════════════ FAQ ═══════════════ */

.faq-section { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: start;
  margin-top: 56px;
}
.faq-image {
  border: 3px solid var(--charcoal);
  padding: 0;
  background: var(--cream);
  position: relative;
  position: sticky;
  top: 110px;
  box-shadow: 12px 12px 0 var(--amber);
}
.faq-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%; background: transparent;
  border: none; padding: 22px 0;
  font-family: var(--sans); font-size: 1.05rem; font-weight: 600;
  color: var(--charcoal); text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: color var(--transition);
  letter-spacing: 0;
}
.faq-question:hover { color: var(--amber-deep); }
.faq-question::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  color: var(--amber); transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-question::after { content: '–'; transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 0 22px; font-size: 0.98rem; color: var(--charcoal-soft); line-height: 1.75; }

/* ═══════════════ FORM SECTION ═══════════════ */

.form-section {
  background: var(--charcoal);
  padding: 96px 24px;
  position: relative;
}
.form-section .section-title,
.form-section .section-label,
.form-section .section-subtitle { color: var(--white); }
.form-section .section-label { color: var(--amber-soft); }
.form-section .section-label::before { background: var(--amber-soft); }
.form-section .section-subtitle strong { color: var(--amber-soft); }
.form-section .section-subtitle { color: rgba(255,255,255,0.82); }

.form-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px; align-items: start;
  margin-top: 56px;
}
.form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  border: 2px solid var(--amber);
}
.form-box h2 {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 600;
  color: var(--charcoal); text-align: left;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.form-box .form-intro {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-family: var(--label);
  font-size: 0.72rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-group .required { color: var(--error); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.95rem; color: var(--charcoal);
  transition: border var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--white);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group ::placeholder { color: var(--charcoal-mute); font-family: var(--sans); }
.form-consent { margin: 12px 0; }
.form-consent label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.78rem; color: var(--charcoal-soft);
  line-height: 1.55; cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--sans);
  font-weight: 400;
}
.form-consent input[type="checkbox"] {
  margin-top: 2px; accent-color: var(--amber); flex-shrink: 0;
  width: 16px; height: 16px;
}
.form-consent a { color: var(--forest); text-decoration: underline; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }
.form-side-info { color: var(--white); padding-top: 20px; }
.form-side-info h3 {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 600; color: var(--white);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.form-side-info .side-intro { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin-bottom: 24px; line-height: 1.7; }
.form-side-info .phone-large {
  font-family: var(--serif);
  font-size: 2.2rem; font-weight: 600; color: var(--amber-soft);
  margin: 4px 0 8px;
  letter-spacing: -0.01em;
}
.form-side-info .phone-large a { color: var(--amber-soft); }
.form-side-info .phone-label {
  font-family: var(--label); font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.7); letter-spacing: 0.16em; text-transform: uppercase;
}
.form-side-info .services-list { list-style: none; margin-top: 24px; }
.form-side-info .services-list li {
  padding: 8px 0 8px 24px; position: relative; font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.form-side-info .services-list li::before {
  content: '◆'; position: absolute; left: 0;
  color: var(--amber); font-size: 0.7rem; top: 11px;
}
.form-side-info .signature-bio {
  display: flex; align-items:center; gap: 14px;
  margin-top: 28px; padding: 20px;
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--amber);
}
.form-side-info .signature-bio img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--amber);
}
.form-side-info .signature-bio strong { display:block; font-family: var(--serif); font-size: 1.05rem; color: var(--white); }
.form-side-info .signature-bio span { font-family: var(--label); font-size: 0.7rem; color: var(--amber-soft); letter-spacing: 0.14em; text-transform: uppercase; }

/* ═══════════════ POPUP MODAL ═══════════════ */

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(28,25,23,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.popup-box {
  background: var(--white);
  border: 2px solid var(--amber);
  border-radius: var(--radius);
  padding: 40px 36px;
  width: 100%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.32);
  animation: popIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes popIn {
  from { opacity: 0; transform: translateY(-30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--charcoal);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.popup-close:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
  transform: rotate(90deg);
}
.popup-box h2 {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 600;
  color: var(--charcoal); text-align: left;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.popup-box .popup-subtitle {
  text-align: left;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  margin-bottom: 24px;
}
.popup-box .form-group input,
.popup-box .form-group textarea,
.popup-box .form-group select {
  background: var(--cream);
}
.popup-box .btn-primary { width: 100%; justify-content: center; }

/* ═══════════════ LIGHTBOX ═══════════════ */

.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(28,25,23,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.lightbox-overlay.open { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 85vh; }
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border: 2px solid var(--amber);
  padding: 8px;
  background: var(--cream);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--amber);
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.lightbox-close:hover { background: var(--white); color: var(--charcoal); }
.lightbox-caption {
  position: absolute;
  bottom: -44px;
  left: 0; right: 0;
  text-align: center;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 600;
}

/* ═══════════════ MAP ═══════════════ */

.map-container {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  margin-top: 24px;
}
.map-container iframe { width: 100%; height: 240px; border: 0; display:block; filter: grayscale(0.3) sepia(0.05); }

/* ═══════════════ STICKY MOBILE CTA ═══════════════ */

.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--charcoal);
  border-top: 2px solid var(--amber);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.18);
  padding: 0;
}
.sticky-mobile-cta a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 18px 12px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.sticky-mobile-cta .smc-call {
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.sticky-mobile-cta .smc-quote {
  background: var(--amber);
  color: var(--white);
}
.sticky-mobile-cta .smc-call::before { content: '☎'; color: var(--amber-soft); }
.sticky-mobile-cta .smc-quote::after { content: '→'; }
@media (max-width: 768px) {
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 64px; }
}

/* ═══════════════ PROJECT DETAIL ═══════════════ */

.project-detail {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  margin-top: 48px;
}
.project-facts {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
  position: sticky;
  top: 110px;
  align-self: start;
}
.project-facts h4 {
  font-family: var(--label);
  font-size: 0.72rem; font-weight: 600;
  color: var(--amber-deep); letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.project-facts dl { display: grid; gap: 14px; }
.project-facts dt {
  font-family: var(--label);
  font-size: 0.7rem; font-weight: 600;
  color: var(--charcoal-mute); letter-spacing: 0.14em;
  text-transform: uppercase;
}
.project-facts dd {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 600;
  margin-top: 2px;
}
.project-content p {
  margin-bottom: 18px;
  font-size: 1.02rem;
  color: var(--charcoal-soft);
  line-height: 1.8;
}
.project-content p.lead {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--charcoal);
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  padding-left: 20px;
  border-left: 3px solid var(--amber);
  margin-bottom: 28px;
}
.project-content h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--charcoal);
  font-weight: 600;
  margin: 32px 0 14px;
}
.project-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
}
.project-gallery img { width:100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--line); }
.project-nav {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  margin-top: 48px;
}
.project-nav a {
  flex: 1;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  font-family: var(--sans);
  transition: all var(--transition);
}
.project-nav a:hover { border-color: var(--amber); }
.project-nav .label {
  font-family: var(--label);
  font-size: 0.7rem;
  color: var(--charcoal-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.project-nav .title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 600;
}
.project-nav .next { text-align: right; }

/* ═══════════════ CONTACT PAGE ═══════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
  margin-top: 48px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-detail:last-child { border-bottom: 0; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border: 2px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem; color: var(--amber-deep);
  border-radius: 50%;
}
.contact-detail h4 { font-family: var(--label); font-size: 0.72rem; font-weight: 600; color: var(--charcoal-mute); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 4px; }
.contact-detail p { font-family: var(--serif); font-size: 1.2rem; color: var(--charcoal); font-weight: 600; }

/* Why-quote rail */
.why-rail {
  background: var(--cream-deep);
  padding: 32px;
  border-left: 3px solid var(--amber);
  margin-top: 24px;
}
.why-rail h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 16px;
}
.why-rail ul { list-style: none; }
.why-rail li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}
.why-rail li:last-child { border-bottom: 0; }
.why-rail li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 11px;
  color: var(--amber-deep);
  font-weight: 700;
}

/* Proof strip (used on inner pages) */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  margin-top: 40px;
}
.proof-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--line);
}
.proof-item:last-child { border-right: 0; }
.proof-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.proof-num em { font-style: normal; font-size: 1.4rem; color: var(--amber-deep); }
.proof-label {
  font-family: var(--label);
  font-size: 0.72rem;
  color: var(--charcoal-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* CTA band */
.cta-band {
  background: var(--charcoal);
  padding: 64px 24px;
  text-align: center;
}
.cta-band .section-title { color: var(--white); margin-left:auto; margin-right:auto; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 28px; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-outline { color: var(--cream); border-color: rgba(255,255,255,0.4); }
.cta-band .btn-outline:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }

/* ═══════════════ FOOTER ═══════════════ */

.footer { background: var(--charcoal); color: var(--cream); padding: 72px 24px 0; }
.footer-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-col h4 {
  font-family: var(--label);
  font-size: 0.72rem; font-weight: 600; color: var(--amber-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-family: var(--sans);
  font-size: 0.9rem; color: rgba(250,250,249,0.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--amber-soft); }
.footer-col p { font-size: 0.9rem; color: rgba(250,250,249,0.65); line-height: 1.7; margin-bottom: 16px; }
.footer-logo img { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,132,26,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 0.9rem; color: var(--amber-soft);
  font-weight: 600;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--amber); color: var(--white); border-color: var(--amber); }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(184,132,26,0.18);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans);
  font-size: 0.8rem; color: rgba(250,250,249,0.42);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(250,250,249,0.55); }
.footer-bottom a:hover { color: var(--amber-soft); }

/* ═══════════════ LEGAL PAGES ═══════════════ */

.legal-section { padding: 64px 24px 96px; background: var(--cream); }
.legal-section .section-inner { max-width: 800px; }
.legal-section h1 { font-family: var(--serif); font-size: 2.4rem; color: var(--charcoal); font-weight: 600; margin-bottom: 16px; }
.legal-section h2 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  color: var(--charcoal); margin: 32px 0 12px;
}
.legal-section p { margin-bottom: 14px; color: var(--charcoal-soft); line-height: 1.8; }
.legal-section ul { margin: 12px 0 12px 24px; color: var(--charcoal-soft); line-height: 1.8; }

/* ═══════════════ GOOGLE REVIEWS SLIDER ═══════════════ */
#google-reviews-widget { max-width: 860px; margin: 0 auto; }

.grw-top-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 12px;
}
.grw-google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.grw-g-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--white); border: 1px solid #dfe1e5;
  font-family: Arial, sans-serif; font-weight: 700; font-size: 0.82rem;
  color: #4285f4; line-height: 1; flex-shrink: 0;
}
.grw-overall { display: flex; align-items: center; gap: 8px; }
.grw-overall-stars { color: var(--amber-soft); font-size: 1.1rem; letter-spacing: 3px; line-height: 1; }
.grw-overall-score { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--white); }
.grw-overall-count { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

.grw-carousel {
  display: flex; align-items: center; gap: 16px;
}
.grw-slides-outer { flex: 1; overflow: hidden; }
.grw-slides-inner {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}
.grw-slide { flex: 0 0 100%; padding: 0 8px; text-align: center; }
.grw-slide-stars {
  color: var(--amber-soft); font-size: 1.1rem; letter-spacing: 3px;
  margin-bottom: 24px;
}
.grw-slide-text {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.grw-slide-author {
  display: inline-flex; align-items: center; gap: 14px;
}
.grw-slide-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.grw-slide-name {
  font-family: var(--sans); font-size: 0.92rem;
  font-weight: 600; color: var(--white); text-align: left;
}
.grw-slide-time {
  font-size: 0.78rem; color: rgba(255,255,255,0.45); text-align: left; margin-top: 2px;
}

.grw-arrow {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.grw-arrow:hover { background: var(--amber); border-color: var(--amber); color: var(--white); }

.grw-dots {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; margin: 24px 0 32px;
}
.grw-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.2); border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.grw-dot.active { width: 28px; background: var(--amber-soft); }

.grw-footer {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.grw-btn {
  display: inline-flex; align-items: center;
  background: var(--amber); color: var(--white);
  padding: 13px 28px; border-radius: var(--radius);
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  transition: all var(--transition);
}
.grw-btn:hover { background: var(--amber-deep); }
.grw-all-link {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color var(--transition);
}
.grw-all-link:hover { color: var(--white); }

/* ═══════════════ RESPONSIVE ═══════════════ */

@media (max-width: 1024px) {
  .header-desktop { display: none; }
  .header-mobile { display: block; }
  .hero { padding: 100px 24px 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { max-width: 480px; margin: 0 auto; }
  .hero-form { max-width: 560px; margin: 0 auto; }
  .hero-sm { padding: 100px 24px 48px; }
  .hero-sm .hero-sm-bg::after {
    background: linear-gradient(180deg, rgba(28,25,23,0.88) 0%, rgba(28,25,23,0.76) 52%, rgba(28,25,23,0.68) 100%);
  }
  .about-grid, .faq-grid, .form-grid, .areas-inner, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .timeline::before { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .credentials-list { gap: 24px; }
  .credentials-list span { font-size: 0.95rem; }
  .project-detail { grid-template-columns: 1fr; }
  .project-facts { position: static; }
  .faq-image { position: static; }
  .about-image--family { margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(1), .proof-item:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 768px) {
  .section { padding: 64px 20px; }
  .process-section, .testimonials-section, .form-section { padding: 64px 20px; }

  .hero { padding: 96px 20px 56px; }
  .hero-title { font-size: 2.2rem; }
  .hero-sm .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 14px; }
  .hero-trust-divider { display: none; }
  .hero-form { padding: 28px 24px; }
  .gallery-grid, .gallery-grid--3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .grw-arrow { width: 36px; height: 36px; font-size: 0.95rem; }
  .grw-slide-text { font-size: 1rem; }
  #google-reviews-widget { padding: 0 4px; }
  .grw-overall-score { font-size: 1.8rem; }
  .grw-overall-stars { font-size: 1.4rem; letter-spacing: 4px; }
  .grw-overall-count { font-size: 0.95rem; }
  .grw-slide-avatar { width: 64px; height: 64px; }
  .hero-trust-item { font-size: 0.95rem; }
  .hero-trust-item strong { font-size: 1rem; }
  .about-image { max-height: 320px; }
  .about-image img { aspect-ratio: 3/2; max-height: 320px; }
  .about-image--family { max-height: none; }
  .about-image--family { width: min(100%, 420px); }
  .about-image--family img { aspect-ratio: 4/3; max-height: none; }
  .form-box { padding: 32px 24px; }
  .popup-box { padding: 32px 24px; margin: 10px; }
  .credentials-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .timeline { grid-template-columns: 1fr; gap: 32px; }
  .project-gallery { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
  .about-text .pull-quote { font-size: 1.3rem; }
  .form-side-info .phone-large { font-size: 1.8rem; }
  .reviews-summary { padding: 16px 20px; gap: 16px; }
  .reviews-score { font-size: 2rem; }
  .testimonial-slide { width: 300px; padding: 24px 20px; }
  .credentials-list .cred-fmb img { height: 26px; }
  .credentials-list .cred-google { padding: 5px 10px; gap: 6px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .hero-title { font-size: 1.9rem; }
  .btn { padding: 13px 22px; font-size: 0.9rem; }
  .btn-lg { padding: 15px 28px; font-size: 0.95rem; }
  .popup-overlay { padding: 10px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .grw-overall-score { font-size: 1.6rem; }
}

/* ── Family Run Business banner ── */
.family-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--amber-soft, #f06b76);
  color: var(--charcoal, #171717);
  padding: 18px 24px;
  font-family: var(--label, sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.family-banner-icon {
  font-size: 1.2rem;
  line-height: 1;
}
.family-banner-text {
  line-height: 1;
}
