/* =====================================================================
   LOCKCHANGE.NET — Emergency Lock Change Guide 2026
   Palette: Deep Burgundy #6b1d1d + Crimson #c0392b + Gold #d4a017 + White
   Fonts: Inter (self-hosted) + Lora (async Google Fonts for headings)
   ===================================================================== */

/* === SELF-HOSTED FONTS ============================================== */
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-ExtraBold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}

/* === DESIGN TOKENS ================================================== */
:root {
  --burgundy:       #6b1d1d;
  --burgundy-mid:   #8b2a2a;
  --burgundy-light: #a83232;
  --crimson:        #c0392b;
  --crimson-dark:   #96281b;
  --crimson-pale:   #fdf2f0;
  --gold:           #d4a017;
  --gold-light:     #e8b83a;
  --gold-pale:      #fefaef;
  --white:          #ffffff;
  --off-white:      #f9f6f4;
  --cream:          #f4ede8;
  --dark:           #1a0808;
  --dark-2:         #2a1010;
  --dark-3:         #3d1818;
  --text:           #1c1010;
  --text-mid:       #3d2020;
  --text-muted:     #6b4a4a;
  --text-light:     #f5e8e8;
  --text-dim:       #b89090;
  --border:         #e8d8d0;
  --border-dark:    #5a1c1c;
  --green-ok:       #16a34a;
  --warning-bg:     #fff8ed;
  --warning-border: #fed7aa;

  --font-head:      'Lora', 'Georgia', serif;
  --font-body:      'Inter', system-ui, sans-serif;

  --radius:         8px;
  --radius-lg:      14px;
  --radius-xl:      20px;
  --shadow:         0 2px 12px rgba(107,29,29,.10);
  --shadow-md:      0 6px 24px rgba(107,29,29,.14);
  --shadow-lg:      0 16px 48px rgba(107,29,29,.18);
  --ease:           cubic-bezier(.22,.61,.36,1);
}

/* === RESET ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--crimson); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* === LAYOUT ========================================================= */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }

section { padding: 72px 0; }
section.section--light { background: var(--off-white); }
section.section--cream { background: var(--cream); }
section.section--dark { background: var(--dark); color: var(--text-light); }
section.section--burgundy { background: var(--burgundy); color: var(--text-light); }
section.section--crimson-pale { background: var(--crimson-pale); }
section.section--gold-pale { background: var(--gold-pale); }

/* === DARK SECTION OVERRIDES (required — prevents dark-on-dark) ====== */
.section--dark p, .section--dark li, .section--dark span,
.section--dark a:not(.btn), .section--dark .text-muted,
.section--burgundy p, .section--burgundy li, .section--burgundy span,
.page-hero p, .page-hero span, .home-hero p, .home-hero span {
  color: var(--text-light);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--burgundy h1, .section--burgundy h2, .section--burgundy h3,
.home-hero h1, .page-hero h1 { color: var(--white); }
.section--dark a:not(.btn), .section--burgundy a:not(.btn) { color: var(--gold-light); }
.site-footer p, .site-footer li, .site-footer a, .site-footer span { color: var(--text-light); }
.site-footer h4 { color: var(--white); }

/* === TYPOGRAPHY ===================================================== */
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.22; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1rem; font-weight: 700; font-family: var(--font-body); text-transform: uppercase; letter-spacing: .06em; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 10px;
}
.eyebrow--light { color: var(--gold-light); }
.lead { font-size: 1.15rem; line-height: 1.7; color: var(--text-mid); }
.text-muted { color: var(--text-muted); }

