/* ============================================================
   COMPONENTS — Ridgeline Land Clearing
   Nav, buttons, forms, cards, footer, shared UI
   ============================================================ */

/* ── Site Header / Nav ───────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding-block: 1rem;
  transition: background var(--dur-m) var(--ease),
              box-shadow var(--dur-m) var(--ease),
              padding var(--dur-m) var(--ease);
}


.site-header.scrolled {
  background: var(--ink);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
  padding-block: .6rem;
}

/* Homepage: top bar is 36px tall, push header below it always */
.has-top-bar .site-header {
  top: 36px;
}

/* On inner pages where the top bar doesn't exist, header is already scrolled */

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.site-logo__mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.site-logo__sub {
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
}

/* Primary nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.primary-nav a {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: .45rem .75rem;
  border-radius: var(--radius-s);
  transition: color var(--dur-s), background var(--dur-s);
  position: relative;
}

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

.primary-nav a.active {
  color: var(--amber);
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-item .dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-l);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-m), transform var(--dur-m);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: .6rem 1rem;
  font-size: .8rem;
  border-radius: 0;
}

.dropdown a:first-child { border-radius: var(--radius-m) var(--radius-m) 0 0; }
.dropdown a:last-child  { border-radius: 0 0 var(--radius-m) var(--radius-m); }

.dropdown a + a {
  border-top: 1px solid rgba(255,255,255,.07);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
  transition: color var(--dur-s);
}

.header-phone:hover { color: var(--amber-light); }

.header-phone svg {
  flex-shrink: 0;
  color: var(--amber);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur-m), opacity var(--dur-m);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--ink);
  padding: 5rem var(--gutter) 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur-l) var(--ease);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  color: var(--white);
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.mobile-nav a:hover { color: var(--amber); }

.mobile-nav .mobile-nav-sub a {
  font-size: var(--step-1);
  padding-left: 1rem;
  color: rgba(255,255,255,.65);
}

.mobile-nav-footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .85rem 1.75rem;
  border-radius: var(--radius-s);
  transition: background var(--dur-m) var(--ease),
              color var(--dur-m),
              transform var(--dur-s) var(--ease-bounce),
              box-shadow var(--dur-m);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--dur-m);
}

.btn:hover::after {
  background: rgba(255,255,255,.08);
}

.btn:active {
  transform: scale(.97);
}

/* Primary — amber */
.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: var(--shadow-amber);
}

.btn-primary:hover {
  background: var(--amber-dark);
  box-shadow: 0 12px 36px rgba(212,137,26,.45);
  transform: translateY(-1px);
}

/* Secondary — outline white */
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.65);
}

/* Ghost — outline dark */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}

/* Dark */
.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--ink-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-m);
}

.btn--lg {
  font-size: 1rem;
  padding: 1rem 2.25rem;
}

.btn--sm {
  font-size: .78rem;
  padding: .6rem 1.2rem;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

/* Arrow link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--amber);
  transition: gap var(--dur-s) var(--ease-bounce), color var(--dur-s);
}

.link-arrow:hover {
  gap: .75rem;
  color: var(--amber-dark);
}

.link-arrow--white { color: var(--white); }
.link-arrow--white:hover { color: var(--amber-light); }

/* ── Forms ───────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-label {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--body-text);
}

.form-label--light { color: rgba(255,255,255,.8); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .8rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-m);
  font-family: var(--font-reading);
  font-size: .95rem;
  font-weight: 400;
  color: var(--body-text);
  transition: border-color var(--dur-s), box-shadow var(--dur-s);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #aaa;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212,137,26,.15);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%235C5C5C' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.5rem;
}

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

.form-hint {
  font-family: var(--font-reading);
  font-size: .78rem;
  color: var(--body-muted);
}

/* Quote card form */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-l);
}

.quote-card__header {
  margin-bottom: 1.5rem;
}

.quote-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: .02em;
}

.quote-card__title span {
  color: var(--amber);
}

