/* ATX Home Rescue — Homepage-specific styles */

/* ---------- Announcement banner ---------- */
.announce {
  background: var(--navy-ink);
  color: #fff;
  font-size: 13px;
  padding: 7px 0;
  text-align: center;
  letter-spacing: .03em;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.announce b { color: var(--star); }

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 72px 0 90px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 400px at 85% -10%, rgba(239,106,42,.22), transparent 60%),
    radial-gradient(800px 300px at 10% 110%, rgba(255,214,107,.08), transparent 60%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .25;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .45 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald';
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 12px;
  color: var(--star);
  font-weight: 600;
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--star); }
.eyebrow-dark { color: var(--orange); }
.eyebrow-dark::before { background: var(--orange); }

.hero h1 {
  font-family: 'Anton'; font-weight: 400;
  font-size: clamp(48px, 5.8vw, 88px);
  line-height: 1.02;
  margin: 0 0 28px;
  letter-spacing: .005em;
  padding-bottom: 6px;
  transition: opacity .3s ease;
}
.hero h1 .hi   { color: var(--orange); display: inline-block; }
.hero h1 .strike {
  text-decoration: line-through;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--orange);
  color: #a8b7c7;
}
.hero p.lede { font-size: 19px; line-height: 1.5; color: #cfd9e3; max-width: 520px; margin: 0 0 28px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-stats { display: flex; gap: 28px; color: #aebcc9; font-size: 13px; flex-wrap: wrap; }
.hero-stats b { display: block; font-family: 'Anton'; color: #fff; font-size: 26px; line-height: 1; margin-bottom: 3px; letter-spacing: .02em; }

/* ---------- Hero chat card ---------- */
.chat {
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
  overflow: hidden;
  transform: rotate(.4deg);
}
.chat .chat-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #fff, #faf6ed);
  border-bottom: 1px solid var(--rule);
}
.chat .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-hot));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: 'Anton'; font-size: 17px;
  box-shadow: inset 0 0 0 2px #fff;
}
.chat .chat-head .name { font-weight: 800; font-size: 14px; line-height: 1.1; }
.chat .chat-head .name small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 11px; margin-top: 2px; letter-spacing: .04em; }
.chat .chat-body { padding: 16px; background: #faf6ed; min-height: 200px; }
.chat .bubble { max-width: 85%; }
.chat .chat-input {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; background: #fff;
  border-top: 1px solid var(--rule);
}
.chat .chat-input input {
  flex: 1; border: none; outline: none;
  font-size: 14px; font-family: inherit; background: transparent;
}
.chat .chat-input .icons { display: flex; gap: 8px; color: var(--ink-soft); }
.chat .chat-input .send {
  background: var(--orange); color: #fff; border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.chat .chat-foot {
  padding: 8px 14px; font-size: 11px; color: var(--ink-soft);
  border-top: 1px solid var(--rule); background: #fff;
  display: flex; align-items: center; gap: 8px;
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--cream-2);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}
.trust-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--ink); }
.trust-item svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--orange); }

