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

:root {
  --linen:    #F5F0E8;
  --linen-mid:#EDE7D9;
  --slate:    #2C3035;
  --slate-mid:#4A5058;
  --slate-lt: #8C9099;
  --brass:    #B8955A;
  --brass-lt: #D4B07A;
  --white:    #FDFCFA;
  --rule:     #D8D0C4;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max: 1160px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.brass { color: var(--brass); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.section-rule {
  width: 2.5rem;
  height: 1px;
  background: var(--brass);
  margin: 1rem 0 1.5rem;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,252,250,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.2s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(44,48,53,0.07); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  align-items: stretch;
}
.nav-logo-primary {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  text-align-last: justify;
  color: var(--slate);
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--slate); }
.nav-cta {
  background: var(--slate);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 2px;
  letter-spacing: 0.08em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--brass) !important; color: var(--white) !important; }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #2C3035 0%, #3A4048 100%);
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/photos/site/hero.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,31,35,0.94) 0%, rgba(28,31,35,0.80) 42%, rgba(28,31,35,0.50) 72%, rgba(28,31,35,0.35) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 4.5rem) var(--pad);
  display: grid;
  grid-template-columns: 1fr minmax(360px, 430px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-inner-single { grid-template-columns: 1fr; }
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--brass-lt);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(253,252,250,0.65);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  background: var(--brass);
  color: var(--white);
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--brass-lt); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: rgba(253,252,250,0.7);
  padding: 0.85rem 2rem;
  border: 1px solid rgba(253,252,250,0.25);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(253,252,250,0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,252,250,0.45);
  margin-top: 0.3rem;
}
/* ── HERO OFFER CARD ── */
.hero-offer-card {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.40);
  overflow: hidden;
  width: 100%;
}
.hero-offer-head {
  background: var(--slate);
  border-bottom: 3px solid var(--brass);
  padding: 1.5rem 1.75rem;
  text-align: center;
}
.hero-offer-badge {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin-bottom: 0.5rem;
}
.hero-offer-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.hero-offer-line {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(253,252,250,0.6);
  margin-top: 0.4rem;
}
.hero-offer-body {
  padding: 1.5rem 1.75rem 1.75rem;
}
.hero-offer-subtext {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.55;
  margin-bottom: 1.1rem;
}
.hero-offer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.hero-offer-field { margin-bottom: 0.6rem; }
.hero-offer-card input,
.hero-offer-card select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--slate);
  background: var(--white);
  transition: border-color 0.2s;
}
.hero-offer-card input::placeholder { color: var(--slate-lt); }
.hero-offer-card select:invalid { color: var(--slate-lt); }
.hero-offer-card input:focus,
.hero-offer-card select:focus {
  outline: none;
  border-color: var(--brass);
}
.hero-offer-submit {
  width: 100%;
  text-align: center;
  padding: 0.9rem 1rem;
  margin-top: 0.35rem;
  font-size: 0.82rem;
}
.hero-offer-expires {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brass);
  text-align: center;
  margin-top: 0.85rem;
}
.hero-offer-consent {
  font-size: 0.62rem;
  line-height: 1.5;
  color: var(--slate-lt);
  margin-top: 0.8rem;
}
.hero-offer-consent a { color: var(--brass); text-decoration: underline; }
.hero-offer-trust {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.75rem;
  background: var(--linen);
  border-top: 1px solid var(--rule);
  font-size: 0.7rem;
  color: var(--slate-mid);
  line-height: 1.4;
}
.hero-offer-trust svg {
  width: 16px;
  height: 16px;
  color: var(--brass);
  flex-shrink: 0;
}

/* ── HONEYPOT (spam trap — hidden from humans, not from bots) ── */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── TRUST BAR ── */
#trust {
  background: var(--linen);
  border-bottom: 1px solid var(--rule);
  padding: 1.25rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-mid);
}
.trust-item svg { color: var(--brass); width: 14px; height: 14px; flex-shrink: 0; }
.trust-divider { width: 1px; height: 16px; background: var(--rule); }

/* ── SECTIONS SHARED ── */
section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ── HOW IT WORKS ── */
#process { background: var(--white); }
.process-header { text-align: center; margin-bottom: 4rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--slate);
}
.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--slate-mid);
  max-width: 520px;
  margin: 1rem auto 0;
  line-height: 1.7;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}
.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--rule);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--linen-mid);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.process-step-title {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--slate);
  margin-bottom: 0.75rem;
}
.process-step-copy {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.65;
}
.process-guarantee {
  margin-top: 3rem;
  background: var(--slate);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  border-radius: 2px;
}
.guarantee-icon {
  width: 56px;
  height: 56px;
  background: var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guarantee-icon svg { width: 26px; height: 26px; color: white; }
.guarantee-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.guarantee-text p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(253,252,250,0.6);
  line-height: 1.6;
}

/* ── SERVICES ── */
#services { background: var(--linen); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  padding: 2.75rem 2.5rem;
  border: 1px solid var(--rule);
  border-radius: 2px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(44,48,53,0.09);
  transform: translateY(-2px);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--linen);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 22px; height: 22px; color: var(--brass); }
