@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --plaster:     #F2EDE4;
  --plaster-mid: #DDD3C0;
  --plaster-dark:#C4B49A;
  --sand:        #FAF7F2;
  --stone:       #8C7A65;
  --stone-dark:  #5C4E3D;
  --charcoal:    #1A1714;
  --charcoal-mid:#272319;
  --warm-white:  #FDFBF8;
  --text-body:   #4A4440;
  --text-muted:  #7A7068;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--plaster); color: var(--charcoal); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── PLASTER GRAIN OVERLAY ── */
/* Add class .grain to any section to get chukum texture */
.grain { position: relative; }
.grain::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.42 0 0 0 0 0.33 0 0 0 0 0.22 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  mix-blend-mode: multiply;
  opacity: .6;
}
.grain > * { position: relative; z-index: 2; }
.grain-dark::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='gd'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0 0.04 0 0 0 0.28 0'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23gd)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ── TOPBAR ── */
.top-bar {
  background: var(--charcoal);
  padding: 8px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10.5px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  font-family: var(--sans);
}
.top-bar a { color: rgba(255,255,255,.65); transition: color .15s; }
.top-bar a:hover { color: #fff; }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-pipe { opacity: .2; }

/* ── NAVBAR ── */
#navbar {
  background: rgba(242,237,228,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--plaster-mid);
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 500;
  transition: box-shadow .2s;
}
.nav-logo { padding: 14px 0; display: flex; flex-direction: column; line-height: 1; }
.nav-logo-word { font-family: var(--serif); font-size: 21px; font-style: italic; font-weight: 400; color: var(--charcoal); letter-spacing: .02em; }
.nav-logo-sub { font-size: 8px; letter-spacing: .24em; text-transform: uppercase; color: var(--stone); margin-top: 3px; font-weight: 600; }
.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-muted); padding: 8px 13px; display: block;
  font-weight: 500; transition: color .15s;
}
.nav-links > li > a:hover { color: var(--charcoal); }
.nav-links > li:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--warm-white);
  border: 1px solid var(--plaster-mid);
  border-top: 2px solid var(--charcoal);
  min-width: 220px; padding: 8px 0; z-index: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
}
.dropdown li a {
  display: block; padding: 10px 18px;
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); transition: all .15s;
}
.dropdown li a:hover { background: var(--plaster); color: var(--charcoal); padding-left: 22px; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { font-size: 12px; font-weight: 600; color: var(--charcoal); letter-spacing: .04em; }
.nav-cta {
  background: var(--charcoal); color: #fff;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; padding: 11px 22px; transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--charcoal-mid); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span { width: 22px; height: 1.5px; background: var(--charcoal); display: block; }

/* ── HERO ── */
#hero {
  position: relative;
  height: calc(100vh - 88px);
  max-height: 760px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-color: #9E8C74;
  /* Replace with: background-image: url('your-photo.jpg'); background-size: cover; background-position: center; */
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.3 0 0 0 0 0.22 0 0 0 0 0.14 0 0 0 0.38 0'/%3E%3C/filter%3E%3Crect width='600' height='600' filter='url(%23a)'/%3E%3C/svg%3E");
  background-size: 280px 280px;
  mix-blend-mode: multiply;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='b'%3E%3CfeTurbulence type='turbulence' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.55 0 0 0 0 0.45 0 0 0 0 0.32 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23b)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(18,13,8,.12) 0%,
    rgba(18,13,8,.22) 35%,
    rgba(18,13,8,.65) 65%,
    rgba(18,13,8,.82) 100%);
}
.hero-light {
  position: absolute; z-index: 1; top: -10%; right: 5%;
  width: 55%; height: 65%;
  background: radial-gradient(ellipse at 60% 30%, rgba(255,230,160,.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: flex-end;
  padding: 0 48px 72px;
  max-width: 1280px; margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.52); font-weight: 500; margin-bottom: 14px;
}
.hero-eyebrow-line { width: 28px; height: 1px; background: rgba(255,255,255,.38); flex-shrink: 0; }
.hero-tagline {
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.52); font-weight: 400; margin-bottom: 10px; display: block;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 600; color: #fff;
  line-height: .98; letter-spacing: -.015em;
}
.hero-title em {
  font-style: italic; font-weight: 300; display: block;
  font-size: .82em; color: rgba(255,255,255,.85); margin-bottom: 2px;
}
.hero-desc {
  font-size: 14px; color: rgba(255,255,255,.62);
  line-height: 1.82; font-weight: 300; max-width: 380px; margin-bottom: 28px;
}
.hero-btns { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.hero-trust {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  display: flex;
  background: rgba(18,13,8,.32);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.07);
}
.trust-item {
  flex: 1; padding: 14px 18px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.trust-item:last-child { border-right: none; }
.trust-dot { width: 4px; height: 4px; background: var(--plaster-dark); border-radius: 50%; flex-shrink: 0; }
.trust-label { font-size: 8.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); white-space: nowrap; }

