/* ============================================================
   DFW Empire Locksmith — Luxury edition
   Champagne gold, ivory, deep charcoal.  Editorial typography.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,400;1,400;1,500&family=Caveat:wght@500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  /* Core palette — restrained, expensive */
  --noir: #0d0e10;            /* deepest black for hero / footer */
  --graphite: #1a1b1f;        /* slightly softer dark */
  --charcoal: #2a2b30;        /* dark ui surfaces */
  --ink: #16171b;             /* body text */
  --ink-2: #4a4b52;           /* secondary text */
  --ink-3: #7a7b82;           /* tertiary / muted */

  /* Warm neutrals */
  --ivory: #f7f3e9;           /* page background */
  --ivory-2: #efe9d8;         /* subtle warm surface */
  --bone: #e8e2d0;            /* divider warm */
  --paper: #ffffff;           /* clean white surface */

  /* Champagne gold — the only accent */
  --gold: #b08d57;            /* primary accent */
  --gold-2: #9a7842;          /* darker on hover */
  --gold-3: #c9a978;          /* lighter highlight */
  --gold-4: #e8d3a8;          /* faint wash */

  /* Hairlines */
  --line: #ddd6c4;
  --line-2: #c9bfa6;
  --line-dark: rgba(176,141,87,0.18);

  /* Functional */
  --emerald: #2a4b3c;         /* deep accent, sparingly used */
  --crimson: #7a2a2a;         /* for errors */
  --green: #2e6f5e;           /* duty/verified */

  /* Warm playful tertiary — terracotta / dusty rose */
  --rose: #b85b3f;            /* sparingly */
  --rose-2: #d27d63;          /* warm highlight */
  --rose-faint: rgba(184,91,63,0.08);

  /* Shadows — soft, painterly */
  --shadow: 0 1px 2px rgba(13,14,16,0.04), 0 8px 24px rgba(13,14,16,0.06);
  --shadow-lg: 0 4px 8px rgba(13,14,16,0.05), 0 30px 60px rgba(13,14,16,0.12);
  --shadow-gold: 0 12px 36px rgba(176,141,87,0.28);

  --radius: 4px;
  --radius-lg: 8px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  overflow-x: hidden;
  font-feature-settings: "ss01", "kern";
}

/* Editorial type — Playfair for display, Inter for body */
h1, h2, h3, h4, .display {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--ink);
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 500; }
h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-family: "Inter", sans-serif; }
p { margin: 0 0 1em; color: var(--ink-2); font-weight: 400; }
em, .italic { font-style: italic; }

a { color: var(--gold-2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

/* Playful refinements — script & italic display */
.signature {
  font-family: "Caveat", "Brush Script MT", cursive;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.flourish {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}
/* Tiny gold ornament — separator between sections / accents */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  color: var(--gold); margin: 0 auto 18px;
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; width: 36px; background: var(--gold); opacity: 0.5;
}
.ornament .glyph {
  font-family: "Playfair Display", serif; font-style: italic; font-size: 18px;
  color: var(--gold); line-height: 1;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ===== Top bar ===== */
.topbar {
  background: var(--noir);
  color: rgba(255,255,255,0.7);
  padding: 12px 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(176,141,87,0.18);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 500; }
.topbar a:hover { color: var(--gold-3); }
.topbar .phone-link { letter-spacing: 0.04em; }
.topbar .badge {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-3); font-weight: 500;
  letter-spacing: 0.14em;
}
.topbar .badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 4px rgba(46,111,94,0.2);
  animation: dutyGlow 2.5s ease-in-out infinite;
}
@keyframes dutyGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,111,94,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(46,111,94,0); }
}
.topbar .badge.off { color: var(--ink-3); }
.topbar .badge.off .dot { background: var(--ink-3); animation: none; box-shadow: none; }

