/* ============================================================
   On Point Design Construction Inc. — components.css
   Header, footer, buttons, cards, forms, hero patterns
   ============================================================ */

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-copper);
}
.logo__mark { width: 46px; height: 46px; flex: none; color: var(--color-copper); }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: currentColor;
}
.logo__sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.56rem;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  margin-top: 0.42rem;
  color: var(--color-copper);
}
.header .logo { color: var(--color-copper); }
.header .logo__name { color: var(--color-bone); }
.header .logo__sub { color: rgba(245,241,234,0.6); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  width: 100%; max-width: var(--max-w-wide); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
}
.header.is-scrolled {
  background: rgba(10,10,10,0.86);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: rgba(184,115,51,0.22);
  box-shadow: 0 6px 30px rgba(0,0,0,0.35);
}

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2rem); }
.nav__link {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245,241,234,0.82);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--color-copper); transition: width 0.3s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--color-copper-bright); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: var(--space-4); }

/* Mobile menu */
.nav-toggle { display: none; width: 44px; height: 44px; color: var(--color-bone); align-items: center; justify-content: center; }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(184,115,51,0.22);
    padding: var(--space-6) var(--gutter) var(--space-10);
    transform: translateY(-110%);
    transition: transform 0.45s var(--ease);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { width: 100%; padding: 0.95rem 0; font-size: var(--text-sm); border-bottom: 1px solid rgba(245,241,234,0.08); }
  .nav__link::after { display: none; }
  .header__phone-text { display: none; }
}
@media (max-width: 540px) {
  .btn--header-phone .btn__label { display: none; }
  .logo__sub { display: none; }
  .logo__name { font-size: 0.88rem; letter-spacing: 0.12em; }
  .logo__mark { width: 38px; height: 38px; }
  .logo { gap: 0.5rem; }
}
@media (max-width: 380px) {
  .logo__text { display: none; }
}

/* ---------- Buttons (pill) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--color-copper); color: #fff; box-shadow: 0 2px 0 var(--color-copper-deep); }
.btn--primary:hover { background: var(--color-copper-bright); transform: translateY(-2px); box-shadow: var(--glow-copper-strong); }
.btn--primary:active { transform: translateY(0); background: var(--color-copper-deep); }

.btn--ghost { background: transparent; color: var(--color-copper); border-color: var(--color-copper); }
.btn--ghost:hover { transform: translateY(-2px); box-shadow: var(--glow-copper); border-color: var(--color-copper-bright); color: var(--color-copper-bright); }
.section--dark .btn--ghost, .section--rich .btn--ghost, .hero .btn--ghost { color: var(--color-copper-bright); border-color: var(--color-copper); }
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover { background: rgba(184,115,51,0.1); }

/* Ghost on bone */
.section--bone .btn--ghost, .section--bone-soft .btn--ghost { color: var(--color-copper-deep); border-color: var(--color-copper); }

.btn--lg { padding: 1.1rem 2.4rem; font-size: var(--text-base); }
.btn--sm { padding: 0.7rem 1.4rem; font-size: var(--text-xs); }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.btn-row.center { justify-content: center; }

/* Header phone pill */
.btn--header-phone { background: var(--color-copper); color: #fff; box-shadow: 0 2px 0 var(--color-copper-deep); }
.btn--header-phone:hover { background: var(--color-copper-bright); transform: translateY(-2px); box-shadow: var(--glow-copper); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  background: var(--color-black);
  color: var(--color-bone);
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.72) 38%, rgba(10,10,10,0.32) 70%, rgba(10,10,10,0.55) 100%),
    linear-gradient(0deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0) 40%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.hero__content { max-width: 760px; padding-block: clamp(3rem, 7vw, 6rem); }