/* ── BUTTONS ── */
.btn-dark {
  background: var(--charcoal); color: #fff;
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; padding: 13px 30px; display: inline-block; transition: background .18s;
}
.btn-dark:hover { background: var(--charcoal-mid); color: #fff; }
.btn-outline-dark {
  background: transparent; border: 1px solid var(--charcoal); color: var(--charcoal);
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 500; padding: 12px 30px; display: inline-block; transition: all .18s;
}
.btn-outline-dark:hover { background: var(--charcoal); color: #fff; }
.btn-white {
  background: #fff; color: var(--charcoal);
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; padding: 14px 32px; display: inline-block; transition: all .18s;
}
.btn-white:hover { background: var(--plaster); color: var(--charcoal); }
.btn-ghost-white {
  background: transparent; border: 1px solid rgba(255,255,255,.38); color: rgba(255,255,255,.8);
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 500; padding: 13px 32px; display: inline-block; transition: all .18s;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-outline-sand {
  border: 1px solid var(--plaster-dark); color: var(--plaster-dark);
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; padding: 12px 24px; display: inline-block; transition: all .18s; white-space: nowrap;
}
.btn-outline-sand:hover { background: var(--plaster-dark); color: var(--charcoal); }
.btn-outline-lt {
  background: transparent; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.65);
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; padding: 11px 22px; display: inline-block; transition: all .18s;
}
.btn-outline-lt:hover { border-color: rgba(255,255,255,.6); color: #fff; }

/* ── STATS ── */
.stats-strip {
  background: var(--charcoal);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 28px; border-right: 1px solid rgba(255,255,255,.06); text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-size: 48px; font-weight: 300; color: var(--plaster-dark); line-height: 1; }
.stat-num sup { font-size: 26px; }
.stat-label { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-top: 8px; }

/* ── SHARED SECTION ── */
section { padding: 92px 48px; }
.container { max-width: 1180px; margin: 0 auto; }
.section-eyebrow { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--stone); font-weight: 600; display: block; margin-bottom: 14px; }
.section-eyebrow.on-dark { color: var(--stone); }
.section-title { font-family: var(--serif); font-size: clamp(30px, 3.5vw, 46px); font-weight: 400; line-height: 1.08; color: var(--charcoal); margin-bottom: 16px; }
.section-title.white { color: #fff; }
.section-desc { font-size: 14px; color: var(--text-body); line-height: 1.85; font-weight: 300; max-width: 520px; }
.rule { width: 44px; height: 1px; background: var(--plaster-dark); margin: 18px 0 28px; }

/* ── INTRO / ABOUT ── */
.bg-white { background: var(--warm-white); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.col-img { position: relative; }
.intro-panel { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.intro-panel img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.intro-panel-placeholder {
  width: 100%; height: 100%;
  background-color: #9E8E78;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.55 0 0 0 0 0.46 0 0 0 0 0.36 0 0 0 0.3 0'/%3E%3C/filter%3E%3Crect width='600' height='600' filter='url(%23p)'/%3E%3C/svg%3E");
  display: flex; align-items: flex-end; padding: 28px;
}
.intro-panel-placeholder span { font-family: var(--serif); font-style: italic; font-size: 12px; color: rgba(255,255,255,.35); }
.intro-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 114px; height: 114px; background: var(--charcoal);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.badge-num { font-family: var(--serif); font-size: 40px; font-weight: 300; color: var(--plaster-dark); line-height: 1; }
.badge-lbl { font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 4px; text-align: center; }
.checklist { list-style: none; margin: 22px 0 32px; }
.checklist li {
  font-size: 13px; color: var(--charcoal); padding: 11px 0;
  border-bottom: 1px solid var(--plaster-mid);
  display: flex; gap: 14px; align-items: flex-start; font-weight: 400; line-height: 1.5;
}
.check-arrow { color: var(--stone); flex-shrink: 0; margin-top: 2px; font-size: 12px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── SERVICES ── */
.bg-plaster { background: #DDD3C0; }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: flex-end; margin-bottom: 52px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card {
  background: var(--warm-white); padding: 40px 32px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden; transition: transform .22s;
  color: var(--charcoal);
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--charcoal); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.service-card:hover { transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-num { font-family: var(--serif); font-size: 12px; color: var(--stone); letter-spacing: .08em; }
.service-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 28px; height: 28px; stroke: var(--stone-dark); fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.service-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--charcoal); line-height: 1.2; }
.service-desc { font-size: 12.5px; color: var(--text-body); line-height: 1.78; flex: 1; font-weight: 300; }
.service-link { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--charcoal); font-weight: 600; display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.service-arrow { transition: transform .18s; }
.service-card:hover .service-arrow { transform: translateX(5px); }

/* ── WHY US ── */
.bg-sand { background: var(--sand); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 52px; }
.why-item { border-top: 1px solid var(--plaster-mid); padding-top: 28px; }
.why-num { font-family: var(--serif); font-size: 56px; font-weight: 300; color: var(--plaster-dark); line-height: 1; margin-bottom: 16px; opacity: .6; }
.why-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--charcoal); margin-bottom: 12px; }
.why-text { font-size: 13px; color: var(--text-body); line-height: 1.8; font-weight: 300; }

/* ── PROCESS ── */
.bg-dark { background: var(--charcoal-mid); }
.process-top { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: flex-end; margin-bottom: 64px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.07); }
.process-step { padding: 40px 28px; border-right: 1px solid rgba(255,255,255,.07); }
.process-step:last-child { border-right: none; }
.step-num { font-family: var(--serif); font-size: 56px; font-weight: 300; color: rgba(255,255,255,.05); line-height: 1; margin-bottom: 10px; }
.step-line { width: 28px; height: 1px; background: var(--stone); margin-bottom: 18px; }
.step-title { font-family: var(--serif); font-size: 19px; font-weight: 500; color: #fff; margin-bottom: 10px; }
.step-desc { font-size: 12.5px; color: rgba(255,255,255,.38); line-height: 1.78; font-weight: 300; }

/* ── WHO WE WORK WITH ── */
.bg-plaster-mid { background: var(--plaster-mid); }
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 52px; }
.who-card { background: var(--sand); padding: 48px 40px; position: relative; overflow: hidden; }
.who-card::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--charcoal); transition: height .3s; }
.who-card:hover::before { height: 100%; }
.who-ghost { position: absolute; top: 24px; right: 28px; font-family: var(--serif); font-size: 72px; font-weight: 300; color: var(--plaster-mid); line-height: 1; user-select: none; }
.who-title { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--charcoal); margin-bottom: 12px; }
.who-body { font-size: 13px; color: var(--text-body); line-height: 1.78; font-weight: 300; max-width: 360px; }
.who-link { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--charcoal); font-weight: 600; margin-top: 22px; display: inline-block; transition: text-decoration .15s; }
.who-link:hover { text-decoration: underline; color: var(--charcoal); }