/* ---------- Section shells ---------- */
.section { padding: 84px 0; }
.section.tight { padding: 60px 0; }
.section.cream2 { background: var(--cream-2); }
.section.dark { background: var(--navy-deep); color: #fff; }
.section.navy { background: var(--navy); color: #fff; }

.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 40px; }
.sec-head h2 {
  font-family: 'Anton'; font-weight: 400;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: .95; margin: 0;
  letter-spacing: .005em; text-transform: uppercase; max-width: 760px;
}
.sec-head h2 .hi { color: var(--orange); }
.sec-head .sub { max-width: 460px; font-size: 16px; color: var(--ink-soft); line-height: 1.5; }
.section.dark .sec-head .sub { color: #b8c4d0; }

/* ---------- ZIP band ---------- */
.zipband {
  background: #fff;
  border-top: 4px solid var(--orange);
  border-bottom: 1px solid var(--rule);
  padding: 32px 0;
}
.zip-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.zip-row h3 { font-family: 'Anton'; font-size: 32px; line-height: 1; margin: 0; letter-spacing: .01em; text-transform: uppercase; }
.zip-row h3 .hi { color: var(--orange); }
.zip-row p { color: var(--ink-soft); font-size: 14px; margin: 4px 0 0; max-width: 360px; }
.zip-form { display: flex; gap: 8px; margin-left: auto; align-items: center; flex-wrap: wrap; }
.zip-input {
  border: 2px solid var(--ink); padding: 10px 16px;
  font-size: 18px; font-weight: 700;
  font-family: 'JetBrains Mono'; letter-spacing: .1em;
  width: 140px; outline: none; background: var(--cream);
}
.zip-input:focus { border-color: var(--orange); }
.zips { font-size: 12px; color: var(--ink-soft); margin-top: 10px; width: 100%; }
.zips code { background: var(--cream); padding: 2px 6px; margin-right: 4px; border: 1px solid var(--rule); font-family: 'JetBrains Mono'; }

/* ---------- Category tabs ---------- */
.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.cat {
  padding: 8px 16px; border: 2px solid var(--ink); background: transparent;
  font-weight: 700; font-size: 13px; cursor: pointer;
  letter-spacing: .05em; text-transform: uppercase;
  font-family: inherit; transition: all .15s;
}
.cat:hover { background: var(--ink); color: #fff; }
.cat.on { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ---------- Package cards ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pkg {
  background: #fff; border: 1px solid var(--rule);
  overflow: hidden; position: relative;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.pkg:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -16px rgba(20,30,50,.25); }
.pkg-img {
  aspect-ratio: 16/9; background: var(--navy);
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.pkg-img::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(20,41,63,.75), rgba(20,41,63,.85)),
    repeating-linear-gradient(45deg, #2a4a6a 0 10px, #1e3a57 10px 20px);
}
.pkg-img .badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--orange); color: #fff;
  padding: 4px 10px; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
}
.pkg-img .stock {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-family: 'JetBrains Mono'; font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
}
.pkg-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.pkg-emoji { font-size: 22px; margin-bottom: 6px; line-height: 1; }
.pkg h3 { font-family: 'Anton'; font-size: 22px; margin: 0 0 6px; letter-spacing: .01em; text-transform: uppercase; line-height: 1; }
.pkg .desc { font-size: 14px; color: var(--ink-soft); line-height: 1.45; flex: 1; margin-bottom: 14px; }
.pkg .meta { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.pkg .price { font-family: 'Anton'; font-size: 38px; color: var(--orange); line-height: 1; letter-spacing: .01em; }
.pkg .dur { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Hourly blocks ---------- */
.hourly { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.block { padding: 24px; background: #fff; border: 1px solid var(--rule); position: relative; }
.block.pop { border: 2px solid var(--orange); }
.block .pop-tag {
  position: absolute; top: -10px; left: 20px;
  background: var(--orange); color: #fff;
  padding: 2px 10px; font-size: 10px; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
}
.block h4 { font-family: 'Anton'; font-size: 22px; margin: 0 0 4px; letter-spacing: .01em; text-transform: uppercase; line-height: 1; }
.block .price { font-family: 'Anton'; font-size: 48px; color: var(--orange); line-height: 1; margin: 10px 0 4px; letter-spacing: .02em; }
.block .hrs { font-family: 'JetBrains Mono'; font-size: 11px; color: var(--ink-soft); letter-spacing: .1em; text-transform: uppercase; }
.block .note { font-size: 13px; color: var(--ink-soft); margin: 10px 0 14px; }

/* ---------- How it works ---------- */
.how { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; }
.step .num {
  font-family: 'Anton'; font-size: 80px; line-height: .8;
  color: var(--orange); opacity: .85; letter-spacing: .02em; margin-bottom: 8px;
}
.step h4 { font-family: 'Anton'; font-size: 24px; margin: 0 0 8px; text-transform: uppercase; letter-spacing: .01em; line-height: 1; }
.step p { color: #b8c4d0; font-size: 14px; margin: 0; line-height: 1.55; }

/* ---------- Gallery (before/after) ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.shot {
  background: var(--navy); overflow: hidden; position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
}
.shot .half { aspect-ratio: 3/4; position: relative; background-size: cover; background-position: center; }
.shot .half.before { background: linear-gradient(180deg, #3a4f65, #1e3142); }
.shot .half.after  { background: linear-gradient(180deg, #e5ddc9, #c9bfa5); }
.shot .half .lbl {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,.55); color: #fff;
  font-family: 'JetBrains Mono'; font-size: 10px;
  padding: 3px 8px; letter-spacing: .15em; text-transform: uppercase;
}
.shot .half.after .lbl { background: var(--orange); }
.shot .half .stock-note {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center; padding: 10px;
  color: rgba(255,255,255,.75); font-family: 'JetBrains Mono'; font-size: 10px; letter-spacing: .1em;
}
.shot-foot {
  grid-column: 1 / -1; padding: 14px 16px; background: var(--cream);
  display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--rule);
}
.shot-foot .pill { background: var(--navy); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; letter-spacing: .08em; text-transform: uppercase; }
.shot-foot .loc { font-size: 13px; color: var(--ink-soft); }
.shot-foot .stars { margin-left: auto; color: var(--orange); font-size: 13px; letter-spacing: 2px; }

/* ---------- Testimonials ---------- */
.quote-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: #fff; padding: 28px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 8px 24px -16px rgba(20,30,50,.25);
}
.quote .stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.quote p { font-size: 16px; line-height: 1.5; margin: 0 0 14px; font-weight: 500; }
.quote cite { font-style: normal; font-size: 13px; color: var(--ink-soft); font-weight: 600; letter-spacing: .04em; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-top: 1px solid var(--rule); padding: 20px 0; font-size: 16px; }
.faq details:last-of-type { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer; list-style: none;
  font-family: 'Anton'; font-size: 22px; letter-spacing: .01em; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; margin-left: auto; font-family: 'Anton'; font-size: 32px; color: var(--orange); line-height: .7; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); line-height: 1.55; margin: 12px 0 0; }

/* ---------- Big CTA ---------- */
.bigcta {
  background: var(--navy); color: #fff;
  position: relative; overflow: hidden;
  padding: 100px 0; text-align: center;
}
.bigcta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 300px at 50% 120%, rgba(239,106,42,.28), transparent 70%);
}
.bigcta .container { position: relative; z-index: 2; }
.bigcta h2 {
  font-family: 'Anton'; font-size: clamp(48px, 6vw, 86px);
  margin: 0 0 16px; line-height: .95; letter-spacing: .01em; text-transform: uppercase;
}
.bigcta h2 .hi { color: var(--orange); }
.bigcta p { color: #cfd9e3; font-size: 18px; max-width: 580px; margin: 0 auto 28px; }
.bigcta .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Floating Ranger button ---------- */
.float-agent {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  background: var(--navy); color: #fff;
  border-radius: 100px; padding: 12px 20px 12px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 14px 32px -8px rgba(0,0,0,.35);
  cursor: pointer; font-weight: 700; font-size: 14px;
  border: none; font-family: inherit; transition: all .2s;
}
.float-agent:hover { background: var(--orange); transform: translateY(-2px); }
.float-agent .av {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Anton'; font-size: 15px; color: #fff;
}
.float-agent:hover .av { background: #fff; color: var(--orange); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid  { grid-template-columns: 1fr 1fr; }
  .pkg-grid   { grid-template-columns: 1fr 1fr; }
  .hourly     { grid-template-columns: 1fr 1fr; }
  .how        { grid-template-columns: 1fr 1fr; }
  .gallery    { grid-template-columns: 1fr 1fr; }
  .quote-row  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-grid  { grid-template-columns: 1fr; }
  .pkg-grid   { grid-template-columns: 1fr; }
  .hourly     { grid-template-columns: 1fr; }
  .how        { grid-template-columns: 1fr; }
  .gallery    { grid-template-columns: 1fr; }
  .quote-row  { grid-template-columns: 1fr; }
  .sec-head   { flex-direction: column; align-items: flex-start; }
  .hero       { padding: 48px 0 60px; }
  .section    { padding: 60px 0; }
}