.hero__title { font-size: var(--text-hero); font-weight: 600; line-height: 1.02; margin-bottom: var(--space-6); }
.hero__title em { font-style: italic; color: var(--color-copper-bright); }
.hero__brand { font-family: var(--font-body); font-size: clamp(0.95rem, 1.4vw, 1.15rem); font-weight: 800; letter-spacing: 0.28em; color: #C68B5C; text-transform: uppercase; margin-bottom: 1.25rem; line-height: 1; }
.hero__sub { font-size: var(--text-lg); color: rgba(245,241,234,0.82); max-width: 56ch; margin-bottom: var(--space-10); }

/* Smaller inner-page hero */
.hero--page { min-height: 64vh; }
.hero--compact { min-height: 56vh; }

/* Hero trust strip */
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; align-items: center;
  margin-top: var(--space-8);
  font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,241,234,0.66); font-weight: 600;
}
.hero__trust li { display: flex; align-items: center; gap: 0.7rem; }
.hero__trust li:not(:last-child)::after { content: "·"; color: var(--color-copper); margin-left: 1.1rem; font-size: 1.2em; }

/* ---------- Cards ---------- */
.card {
  background: var(--color-bone);
  border: 1px solid rgba(42,42,42,0.1);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(184,115,51,0.4); }

.section--dark .card, .section--rich .card {
  background: var(--color-black-rich);
  border-color: rgba(245,241,234,0.08);
  color: var(--color-bone);
}
.section--dark .card:hover, .section--rich .card:hover { background: var(--color-black-soft); border-color: rgba(184,115,51,0.45); box-shadow: 0 24px 50px rgba(0,0,0,0.5); }

.card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(184,115,51,0.5);
  border-radius: var(--radius-sm);
  color: var(--color-copper);
  margin-bottom: var(--space-6);
}
.card__icon svg { width: 30px; height: 30px; }
.card__title { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.card__title a { transition: color 0.25s var(--ease); }
.card__title a:hover { color: var(--color-copper); }
.card__text { font-size: var(--text-base); color: var(--color-graphite); line-height: 1.6; }
.section--dark .card__text, .section--rich .card__text { color: rgba(245,241,234,0.68); }
.card__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: var(--space-6);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-copper);
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}
.card__link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.card__link:hover { color: var(--color-copper-bright); }
.card__link:hover svg { transform: translateX(4px); }

/* Numbered value prop */
.valueprop { padding: var(--space-2) 0; }
.valueprop__icon { width: 48px; height: 48px; color: var(--color-copper); margin-bottom: var(--space-5); }
.valueprop__icon svg { width: 48px; height: 48px; }
.valueprop__title { font-family: var(--font-body); font-weight: 700; font-size: var(--text-lg); letter-spacing: 0.02em; margin-bottom: var(--space-3); color: var(--color-bone); }
.valueprop__text { font-size: var(--text-sm); color: rgba(245,241,234,0.65); }

/* ---------- Media frames ---------- */
.media-frame {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--tall { aspect-ratio: 4/5; }
.media-frame--wide { aspect-ratio: 16/11; }
.media-frame--square { aspect-ratio: 1/1; }
/* copper corner accent */
.media-frame::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 64px; height: 64px;
  border-left: 2px solid var(--color-copper);
  border-bottom: 2px solid var(--color-copper);
  pointer-events: none;
}

/* ---------- Pillars (3-col) ---------- */
.pillar { position: relative; }
.pillar__icon {
  width: 64px; height: 64px;
  color: var(--color-copper);
  margin-bottom: var(--space-6);
}
.pillar__icon svg { width: 64px; height: 64px; }
.pillar__title { font-size: var(--text-xl); margin-bottom: var(--space-4); }
.pillar__text { color: var(--color-graphite); margin-bottom: var(--space-6); }

/* ---------- Value props band ---------- */
.valueprops { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(2rem,5vw,4rem); }
@media (max-width: 860px){ .valueprops { grid-template-columns: 1fr; gap: var(--space-10); } }

