:root {
  --cedar: #c86d3b;
  --cedar-deep: #a94f23;
  --cedar-light: #e4976e;
  --charcoal: #161a1d;
  --ink: #0b0d0e;
  --slate: #22272b;
  --paper: #fbfbf9;
  --mist: #f0f2f5;
  --gold: #d4a373;
  --muted: #687078;
  --border: rgba(255, 255, 255, .12);
  --shadow: 0 28px 80px rgba(11, 13, 14, .16);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(200, 109, 59, .26);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-dark {
  background: var(--ink);
  color: white;
}

.section-soft {
  background: var(--mist);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head>div:first-child {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
  font-weight: 800;
  color: var(--cedar);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  margin: 0;
  line-height: 1.06;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 7.3rem);
  font-weight: 760;
}

h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
  font-weight: 740;
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  font-weight: 720;
}

p {
  margin: 0;
}

.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: #d9dcdf;
  max-width: 720px;
}

.copy {
  color: var(--muted);
  max-width: 720px;
}

.small {
  font-size: .88rem;
}

.muted {
  color: var(--muted);
}

.gold {
  color: var(--gold);
}

.cedar {
  color: var(--cedar);
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--cedar);
  color: white;
  box-shadow: 0 14px 38px rgba(200, 109, 59, .32);
}

.btn-primary:hover {
  background: var(--cedar-deep);
}

.btn-dark {
  background: var(--charcoal);
  color: white;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .24);
  color: white;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.btn-light {
  background: white;
  color: var(--charcoal);
  border-color: rgba(22, 26, 29, .08);
}

.btn-outline {
  border-color: rgba(22, 26, 29, .18);
  background: transparent;
}

.btn-sm {
  min-height: 42px;
  padding: 0 17px;
  font-size: .9rem;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(11, 13, 14, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .14);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  min-width: max-content;
  flex-shrink: 0;
  cursor: pointer;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.brand-mark span {
  font-weight: 900;
  letter-spacing: -.08em;
  font-size: 1.05rem;
}

.brand-name {
  line-height: 1.05;
  font-weight: 860;
  letter-spacing: -.03em;
  font-size: .97rem;
}

.brand-name small {
  display: block;
  font-size: .6rem;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .58);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-links a {
  color: rgba(255, 255, 255, .78);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 650;
  font-size: .90rem;
  white-space: nowrap;
  transition: .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255, 255, 255, .08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.phone-chip {
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: .9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  color: white;
  flex-shrink: 0;
}

.mobile-drawer {
  display: none;
}

/* Hero */
.hero {
  min-height: 900px;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: white;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(.88) contrast(1.06);
  transform: scale(1.02);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 13, 14, .90) 0%, rgba(11, 13, 14, .73) 42%, rgba(11, 13, 14, .22) 74%, rgba(11, 13, 14, .40) 100%), linear-gradient(0deg, rgba(11, 13, 14, .90) 0%, rgba(11, 13, 14, .05) 54%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 82%);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 160px;
  padding-bottom: 78px;
}

.hero-copy {
  max-width: 930px;
}