/* ===== Header ===== */
.site-header {
  background: rgba(247,243,233,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; padding-bottom: 22px; }
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }
.logo .mark {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--noir);
  display: grid; place-items: center;
  color: var(--gold);
  font-family: "Playfair Display", serif; font-weight: 600; font-style: italic;
  font-size: 24px;
  position: relative;
  border: 1px solid var(--gold);
}
.logo .mark::after {
  content: ""; position: absolute; inset: 3px;
  border: 1px solid rgba(176,141,87,0.4); border-radius: 50%;
  pointer-events: none;
}
.logo .name {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 22px; color: var(--ink); line-height: 1.1; letter-spacing: -0.01em;
}
.logo .tag {
  font-size: 10px; color: var(--ink-3);
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  margin-top: 2px;
}
.nav { display: flex; gap: 36px; align-items: center; }
.nav a { color: var(--ink-2); text-decoration: none; font-weight: 500; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase; position: relative; padding: 4px 0;
}
.nav a:not(.call-btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav a:not(.call-btn):hover { color: var(--ink); }
.nav a:not(.call-btn):hover::after { transform: scaleX(1); }
.nav .call-btn {
  background: var(--noir); color: var(--ivory);
  padding: 13px 24px; border-radius: 2px;
  font-weight: 500; letter-spacing: 0.16em; font-size: 11px;
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--noir);
  transition: all .25s ease;
}
.nav .call-btn::after { display: none; }
.nav .call-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--noir); }
@media (max-width: 760px) { .nav a:not(.call-btn) { display: none; } }

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(176,141,87,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(176,141,87,0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--noir) 0%, var(--graphite) 100%);
  color: var(--ivory);
  overflow: hidden;
  border-bottom: 1px solid var(--gold);
}
/* Subtle paper grain */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 0.9 0 0 0 0 0.8 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.4; pointer-events: none; mix-blend-mode: overlay;
}
.hero .container {
  position: relative; display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 64px; padding-top: 96px; padding-bottom: 96px;
  align-items: center; z-index: 2;
}
@media (max-width: 980px) { .hero .container { grid-template-columns: minmax(0, 1fr); gap: 36px; padding-top: 56px; padding-bottom: 56px; } }

.hero h1 { color: var(--ivory); max-width: 100%; font-weight: 400; line-height: 1.05; }
.hero h1 .highlight {
  font-style: italic; font-weight: 500;
  color: var(--gold-3);
  white-space: nowrap;
  position: relative;
}
.hero h1 .highlight::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
  opacity: 0.6;
}
.hero .lede {
  font-size: 1.1rem; color: rgba(247,243,233,0.78);
  max-width: 540px; font-weight: 300; line-height: 1.7;
}

/* Refined eyebrow above hero h1 */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--gold-3);
  font-size: 11px; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; height: 1px; width: 28px; background: var(--gold);
  display: inline-block; opacity: 0.5;
}
.hero-eyebrow::before { display: none; }

.hero .trust-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.hero .chip {
  background: transparent;
  border: 1px solid rgba(247,243,233,0.18);
  padding: 9px 16px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.06em;
  color: rgba(247,243,233,0.85);
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 400;
}
.hero .chip:hover { border-color: var(--gold); color: var(--ivory); }
.hero .chip .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 8px var(--gold); animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

/* Live ticker — refined editorial */
.activity-strip {
  display: flex; align-items: center; gap: 16px;
  margin-top: 36px;
  padding: 16px 0;
  border-top: 1px solid rgba(247,243,233,0.12);
  border-bottom: 1px solid rgba(247,243,233,0.12);
  color: rgba(247,243,233,0.7);
  font-size: 12px;
  overflow: hidden;
  letter-spacing: 0.03em;
}
.activity-strip .label {
  font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-3); font-size: 10px; flex-shrink: 0;
}
.activity-strip .pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 6px var(--gold);
  animation: dotPulse 2s infinite; flex-shrink: 0;
}
.activity-strip .ticker { overflow: hidden; flex: 1; white-space: nowrap; }
.activity-strip .ticker-inner { display: inline-block; animation: tickerScroll 40s linear infinite; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  border-radius: 2px;
  font-weight: 500; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  font-family: "Inter", sans-serif;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gold); color: var(--noir);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(176,141,87,0.25);
}
.btn-primary:hover {
  background: var(--gold-3); border-color: var(--gold-3); color: var(--noir);
  box-shadow: 0 12px 32px rgba(176,141,87,0.35);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--ivory);
  border-color: rgba(247,243,233,0.4);
}
.btn-ghost:hover { background: var(--ivory); color: var(--noir); border-color: var(--ivory); }
.btn-secondary { background: var(--noir); color: var(--ivory); border-color: var(--noir); }
.btn-secondary:hover { background: var(--gold); border-color: var(--gold); color: var(--noir); }
.btn-outline {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); }
.btn-lg { padding: 18px 36px; font-size: 12px; letter-spacing: 0.2em; }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
.btn[disabled]:hover { transform: none; box-shadow: none; }