/* ---------- Repair / accent strip callout ---------- */
.accent-strip {
  position: relative;
  border-left: 3px solid var(--color-copper);
  padding-left: clamp(1.5rem, 4vw, 3rem);
}

/* ---------- Testimonials ---------- */
.testimonial { position: relative; padding-top: var(--space-10); }
.testimonial__quote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.5;
  font-style: italic;
  color: var(--color-bone);
  margin-bottom: var(--space-6);
}
.testimonial__mark {
  position: absolute; top: -0.2rem; left: 0;
  font-family: var(--font-display);
  font-size: 4.5rem; line-height: 1;
  color: var(--color-copper);
  opacity: 0.85;
}
.testimonial__name { font-family: var(--font-body); font-weight: 700; font-size: var(--text-sm); letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-copper-bright); }

/* ---------- Service-area band ---------- */
.counties { display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; }
.county-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border: 1px solid rgba(184,115,51,0.4);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-copper);
}
.county-pill svg { width: 14px; height: 14px; }

.city-list { display: flex; flex-wrap: wrap; gap: 0.5rem 0.4rem; margin-top: var(--space-6); }
.city-list span { font-size: var(--text-sm); color: var(--color-graphite); }
.section--dark .city-list span, .section--rich .city-list span { color: rgba(245,241,234,0.6); }
.city-list span:not(:last-child)::after { content: "·"; color: var(--color-copper); margin-left: 0.6rem; }

/* ---------- Credentials block ---------- */
.credentials { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-4); }
@media (max-width:620px){ .credentials { grid-template-columns: 1fr; } }
.cred {
  display: flex; gap: var(--space-4); align-items: flex-start;
  padding: var(--space-6);
  border: 1px solid rgba(184,115,51,0.3);
  border-radius: var(--radius-card);
  background: rgba(184,115,51,0.04);
}
.section--dark .cred, .section--rich .cred { background: var(--color-black-rich); }
.cred__icon { width: 40px; height: 40px; color: var(--color-copper); flex: none; }
.cred__icon svg { width: 40px; height: 40px; }
.cred__label { font-weight: 700; font-size: var(--text-base); margin-bottom: 0.15rem; }
.cred__meta { font-size: var(--text-sm); color: var(--color-graphite); }
.section--dark .cred__meta, .section--rich .cred__meta { color: rgba(245,241,234,0.62); }

/* InterNACHI credential badge block */
.cert-badge {
  display: inline-flex; flex-direction: column; gap: 0.4rem;
  padding: var(--space-8);
  border: 1.5px solid var(--color-copper);
  border-radius: var(--radius-card);
  background: rgba(184,115,51,0.06);
  position: relative;
}
.cert-badge::before {
  content: "CERTIFIED"; position: absolute; top: -0.7rem; left: var(--space-8);
  background: var(--color-black); color: var(--color-copper);
  font-size: var(--text-tiny); font-weight: 700; letter-spacing: 0.24em; padding: 0 0.6rem;
}
.section--bone .cert-badge::before, .section--bone-soft .cert-badge::before { background: var(--color-bone); }
.cert-badge__title { font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-copper); }
.cert-badge__sub { font-size: var(--text-sm); letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-graphite); }
.section--dark .cert-badge__sub { color: rgba(245,241,234,0.66); }

/* ---------- Forms ---------- */
.form { display: grid; gap: var(--space-5); }
.form__group { display: flex; flex-direction: column; gap: 0.5rem; }
.form__label {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-copper);
}
.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: rgba(245,241,234,0.04);
  border: 1px solid rgba(245,241,234,0.18);
  border-radius: var(--radius-sm);
  color: var(--color-bone);
  font-size: var(--text-base);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.section--bone .form__input, .section--bone-soft .form__input,