.hero h1 span {
  color: var(--cedar-light);
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(12px);
  color: white;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cedar-light);
  box-shadow: 0 0 0 5px rgba(228, 151, 110, .14);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-bottom {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.hero-stat {
  padding: 24px 22px;
  background: rgba(8, 10, 11, .52);
  transition: background .3s ease, transform .3s ease;
}

.hero-stat:hover {
  background: rgba(8, 10, 11, .72);
}

.hero-stat strong {
  display: block;
  font-size: 2.15rem;
  letter-spacing: -.04em;
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  transition: color .3s ease, text-shadow .3s ease, transform .2s ease;
}

.hero-stat strong.counting {
  color: var(--cedar-light);
  text-shadow: 0 0 18px rgba(228, 151, 110, .45);
}

.hero-stat span {
  color: rgba(255, 255, 255, .66);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 650;
  display: block;
  margin-top: 4px;
}

.trust-ribbon {
  background: white;
  border-bottom: 1px solid rgba(22, 26, 29, .08);
}

.trust-ribbon .container {
  display: grid;
  grid-template-columns: 160px repeat(5, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 118px;
}

.trust-ribbon img {
  max-height: 64px;
  object-fit: contain;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: .9rem;
}

.trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(200, 109, 59, .09);
  color: var(--cedar-deep);
}

/* Cards + services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  color: white;
  isolation: isolate;
  box-shadow: var(--shadow);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), box-shadow .5s cubic-bezier(.16, 1, .3, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 90px rgba(11, 13, 14, .24);
}

.service-card:nth-child(1),
.service-card:nth-child(4) {
  grid-column: span 7;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 5;
}

.service-card:nth-child(5),
.service-card:nth-child(6) {
  grid-column: span 6;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16, 1, .3, 1), filter .6s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 13, 14, .92), rgba(11, 13, 14, .12) 72%);
  z-index: -0;
  transition: background .4s ease;
}

.service-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.04);
}

.service-card .content {
  position: absolute;
  inset: auto 26px 26px;
  z-index: 2;
}

.service-card .num {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  font: 700 .82rem ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(11, 13, 14, .48);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 7px 9px;
  border-radius: 999px;
}

.service-card p {
  color: rgba(255, 255, 255, .72);
  margin-top: 10px;
  max-width: 520px;
}

.card-link {
  margin-top: 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #fff;
}

.card-link span {
  transition: transform .2s ease;
}

.card-link:hover span {
  transform: translateX(4px);
}

/* Estimator */
.estimator-wrap {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  align-items: stretch;
}

.estimator {
  background: white;
  border: 1px solid rgba(22, 26, 29, .08);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 24px 80px rgba(22, 26, 29, .08);
}

.estimator-side {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #161a1d, #0b0d0e);
  color: white;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.estimator-side::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 109, 59, .32), transparent 68%);
}

.field-label {
  display: block;
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 11px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.choice {
  border: 1px solid rgba(22, 26, 29, .12);
  background: #fff;
  border-radius: 13px;
  padding: 14px 12px;
  text-align: left;
  min-height: 82px;
  transition: .2s;
}

.choice strong {
  display: block;
  font-size: .9rem;
}

.choice small {
  color: var(--muted);
}

.choice.active {
  border-color: var(--cedar);
  box-shadow: 0 0 0 3px rgba(200, 109, 59, .10);
  background: rgba(200, 109, 59, .035);
}

.form-row {
  margin-top: 24px;
}

.segmented {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  background: var(--mist);
  border-radius: 999px;
  padding: 4px;
}

.segmented button {
  min-width: 80px;
  border: 0;
  border-radius: 999px;
  padding: 9px 15px;
  background: transparent;
  font-weight: 800;
  color: var(--muted);
}

.segmented button.active {
  background: white;
  color: var(--charcoal);
  box-shadow: 0 3px 12px rgba(22, 26, 29, .08);
}

.range-line {
  display: flex;
  align-items: center;
  gap: 16px;
}

.range-line input[type=range] {
  width: 100%;
  accent-color: var(--cedar);
}

.range-value {
  min-width: 82px;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--mist);
  font-weight: 800;
  text-align: center;
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(22, 26, 29, .10);
  padding: 10px 12px;
  border-radius: 12px;
  background: white;
}

.check input {
  accent-color: var(--cedar);
}

.estimate-price {
  font-size: clamp(2.9rem, 5vw, 5rem);
  letter-spacing: -.06em;
  font-weight: 850;
  line-height: 1;
  margin: 18px 0 10px;
}

.estimate-note {
  color: rgba(255, 255, 255, .60);
  font-size: .85rem;
}

/* Feature/anatomy */
.anatomy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.anatomy-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 560px;
  box-shadow: var(--shadow);
}

.anatomy-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.16, 1, .3, 1);
}

.anatomy-visual:hover img {
  transform: scale(1.035);
}

@keyframes hotspotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 109, 59, .6);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(200, 109, 59, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(200, 109, 59, 0);
  }
}

.hotspot {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  background: var(--cedar);
  box-shadow: 0 0 0 7px rgba(200, 109, 59, .25);
  display: grid;
  place-items: center;
  color: white;
  font-size: .85rem;
  font-weight: 900;
  cursor: pointer;
  z-index: 10;
  transition: transform .2s ease, box-shadow .2s ease;
  animation: hotspotPulse 2.6s infinite;
}