/* === BUTTONS ======================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-weight: 700; font-size: .9rem;
  padding: 13px 26px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: background .22s var(--ease), color .22s, transform .18s, box-shadow .22s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--crimson); color: var(--white);
  box-shadow: 0 4px 14px rgba(192,57,43,.28);
}
.btn-primary:hover { background: var(--crimson-dark); box-shadow: 0 6px 20px rgba(192,57,43,.35); }
.btn-secondary {
  background: transparent; color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-secondary:hover { background: var(--burgundy); color: var(--white); }
.btn-gold {
  background: var(--gold); color: var(--dark);
  box-shadow: 0 4px 14px rgba(212,160,23,.28);
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline-light {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

/* === SITE HEADER ==================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.site-header__inner {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 0; height: 64px;
}
.site-header__logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 800; font-size: 1.1rem;
  color: var(--white); text-decoration: none; flex-shrink: 0;
}
.site-header__logo:hover { text-decoration: none; color: var(--gold-light); }
.site-header__logo-icon {
  width: 34px; height: 34px; background: var(--crimson);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--white);
}
.logo-dot { color: var(--gold); }
.site-header__nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.site-header__nav a {
  font-size: .875rem; font-weight: 600; color: rgba(255,255,255,.72);
  padding: 6px 12px; border-radius: 6px; transition: color .18s, background .18s;
  text-decoration: none; white-space: nowrap;
}
.site-header__nav a:hover, .site-header__nav a.active {
  color: var(--white); background: rgba(255,255,255,.1);
}
.site-header__cta { flex-shrink: 0; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  margin-left: auto;
}
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: .2s; display: block; }
.mobile-nav {
  display: none; flex-direction: column; gap: 2px;
  background: var(--dark-2); padding: 12px 16px;
  border-bottom: 1px solid var(--border-dark);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,.8); padding: 10px 12px; border-radius: 6px; font-size: .95rem; font-weight: 600; }
.mobile-nav a:hover { background: rgba(255,255,255,.1); color: var(--white); }

@media (max-width: 900px) {
  .site-header__nav { display: none; }
  .site-header__cta { display: none; }
  .hamburger { display: flex; }
}

/* === HOME HERO ====================================================== */
.home-hero {
  position: relative; overflow: hidden;
  min-height: clamp(520px, 60vh, 680px);
  display: flex; align-items: center;
  background: var(--dark) center/cover no-repeat;
}
.home-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,8,8,.88) 0%, rgba(26,8,8,.76) 30%, rgba(26,8,8,.35) 65%, rgba(26,8,8,.08) 100%);
  z-index: 1;
}
.home-hero__inner {
  position: relative; z-index: 2;
  max-width: 640px; padding: 60px 0;
}
.home-hero__title { color: var(--white); margin-bottom: 16px; }
.home-hero__subtitle { font-size: 1.12rem; color: var(--text-light); opacity: .9; margin-bottom: 28px; max-width: 520px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-stats-row {
  display: flex; gap: 24px; flex-wrap: wrap; margin-top: 32px;
}
.hero-stat {
  text-align: center;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px); border-radius: var(--radius-lg);
  padding: 14px 20px; min-width: 100px;
}
.hero-stat__num { font-size: 1.6rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.hero-stat__label { font-size: .75rem; color: rgba(255,255,255,.72); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; }

/* === PAGE HERO ====================================================== */
.page-hero {
  position: relative; overflow: hidden;
  min-height: clamp(300px, 38vh, 420px);
  display: flex; align-items: center;
  background: var(--dark) center/cover no-repeat;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26,8,8,.85) 0%, rgba(26,8,8,.60) 50%, rgba(26,8,8,.20) 100%);
  z-index: 1;
}
.page-hero__inner { position: relative; z-index: 2; max-width: 600px; padding: 48px 0; }
.page-hero__breadcrumb { font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.page-hero__breadcrumb a { color: var(--gold-light); }
.page-hero__title { color: var(--white); margin-bottom: 12px; }
.page-hero__lead { font-size: 1.05rem; color: var(--text-light); opacity: .88; }

/* === TRUST STRIP ==================================================== */
.trust-strip {
  background: var(--off-white); border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-strip__inner {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center;
}
.trust-chip {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; color: var(--text-mid);
}
.trust-chip svg { color: var(--crimson); flex-shrink: 0; }

/* === GUIDE CARDS ==================================================== */
.guide-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.guide-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; }
.guide-card__media { aspect-ratio: 3/2; overflow: hidden; background: var(--cream); }
.guide-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.guide-card:hover .guide-card__media img { transform: scale(1.04); }
.guide-card__urgency-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--crimson); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px;
}
.guide-card__media-wrap { position: relative; }
.guide-card__body { padding: 22px 22px 28px; flex: 1; display: flex; flex-direction: column; }
.guide-card__title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.guide-card__desc { font-size: .9rem; color: var(--text-muted); flex: 1; margin-bottom: 16px; }
.guide-card__link { font-size: .85rem; font-weight: 700; color: var(--crimson); display: flex; align-items: center; gap: 5px; }
.guide-card__link svg { transition: transform .2s; }
.guide-card:hover .guide-card__link svg { transform: translateX(3px); }