@keyframes buttonShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.shake { animation: buttonShake 0.4s ease-in-out; }

/* ===== Quote card ===== */
.quote-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
}
/* Gold corner accents */
.quote-card::before, .quote-card::after {
  content: ""; position: absolute; width: 20px; height: 20px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.quote-card::before { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.quote-card::after { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.quote-card h3 { color: var(--ink); font-family: "Playfair Display", serif; }

/* ===== Form fields ===== */
.field { display: block; margin-bottom: 18px; position: relative; }
.field label {
  display: block; font-size: 11px; font-weight: 500;
  color: var(--ink-2); margin-bottom: 8px;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.field label .req { color: var(--crimson); margin-left: 2px; }
.field select, .field input, .field textarea {
  width: 100%; padding: 14px 16px; font-size: 15px;
  font-family: "Inter", sans-serif;
  border: 1px solid var(--line);
  border-radius: 2px; background: var(--paper); color: var(--ink);
  transition: all .2s;
}
.field select:focus, .field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,141,87,0.12);
}
.field.error select, .field.error input, .field.error textarea {
  border-color: var(--crimson);
  background: rgba(122,42,42,0.03);
  animation: fieldShake 0.4s;
}
@keyframes fieldShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.field .err-msg {
  display: none; color: var(--crimson); font-size: 12px; font-weight: 500;
  margin-top: 6px; align-items: center; gap: 6px;
  letter-spacing: 0.03em;
}
.field.error .err-msg { display: flex; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

/* ===== Stats strip ===== */
.stats-strip {
  background: var(--paper);
  color: var(--ink);
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 760px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
.stat { text-align: center; position: relative; padding: 0 20px; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px;
  background: var(--line);
}
@media (max-width: 760px) {
  .stat:not(:last-child)::after { display: none; }
}
.stat .num {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1; letter-spacing: -0.03em;
}
.stat .num .star {
  font-size: 0.45em; vertical-align: super;
  color: var(--gold); font-family: "Inter", sans-serif;
  margin-left: 4px;
}
.stat .label {
  color: var(--ink-3); font-size: 11px; font-weight: 500;
  margin-top: 14px; text-transform: uppercase; letter-spacing: 0.22em;
}

/* ===== Sections ===== */
section { padding: 110px 0; position: relative; }
section.tight { padding: 70px 0; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { color: var(--ink); }
.section-head p { color: var(--ink-2); max-width: 600px; margin: 0 auto; font-size: 1.05rem; font-weight: 300; line-height: 1.7; }
.eyebrow {
  display: inline-block;
  color: var(--gold-2); font-size: 11px; font-weight: 500;
  padding: 0;
  letter-spacing: 0.32em; text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
}
.eyebrow::after {
  content: ""; display: block;
  width: 36px; height: 1px;
  background: var(--gold);
  margin: 14px auto 0;
}
.section-head .eyebrow::after { margin: 12px auto 0; }

/* ===== Cards grid ===== */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 4px; padding: 36px 32px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.card .num {
  font-family: "Playfair Display", serif;
  font-size: 32px; color: var(--gold); font-weight: 500;
  line-height: 1; margin-bottom: 22px;
  font-style: italic;
}
.card h3 { font-family: "Playfair Display", serif; margin-bottom: 10px; }
.card p { color: var(--ink-2); font-weight: 300; font-size: 14.5px; margin: 0; }

/* ===== Pricing ===== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 44px 38px;
  position: relative;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.price-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  background: var(--noir); color: var(--ivory);
  border-color: var(--noir);
  position: relative;
}
.price-card.featured::before {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid var(--gold); border-radius: 4px;
  pointer-events: none;
}
.price-card.featured h3 { color: var(--ivory); }
.price-card.featured .price { color: var(--gold-3); }
.price-card.featured ul li { color: rgba(247,243,233,0.75); border-color: rgba(247,243,233,0.12); }
.price-card.featured ul li::before { color: var(--gold); }
.price-card.featured p { color: rgba(247,243,233,0.6); }
.price-card .tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--noir);
  padding: 5px 16px; border-radius: 2px; font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.price-card h3 { color: var(--ink); font-family: "Playfair Display", serif; }
.price-card .price {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem; font-weight: 500; color: var(--ink);
  margin: 16px 0 8px;
  letter-spacing: -0.03em; line-height: 1;
}
.price-card .price small {
  font-size: 0.85rem; color: var(--ink-3); font-weight: 400;
  font-family: "Inter", sans-serif; letter-spacing: 0.04em;
  display: block; margin-top: 6px;
}
.price-card.featured .price small { color: rgba(247,243,233,0.55); }
.price-card p {
  font-size: 14px; color: var(--ink-2); font-weight: 300;
  line-height: 1.6; margin: 0;
}
.price-card ul { margin: 20px 0 0; padding: 0; list-style: none; }
.price-card ul li {
  padding: 12px 0; border-top: 1px solid var(--line); color: var(--ink-2);
  display: flex; align-items: start; gap: 12px; font-size: 14px; font-weight: 400;
}
.price-card ul li::before {
  content: "—"; color: var(--gold); font-weight: 600;
  flex-shrink: 0; font-family: "Playfair Display", serif;
}

/* ===== Reviews ===== */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 880px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .review-grid { grid-template-columns: 1fr; } }
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 32px;
  transition: all .35s;
  position: relative;
}
.review:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.review .stars {
  color: var(--gold); font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.review .text {
  color: var(--ink); margin: 0 0 24px;
  font-size: 15px; line-height: 1.75;
  font-family: "Playfair Display", serif;
  font-style: italic; font-weight: 400;
}
.review .who {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px; border-top: 1px solid var(--line);
}
.review .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; color: var(--noir);
  font-family: "Playfair Display", serif; font-weight: 500; font-size: 15px;
  flex-shrink: 0;
  background: var(--ivory-2); border: 1px solid var(--gold);
}
.review .who .info { flex: 1; }
.review .who .name {
  font-weight: 600; color: var(--ink); font-size: 14px; display: block;
  letter-spacing: 0.02em;
}
.review .who .date { color: var(--ink-3); font-size: 12px; }
.review .verified {
  font-size: 10px; color: var(--gold-2); font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px;
  letter-spacing: 0.18em; text-transform: uppercase;
}

/* ===== About Juan ===== */
.about {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 64px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: center;
  position: relative;
}
.about::before {
  content: ""; position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border: 1px solid var(--gold);
  opacity: 0.3; pointer-events: none;
}
@media (max-width: 760px) { .about { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; } }
.about .portrait-wrap { position: relative; max-width: 260px; justify-self: center; }
.about .portrait {
  aspect-ratio: 1; border-radius: 50%;
  background: var(--noir);
  display: grid; place-items: center;
  color: var(--gold);
  font-family: "Playfair Display", serif; font-style: italic; font-weight: 500;
  font-size: 90px;
  position: relative;
  border: 1px solid var(--gold);
  box-shadow: 0 16px 50px rgba(13,14,16,0.2);
}
.about .portrait::before {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid rgba(176,141,87,0.4); border-radius: 50%;
}
.about .badge-overlay {
  position: absolute; bottom: 8px; right: -4px;
  background: var(--noir); color: var(--gold-3);
  padding: 7px 14px; border-radius: 2px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid var(--gold);
}
.qual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
@media (max-width: 480px) { .qual-grid { grid-template-columns: 1fr; } }
.qual { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-2); font-weight: 400; }
.qual .check {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: var(--gold); font-size: 14px;
  flex-shrink: 0;
  font-family: "Playfair Display", serif; font-weight: 600;
}

/* ===== FAQ ===== */
.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  overflow: hidden;
  transition: all .25s;
}
.faq-item summary {
  padding: 26px 0; cursor: pointer;
  font-family: "Playfair Display", serif;
  font-weight: 500; font-size: 18px;
  color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: "Inter", sans-serif;
  font-size: 22px; color: var(--gold); font-weight: 300; transition: transform .3s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { color: var(--gold-2); }
.faq-item .answer {
  padding: 0 0 28px; color: var(--ink-2);
  font-weight: 300; line-height: 1.75; font-size: 15px;
}

/* ===== Footer ===== */
.footer {
  background: var(--noir);
  color: rgba(247,243,233,0.6);
  padding: 90px 0 30px;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--gold);
}
.footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; }
@media (max-width: 720px) { .footer .container { grid-template-columns: 1fr; gap: 36px; } }
.footer h4 { color: var(--gold-3); margin-bottom: 16px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.24em; font-weight: 500; font-family: "Inter", sans-serif; }
.footer a { color: rgba(247,243,233,0.65); text-decoration: none; display: block; padding: 5px 0; font-size: 14px; transition: color .2s; }
.footer a:hover { color: var(--gold-3); }
.footer p { color: rgba(247,243,233,0.55); font-weight: 300; font-size: 14px; line-height: 1.7; }
.footer .copy { margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(247,243,233,0.1); font-size: 12px; text-align: center; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,243,233,0.4); }

