/* ============================================================
   JunkRoundup — Austin Junk Removal
   Brand palette: Texas burnt orange + deep navy + warm cream
   ============================================================ */

:root {
  /* Brand palette — pulled from the JunkRoundup logo */
  --orange: #C2622B;        /* tassel burnt-orange (CTAs) */
  --orange-dark: #9E4A1B;
  --orange-soft: #E0995A;
  --navy: #1B2A38;          /* wordmark navy (headings / dark UI) */
  --navy-soft: #34465A;
  --leather: #8A572C;       /* cowboy-hat saddle brown */
  --leather-dark: #6C401F;
  --rope: #C3A468;          /* lasso rope tan */
  --rope-soft: #DBC79B;
  --cream: #F4F0E4;         /* badge / paper cream */
  --cream-2: #ECE6D6;
  --green: #2F7D4E;
  --ink: #23282E;
  --muted: #5E6B76;
  --line: #DDD5C0;
  --white: #ffffff;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(27, 42, 56, .08);
  --shadow: 0 12px 30px rgba(27, 42, 56, .12);
  --shadow-lg: 0 24px 60px rgba(27, 42, 56, .22);
  --container: 1160px;
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-western: 'Rye', 'Poppins', serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  /* faint paper grain to match the logo's textured backdrop */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--navy); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}
.container--narrow { max-width: 780px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  padding: .8em 1.5em;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(199, 83, 36, .35);
}
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(199, 83, 36, .42); }
.btn--ghost { background: var(--cream-2); color: var(--navy); }
.btn--ghost:hover { background: #e9dfcd; }
.btn--outline { background: transparent; color: var(--white); box-shadow: inset 0 0 0 2px rgba(255,255,255,.6); }
.btn--outline:hover { background: rgba(255,255,255,.12); }
.btn--lg { font-size: 1.1rem; padding: 1em 1.8em; }
.btn--sm { font-size: .9rem; padding: .6em 1.1em; }
.btn--block { width: 100%; }

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--navy);
  color: #dfe7ef;
  font-size: .82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .5rem 22px;
  flex-wrap: wrap;
}
.topbar__sep { opacity: .4; }
.topbar__highlight { color: var(--orange-soft); font-weight: 700; }

/* ===================== HEADER ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 240, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.header.is-stuck { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .7rem 22px;
}
.logo { display: flex; align-items: center; gap: .65rem; }
.logo__mark { display: block; height: 50px; width: auto; filter: drop-shadow(0 2px 4px rgba(27,42,56,.18)); }
.logo__text { font-family: var(--font-western); font-weight: 400; font-size: 1.35rem; color: var(--navy); letter-spacing: .01em; line-height: 1; }
.logo__accent { color: var(--orange); }
.logo--footer .logo__mark { height: 46px; }

.nav { display: flex; gap: 1.4rem; margin-left: auto; }
.nav__link { font-weight: 500; color: var(--navy-soft); font-size: .96rem; position: relative; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--orange); transition: width .2s ease;
}
.nav__link:hover { color: var(--orange); }
.nav__link:hover::after { width: 100%; }

.header__cta { display: flex; align-items: center; gap: .9rem; }
.header__phone {
  display: flex; align-items: center; gap: .4rem;
  font-weight: 700; color: var(--navy); font-family: var(--font-head); font-size: .95rem;
}
.header__phone:hover { color: var(--orange); }
.header__phone svg { color: var(--orange); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===================== HERO ===================== */
/* overflow-x: clip stops any sideways scroll from the bg glow while still
   letting the trustbar overhang downward into the next section */
.hero { position: relative; overflow-x: clip; padding-top: 3rem; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 85% -5%, rgba(195,164,104,.38), transparent 60%),
    radial-gradient(700px 600px at -5% 110%, rgba(138,87,44,.12), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  z-index: -1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 2.5rem;
}
.badge {
  display: inline-block;
  font-weight: 600; font-size: .85rem;
  padding: .4em 1em; border-radius: 999px;
  margin-bottom: 1.2rem;
}
.badge--light { background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); border: 1.5px solid var(--rope-soft); }