/* === SCENARIO BLOCKS ================================================ */
.scenario-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.scenario-card {
  background: var(--white); border-left: 4px solid var(--crimson);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 24px 28px;
  box-shadow: var(--shadow);
}
.scenario-card--urgent { border-left-color: var(--crimson); }
.scenario-card--high { border-left-color: var(--gold); }
.scenario-card--moderate { border-left-color: var(--burgundy-light); }
.scenario-card__icon { font-size: 1.6rem; margin-bottom: 10px; }
.scenario-card__title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.scenario-card__urgency { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--crimson); margin-bottom: 10px; }
.scenario-card--high .scenario-card__urgency { color: var(--gold); }
.scenario-card--moderate .scenario-card__urgency { color: var(--burgundy-light); }
.scenario-card p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* === FEATURE ROWS =================================================== */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 48px 0;
}
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }
.feature-row__img { border-radius: var(--radius-xl); overflow: hidden; }
.feature-row__img img { width: 100%; height: 400px; object-fit: cover; display: block; }
.feature-row__content h2 { margin-bottom: 16px; }
.feature-row__content p { margin-bottom: 16px; color: var(--text-mid); }
.feature-row__content ul { list-style: none; padding: 0; }
.feature-row__content ul li {
  padding: 8px 0 8px 24px; position: relative;
  font-size: .95rem; color: var(--text-mid); border-bottom: 1px solid var(--border);
}
.feature-row__content ul li:last-child { border-bottom: none; }
.feature-row__content ul li::before { content: ''; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--crimson); }
@media (max-width: 768px) {
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row--reverse { direction: ltr; }
}

/* === STEPS ========================================================== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; position: relative;
}
.step-card__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--burgundy); color: var(--white);
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* === COMPARISON TABLE =============================================== */
.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.compare-table th {
  background: var(--burgundy); color: var(--white);
  padding: 12px 16px; text-align: left; font-size: .8rem;
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.compare-table th:first-child { border-radius: var(--radius) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.compare-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--off-white); }
.compare-table .check { color: var(--green-ok); font-weight: 700; }
.compare-table .cross { color: var(--crimson); font-weight: 700; }
.compare-table .yes-col { color: var(--green-ok); font-weight: 600; }
.compare-table .no-col { color: var(--text-muted); }
.compare-table .highlight-row td { background: var(--gold-pale) !important; font-weight: 600; }

/* === GALLERY GRID =================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-grid img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius-lg); }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* === READER STORIES (reviews) ======================================= */
.stories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.story-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 14px;
}
.story-card__stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.story-card__quote { font-style: italic; color: var(--text-mid); font-size: .95rem; line-height: 1.65; flex: 1; }
.story-card__reader { display: flex; align-items: center; gap: 12px; }
.story-card__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.story-card__name { font-weight: 700; font-size: .9rem; }
.story-card__meta { font-size: .78rem; color: var(--text-muted); }
.story-policy { text-align: center; margin-top: 14px; font-size: .8rem; color: var(--text-muted); }

/* === FAQ ACCORDION ================================================== */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item summary {
  padding: 18px 22px; font-weight: 700; font-size: .95rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  list-style: none; user-select: none; background: var(--white);
  transition: background .18s;
}
.faq-item summary:hover { background: var(--off-white); }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--crimson); font-weight: 700; flex-shrink: 0; margin-left: 12px; }
.faq-item[open] summary::after { content: '-'; }
.faq-item[open] summary { background: var(--crimson-pale); color: var(--burgundy); }
.faq-item__body { padding: 0 22px 18px; font-size: .93rem; color: var(--text-mid); background: var(--white); }
.faq-item__body p { margin-bottom: 8px; }

/* === CTA BAND ======================================================= */
.cta-band {
  background: var(--burgundy);
  padding: 64px 0; text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.82); margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === MINI CARDS (3-up) ============================================== */