.quote-card__sub {
  font-family: var(--font-reading);
  font-size: .88rem;
  color: var(--body-muted);
  margin-top: .3rem;
  font-weight: 300;
  max-width: none;
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.quote-form .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.quote-submit {
  margin-top: .5rem;
  width: 100%;
  font-size: 1rem;
  padding: 1rem;
  letter-spacing: .08em;
}

.quote-trust {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.quote-trust__item {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--font-reading);
  font-size: .78rem;
  color: var(--body-muted);
}

.quote-trust__item svg {
  color: var(--sage);
  flex-shrink: 0;
}

/* ── Service card ────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: box-shadow var(--dur-m), transform var(--dur-m) var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow-l);
  transform: translateY(-4px);
}

.service-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.service-card:hover .service-card__img img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 1.5rem;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(212,137,26,.12);
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--amber);
}

.service-card__title {
  font-size: 1.3rem;
  margin-bottom: .5rem;
}

.service-card__text {
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: none;
}

/* ── Review / testimonial card ───────────────────────────── */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 1.75rem;
  position: relative;
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--amber);
}

.review-card__quote {
  font-family: var(--font-reading);
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--body-text);
  max-width: none;
  margin-bottom: 1.25rem;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-mid);
}

.review-card__name {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
}

.review-card__location {
  font-family: var(--font-reading);
  font-size: .8rem;
  color: var(--body-muted);
}

.review-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
}

/* ── Blog card ───────────────────────────────────────────── */
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow var(--dur-m), transform var(--dur-m) var(--ease);
}

.blog-card:hover {
  box-shadow: var(--shadow-l);
  transform: translateY(-4px);
}

.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__cat {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .5rem;
}

.blog-card__title {
  font-size: 1.25rem;
  margin-bottom: .6rem;
  line-height: 1.25;
}

.blog-card__excerpt {
  font-size: .88rem;
  flex: 1;
  margin-bottom: 1.25rem;
  max-width: none;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-reading);
  font-size: .78rem;
  color: var(--body-muted);
}

.blog-card__meta span { display: flex; align-items: center; gap: .3rem; }

/* ── Stat display ────────────────────────────────────────── */
.stat-block {
  text-align: center;
}

.stat-block__num {
  font-family: var(--font-display);
  font-size: var(--step-5);
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -.02em;
}

.stat-block__label {
  font-family: var(--font-reading);
  font-size: var(--step--1);
  font-weight: 300;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .4rem;
}

/* ── Process step ────────────────────────────────────────── */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
  position: relative;
}

.process-step__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -.03em;
}

.process-step__title {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
}

.process-step__text {
  font-family: var(--font-reading);
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 26ch;
}

/* ── Check list ──────────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-family: var(--font-reading);
  font-size: .95rem;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.5;
}

.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--amber);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.check-list--dark li { color: rgba(255,255,255,.8); }

/* ── Location card ───────────────────────────────────────── */
.location-card {
  background: var(--ink-mid);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-m);
  padding: 1.5rem;
  transition: background var(--dur-m), border-color var(--dur-m), transform var(--dur-m);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.location-card:hover {
  background: var(--amber);
  border-color: var(--amber);
  transform: translateX(4px);
}

.location-card:hover .location-card__arrow { color: var(--white); }

.location-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.location-card__sub {
  font-family: var(--font-reading);
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: .15rem;
}

.location-card__arrow {
  color: var(--amber);
  flex-shrink: 0;
  transition: color var(--dur-m);
}

/* ── Google badge ────────────────────────────────────────── */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .65rem 1.25rem;
  box-shadow: var(--shadow-s);
}

.google-badge__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
}