.hero__title { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.02em; }
.hero__sub { font-size: 1.15rem; color: var(--muted); margin: 1.2rem 0 1.8rem; max-width: 33ch; }
.hero__sub strong { color: var(--navy); }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__trust { list-style: none; display: flex; gap: 1.4rem; flex-wrap: wrap; margin-top: 1.6rem; font-weight: 600; font-size: .92rem; color: var(--navy-soft); }

/* Hero logo art */
.hero__art {
  display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
  padding: 1.5rem 0 1rem;
}
.hero__logowrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero__halo {
  position: absolute; top: 50%; left: 50%;
  width: min(430px, 116%); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.85) 0%, rgba(255,255,255,.35) 45%, transparent 70%);
  z-index: 0;
}
.hero__halo::before {
  content: ""; position: absolute; inset: 6%;
  border-radius: 50%;
  border: 3px dotted var(--rope);
  opacity: .55;
  animation: spin 90s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero__logo {
  position: relative; z-index: 1;
  width: min(380px, 78%); height: auto;
  filter: drop-shadow(0 18px 32px rgba(27,42,56,.22));
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero__ribbon {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-western); font-size: .95rem; color: var(--leather);
  background: var(--white);
  border: 1.5px solid var(--rope);
  border-radius: 999px;
  padding: .45em 1.4em;
  box-shadow: var(--shadow-sm);
}
.hero__ribbon span { color: var(--rope); font-size: .75em; }

/* Trust bar */
.trustbar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; text-align: center;
  background: var(--white);
  border: 1.5px solid var(--rope-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem 1rem;
  margin-bottom: -2.2rem;
  position: relative; z-index: 2;
}
.trustbar__item strong { display: block; font-family: var(--font-western); font-weight: 400; font-size: 1.4rem; color: var(--orange); }
.trustbar__item span { font-size: .85rem; color: var(--muted); }

/* ===================== SECTIONS ===================== */
.section { padding: 5.5rem 0; }
.section--alt {
  background: var(--cream-2);
  /* dotted "rope" edges echoing the badge's dotted ring */
  border-top: 4px dotted var(--rope-soft);
  border-bottom: 4px dotted var(--rope-soft);
}
.section__head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.eyebrow {
  display: inline-block; font-family: var(--font-western); font-weight: 400;
  font-size: .95rem; letter-spacing: .04em;
  color: var(--leather); margin-bottom: .8rem;
}
.eyebrow::before, .eyebrow::after { content: "★"; color: var(--rope); font-size: .8em; margin: 0 .5em; vertical-align: 2px; }
.section__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; }
.section__lead { color: var(--muted); font-size: 1.1rem; margin-top: 1rem; }

.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { border-color: var(--rope); }

/* Services */
.service { text-align: left; }
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service__icon {
  width: 58px; height: 58px; display: grid; place-items: center;
  font-size: 1.7rem; background: var(--cream-2); border-radius: 50%;
  border: 2px dotted var(--rope); margin-bottom: 1rem;
}
.service:hover .service__icon { border-style: solid; border-color: var(--orange); }
.service h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.service p { color: var(--muted); font-size: .96rem; }

/* Steps */
.steps { position: relative; align-items: start; }
.step { text-align: center; padding: 1rem; position: relative; }
.step__num {
  width: 40px; height: 40px; margin: 0 auto .8rem;
  display: grid; place-items: center;
  background: var(--orange); color: #fff; font-family: var(--font-head);
  font-weight: 800; border-radius: 50%; font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(199,83,36,.35);
}
.step__icon { font-size: 2.6rem; margin-bottom: .6rem; }
.step h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.step p { color: var(--muted); }
.step__connector { display: none; }
.how__cta { text-align: center; margin-top: 2.5rem; }

/* Why us */
.why { max-width: 720px; margin: 0 auto; }
.why__content { text-align: center; }
.why__list { list-style: none; margin: 1.8rem 0; display: grid; gap: 1.1rem; text-align: left; }
.why__list li {
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--rope);
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.why__list strong { color: var(--navy); display: block; }