/* ── WORK GRID ── */
.work-section { background: var(--charcoal); }
.work-header { max-width: 1180px; margin: 0 auto 40px; display: flex; justify-content: space-between; align-items: flex-end; }
.work-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 3px; max-width: 1180px; margin: 0 auto;
}
.work-cell { position: relative; overflow: hidden; background: #3A3228; cursor: pointer; transition: opacity .2s; }
.work-cell:hover { opacity: .85; }
.work-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-cell-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 20px 16px;
  background: linear-gradient(to top, rgba(15,10,5,.7) 0%, transparent 100%);
  font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.65); font-weight: 500;
}
.work-cell-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 13px;
  color: rgba(255,255,255,.18); text-align: center; padding: 20px;
}
.work-cell-big { grid-row: span 2; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 52px; }
.review-card { background: var(--plaster); padding: 36px 32px; position: relative; }
.review-quote { font-family: var(--serif); font-size: 64px; color: var(--plaster-dark); line-height: .65; position: absolute; top: 24px; left: 28px; font-weight: 300; opacity: .6; }
.review-stars { color: var(--stone); font-size: 11px; letter-spacing: 3px; margin-bottom: 14px; }
.review-text { font-family: var(--serif); font-size: 17px; font-style: italic; color: var(--charcoal); line-height: 1.65; margin-bottom: 22px; padding-top: 22px; font-weight: 400; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--charcoal); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: #fff; flex-shrink: 0; }
.review-name { font-size: 11.5px; font-weight: 600; letter-spacing: .04em; color: var(--charcoal); }
.review-loc { font-size: 10.5px; color: var(--text-muted); margin-top: 2px; }