.google-badge__logo span:nth-child(1) { color: #4285F4; }
.google-badge__logo span:nth-child(2) { color: #EA4335; }
.google-badge__logo span:nth-child(3) { color: #FBBC04; }
.google-badge__logo span:nth-child(4) { color: #4285F4; }
.google-badge__logo span:nth-child(5) { color: #34A853; }
.google-badge__logo span:nth-child(6) { color: #EA4335; }

.google-badge__stars {
  display: flex;
  gap: 2px;
  color: #FBBC04;
}

.google-badge__num {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--body-text);
}

.google-badge__count {
  font-family: var(--font-reading);
  font-size: .78rem;
  color: var(--body-muted);
}

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}

.faq-question h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  transition: color var(--dur-s);
}

.faq-question:hover h4 { color: var(--amber); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-m), border-color var(--dur-m), transform var(--dur-m);
  color: var(--body-text);
}

.faq-item.open .faq-icon {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-m) var(--ease);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: .95rem;
  max-width: 70ch;
}

/* ── Section heading layout ──────────────────────────────── */
.section-head {
  margin-bottom: var(--space-2xl);
}

.section-head--center {
  text-align: center;
}

.section-head--center p {
  margin-inline: auto;
}

.section-head h2 {
  margin-top: .5rem;
  margin-bottom: .75rem;
}

.section-head p {
  font-size: var(--step-1);
  max-width: 52ch;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  font-family: var(--font-reading);
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

.breadcrumb a {
  color: rgba(255,255,255,.55);
  transition: color var(--dur-s);
}

.breadcrumb a:hover { color: var(--amber); }

.breadcrumb span { color: var(--amber); }

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding-top: 11rem;
  padding-bottom: var(--space-2xl);
  background: var(--ink);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  margin-top: .75rem;
}

/* ── Inline CTA strip ────────────────────────────────────── */
.cta-strip {
  background: var(--amber);
  padding: 1.25rem var(--gutter);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: var(--container);
  margin-inline: auto;
}

.cta-strip p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  max-width: none;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.cta-strip .btn-dark {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand__logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: .25rem;
}

.footer-brand__tagline {
  font-family: var(--font-reading);
  font-size: .85rem;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.5rem;
  max-width: none;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
  font-family: var(--font-reading);
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

.footer-contact-item svg {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,.65);
  transition: color var(--dur-s);
}

.footer-contact-item a:hover { color: var(--amber); }

.footer-col__heading {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-col a {
  font-family: var(--font-reading);
  font-size: .88rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  transition: color var(--dur-s), padding-left var(--dur-s);
}

.footer-col a:hover {
  color: var(--white);
  padding-left: .25rem;
}

.footer-bottom {
  margin-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-family: var(--font-reading);
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  max-width: none;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-family: var(--font-reading);
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  transition: color var(--dur-s);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* Social */
.social-links {
  display: flex;
  gap: .5rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-s);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background var(--dur-m), border-color var(--dur-m), color var(--dur-m);
}

.social-link:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}

/* ── Financing strip ─────────────────────────────────────── */
.financing-strip {
  background: var(--ink-mid);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 1.75rem 0;
}

.financing-strip__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.financing-strip__icon {
  width: 56px;
  height: 56px;
  background: rgba(212,137,26,.15);
  border: 1px solid rgba(212,137,26,.3);
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.financing-strip__text {
  flex: 1;
  min-width: 200px;
}

.financing-strip__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .3rem;
}

.financing-strip__text span {
  font-family: var(--font-reading);
  font-size: .88rem;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  max-width: 58ch;
  display: block;
}

.financing-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1.5px solid rgba(212,137,26,.4);
  border-radius: var(--radius-s);
  padding: .75rem 1.4rem;
  white-space: nowrap;
  transition: background var(--dur-m), border-color var(--dur-m), color var(--dur-m);
  flex-shrink: 0;
}

.financing-strip__cta:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}

@media (max-width: 640px) {
  .financing-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .financing-strip__cta {
    width: 100%;
    justify-content: center;
  }
}

/* ── Mobile sticky CTA bar ───────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--ink);
  border-top: 2px solid var(--amber);
  padding: .75rem var(--gutter);
}

.mobile-cta-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

.mobile-cta-bar .btn {
  width: 100%;
  justify-content: center;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-l);
  }
}

@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .header-actions { display: none; }

  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .mobile-cta-bar { display: block; }

  body { padding-bottom: 70px; }

  .site-header { padding-block: .75rem; }
  .site-logo__mark { font-size: 1.25rem; }
  .site-logo__sub { font-size: .58rem; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 480px) {
  .quote-card {
    padding: 1.5rem 1.25rem;
  }
}