.service-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 0.75rem;
}
.service-copy {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.service-includes {
  list-style: none;
  margin-bottom: 2rem;
}
.service-includes li {
  font-size: 0.82rem;
  color: var(--slate-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--linen-mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.service-includes li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--brass);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-price-range {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-lt);
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--slate);
  line-height: 1;
  margin-top: 0.2rem;
}

/* ── WHY RECAST ── */
#why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 1rem;
}
.differentiator {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--rule);
}
.differentiator:first-child { border-top: 1px solid var(--rule); }
.diff-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.4rem;
}
.diff-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 0.5rem;
}
.diff-copy {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.65;
}
.why-visual {
  background: var(--linen);
  border-radius: 2px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(44,48,53,0.2);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.why-visual svg { width: 48px; height: 48px; opacity: 0.3; }
.why-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ── GUARANTEES ── */
#guarantees { background: var(--slate); }
.guarantees-header { text-align: center; margin-bottom: 3rem; }
.guarantees-header .eyebrow { color: var(--brass); }
.guarantees-header .section-rule { margin: 1rem auto 1.5rem; }
.guarantees-header .section-title { color: var(--white); }
.guarantees-header .section-subtitle { color: rgba(253,252,250,0.5); }
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(253,252,250,0.08);
  border: 1px solid rgba(253,252,250,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.guarantee-card {
  background: rgba(253,252,250,0.04);
  padding: 2.25rem 2rem;
  position: relative;
  transition: background 0.2s;
}
.guarantee-card:hover { background: rgba(253,252,250,0.07); }
.guarantee-card-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: rgba(253,252,250,0.05);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
}
.guarantee-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,149,90,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.guarantee-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--brass-lt);
}
.guarantee-card-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.guarantee-card-copy {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(253,252,250,0.55);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.guarantee-card-penalty {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--brass-lt);
  line-height: 1.5;
}

/* ── PORTFOLIO ── */
#work { background: var(--linen); }
.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--linen-mid);
  aspect-ratio: 3/4;
  cursor: pointer;
}
.portfolio-item.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.portfolio-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: rgba(44,48,53,0.25);
}
.portfolio-placeholder svg { width: 40px; height: 40px; }
.portfolio-placeholder span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.portfolio-item:hover img { transform: scale(1.03); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,48,53,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

/* ── GALLERY PAGE ── */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.gallery-filter-btn {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--slate-mid);
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--slate);
  border-color: var(--slate);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
  background: var(--linen-mid);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44,48,53,0.8) 0%, transparent 100%);
  padding: 1.5rem 1rem 0.85rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-caption { opacity: 1; }
.gallery-item-caption span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--slate-lt);
  border: 1px dashed var(--rule);
  border-radius: 2px;
}
.gallery-empty p { font-size: 0.88rem; font-weight: 300; margin-top: 0.5rem; }

/* ── AREAS SERVED ── */
#areas { background: var(--white); }
.areas-intro { max-width: 600px; margin-bottom: 3rem; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.area-card {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}
.area-card:hover { background: var(--linen); }
.area-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 0.4rem;
}
.area-zips {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--slate-lt);
}
.areas-seo-copy {
  background: var(--linen);
  padding: 2.5rem 3rem;
  border-radius: 2px;
  border: 1px solid var(--rule);
}
.areas-seo-copy h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 1rem;
}
.areas-seo-copy p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.75;
  max-width: 780px;
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--slate); }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header .section-title { color: var(--white); }
.testimonials-header .section-subtitle { color: rgba(253,252,250,0.5); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(253,252,250,0.05);
  border: 1px solid rgba(253,252,250,0.1);
  padding: 2rem;
  border-radius: 2px;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}
.star { color: var(--brass); font-size: 0.9rem; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(253,252,250,0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-author strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
}
.testimonial-author span {
  font-size: 0.72rem;
  color: rgba(253,252,250,0.4);
  letter-spacing: 0.06em;
}

/* ── FAQ ── */
#faq { background: var(--linen); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.faq-sidebar .section-title { margin-bottom: 1rem; }
.faq-sidebar p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--brass); }
.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--brass);
  transition: transform 0.25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.5rem; }
.faq-answer p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.7;
}

/* ── CTA STRIP ── */
#cta {
  background: var(--brass);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.cta-inner { text-align: center; }
.cta-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,252,250,0.65);
  margin-bottom: 1.25rem;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.cta-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(253,252,250,0.75);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 1.25rem;
}
.cta-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--slate);
  background: var(--white);
  outline: none;
}
.cta-input::placeholder { color: var(--slate-lt); }
.btn-white {
  background: var(--slate);
  color: var(--white);
  padding: 0.9rem 1.75rem;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-white:hover { background: rgba(44,48,53,0.85); }
.cta-note {
  font-size: 0.72rem;
  color: rgba(253,252,250,0.5);
  letter-spacing: 0.04em;
}

/* ── CONTACT FORM ── */
#contact { background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--slate);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--linen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 15px; height: 15px; color: var(--brass); }
.contact-detail strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.contact-detail span {
  font-size: 0.88rem;
  color: var(--slate-mid);
}
.form-card {
  background: var(--linen);
  padding: 2.75rem 2.5rem;
  border: 1px solid var(--rule);
  border-radius: 2px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 0.5rem;
}
.form-subtitle {
  font-size: 0.82rem;
  color: var(--slate-lt);
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--slate);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brass); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: var(--slate);
  color: var(--white);
  padding: 1rem;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--brass); }