.hotspot:hover,
.hotspot:focus,
.hotspot.active {
  transform: scale(1.15);
  animation: none;
  box-shadow: 0 0 0 12px rgba(200, 109, 59, .45);
  z-index: 30;
}

.hotspot::after {
  content: attr(data-tip);
  position: absolute;
  width: max-content;
  max-width: 240px;
  left: 42px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 13, 14, .95);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  padding: 9px 13px;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 35;
}

.hotspot.tip-left::after,
.hotspot:last-child::after {
  left: auto;
  right: 42px;
}

.hotspot:hover::after,
.hotspot:focus::after,
.hotspot.active::after {
  opacity: 1;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.feature-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(22, 26, 29, .10);
}

.feature-row .badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(200, 109, 59, .09);
  display: grid;
  place-items: center;
  color: var(--cedar-deep);
  font-weight: 900;
}

.feature-row p {
  color: var(--muted);
  font-size: .92rem;
  margin-top: 3px;
}

/* Before After */
.compare {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 600px;
  background: #111;
  box-shadow: var(--shadow);
}

.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare .after {
  clip-path: inset(0 0 0 var(--split, 52%));
}

.compare .divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split, 52%);
  width: 2px;
  background: white;
  transform: translateX(-1px);
  box-shadow: 0 0 20px rgba(0, 0, 0, .35);
}

.compare .knob {
  position: absolute;
  left: var(--split, 52%);
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: var(--charcoal);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .24);
  font-weight: 900;
}

.compare input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-tag {
  position: absolute;
  top: 22px;
  padding: 8px 12px;
  background: rgba(11, 13, 14, .72);
  color: white;
  border-radius: 999px;
  font-size: .77rem;
  font-weight: 800;
  backdrop-filter: blur(9px);
}

.compare-tag.before {
  left: 22px;
}

.compare-tag.after-tag {
  right: 22px;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  background: white;
  border: 1px solid rgba(22, 26, 29, .08);
  border-radius: 20px;
  padding: 26px;
}

.review-stars {
  letter-spacing: .1em;
  color: #b97832;
  margin-bottom: 16px;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0d1bf, #d9a480);
  display: grid;
  place-items: center;
  font-weight: 850;
  color: #63361e;
}

.verified {
  color: #41708c;
  font-size: .77rem;
}

/* Locations */
.location-shell {
  background: var(--charcoal);
  color: white;
  border-radius: var(--radius-lg);
  padding: 34px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 30px;
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.city-pill {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  color: white;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 700;
}

.city-pill.active {
  background: var(--cedar);
  border-color: var(--cedar);
}

.office-panel {
  background: white;
  color: var(--charcoal);
  border-radius: 24px;
  padding: 30px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.office-panel::after {
  content: "DFW";
  position: absolute;
  right: -18px;
  bottom: -38px;
  font-size: 9rem;
  font-weight: 900;
  letter-spacing: -.08em;
  color: rgba(22, 26, 29, .035);
}

.office-meta {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.office-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.office-line strong {
  min-width: 90px;
}

/* Grant checker */
.grant-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(22, 26, 29, .08);
  background: white;
  box-shadow: 0 24px 80px rgba(22, 26, 29, .08);
}

.grant-info {
  background: linear-gradient(145deg, #c86d3b, #9d4821);
  color: white;
  padding: 42px;
}

.grant-form {
  padding: 42px;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid rgba(22, 26, 29, .13);
  border-radius: 13px;
  padding: 13px 14px;
  background: white;
  outline: none;
  transition: .2s;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--cedar);
  box-shadow: 0 0 0 3px rgba(200, 109, 59, .09);
}

.textarea {
  min-height: 130px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.grant-result {
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  background: var(--mist);
  display: none;
}

.grant-result.show {
  display: block;
}

/* Footer */
.footer {
  background: #080a0b;
  color: white;
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}

.footer .brand {
  margin-bottom: 18px;
}

.footer h4 {
  font-size: .9rem;
  letter-spacing: .02em;
  margin-bottom: 15px;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, .60);
  margin: 8px 0;
  font-size: .9rem;
}

.footer a:hover {
  color: white;
}

.footer-copy {
  color: rgba(255, 255, 255, .55);
  max-width: 420px;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .45);
  font-size: .79rem;
}

/* Inner pages */
.page-hero {
  min-height: 610px;
  color: white;
  position: relative;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  overflow: hidden;
}

.page-hero .bg {
  position: absolute;
  inset: 0;
}

.page-hero .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85);
}