/* ── SISTER BRAND BAR ── */
.sister-bar { background: var(--charcoal-mid); padding: 44px 48px; border-top: 1px solid rgba(255,255,255,.05); }
.sister-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.sister-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(196,180,154,.1); border: 1px solid rgba(196,180,154,.25); padding: 4px 12px; margin-bottom: 10px; }
.sister-pill span { font-size: 8.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--plaster-dark); font-weight: 600; }
.sister-text h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; color: #fff; margin-bottom: 8px; }
.sister-text p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 500px; font-weight: 300; }

/* ── ESTIMATE / FORM ── */
.estimate-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: flex-start; }
.estimate-left h2 { font-family: var(--serif); font-size: clamp(30px, 3.5vw, 46px); font-weight: 400; color: var(--charcoal); line-height: 1.1; margin-bottom: 16px; }
.estimate-perks { list-style: none; margin: 28px 0; }
.estimate-perks li { font-size: 13px; color: var(--text-body); padding: 11px 0; border-bottom: 1px solid var(--plaster-mid); display: flex; gap: 12px; align-items: flex-start; font-weight: 300; line-height: 1.5; }
.perk-dot { width: 4px; height: 4px; background: var(--stone); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.direct-contact { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--plaster-dark); }
.direct-contact p { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 12px; }
.direct-contact a { display: block; font-size: 14px; color: var(--charcoal); font-weight: 500; margin-bottom: 6px; transition: color .15s; }
.direct-contact a:hover { color: var(--stone); }
.form-box { background: var(--warm-white); padding: 40px; border: 1px solid var(--plaster-mid); }
.form-box h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; }
.form-box-sub { font-size: 10.5px; color: var(--text-muted); margin-bottom: 26px; letter-spacing: .02em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 12px; }
.form-group label { font-size: 8.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--charcoal); font-weight: 600; display: block; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1px solid var(--plaster-mid);
  padding: 11px 14px; font-size: 13px; font-family: var(--sans);
  background: var(--plaster); color: var(--charcoal);
  outline: none; transition: border-color .15s; -webkit-appearance: none; border-radius: 0;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--stone); }