/* Pricing */
.price { text-align: center; position: relative; }
.price:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price--popular { border: 2px solid var(--orange); box-shadow: var(--shadow); }
.price__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: .75rem; padding: .35em 1em; border-radius: 999px; white-space: nowrap;
}
.price__truck {
  height: 12px; background: var(--cream-2); border-radius: 999px;
  overflow: hidden; margin-bottom: 1.2rem;
}
.price__truck span { display: block; height: 100%; background: linear-gradient(90deg, var(--orange-soft), var(--orange)); }
.price h3 { font-size: 1.15rem; }
.price__range { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: var(--orange); margin: .4rem 0; }
.price__range small { font-size: 1rem; color: var(--muted); }
.price__desc { color: var(--muted); font-size: .9rem; margin-bottom: 1.2rem; min-height: 2.6em; }
.pricing__note { text-align: center; margin-top: 2rem; color: var(--navy-soft); font-weight: 600; }

/* Our promise */
.promise { text-align: left; }
.promise h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.promise p { color: var(--muted); font-size: .96rem; }

/* Areas */
.areas { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.areas__content .section__title { text-align: left; }
.areas__list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem 1rem; margin: 1.6rem 0; }
.areas__list li { position: relative; padding-left: 1.4rem; color: var(--navy-soft); font-weight: 500; font-size: .95rem; }
.areas__list li::before { content: "📍"; position: absolute; left: 0; font-size: .85rem; }
.areas__note { color: var(--muted); }
.linkbtn { background: none; border: none; color: var(--orange); font-weight: 700; cursor: pointer; text-decoration: underline; font-size: 1rem; font-family: inherit; padding: 0; }
.areas__map {
  aspect-ratio: 1/1; max-width: 360px; margin: 0 auto; width: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(199,83,36,.10), transparent 70%),
    repeating-radial-gradient(circle at 50% 50%, var(--cream-2) 0 28px, var(--cream) 28px 56px);
  display: grid; place-items: center; position: relative; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.areas__pin { font-size: 3rem; animation: bob 2.4s ease-in-out infinite; }
.areas__maplabel { position: absolute; bottom: 22%; font-family: var(--font-head); font-weight: 700; color: var(--navy); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* FAQ */
.faq { display: grid; gap: .8rem; }
.faq__item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 0 1.3rem; box-shadow: var(--shadow-sm);
}
.faq__item summary {
  cursor: pointer; font-family: var(--font-head); font-weight: 600; color: var(--navy);
  padding: 1.1rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--orange); font-weight: 400; transition: transform .2s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding-bottom: 1.2rem; }

/* Final CTA */
.finalcta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(600px 300px at 80% 20%, rgba(224,153,90,.25), transparent),
    linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff; text-align: center;
}
.finalcta__badge {
  position: absolute; right: -70px; bottom: -90px;
  width: 380px; height: auto;
  opacity: .14; transform: rotate(-12deg);
  filter: grayscale(35%);
  pointer-events: none;
}
.finalcta__inner { padding: 5rem 22px; }
.finalcta h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); }
.finalcta p { font-size: 1.15rem; opacity: .95; margin: 1rem auto 2rem; max-width: 50ch; }
.finalcta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.finalcta .btn--primary { background: var(--white); color: var(--orange-dark); }
.finalcta .btn--primary:hover { background: var(--cream); }