.form-disclaimer {
  font-size: 0.68rem;
  color: var(--slate-lt);
  text-align: center;
  margin-top: 0.85rem;
  line-height: 1.5;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  margin-top: 64px;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.75rem;
  color: var(--slate-lt);
}
.breadcrumb-list a {
  color: var(--slate-lt);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-list a:hover { color: var(--brass); }
.breadcrumb-list .sep { color: var(--rule); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--slate);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.page-hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.page-hero h1 em { font-style: italic; color: var(--brass-lt); }
.page-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(253,252,250,0.65);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.page-hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(253,252,250,0.1);
  flex-wrap: wrap;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 400px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.page-hero-grid-single { grid-template-columns: 1fr; }
.page-hero-grid .hero-offer-card { align-self: center; }

/* ── BLOG ── */
#blog-index { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
  background: var(--white);
  text-decoration: none;
  display: block;
  color: inherit;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(44,48,53,0.09);
  transform: translateY(-2px);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--linen-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.6rem;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}
.blog-card-excerpt {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.blog-card-meta {
  font-size: 0.7rem;
  color: var(--slate-lt);
  letter-spacing: 0.04em;
}

/* ── BLOG POST ── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.post-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate);
}
.post-body h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--slate);
  margin: 2.5rem 0 1rem;
  line-height: 1.15;
}
.post-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--slate);
  margin: 2rem 0 0.75rem;
}
.post-body p { margin-bottom: 1.25rem; }
.post-body ul, .post-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.post-body li { margin-bottom: 0.4rem; }
.post-body a { color: var(--brass); text-decoration: underline; }
.post-body strong { font-weight: 500; }
.post-body blockquote {
  border-left: 3px solid var(--brass);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--slate-mid);
}
.post-sidebar { position: sticky; top: 88px; }
.post-sidebar-card {
  background: var(--linen);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.post-sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 0.75rem;
}
.post-sidebar-card p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.post-meta {
  font-size: 0.75rem;
  color: var(--slate-lt);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  background: var(--linen);
  border-radius: 2px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 3rem;
}
.stat-cell {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-cell-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--slate);
  line-height: 1;
}
.stat-cell-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-top: 0.4rem;
}

/* ── FOOTER ── */
footer {
  background: var(--slate);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(253,252,250,0.08);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(253,252,250,0.08);
  margin-bottom: 2rem;
}
.footer-brand-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  margin-bottom: 1rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  text-align-last: justify;
  line-height: 1;
}
.footer-brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}
.footer-tagline {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(253,252,250,0.4);
  line-height: 1.6;
  max-width: 220px;
}
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253,252,250,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(253,252,250,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--brass); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal {
  font-size: 0.72rem;
  color: rgba(253,252,250,0.3);
}
.footer-legal a { color: inherit; }
.footer-license {
  font-size: 0.72rem;
  color: rgba(253,252,250,0.3);
}

/* ── PRICING GRID ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ── MOBILE NAV HAMBURGER + DRAWER ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate);
  padding: 4px;
  line-height: 0;
}
.nav-hamburger svg { width: 22px; height: 22px; display: block; }

.mobile-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,48,53,0.55);
  z-index: 149;
}
.mobile-drawer-backdrop.open { display: block; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 86vw);
  background: var(--white);
  z-index: 150;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 2rem;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate);
  padding: 4px;
  line-height: 0;
  align-self: flex-end;
  margin-bottom: 1.75rem;
}
.mobile-drawer-close svg { width: 22px; height: 22px; display: block; }

.mobile-drawer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-drawer-links li:first-child a {
  border-top: 1px solid var(--rule);
}
.mobile-drawer-links a {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s;
}
.mobile-drawer-links a:hover { color: var(--brass); }

.mobile-drawer-cta {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
}

.mobile-drawer-phone {
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--brass);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── MOBILE BOTTOM CTA ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--slate);
  border-top: 1px solid rgba(253,252,250,0.1);
  padding: 0.75rem var(--pad);
  gap: 0.75rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; max-width: 520px; }
  .hero-content { text-align: left; }
  .hero-scrim { background: linear-gradient(180deg, rgba(28,31,35,0.92) 0%, rgba(28,31,35,0.85) 100%); }
  .page-hero-grid { grid-template-columns: 1fr; max-width: 520px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: 1px solid var(--rule); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3), .process-step:nth-child(4) { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .guarantees-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.wide { grid-column: span 2; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-form { flex-direction: column; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; align-items: center; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .process-guarantee { flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-offer-amount { font-size: 2.2rem; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
}