.page-hero .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 13, 14, .92), rgba(11, 13, 14, .56) 55%, rgba(11, 13, 14, .18)), linear-gradient(0deg, rgba(11, 13, 14, .82), transparent 64%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 170px;
  padding-bottom: 70px;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  max-width: 1000px;
}

.page-hero p {
  margin-top: 20px;
  max-width: 720px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .55);
  font-size: .84rem;
}

.breadcrumb a:hover {
  color: white;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 470px;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.spec {
  background: white;
  border: 1px solid rgba(22, 26, 29, .08);
  border-radius: 18px;
  padding: 22px;
}

.spec strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.spec p {
  color: var(--muted);
  font-size: .9rem;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.detail-item {
  padding: 18px 0;
  border-top: 1px solid rgba(22, 26, 29, .10);
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.detail-item .tick {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(200, 109, 59, .11);
  color: var(--cedar-deep);
  font-weight: 900;
}

.gallery-grid {
  columns: 3 300px;
  column-gap: 16px;
}

.gallery-item {
  position: relative;
  break-inside: avoid;
  margin: 0 0 20px;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
  background: #111416;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  display: block;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .4s cubic-bezier(.2, .8, .2, 1);
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 16px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 13, 14, .75) 30%, rgba(11, 13, 14, .96) 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  pointer-events: none;
}

.gallery-caption .gallery-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--cedar-light);
  background: rgba(200, 109, 59, .18);
  border: 1px solid rgba(200, 109, 59, .35);
  padding: 2px 8px;
  border-radius: 6px;
}

.gallery-caption strong {
  font-size: .9rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .9);
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.gallery-filter button {
  border: 1px solid rgba(22, 26, 29, .12);
  background: white;
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 750;
  cursor: pointer;
  transition: .2s;
}

.gallery-filter button:hover {
  border-color: var(--cedar);
}

.gallery-filter button.active {
  background: var(--charcoal);
  color: white;
  border-color: var(--charcoal);
}

/* Enhanced Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 8, 9, .96);
  padding: 24px;
  backdrop-filter: blur(14px);
}

.lightbox.open {
  display: flex;
}

.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: min(1200px, 94vw);
  max-height: 94vh;
  position: relative;
  z-index: 3010;
}

.lightbox-stage img,
.lightbox>img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .85);
  display: block;
}

.lightbox-caption {
  margin-top: 16px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 750;
  text-align: center;
  max-width: 880px;
  background: rgba(18, 22, 26, .95);
  padding: 14px 28px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .6);
  line-height: 1.45;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
}

.lightbox button,
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  color: white;
  background: rgba(255, 255, 255, .12);
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3050;
  transition: all .2s ease;
}

.lightbox button:hover,
.lightbox-close:hover {
  background: rgba(255, 255, 255, .25);
  transform: scale(1.08);
}

.hours-table {
  width: 100%;
  margin-top: 14px;
  border-collapse: collapse;
  font-size: .88rem;
}

.hours-table td {
  padding: 7px 0;
  border-bottom: 1px solid rgba(22, 26, 29, .09);
  color: #4b5563;
  font-weight: 500;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 750;
  color: #111827;
}

.hours-table tr.closed td:last-child {
  color: var(--cedar);
  font-weight: 750;
}

.quote-side .hours-table td,
.section-dark .hours-table td {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .75);
}

.quote-side .hours-table td:last-child,
.section-dark .hours-table td:last-child {
  color: white;
}

.quote-side .hours-table tr.closed td:last-child,
.section-dark .hours-table tr.closed td:last-child {
  color: var(--cedar-light);
}

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 163, 115, .12);
  border: 1px solid rgba(212, 163, 115, .3);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 750;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ============================================================
   Modern Architectural Map UI
   ============================================================ */