/* ===== Map ===== */
.map-wrap {
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
#map, #adminMap {
  height: 460px; width: 100%;
  filter: grayscale(0.85) contrast(1.05);
}
.live-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--ink-2); padding: 8px 16px; border-radius: 999px;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--line-2);
}
.live-pill .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,111,94,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(46,111,94,0); }
}
.live-pill.off { color: var(--ink-3); border-color: var(--line); }
.live-pill.off .pulse { background: var(--ink-3); animation: none; }

/* ===== Alerts ===== */
.alert {
  padding: 16px 20px; border-radius: 4px; font-size: 14px;
  margin: 18px 0; display: flex; gap: 14px; align-items: start;
  border-left: 3px solid var(--gold); background: var(--ivory-2);
  color: var(--ink-2); font-weight: 400;
}
.alert-warn { border-left-color: var(--gold); background: rgba(232,211,168,0.25); color: #6b4f1f; }
.alert-error { border-left-color: var(--crimson); background: rgba(122,42,42,0.06); color: var(--crimson); }
.alert-info { border-left-color: var(--ink); background: var(--ivory-2); color: var(--ink-2); }
.alert-success { border-left-color: var(--green); background: rgba(46,111,94,0.06); color: var(--green); }
.alert .icon { font-size: 18px; flex-shrink: 0; opacity: 0.7; }
.alert strong { font-weight: 600; color: inherit; }

/* Step error */
.step-error {
  display: none;
  background: rgba(122,42,42,0.05);
  border-left: 3px solid var(--crimson); color: var(--crimson);
  padding: 12px 16px; border-radius: 4px;
  font-size: 13px; font-weight: 500;
  margin-bottom: 16px;
  align-items: center; gap: 8px;
  letter-spacing: 0.02em;
}
.step-error.show { display: flex; animation: errorSlide 0.3s ease-out; }
@keyframes errorSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Service option cards */
.svc-option {
  display: flex; align-items: start; gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer; transition: all .25s;
  background: var(--paper);
}
.svc-option:hover { border-color: var(--gold); }
.svc-option.selected {
  border-color: var(--gold);
  background: var(--ivory-2);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.svc-option.unavailable {
  opacity: 0.55;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 8px,
    rgba(122,42,42,0.04) 8px, rgba(122,42,42,0.04) 16px
  );
}
.svc-option.unavailable .svc-title::after {
  content: " — not available for this make";
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  color: var(--crimson);
  letter-spacing: 0.02em;
  text-transform: none;
}
.svc-option input {
  margin-top: 4px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.svc-option .svc-icon {
  font-family: "Playfair Display", serif; font-size: 28px;
  color: var(--gold); font-style: italic;
  width: 44px; flex-shrink: 0;
  text-align: center;
}
.svc-option .svc-title {
  font-family: "Playfair Display", serif;
  font-weight: 500; color: var(--ink); font-size: 18px;
  letter-spacing: -0.01em;
}
.svc-option .svc-meta {
  color: var(--ink-2); font-size: 13.5px; margin-top: 4px; font-weight: 400;
}
.svc-option .svc-meta strong { color: var(--ink); font-weight: 600; }

/* ===== Admin ===== */
.admin-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 28px; }
@media (max-width: 920px) { .admin-grid { grid-template-columns: 1fr; } }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
@media (max-width: 880px) { .kpi-grid { grid-template-columns: 1fr 1fr; } }
.kpi {
  background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
  padding: 28px;
  position: relative; overflow: hidden;
  transition: all .25s;
}
.kpi:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.kpi .label { font-size: 10px; font-weight: 500; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.22em; }
.kpi .value {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem; font-weight: 500; color: var(--ink);
  margin: 8px 0 4px; line-height: 1; letter-spacing: -0.03em;
}
.kpi .sub { font-size: 13px; color: var(--ink-3); font-weight: 400; }
.kpi.featured {
  background: var(--noir); border-color: var(--noir);
}
.kpi.featured::before {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid var(--gold); border-radius: 2px; pointer-events: none;
}
.kpi.featured .label { color: var(--gold-3); }
.kpi.featured .sub { color: rgba(247,243,233,0.55); }
.kpi.featured .value { color: var(--gold-3); }

.duty-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
  padding: 28px; margin-bottom: 18px;
}