.form-group textarea { resize: none; height: 88px; }
.form-submit {
  width: 100%; background: var(--charcoal); color: #fff; border: none;
  padding: 14px; font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; font-family: var(--sans); cursor: pointer; transition: background .18s; margin-top: 4px;
}
.form-submit:hover { background: var(--charcoal-mid); }
.form-success { display: none; text-align: center; padding: 32px 0; }
.form-success h4 { font-family: var(--serif); font-size: 24px; color: var(--charcoal); margin-bottom: 8px; }
.form-success p { font-size: 13px; color: var(--text-body); line-height: 1.7; }

/* ── FOOTER ── */
#footer { background: var(--charcoal); padding: 64px 48px 36px; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 32px; }
.footer-brand { font-family: var(--serif); font-size: 22px; font-style: italic; color: #fff; font-weight: 300; margin-bottom: 4px; }
.footer-brand-tag { font-size: 8px; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); display: block; margin-bottom: 18px; }
.footer-brand-desc { font-size: 12.5px; color: rgba(255,255,255,.35); line-height: 1.78; font-weight: 300; margin-bottom: 20px; }
.footer-contact a { display: block; font-size: 12.5px; color: rgba(255,255,255,.45); margin-bottom: 7px; transition: color .15s; }
.footer-contact a:hover { color: var(--plaster-dark); }
.footer-sister { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; border: 1px solid rgba(255,255,255,.07); padding: 10px 14px; }
.footer-sister-label { font-size: 8px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.28); }
.footer-sister-pipe { width: 1px; height: 12px; background: rgba(255,255,255,.12); }
.footer-sister-link { font-size: 11.5px; color: var(--plaster-dark); font-weight: 500; }
.footer-col h4 { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--stone); margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 12.5px; color: rgba(255,255,255,.38); transition: color .15s; font-weight: 300; }
.footer-col ul li a:hover { color: var(--plaster-dark); }
.footer-bottom { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 10px; color: rgba(255,255,255,.2); letter-spacing: .04em; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 10px; color: rgba(255,255,255,.25); transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ── MOBILE DRAWER ── */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px;
  height: 100%; background: var(--warm-white); z-index: 900;
  transition: right .3s ease; padding: 56px 32px 32px; overflow-y: auto;
  box-shadow: -6px 0 32px rgba(0,0,0,.1);
}
.mobile-nav.open { right: 0; }
.mobile-nav-close { position: absolute; top: 18px; right: 20px; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--charcoal); }
.mobile-nav-links { list-style: none; }
.mobile-nav-links li { border-bottom: 1px solid var(--plaster-mid); }
.mobile-nav-links a, .mobile-nav-links button {
  display: block; width: 100%; padding: 14px 0;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--charcoal); font-weight: 500; background: none; border: none; text-align: left; cursor: pointer;
}
.mobile-submenu { display: none; padding-left: 14px; }
.mobile-submenu.open { display: block; }
.mobile-submenu a { font-size: 10px; letter-spacing: .1em; color: var(--text-muted); padding: 10px 0; border: none; }
.mobile-nav-cta {
  display: block; text-align: center; background: var(--charcoal); color: #fff;
  font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; padding: 14px; margin-top: 24px;
}
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.38); z-index: 800; }
.mobile-nav-overlay.open { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .top-bar { display: none; }
  #navbar { padding: 0 24px; }
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  #hero { height: auto; min-height: 85vh; }
  .hero-content { grid-template-columns: 1fr; gap: 20px; padding: 0 24px 110px; }
  .hero-right { display: none; }
  .hero-title { font-size: 44px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.06); }
  section { padding: 64px 24px; }
  .two-col, .services-header, .process-top, .estimate-wrap { grid-template-columns: 1fr; }
  .intro-badge { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2n) { border-right: none; }
  .who-grid, .reviews-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .work-cell-big { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .sister-bar { padding: 40px 24px; }
  .sister-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; }
  .trust-item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,.06); }
  .work-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .work-cell { height: 220px; }
  .work-cell-big { grid-row: span 1; }
}