.section--bone .form__textarea, .section--bone-soft .form__textarea,
.section--bone .form__select, .section--bone-soft .form__select {
  background: #fff; border-color: rgba(42,42,42,0.18); color: var(--color-charcoal);
}
.form__input::placeholder, .form__textarea::placeholder { color: rgba(245,241,234,0.4); }
.section--bone .form__input::placeholder { color: rgba(74,74,74,0.5); }
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none; border-color: var(--color-copper); background: rgba(184,115,51,0.06);
}
.form__textarea { resize: vertical; min-height: 130px; }
.form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23B87333' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1rem center; padding-right: 2.8rem; }
.form__note { font-size: var(--text-xs); color: var(--color-graphite); }
.section--dark .form__note, .section--rich .form__note { color: rgba(245,241,234,0.5); }
.form__status { font-size: var(--text-sm); padding: var(--space-3) 0; display: none; }
.form__status.is-active { display: block; }
.form__status.is-success { color: var(--color-copper-bright); }
.form__status.is-error { color: #d98a6a; }

/* Big click-to-call display */
.callout-phone {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 600;
  color: var(--color-copper-bright);
  letter-spacing: -0.01em;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}
.callout-phone svg { width: 0.7em; height: 0.7em; }
.callout-phone:hover { color: var(--color-copper); transform: translateY(-1px); }

/* Contact info card */
.contact-card { display: grid; gap: var(--space-8); }
.contact-row { display: flex; gap: var(--space-4); align-items: flex-start; }
.contact-row__icon { width: 38px; height: 38px; color: var(--color-copper); flex: none; }
.contact-row__icon svg { width: 26px; height: 26px; }
.contact-row__label { font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-copper); margin-bottom: 0.2rem; }
.contact-row__value { font-size: var(--text-lg); }
.contact-row__value a { transition: color 0.2s; }
.contact-row__value a:hover { color: var(--color-copper-bright); }

/* ---------- Service tiles (repairs) ---------- */
.tile {
  background: var(--color-black-rich);
  border: 1px solid rgba(245,241,234,0.08);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem,3vw,2.5rem);
  display: flex; flex-direction: column; height: 100%;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tile:hover { transform: translateY(-4px); border-color: rgba(184,115,51,0.5); box-shadow: 0 24px 50px rgba(0,0,0,0.5); }
.tile__icon { width: 52px; height: 52px; color: var(--color-copper); margin-bottom: var(--space-5); }
.tile__icon svg { width: 52px; height: 52px; }
.tile__title { font-size: var(--text-xl); color: var(--color-bone); margin-bottom: var(--space-3); }
.tile__text { font-size: var(--text-sm); color: rgba(245,241,234,0.68); flex: 1; margin-bottom: var(--space-6); }

/* ---------- Checklist ---------- */
.checklist { display: grid; gap: var(--space-4); }
.checklist li { display: flex; gap: var(--space-4); align-items: flex-start; font-size: var(--text-base); }
.checklist li svg { width: 24px; height: 24px; color: var(--color-copper); flex: none; margin-top: 2px; }
.section--dark .checklist li, .section--rich .checklist li { color: rgba(245,241,234,0.85); }

/* ---------- Project grid ---------- */
.project-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-6); }
@media (max-width: 980px){ .project-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .project-grid { grid-template-columns: 1fr; } }
.project-card {
  position: relative; border-radius: var(--radius-card); overflow: hidden;
  aspect-ratio: 4/3; display: block;
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.project-card:hover img { transform: scale(1.06); }
.project-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.05) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-6);
}
.project-card__cat { font-size: var(--text-tiny); letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-copper-bright); margin-bottom: 0.35rem; }
.project-card__title { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-bone); }