/* Makes grid (admin) */
.makes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
}
.make-chip {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink-2);
  cursor: pointer;
  text-align: center;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all .15s ease;
  user-select: none;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.make-chip:hover { border-color: var(--gold-2); color: var(--ink); }
.make-chip.on {
  background: var(--noir);
  color: var(--gold-3);
  border-color: var(--gold);
  font-weight: 600;
}
.make-chip.on::before {
  content: "✓"; color: var(--gold); font-family: "Playfair Display", serif; font-weight: 600;
}
.make-chip.saving { opacity: 0.5; pointer-events: none; }
.duty-toggle { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.switch { position: relative; width: 56px; height: 30px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; cursor: pointer; inset: 0; background: var(--ink-3); border-radius: 999px; transition: .25s; }
.switch .slider::before { position: absolute; content: ""; height: 22px; width: 22px; left: 4px; bottom: 4px; background: var(--paper); border-radius: 50%; transition: .25s; box-shadow: 0 2px 4px rgba(0,0,0,.2); }
.switch input:checked + .slider { background: var(--gold); }
.switch input:checked + .slider::before { transform: translateX(26px); }

.job-list { background: var(--paper); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.job-list .head { padding: 22px 26px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.job-list .head h3 { color: var(--ink); margin: 0; font-family: "Playfair Display", serif; }
.job-row { padding: 20px 26px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; transition: background .15s; }
.job-row:hover { background: var(--ivory-2); }
.job-row:last-child { border-bottom: none; }
.job-row .who { font-weight: 600; color: var(--ink); font-size: 15px; }
.job-row .meta { font-size: 12.5px; color: var(--ink-3); margin-top: 3px; font-weight: 400; }
.job-row .total { font-family: "Playfair Display", serif; font-weight: 500; color: var(--gold-2); font-size: 22px; letter-spacing: -0.02em; }
.job-row .badge {
  font-size: 9px; padding: 3px 9px; border-radius: 2px;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em;
  display: inline-block; margin-left: 8px; vertical-align: middle;
}
.badge-new { background: var(--gold); color: var(--noir); }
.badge-done { background: transparent; color: var(--green); border: 1px solid currentColor; }
.badge-after { background: transparent; color: var(--ink-2); border: 1px solid var(--line-2); }

/* Steps */
.steps { display: flex; gap: 0; margin-bottom: 28px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; }
.steps .s {
  flex: 1; padding: 14px 8px; text-align: center; font-weight: 500;
  color: var(--ink-3);
  border-bottom: 2px solid var(--line);
  transition: all .25s;
}
.steps .s.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.steps .s.done { color: var(--gold-2); border-bottom-color: var(--gold); }

/* Confirmation */
.confirmation { text-align: center; padding: 20px 0; }
.confirmation .check-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--noir);
  color: var(--gold);
  display: grid; place-items: center; font-size: 32px;
  margin: 0 auto 22px;
  font-family: "Playfair Display", serif; font-weight: 600;
  border: 1px solid var(--gold);
  position: relative;
  animation: pop .5s ease-out;
}
.confirmation .check-circle::before {
  content: ""; position: absolute; inset: 4px;
  border: 1px solid rgba(176,141,87,0.4); border-radius: 50%;
}
@keyframes pop {
  0% { transform: scale(.3); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.summary-row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dotted var(--line);
  font-size: 14px;
}
.summary-row:last-child {
  border-bottom: none;
  font-size: 18px; font-weight: 600; padding-top: 18px;
  color: var(--ink); border-top: 1px solid var(--ink);
  font-family: "Playfair Display", serif; letter-spacing: -0.01em;
}
.summary-row .label { color: var(--ink-3); font-weight: 400; letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; }

/* ===== Juan's Promise — handwritten warmth ===== */
.promise {
  background: var(--ivory-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 56px 64px;
  position: relative;
  text-align: center;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(184,91,63,0.05) 0%, transparent 35%),
    radial-gradient(circle at 88% 82%, rgba(176,141,87,0.08) 0%, transparent 40%);
}
.promise::before, .promise::after {
  content: ""; position: absolute; width: 28px; height: 28px;
  border: 1px solid var(--gold);
}
.promise::before { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.promise::after { bottom: 16px; right: 16px; border-left: none; border-top: none; }
@media (max-width: 720px) { .promise { padding: 36px 24px; } }

.promise .opener {
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-weight: 400;
  font-size: 1.35rem; color: var(--ink-2);
  margin-bottom: 28px; line-height: 1.6;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.promise .opener strong { color: var(--rose); font-style: normal; font-weight: 600; font-family: "Inter", sans-serif; font-size: 0.85em; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 14px; }

.beliefs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px 42px;
  text-align: left;
  max-width: 760px; margin: 32px auto 36px;
}
@media (max-width: 600px) { .beliefs { grid-template-columns: 1fr; gap: 18px; } }
.belief {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400; font-size: 16px;
  color: var(--ink); line-height: 1.55;
}
.belief .num {
  font-size: 22px; color: var(--gold);
  font-weight: 500; line-height: 1.3;
  font-feature-settings: "lnum";
}

.sign-off {
  margin-top: 28px;
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
}
.sign-off .sig {
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: 48px; line-height: 1;
  color: var(--rose);
  letter-spacing: 0.01em;
  transform: rotate(-3deg);
  display: inline-block;
  margin-bottom: 4px;
}
.sign-off .caption {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500;
}

/* Signature inline on portrait card */
.about .signature-line {
  margin-top: 24px;
  display: flex; align-items: center; gap: 14px;
  color: var(--ink-3); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.about .signature-line::before {
  content: ""; height: 1px; width: 40px; background: var(--gold);
}
.about .signature-line .name {
  font-family: "Caveat", cursive;
  font-size: 32px; color: var(--gold-2);
  text-transform: none; letter-spacing: 0;
  transform: rotate(-2deg); display: inline-block;
  line-height: 1; font-weight: 600;
}

/* Refined "warmth" chip — used sparingly */
.warmth-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rose-faint);
  color: var(--rose);
  font-size: 11px; font-weight: 500;
  padding: 6px 14px; border-radius: 999px;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid rgba(184,91,63,0.2);
}

/* ===== Dallas skyline — full-color sunset SVG ===== */
.skyline-svg { display: block; width: 100%; height: 100%; }

/* Hero backdrop — full color but darkened so hero text reads */
.hero .skyline-backdrop {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 340px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  filter: brightness(0.7) saturate(0.9);
}
.hero .skyline-backdrop::after {
  /* Dark veil from top so hero text stays readable */
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 60%;
  background: linear-gradient(180deg, var(--noir) 0%, rgba(13,14,16,0.4) 60%, transparent 100%);
}
@media (max-width: 720px) {
  .hero .skyline-backdrop { height: 220px; opacity: 0.45; }
}

/* Dedicated skyline band — full color, the showpiece */
.skyline-band {
  background: var(--noir);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gold);
}
.skyline-band .container { position: relative; z-index: 2; text-align: center; padding-bottom: 36px; }
.skyline-band .eyebrow { color: var(--gold-3); }
.skyline-band .eyebrow::after { background: var(--gold); }
.skyline-band h2 { color: var(--ivory); margin: 0 0 12px; }
.skyline-band p {
  color: rgba(247,243,233,0.65); max-width: 540px; margin: 0 auto;
  font-weight: 300; font-size: 1.05rem;
}
.skyline-band .skyline-wrap {
  margin-top: 44px;
  position: relative;
  aspect-ratio: 1280 / 490;
  width: 100%;
}
.skyline-band .skyline-wrap .skyline-svg {
  position: absolute; inset: 0;
}
@media (max-width: 720px) {
  .skyline-band { padding-top: 56px; }
  .skyline-band .skyline-wrap { margin-top: 28px; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Misc */
.muted { color: var(--ink-3); }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 6px; } .mt-2 { margin-top: 14px; } .mt-3 { margin-top: 22px; }
.hidden { display: none !important; }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  section.tight { padding: 48px 0; }
  .section-head { margin-bottom: 44px; }

  .topbar { font-size: 11px; padding: 10px 0; letter-spacing: 0.1em; }
  .topbar .container { gap: 10px; }

  .site-header .container { padding-top: 16px; padding-bottom: 16px; }
  .logo .mark { width: 44px; height: 44px; font-size: 20px; }
  .logo .name { font-size: 18px; }
  .logo .tag { font-size: 9px; letter-spacing: 0.2em; }
  .nav .call-btn { padding: 11px 18px; font-size: 10px; letter-spacing: 0.14em; }

  .hero h1 { font-size: clamp(1.85rem, 8.5vw, 2.3rem); }
  .hero .lede { font-size: 1rem; }
  .hero-eyebrow { font-size: 10px; margin-bottom: 20px; letter-spacing: 0.24em; }
  .hero-eyebrow::after { width: 22px; }
  .hero .trust-row { gap: 8px; margin-top: 24px; }
  .hero .chip { font-size: 11px; padding: 7px 13px; }
  .activity-strip { margin-top: 30px; padding: 14px 0; font-size: 11px; }

  .hero .btn-lg { padding: 16px 26px; font-size: 11px; flex: 1 1 100%; }

  .quote-card { padding: 28px 22px; }
  .quote-card::before, .quote-card::after { width: 14px; height: 14px; top: 8px; left: 8px; }
  .quote-card::after { top: auto; left: auto; bottom: 8px; right: 8px; }
  .steps { font-size: 9px; }
  .steps .s { padding: 11px 4px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field select, .field input { padding: 13px 15px; font-size: 16px; }
  .svc-option { padding: 18px; gap: 14px; }
  .svc-option .svc-icon { font-size: 22px; width: 36px; }
  .svc-option .svc-title { font-size: 16px; }

  .stats-strip { padding: 56px 0; }
  .stats-grid { gap: 32px; }
  .stat { padding: 0; }
  .stat .num { font-size: clamp(2.2rem, 10vw, 2.8rem); }
  .stat .label { font-size: 10px; letter-spacing: 0.18em; margin-top: 10px; }

  .price-grid { gap: 22px; }
  .price-card { padding: 36px 28px; }
  .price-card .price { font-size: 2.6rem; }

  .about { padding: 32px 24px; gap: 28px; }
  .about .portrait-wrap { max-width: 180px; }
  .about .portrait { font-size: 60px; }
  .about .badge-overlay { font-size: 9px; padding: 5px 11px; }
  .qual-grid { grid-template-columns: 1fr; gap: 12px; }

  .review { padding: 28px 24px; }
  .review .text { font-size: 14.5px; }

  .faq-item summary { padding: 22px 0; font-size: 16px; }
  .faq-item .answer { font-size: 14px; padding-bottom: 24px; }

  #map, #adminMap { height: 340px; }

  .footer { padding: 60px 0 24px; }
  .footer .copy { margin-top: 40px; }

  .kpi { padding: 22px; }
  .kpi .value { font-size: 1.9rem; }
  .duty-card { padding: 22px; }
  .job-row { padding: 18px 22px; grid-template-columns: 1fr; }
  .job-row .total { font-size: 18px; justify-self: start; }
  .job-list .head { padding: 18px 22px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.7rem; }
  .quote-card { padding: 22px 16px; }
}

@media (hover: none) {
  .card:hover, .price-card:hover, .review:hover, .btn-primary:hover, .kpi:hover { transform: none; }
}