.map-card-wrap,
.modern-map-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(22, 26, 29, .12);
  background: #111417;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .10);
  transition: transform .3s ease, box-shadow .3s ease;
  margin-top: 24px;
}

.modern-map-card:hover {
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.map-card-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 13px 20px;
  background: linear-gradient(180deg, #181c20 0%, #101215 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  color: white;
}

.map-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.map-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(74, 222, 128, .12);
  border: 1px solid rgba(74, 222, 128, .28);
  padding: 4px 10px;
  border-radius: 999px;
}

.map-live-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .3);
  animation: liveDotPulse 2s infinite;
}

@keyframes liveDotPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, .6);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 7px rgba(74, 222, 128, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

.map-facility-title {
  font-size: .88rem;
  font-weight: 750;
  color: rgba(255, 255, 255, .94);
  letter-spacing: -.01em;
}

.map-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-star-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 800;
  color: var(--cedar-light);
  background: rgba(200, 109, 59, .15);
  border: 1px solid rgba(200, 109, 59, .3);
  padding: 4px 10px;
  border-radius: 999px;
}

.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 800;
  color: white;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 5px 12px;
  border-radius: 999px;
  transition: background .2s ease, border-color .2s ease;
}

.map-open-link:hover {
  background: var(--cedar);
  border-color: var(--cedar);
  color: white;
}

.map-iframe-container {
  position: relative;
  width: 100%;
  height: 380px;
  background: #111417;
  overflow: hidden;
}

.map-iframe-container iframe,
.map-card-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.92) contrast(1.04) brightness(.98);
  transition: filter .5s ease;
}

.modern-map-card:hover .map-iframe-container iframe,
.map-card-wrap:hover iframe {
  filter: saturate(1.02) contrast(1.02) brightness(1.0);
}

.map-floating-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 17, 20, .88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 8px 14px;
  border-radius: 12px;
  color: white;
  font-size: .80rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  pointer-events: none;
  z-index: 5;
}

.map-floating-overlay span.hub-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cedar-light);
}

.location-card {
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .08);
  border-color: rgba(200, 109, 59, .4);
}

.location-card.active-location {
  border-color: var(--cedar);
  box-shadow: 0 12px 36px rgba(200, 109, 59, .16);
  background: linear-gradient(180deg, rgba(200, 109, 59, .03) 0%, #fff 100%);
}

/* ============================================================
   Interactive Map Canvas & Custom Pin Styling
   ============================================================ */
.interactive-map-canvas {
  width: 100%;
  height: 420px;
  background: #15191d;
  position: relative;
  z-index: 1;
}

/* Custom Marker Pins */
.custom-map-div-icon {
  background: transparent !important;
  border: none !important;
}

.custom-map-pin {
  position: relative;
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pin-radar-ring {
  position: absolute;
  top: 0;
  left: 2px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200, 109, 59, 0.28);
  border: 1.5px solid rgba(200, 109, 59, 0.6);
  animation: mapPinRadar 2.4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  pointer-events: none;
}

@keyframes mapPinRadar {
  0% {
    transform: scale(0.65);
    opacity: 1;
  }

  100% {
    transform: scale(1.85);
    opacity: 0;
  }
}

.pin-marker-body {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #df824d 0%, #a85422 100%);
  border: 2.5px solid #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.custom-map-pin.pin-primary .pin-marker-body {
  background: linear-gradient(135deg, #e4976e 0%, #c86d3b 100%);
  box-shadow: 0 4px 18px rgba(200, 109, 59, 0.6);
}

.custom-map-pin:hover .pin-marker-body {
  transform: scale(1.18);
  box-shadow: 0 8px 24px rgba(200, 109, 59, 0.6);
}

.pin-initials {
  font-family: var(--font-sans, system-ui, -apple-system, sans-serif);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.pin-pointer {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #a85422;
  z-index: 1;
}

/* Custom Leaflet Dark Glass Popup */
.custom-leaflet-popup .leaflet-popup-content-wrapper {
  background: rgba(18, 22, 26, 0.96) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 18px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
  color: white !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.custom-leaflet-popup .leaflet-popup-content {
  margin: 0 !important;
  line-height: 1.4 !important;
}

.custom-leaflet-popup .leaflet-popup-tip {
  background: rgba(18, 22, 26, 0.96) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow: none !important;
}

.custom-leaflet-popup a.leaflet-popup-close-button {
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 8px 12px 0 0 !important;
  font-size: 18px !important;
}

.custom-leaflet-popup a.leaflet-popup-close-button:hover {
  color: white !important;
}

.map-popup-card {
  padding: 16px 18px;
}

.map-popup-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cedar-light);
  background: rgba(200, 109, 59, 0.18);
  border: 1px solid rgba(200, 109, 59, 0.35);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.map-popup-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.map-popup-address {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 8px;
}

.map-popup-hours {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 8px;
}

.map-popup-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.map-popup-phone {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--cedar-light);
  text-decoration: none;
}

.map-popup-phone:hover {
  text-decoration: underline;
}

.map-popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--cedar);
  color: white;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.map-popup-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* Leaflet Zoom & Bar Controls */
.leaflet-bar {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
  margin-right: 18px !important;
  margin-bottom: 18px !important;
}

.leaflet-bar a {
  background-color: rgba(20, 24, 28, 0.9) !important;
  color: #ffffff !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
  font-size: 16px !important;
  transition: background-color 0.2s ease !important;
}

.leaflet-bar a:hover {
  background-color: var(--cedar) !important;
  color: #ffffff !important;
}

/* Map Header Toolbar Chips & Theme Buttons */
.map-chip-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.map-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  padding: 5px 12px;
  font-size: 0.74rem;
  font-weight: 750;
  cursor: pointer;
  transition: all 0.2s ease;
}