/* Placeholder "more coming soon" tile */
.project-card--placeholder {
  background: linear-gradient(135deg, #141414 0%, #1C1C1C 100%);
  border: 1px solid rgba(184,115,51,0.25);
  display: flex; align-items: center; justify-content: center;
  text-align: center; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.project-card--placeholder:hover { border-color: var(--color-copper); transform: translateY(-2px); }
.project-card__placeholder-inner { padding: var(--space-6); display: flex; flex-direction: column; gap: 0.85rem; }
.project-card__placeholder-title { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-bone); line-height: 1.3; }
.project-card__placeholder-sub { font-size: var(--text-sm); color: rgba(245,241,234,0.6); }

/* ---------- Bilingual link ---------- */
.lang-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.06em;
  color: var(--color-copper);
  transition: gap 0.25s var(--ease);
}
.lang-link:hover { gap: 0.85rem; color: var(--color-copper-bright); }
.lang-link svg { width: 18px; height: 18px; }

/* ---------- Footer ---------- */
.footer { background: var(--color-black); color: rgba(245,241,234,0.7); padding-top: var(--space-24); padding-bottom: var(--space-10); border-top: 1px solid rgba(184,115,51,0.18); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-10); margin-bottom: var(--space-16); }
@media (max-width: 900px){ .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-10); } }
@media (max-width: 520px){ .footer__grid { grid-template-columns: 1fr; } }
.footer .logo__name { color: var(--color-bone); }
.footer .logo__sub { color: rgba(245,241,234,0.5); }
.footer__about { margin-top: var(--space-6); font-size: var(--text-sm); color: rgba(245,241,234,0.6); max-width: 36ch; }
.footer__col h4 { font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-copper); margin-bottom: var(--space-5); }
.footer__col ul { display: grid; gap: var(--space-3); }
.footer__col a, .footer__col li { font-size: var(--text-sm); color: rgba(245,241,234,0.66); transition: color 0.2s; }
.footer__col a:hover { color: var(--color-copper-bright); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-4); padding-top: var(--space-8); border-top: 1px solid rgba(245,241,234,0.1); font-size: var(--text-xs); color: rgba(245,241,234,0.5); }
.footer__bottom a:hover { color: var(--color-copper-bright); }
.footer__license { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--color-copper); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band__title { font-size: var(--text-3xl); max-width: 22ch; margin: 0 auto var(--space-8); }

/* generic intro list w/ copper dot */
.dot-list { display: grid; gap: var(--space-3); }
.dot-list li { position: relative; padding-left: 1.4rem; }
.dot-list li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 7px; height: 7px; background: var(--color-copper); border-radius: 50%; }

/* Stat row */
.stat-row { display: flex; flex-wrap: wrap; gap: clamp(2rem,5vw,4rem); }
.stat__num { font-family: var(--font-display); font-size: var(--text-3xl); color: var(--color-copper-bright); line-height: 1; }
.stat__label { font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,241,234,0.6); margin-top: 0.5rem; }
.section--bone .stat__label, .section--bone-soft .stat__label { color: var(--color-graphite); }
.section--bone .stat__num, .section--bone-soft .stat__num { color: var(--color-copper-deep); }

/* page intro hero content reuse */
.hero--page .hero__content { padding-block: clamp(2rem,5vw,4rem); }

/* ============ FAQ list ============ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(184,115,51,0.18);
  border-radius: 14px;
  padding: 0;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  overflow: hidden;
}
.faq-item:hover { border-color: rgba(184,115,51,0.5); box-shadow: 0 4px 18px rgba(10,10,10,0.06); }
.faq-item[open] { border-color: rgba(184,115,51,0.55); box-shadow: 0 6px 22px rgba(10,10,10,0.07); }
.faq__question {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--color-black);
  padding: 1.3rem 1.6rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.35;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--color-copper);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] .faq__question::after { transform: rotate(45deg); }
.faq__answer {
  padding: 0 1.6rem 1.4rem;
  color: #4A4A4A;
  font-size: 1.02rem;
  line-height: 1.65;
}
.faq__answer a { color: var(--color-copper-deep); text-decoration: underline; text-decoration-color: rgba(184,115,51,0.4); }
.faq__answer a:hover { color: var(--color-copper); }
.faq__answer strong { color: var(--color-black); }