/* ===================== FOOTER ===================== */
.footer { background: var(--navy); color: #b9c4d0; font-size: .94rem; }
.footer__inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 3rem; padding: 4rem 22px 3rem; }
.logo--footer .logo__text { color: #fff; }
.footer__brand p { margin-top: 1rem; max-width: 36ch; }
.footer__contact a { color: var(--orange-soft); font-weight: 600; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__cols h4 { color: #fff; margin-bottom: 1rem; font-size: 1rem; }
.footer__cols a, .footer__cols p { display: block; color: #b9c4d0; margin-bottom: .55rem; }
.footer__cols a:hover { color: var(--orange-soft); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0; font-size: .85rem; }
.footer__bottomrow { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer__legal a:hover { color: var(--orange-soft); }

/* ===================== MOBILE STICKY BAR ===================== */
.mobilebar { display: none; }

/* ===================== MODAL ===================== */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.is-open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(30,42,58,.6); backdrop-filter: blur(3px); animation: fade .2s ease; }
.modal__dialog {
  position: relative; z-index: 1;
  width: min(560px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  margin: 20px auto; overflow-y: auto;
  background: var(--white); border-radius: 20px;
  box-shadow: var(--shadow-lg);
  animation: pop .25s cubic-bezier(.2,.8,.2,1);
}
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(.97); } }
.modal__close {
  position: absolute; top: 12px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: var(--cream-2); color: var(--navy); font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.modal__close:hover { background: #e6dcca; }
.modal__head { padding: 1.8rem 1.8rem 0; }
.modal__head h2 { font-size: 1.5rem; }
.modal__head > p { color: var(--muted); margin-top: .4rem; }

.progress { display: flex; gap: .5rem; margin-top: 1.4rem; }
.progress__step {
  flex: 1; text-align: center; font-size: .78rem; font-weight: 600; color: var(--muted);
  padding-bottom: .6rem; border-bottom: 3px solid var(--line); transition: .2s;
}
.progress__step.is-active { color: var(--orange); border-color: var(--orange); }
.progress__step.is-done { color: var(--green); border-color: var(--green); }

/* Form */
.qform { padding: 1.5rem 1.8rem 1.9rem; }
.qstep { display: none; }
.qstep.is-active { display: block; animation: fade .25s ease; }
.qlabel { display: block; font-family: var(--font-head); font-weight: 600; color: var(--navy); margin: 1rem 0 .4rem; font-size: .95rem; }
.qlabel:first-child { margin-top: 0; }
.req { color: var(--orange); }
.qhint { color: var(--muted); font-size: .88rem; margin-bottom: .8rem; }
.qinput {
  width: 100%; padding: .8rem 1rem; font-family: var(--font-body); font-size: 1rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--cream);
  transition: border .15s, box-shadow .15s;
}
.qinput:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(199,83,36,.15); background: #fff; }
textarea.qinput { resize: vertical; }
.qrow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Dropzone */
.dropzone {
  border: 2.5px dashed var(--orange-soft); border-radius: var(--radius);
  background: var(--cream); padding: 2.2rem 1rem; text-align: center; cursor: pointer;
  transition: background .15s, border-color .15s;
}
.dropzone:hover, .dropzone.is-drag { background: #fdf2e6; border-color: var(--orange); }
.dropzone:focus-visible { outline: 3px solid rgba(199,83,36,.3); }
.dropzone__icon { font-size: 2.4rem; margin-bottom: .5rem; }
.dropzone__text { font-family: var(--font-head); color: var(--navy); }
.dropzone__sub { font-size: .82rem; color: var(--muted); margin-top: .3rem; }

.previews { display: grid; grid-template-columns: repeat(auto-fill, minmax(86px, 1fr)); gap: .6rem; margin-top: 1rem; }
.preview { position: relative; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--cream-2); }
.preview img { width: 100%; height: 100%; object-fit: cover; }
.preview__remove {
  position: absolute; top: 3px; right: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(30,42,58,.8); color: #fff; border: none; cursor: pointer; font-size: 1rem; line-height: 1; display: grid; place-items: center;
}
.preview__remove:hover { background: var(--orange); }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  padding: .5rem 1rem; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--cream); color: var(--navy-soft); cursor: pointer; transition: .15s;
}
.chip:hover { border-color: var(--orange-soft); }
.chip.is-selected { background: var(--orange); color: #fff; border-color: var(--orange); }

.qcheck { display: flex; gap: .6rem; align-items: flex-start; margin-top: 1.1rem; font-size: .9rem; color: var(--muted); cursor: pointer; }
.qcheck input { margin-top: .25rem; width: 18px; height: 18px; accent-color: var(--orange); flex-shrink: 0; }

.qstep__actions { margin-top: 1.5rem; display: grid; gap: .6rem; }
.qstep__actions--row { grid-template-columns: auto 1fr; align-items: center; }
.qstep__actions--row .btn:last-child { width: 100%; }
.qskip { background: none; border: none; color: var(--muted); cursor: pointer; font-size: .9rem; text-decoration: underline; font-family: inherit; }
.qskip:hover { color: var(--orange); }
.qtrust { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 1rem; }

.field-error { color: #c0392b; font-size: .88rem; margin-top: .7rem; font-weight: 600; }
.qinput.is-invalid { border-color: #c0392b; }

/* Success */
.qsuccess { text-align: center; padding: 1rem 0; }
.qsuccess__check { font-size: 3.5rem; margin-bottom: .5rem; animation: pop .4s ease; }
.qsuccess h3 { font-size: 1.6rem; margin-bottom: .6rem; }
.qsuccess p { color: var(--muted); margin-bottom: 1rem; }
.qsuccess__or a { color: var(--orange); font-weight: 700; }
.qsuccess .btn { margin-top: .8rem; }

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .5rem 22px 1rem; box-shadow: var(--shadow);
  }
  .nav.is-open .nav__link { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .header__phone { display: none; }
  .header__quote { display: none; }

  .hero__inner { grid-template-columns: 1fr; gap: 1.2rem; }
  .hero__art { order: -1; padding: 1.2rem 0 .4rem; }
  .hero__logo { width: min(290px, 72%); }
  .hero__content { text-align: center; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__sub { max-width: none; }

  .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; }
  .areas { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  .mobilebar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: var(--white); border-top: 1px solid var(--line);
    padding: .6rem; gap: .6rem; box-shadow: 0 -4px 16px rgba(30,42,58,.1);
  }
  .mobilebar__call, .mobilebar__quote {
    flex: 1; text-align: center; padding: .85rem; border-radius: 999px;
    font-family: var(--font-head); font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  }
  .mobilebar__call { flex: .5; background: var(--cream-2); color: var(--navy); }
  .mobilebar__quote { flex: 1.5; background: var(--orange); color: #fff; }
  body { padding-bottom: 70px; }
}

@media (max-width: 560px) {
  .section { padding: 3.5rem 0; }
  .topbar__inner { font-size: .75rem; }
  .topbar__item:not(.topbar__highlight) { display: none; }
  .topbar__sep { display: none; }
  .trustbar { grid-template-columns: 1fr 1fr; gap: .8rem 1rem; margin-bottom: -1.8rem; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .areas__list { grid-template-columns: 1fr 1fr; }
  .hero__actions .btn { flex: 1; }
  .qrow { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottomrow { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ===================== CITY LANDING PAGES ===================== */
.cityhero { position: relative; overflow-x: clip; padding: 3.2rem 0 3rem; }
.cityhero .hero__bg { position: absolute; inset: 0; z-index: -1; }
.cityhero__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.breadcrumbs { font-size: .85rem; color: var(--muted); margin-bottom: 1.2rem; }
.breadcrumbs a { color: var(--leather); font-weight: 600; }
.breadcrumbs a:hover { color: var(--orange); }
.cityhero__title { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -.02em; }
.cityhero__sub { font-size: 1.12rem; color: var(--muted); margin: 1.1rem auto 1.7rem; max-width: 58ch; }
.cityhero__badge { width: 92px; height: auto; margin: 0 auto 1.1rem; display: block; filter: drop-shadow(0 6px 14px rgba(27,42,56,.18)); }

.citycopy { max-width: 780px; margin: 0 auto; color: var(--ink); }
.citycopy p { margin-bottom: 1.1rem; color: var(--navy-soft); }
.citycopy h2 { margin: 2.2rem 0 .8rem; font-size: 1.6rem; }
.citycopy ul { margin: 0 0 1.1rem 1.2rem; color: var(--navy-soft); }
.citycopy li { margin-bottom: .45rem; }

.hoodlist { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem 1rem; margin: 1rem 0 !important; }
.hoodlist li { position: relative; padding-left: 1.3rem; font-weight: 500; font-size: .95rem; }
.hoodlist li::before { content: "📍"; position: absolute; left: 0; font-size: .8rem; }
@media (max-width: 560px) { .hoodlist { grid-template-columns: 1fr 1fr; } }

/* Homepage service-area links + sitewide footer area links */
.areas__list a { color: inherit; }
.areas__list a:hover { color: var(--orange); text-decoration: underline; }
.footer__areas { padding: 1.1rem 0 0; font-size: .88rem; color: #8fa0b1; }
.footer__areas strong { color: #b9c4d0; font-family: var(--font-head); }
.footer__areas a { color: #8fa0b1; }
.footer__areas a:hover { color: var(--orange-soft); }

/* ===================== NAV SERVICES DROPDOWN ===================== */
.nav__item--drop { position: relative; display: inline-flex; }
.nav__caret { font-size: .7em; margin-left: .3em; color: var(--rope); }
.nav__menu {
  display: none; position: absolute; top: calc(100% + 10px); left: -14px;
  min-width: 250px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: .5rem; z-index: 60;
}
.nav__menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav__item--drop:hover .nav__menu, .nav__item--drop:focus-within .nav__menu { display: block; }
.nav__menu a {
  display: block; padding: .55rem .8rem; border-radius: 8px;
  font-size: .93rem; font-weight: 500; color: var(--navy-soft);
}
.nav__menu a:hover { background: var(--cream); color: var(--orange); }
@media (max-width: 960px) {
  .nav.is-open .nav__item--drop { flex-direction: column; align-items: stretch; }
  .nav.is-open .nav__menu { display: block; position: static; box-shadow: none; border: none; padding: 0 0 .4rem .9rem; min-width: 0; }
}

/* "Learn more" links on homepage service cards */
.service__more { display: inline-block; margin-top: .7rem; font-weight: 700; font-size: .9rem; color: var(--orange); }
.service__more:hover { text-decoration: underline; }

/* Service-page extras */
.svc-price { border: 1.5px solid var(--rope-soft); border-radius: var(--radius); background: var(--white); padding: 1.2rem 1.4rem; margin: 1.2rem 0; box-shadow: var(--shadow-sm); }
.svc-price strong { color: var(--orange); font-family: var(--font-head); }
.related { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.related a {
  background: var(--cream-2); border: 1px solid var(--line); border-radius: 999px;
  padding: .4em 1em; font-size: .88rem; font-weight: 600; color: var(--navy-soft);
}
.related a:hover { border-color: var(--rope); color: var(--orange); }

/* ===================== HEADER FIT FIXES ===================== */
.nav { gap: 1.15rem; }
.nav__link { white-space: nowrap; }
.header__phone { white-space: nowrap; }
.header__quote { white-space: nowrap; }
/* On mid-width screens, drop the phone text so the nav never wraps */
@media (max-width: 1150px) and (min-width: 961px) {
  .header__phone { display: none; }
  .nav { gap: 1rem; }
}

/* ===================== BOOK NOW MODAL ===================== */
.sizes { display: grid; gap: .6rem; margin-top: .3rem; }
.sizecard {
  display: block; text-align: left; width: 100%; cursor: pointer;
  background: var(--cream); border: 2px solid var(--line); border-radius: var(--radius-sm);
  padding: .85rem 1rem; font-family: var(--font-body); transition: .15s;
}
.sizecard:hover { border-color: var(--rope-soft); background: #fdf6ea; }
.sizecard.is-selected { border-color: var(--orange); background: #fdf2e6; box-shadow: 0 0 0 3px rgba(199,83,36,.12); }
.sizecard__bar { display: block; height: 8px; border-radius: 999px; background: var(--cream-2); overflow: hidden; margin-bottom: .55rem; }
.sizecard__bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--orange-soft), var(--orange)); }
.sizecard__top { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.sizecard__name { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.02rem; }
.sizecard__price { font-family: var(--font-western); font-weight: 400; color: var(--orange); font-size: 1.15rem; }
.sizecard__desc { display: block; color: var(--muted); font-size: .88rem; margin-top: .15rem; }

.estimate {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy); color: #fff; border-radius: var(--radius-sm);
  padding: .8rem 1.1rem; margin-top: 1rem;
}
.estimate__label { font-size: .85rem; color: #cdd7e0; text-transform: uppercase; letter-spacing: .05em; }
.estimate__amt { font-family: var(--font-western); font-weight: 400; font-size: 1.7rem; color: var(--orange-soft); }

.booknote {
  background: var(--good-bg, #E7F0E9); border-left: 3px solid var(--green);
  border-radius: 0 8px 8px 0; padding: .75rem .9rem; font-size: .88rem; color: var(--navy-soft);
  margin-top: 1rem;
}
.qrow--2to1 { grid-template-columns: 2fr 1fr; }
.bookrecap {
  background: var(--cream-2); border-radius: var(--radius-sm); padding: .7rem 1rem;
  margin-top: 1rem; font-size: .92rem; color: var(--navy); font-weight: 600; text-align: center;
}
.bookrecap span { color: var(--orange); }

/* Book Now button — navy, distinct from the orange photo-quote CTA */
.btn--book { background: var(--navy); color: #fff; box-shadow: 0 6px 18px rgba(27,42,56,.28); }
.btn--book:hover { background: #12202c; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(27,42,56,.34); }
.finalcta .btn--book { background: var(--navy); color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.35); }
.finalcta .btn--book:hover { background: #12202c; }