.map-chip:hover {
  background: rgba(200, 109, 59, 0.25);
  border-color: var(--cedar);
  color: white;
}

.map-chip.active {
  background: var(--cedar);
  border-color: var(--cedar);
  color: white;
  box-shadow: 0 2px 10px rgba(200, 109, 59, 0.4);
}

.map-theme-group {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px;
  border-radius: 10px;
}

.map-theme-btn {
  background: transparent;
  border: none;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.65);
  padding: 4px 8px;
  font-size: 0.70rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.map-theme-btn:hover {
  color: white;
}

.map-theme-btn.active {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-card {
  background: white;
  border: 1px solid rgba(22, 26, 29, .08);
  border-radius: 18px;
  padding: 22px;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(145deg, #292f34, #111416);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.team-card p {
  color: var(--muted);
  font-size: .88rem;
  margin-top: 8px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-card {
  border-radius: 22px;
  padding: 28px;
  background: white;
  border: 1px solid rgba(22, 26, 29, .08);
}

.program-card .big {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -.06em;
  color: var(--cedar);
}

/* Real Financing System Styles */
.finance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width:960px) {
  .finance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:600px) {
  .finance-grid {
    grid-template-columns: 1fr;
  }
}

.finance-card {
  background: white;
  border: 1px solid rgba(22, 26, 29, .10);
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}

.finance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
  border-color: var(--cedar);
}

.finance-card.featured {
  border: 2px solid var(--cedar);
  background: linear-gradient(180deg, rgba(200, 109, 59, .03) 0%, white 100%);
  box-shadow: 0 14px 40px rgba(200, 109, 59, .15);
}

.finance-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
  align-self: flex-start;
}

.finance-tag.accent {
  background: rgba(200, 109, 59, .12);
  color: var(--cedar-deep);
}

.finance-tag.gold {
  background: rgba(185, 120, 50, .15);
  color: var(--cedar-deep);
}

.finance-card .finance-term {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--charcoal);
  line-height: 1;
}

.finance-card .finance-apr {
  font-size: 1.6rem;
  font-weight: 850;
  color: var(--cedar);
  margin-top: 6px;
}

.finance-card p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
  margin: 14px 0 0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.location-card {
  background: white;
  border: 1px solid rgba(22, 26, 29, .08);
  border-radius: 20px;
  padding: 24px;
}

.location-card .tag {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(200, 109, 59, .08);
  color: var(--cedar-deep);
  font-weight: 800;
  font-size: .74rem;
  margin-bottom: 16px;
}

