/* ============================================================
   NQA DETAILS — CONTACT / QUOTE LANDER
   ------------------------------------------------------------
   Page components for contact.html.
   Palette, typography, buttons, nav, footer, fields and motion all
   live in css/theme.css, which MUST be loaded before this file.
   ============================================================ */

/* ============================================================
   HERO — copy on the left, quote card on the right
   ============================================================ */
.hero {
  position: relative;
  padding: 66px 0 78px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -280px; left: -140px;
  width: 950px; height: 900px;
  background: radial-gradient(circle at 50% 50%, rgba(200, 50, 63, .24) 0%, transparent 62%);
  pointer-events: none;
  animation: hero-breathe 14s ease-in-out infinite alternate;
}
@keyframes hero-breathe {
  from { transform: scale(1); opacity: .82; }
  to   { transform: scale(1.12) translate(24px, 20px); opacity: 1; }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 90% 70% at 40% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 40% 40%, #000 20%, transparent 78%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 54px;
  align-items: center;
}
.hero-copy h1 { margin: 16px 0 0; }
.hero-lead { font-size: 1.09rem; color: #bcc0c9; margin: 20px 0 0; max-width: 52ch; }
.hero-copy .trust { margin-top: 26px; }
.hero-copy .btn-row { justify-content: flex-start; margin-top: 30px; }

/* ---------- the quote card ---------- */
.formcard {
  position: relative;
  background: linear-gradient(172deg, #1b1b22, #121217);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  padding: 34px 34px 30px;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, .5),
    0 30px 90px rgba(0, 0, 0, .75),
    0 0 80px rgba(158, 27, 43, .14);
  overflow: hidden;
}
.formcard::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-bright) 46%, var(--chrome));
}
.fc-flag {
  display: inline-block;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-bright);
  background: rgba(200, 50, 63, .13);
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  padding: 6px 15px;
  margin-bottom: 14px;
}
.formcard h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 8px; }
.fc-sub { font-size: .92rem; color: var(--muted); margin-bottom: 22px; }
.fc-fine {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin: 18px 0 0;
  padding: 0;
}
.fc-fine li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: var(--muted);
}
.fc-fine li::before {
  content: "✓";
  color: var(--brand-bright);
  font-weight: 800;
  font-size: .7rem;
}
.fc-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: .87rem;
  color: var(--muted);
}
.fc-note a { color: var(--brand-bright); font-weight: 700; }

/* ============================================================
   VALUE BAND
   ============================================================ */
.dealband {
  position: relative;
  background: linear-gradient(100deg, var(--brand-deep), var(--brand) 55%, #7d1523);
  overflow: hidden;
}
.dealband::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.dealband .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: 34px 0;
}
.db-copy { flex: 1 1 420px; }
.db-tag {
  display: inline-block;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #ffd6da;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 12px;
}
.dealband h3 { color: #fff; font-size: clamp(1.4rem, 3vw, 2.1rem); }
.dealband h3 .now {
  font-weight: 700;
  color: #fff;
  margin-left: 10px;
}
.dealband p { color: #f0cfd3; font-size: .93rem; margin-top: 8px; max-width: 56ch; }

/* ============================================================
   INTRO SPLIT
   ============================================================ */
.intro-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 54px; align-items: center; }
.intro-copy h2 { margin: 14px 0 18px; }
.intro-copy p { margin-bottom: 14px; }
.intro-copy .btn-row { justify-content: flex-start; margin-top: 28px; }
.intro-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.intro-media img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }

/* ============================================================
   SERVICE CARDS (lander variant — priced by tier)
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc {
  position: relative;
  padding: 34px 30px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(168deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .016));
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s ease;
}
.svc:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: var(--brand-line); }
.svc.featured {
  border-color: var(--brand-line);
  box-shadow: var(--shadow-md), 0 0 60px rgba(158, 27, 43, .18);
}
.svc-flag {
  position: absolute;
  top: -12px; left: 30px;
  background: linear-gradient(180deg, var(--chrome-soft), var(--chrome-deep));
  color: var(--chrome-ink);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .6);
}
.svc h3 { font-size: 1.4rem; margin-bottom: 16px; }
.svc ul { list-style: none; flex: 1; }
.svc li {
  position: relative;
  padding: 8px 0 8px 27px;
  font-size: .91rem;
  color: var(--ink-soft);
}
.svc li::before {
  content: "";
  position: absolute;
  left: 0; top: .95em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-lift);
}
.svc .price {
  margin: 18px 0 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--fd);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .86rem;
  color: var(--muted);
}
.svc .price strong { color: #fff; font-size: 1.75rem; font-weight: 600; display: block; margin-top: 2px; }
.svc .price .tiers { display: block; margin-top: 7px; font-family: var(--fb); font-size: .76rem; letter-spacing: .02em; text-transform: none; color: var(--muted); }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature {
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(168deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .016));
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--brand-line); }
.f-ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(200, 50, 63, .22), rgba(200, 50, 63, .04));
  border: 1px solid var(--brand-line);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition: transform .35s var(--ease);
}
.feature:hover .f-ico { transform: translateY(-3px) rotate(-4deg); }
.f-ico svg { width: 23px; height: 23px; fill: var(--brand-bright); }
.feature h3 { font-size: 1.18rem; margin-bottom: 9px; }
.feature p { font-size: .89rem; color: var(--muted); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  position: relative;
  padding: 34px 28px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(168deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
}
.step .s-num {
  position: absolute;
  top: -20px; left: 26px;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--brand-lift), var(--brand-deep));
  color: #fff;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 10px 26px rgba(158, 27, 43, .5);
}
.step h3 { font-size: 1.22rem; margin: 12px 0 10px; }
.step p { font-size: .92rem; color: var(--muted); }

/* ============================================================
   PROOF GRID
   ============================================================ */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.proof-grid a {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.proof-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(158, 27, 43, .6));
  opacity: 0;
  transition: opacity .35s ease;
}
.proof-grid a:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.proof-grid a:hover::after { opacity: 1; }
.proof-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.proof-grid a:hover img { transform: scale(1.07); }

/* ============================================================
   AREAS + HOURS
   ============================================================ */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.info-card {
  padding: 34px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(168deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .016));
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s ease;
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--brand-line); }
.info-card h3 { font-size: 1.35rem; margin-bottom: 18px; }
.area-list { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; }
.area-list li {
  font-size: .84rem;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(200, 50, 63, .1);
  border: 1px solid var(--brand-line);
  color: var(--ink);
}
.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .94rem;
  color: var(--ink-soft);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:last-child { font-weight: 700; color: #fff; white-space: nowrap; }
.hours-list li.closed span:last-child { color: var(--muted); font-weight: 500; }
.info-card .muted { color: var(--muted); }
.info-card .muted a { color: var(--brand-bright); font-weight: 700; }

/* what we need on arrival */
.need-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 34px auto 0;
}
.need {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--brand-line);
  background: rgba(200, 50, 63, .07);
}
.need svg { width: 28px; height: 28px; fill: var(--brand-bright); flex-shrink: 0; margin-top: 2px; }
.need h4 {
  font-family: var(--fb);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
  margin-bottom: 5px;
  color: #fff;
}
.need p { font-size: .87rem; color: var(--muted); margin: 0; }

/* ============================================================
   SHARED SECTION CHROME
   ============================================================ */
.section { padding: 84px 0; position: relative; }
.section.tight { padding: 54px 0; }
.section-head { max-width: 780px; margin-bottom: 44px; }
.section-head h2 { margin: 14px 0 12px; }
.section-head p { font-size: 1.02rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

.svc-grid > *, .why-grid > *, .steps-grid > *, .proof-grid > *,
.info-grid > *, .hero-inner > *, .intro-grid > *, .need-band > * { min-width: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(168deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item[open] { border-color: var(--brand-line); box-shadow: var(--shadow-md); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 21px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--fd);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.05rem;
  color: var(--ink);
  transition: color .2s ease;
}
.faq-item summary:hover { color: var(--brand-bright); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "＋";
  color: var(--brand-bright);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item .faq-body {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: .94rem;
  animation: faq-in .35s var(--ease);
}
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}

@media (max-width: 880px) {
  .hero { padding: 40px 0 52px; }
  .hero-inner, .intro-grid, .info-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid { grid-template-columns: 1fr; gap: 34px; }
  .section { padding: 60px 0; }
  .formcard { padding: 28px 24px 26px; }
  .dealband .wrap { padding: 28px 0; }
}

@media (max-width: 620px) {
  /* badges and flags sit at 9–10px on desktop; lift them to stay readable */
  .fc-flag, .db-tag, .svc-flag { font-size: .7rem; }
  .svc .price .tiers { font-size: .8rem; }
  .fc-fine li { font-size: .8rem; }

  .section { padding: 48px 0; }
  .section-head { margin-bottom: 30px; }
  .why-grid, .proof-grid { grid-template-columns: 1fr; }
  .need-band { grid-template-columns: 1fr; }
  .hero-copy .btn-row, .intro-copy .btn-row { justify-content: center; }
  .info-card { padding: 28px 22px; }
  .faq-item summary { padding: 17px 20px; font-size: .97rem; }
  .faq-item .faq-body { padding: 0 20px 20px; }
}