.mini-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.mini-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px; text-align: center;
}
.mini-card svg { color: var(--crimson); margin-bottom: 10px; }
.mini-card h4 { font-family: var(--font-body); font-size: .9rem; font-weight: 700; margin-bottom: 6px; }
.mini-card p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* === ALERT BOX ====================================================== */
.alert-box {
  border-left: 4px solid var(--crimson); background: var(--crimson-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px; margin: 24px 0;
}
.alert-box--warning { border-left-color: var(--gold); background: var(--gold-pale); }
.alert-box p { color: var(--text-mid); font-size: .93rem; margin: 0; }
.alert-box strong { color: var(--crimson); }
.alert-box--warning strong { color: var(--gold); }

/* === SECTION LABELS ================================================= */
.section-label {
  font-family: var(--font-body); font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--crimson);
  margin-bottom: 8px; display: block;
}
.section-label--light { color: var(--gold-light); }

/* === METHODOLOGY STRIP ============================================== */
.methodology-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 36px 0;
}
.methodology-strip__inner { display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap; }
.methodology-strip__col { flex: 1; min-width: 200px; }
.methodology-strip__col h4 { color: var(--gold-light); margin-bottom: 8px; font-size: .82rem; }
.methodology-strip__col p { color: rgba(255,255,255,.72); font-size: .85rem; margin: 0; }

/* === PROSE ========================================================== */
.prose { max-width: 720px; }
.prose h2 { margin-top: 36px; margin-bottom: 14px; }
.prose h3 { margin-top: 24px; margin-bottom: 10px; }
.prose p { color: var(--text-mid); }
.prose ul { list-style: disc; padding-left: 22px; }
.prose ul li { margin-bottom: 6px; color: var(--text-mid); }
.prose ol { padding-left: 22px; }
.prose ol li { margin-bottom: 6px; color: var(--text-mid); }
.prose a { color: var(--crimson); }
.prose a:hover { text-decoration: underline; }

/* === RELATED STRIP ================================================== */
.related-strip { border-top: 1px solid var(--border); padding-top: 40px; }
.related-strip h3 { font-size: 1.1rem; margin-bottom: 18px; }
.related-links { display: flex; gap: 12px; flex-wrap: wrap; }
.related-link {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 100px; padding: 8px 18px;
  font-size: .85rem; font-weight: 600; color: var(--text-mid);
  transition: background .18s, color .18s;
}
.related-link:hover { background: var(--crimson); color: var(--white); text-decoration: none; }

/* === COST TABLE ===================================================== */
.cost-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.cost-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 20px; text-align: center;
}
.cost-card__label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 8px; }
.cost-card__price { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--burgundy); margin-bottom: 6px; }
.cost-card__desc { font-size: .82rem; color: var(--text-muted); }

/* === SITE FOOTER ==================================================== */
.site-footer { background: var(--dark); color: var(--text-light); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand__logo { display: flex; align-items: center; gap: 9px; text-decoration: none; margin-bottom: 14px; }
.footer-brand__logo-icon { width: 32px; height: 32px; background: var(--crimson); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: var(--white); }
.footer-brand__name { font-weight: 800; font-size: 1rem; color: var(--white); }
.footer-brand__desc { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.footer-col h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-light); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color .18s; }
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid var(--border-dark); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); margin: 0; }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.5); transition: color .18s; }
.footer-legal a:hover { color: var(--white); }

/* === FORMS ========================================================== */
.form-wrap {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 32px 28px; box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-body); font-size: .95rem; color: var(--text);
  transition: border-color .18s, box-shadow .18s; background: var(--white);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--crimson); box-shadow: 0 0 0 3px rgba(192,57,43,.12); }
.form-group textarea { min-height: 110px; resize: vertical; }
.hp-field { display: none; }
.form-success { display: none; text-align: center; padding: 24px; color: var(--green-ok); }
.form-success.show { display: block; }

/* === SCROLL FADE ==================================================== */
[data-fade] { opacity: 0; transform: translateY(22px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
[data-fade].visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-fade] { opacity: 1; transform: none; transition: none; } }

/* === UTILITIES ====================================================== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.section-header { margin-bottom: 40px; }
.section-header p { color: var(--text-muted); max-width: 600px; }
.section-header.text-center p { margin-left: auto; margin-right: auto; }

/* === RESPONSIVE ===================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* === CONTACT PAGE ================================================== */
.contact-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .contact-grid-wrap { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  section { padding: 48px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats-row { gap: 12px; }
  .hero-stat { min-width: 80px; padding: 10px 14px; }
  .hero-stat__num { font-size: 1.3rem; }
}