.location-card p {
  color: var(--muted);
  margin-top: 10px;
  font-size: .92rem;
}

.quote-shell {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 24px;
  align-items: start;
}

.quote-side {
  position: sticky;
  top: 110px;
  background: var(--charcoal);
  color: white;
  border-radius: var(--radius-lg);
  padding: 30px;
}

.quote-form {
  background: white;
  border: 1px solid rgba(22, 26, 29, .08);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 20px 70px rgba(22, 26, 29, .07);
}

.progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.progress span {
  height: 5px;
  border-radius: 99px;
  background: #e4e6e8;
}

.progress span.active {
  background: var(--cedar);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 26px;
}

.service-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.service-check {
  border: 1px solid rgba(22, 26, 29, .12);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.service-check:has(input:checked) {
  border-color: var(--cedar);
  background: rgba(200, 109, 59, .04);
}

.service-check input {
  margin-top: 4px;
  accent-color: var(--cedar);
}

.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #b85d2a, #db8456);
  color: white;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  position: relative;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -110px;
  top: -140px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, .035), 0 0 0 120px rgba(255, 255, 255, .02);
}

.cta-band>* {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  max-width: 760px;
}

.notice {
  border-left: 3px solid var(--cedar);
  background: rgba(200, 109, 59, .07);
  padding: 16px 18px;
  border-radius: 0 12px 12px 0;
  color: #555f66;
}

@media (max-width: 1220px) {
  .phone-chip {
    display: none;
  }
}

@media (max-width: 1060px) {

  .nav-links,
  .phone-chip {
    display: none;
  }

  .mobile-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-drawer {
    position: fixed;
    inset: 74px 16px auto;
    background: rgba(11, 13, 14, .98);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 20px;
    padding: 16px;
    z-index: 999;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .3);
  }

  .mobile-drawer.open {
    display: block;
  }

  .mobile-drawer a {
    display: block;
    color: white;
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

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

  .trust-ribbon .container {
    grid-template-columns: 130px repeat(2, 1fr);
    padding: 22px 0;
  }

  .service-card {
    grid-column: span 6 !important;
  }

  .estimator-wrap,
  .anatomy-grid,
  .split,
  .grant-card,
  .quote-shell {
    grid-template-columns: 1fr;
  }

  .quote-side {
    position: relative;
    top: auto;
  }

  .location-shell {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid>div:last-child {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 26px), var(--max));
  }

  .section {
    padding: 78px 0;
  }

  .section-sm {
    padding: 56px 0;
  }

  .section-head {
    display: block;
  }

  .section-head .btn {
    margin-top: 20px;
  }

  .site-header {
    padding: 10px 0;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero .container {
    padding-bottom: 36px;
  }

  .hero-bottom {
    margin-top: 42px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-stat {
    padding: 16px;
  }

  .hero-stat strong {
    font-size: 1.45rem;
  }

  .trust-ribbon .container {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust-ribbon img {
    grid-column: span 2;
    max-width: 160px;
  }

  .service-card {
    grid-column: span 12 !important;
    min-height: 380px;
  }

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

  .estimator,
  .estimator-side {
    padding: 22px;
  }

  .compare {
    height: 440px;
  }

  .review-grid,
  .program-grid,
  .location-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

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

  .grant-info,
  .grant-form {
    padding: 28px;
  }

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

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

  .footer-grid>div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }

  .cta-band {
    padding: 30px;
    display: block;
  }

  .cta-band .btn {
    margin-top: 22px;
  }

  .service-check-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 570px;
  }

  .gallery-grid {
    columns: 1;
  }
}

/* ============================================================
   Smooth Scroll Transitions & Reveals
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delay classes for cascading flow */
.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

.delay-5 {
  transition-delay: 0.40s;
}

.delay-6 {
  transition-delay: 0.48s;
}

/* Cinematic image zoom and hover depth */
.reveal-img {
  overflow: hidden;
  border-radius: var(--radius);
}

.reveal-img img {
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.reveal-img:hover img {
  transform: scale(1.045);
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hotspot {
    animation: none !important;
  }
}