:root {
  --ink: #241522;
  --muted: #796b77;
  --line: #ead6e4;
  --paper: #ffffff;
  --soft: #fff0f8;
  --brand: #c21870;
  --brand-dark: #401335;
  --accent: #ffcf4a;
  --coral: #ff5c9d;
  --aqua: #f6a7cb;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(64, 19, 53, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fffbfe;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,251,254,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(223,229,232,.8);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { display: block; width: auto; height: 62px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 650; }
.mobile-menu-toggle,
.mobile-menu { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius);
  background: var(--brand);
  color: white !important;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(194, 24, 112, .24);
}
.button:hover { background: var(--brand-dark); transform: translateY(-1px); }
.button.secondary { background: white; color: var(--ink) !important; border: 1px solid var(--line); box-shadow: none; }
.button.secondary.light { background: rgba(255,255,255,.12); color: white !important; border-color: rgba(255,255,255,.28); }
.button.gold { background: var(--accent); color: #241a08 !important; }
.button.full { width: 100%; }

.hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(64,19,53,.94), rgba(64,19,53,.70)),
    linear-gradient(135deg, var(--brand-dark), #8d1458 54%, var(--coral));
  color: white;
  padding: 88px 0 70px;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr); align-items: center; gap: 44px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 13px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
h1 { font-size: clamp(2.7rem, 6vw, 5.25rem); line-height: .98; letter-spacing: 0; margin: 14px 0 24px; max-width: 780px; }
.lead { font-size: clamp(1.08rem, 2vw, 1.3rem); color: rgba(255,255,255,.82); max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin-top: 20px; color: rgba(255,255,255,.7); font-size: .94rem; }
.hero-side { display: grid; gap: 18px; }

.visual-card {
  position: relative;
  min-height: 300px;
  border-radius: var(--radius);
  background: var(--brand-dark);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 32px;
  color: white;
}
.photo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(64,19,53,.05), rgba(64,19,53,.76));
}
.turnaround-badge {
  position: absolute;
  left: 26px;
  top: 26px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(330px, calc(100% - 52px));
  padding: 16px 18px;
  text-align: left;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-left: 8px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 18px 35px rgba(64,19,53,.2);
}
.turnaround-badge strong { display: block; min-width: max-content; font-size: 1.8rem; line-height: 1; color: var(--brand); }
.turnaround-badge span { display: block; font-weight: 900; line-height: 1.15; text-transform: uppercase; font-size: .78rem; color: var(--ink); }
.visual-copy { position: absolute; left: 32px; bottom: 30px; max-width: 290px; z-index: 2; }
.visual-copy strong { display: block; font-size: 1.55rem; line-height: 1.15; }
.visual-copy span { color: rgba(255,255,255,.78); }

.trust-strip { background: var(--accent); border-bottom: 0; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; }
.trust-grid div, .trust-grid a { padding: 20px 12px; font-weight: 900; color: #2b2109; border-right: 1px solid rgba(43,33,9,.2); text-decoration: none; }
.trust-grid div:last-child, .trust-grid a:last-child { border-right: 0; }

.section { padding: 88px 0; scroll-margin-top: 90px; }
#inquiry { scroll-margin-top: 90px; }
.section.soft { background: linear-gradient(180deg, var(--soft), #fff); }
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.05; letter-spacing: 0; margin: 0; }
.section-head p { max-width: 540px; color: var(--muted); margin: 0; }
.service-groups { display: grid; gap: 28px; }
.service-group {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 30px rgba(18,49,60,.06);
}
.fast-group { border-color: rgba(255,207,74,.85); background: linear-gradient(180deg, #fff8e3, #fff); }
.custom-group { background: #fff7fb; }
.group-label {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}
.group-label > span {
  min-width: 78px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: uppercase;
  background: var(--accent);
  color: #2b2109;
}
.custom-group .group-label > span { background: var(--brand-dark); color: white; }
.group-label h3 { margin: 0 0 4px; font-size: 1.45rem; }
.group-label p { margin: 0; color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.custom-cards { grid-template-columns: repeat(4, 1fr); }
.card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 14px 30px rgba(18,49,60,.06); }
.card.fast-card { border-top: 5px solid var(--accent); }
.card.custom-card { border-top: 5px solid var(--brand); }
.card h3 { margin: 16px 0 8px; letter-spacing: -.02em; }
.card p { color: var(--muted); margin: 0; }
.icon { width: 46px; height: 46px; border-radius: var(--radius); background: #ffe0ef; color: var(--brand); display: grid; place-items: center; font-weight: 900; }
.fast-card .icon { background: var(--accent); color: #241a08; }
.mesh-card { border-top: 5px solid var(--brand); }
.mesh-card .icon { background: var(--brand-dark); color: white; }
.service-preview-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}
.mobile-services-accordion { display: none; }

.brands { background: #fff7fb; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.brand-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
}
.brand-card:hover { border-color: var(--brand); transform: translateY(-2px); }
.brand-card span:last-child { color: var(--muted); font-weight: 700; font-size: .94rem; }
.brand-card.dark-brand { background: #202020; border-color: #202020; }
.brand-card.dark-brand span:last-child { color: rgba(255,255,255,.76); }
.brand-card.dark-brand .text-logo { color: white; }
.brand-card.dark-brand .text-logo.mirage { color: white; }
.brand-card.dark-brand .text-logo.phantom { color: white; }
.brand-card.dark-brand .text-logo.titan { color: white; }
.brand-logo { max-width: 170px; max-height: 48px; object-fit: contain; object-position: left center; }
.text-logo {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.text-logo.titan { letter-spacing: .08em; text-transform: uppercase; }
.text-logo.mirage { color: var(--brand); font-style: italic; }
.text-logo.phantom { color: #1c2833; letter-spacing: .01em; }
.image-logo { width: 160px; }

.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: steps; }
.step { background: white; border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); box-shadow: 0 14px 30px rgba(18,49,60,.06); }
.step::before { counter-increment: steps; content: "0" counter(steps); color: var(--coral); font-size: 1.5rem; font-weight: 900; }
.step h3 { margin: 30px 0 8px; }
.step p { margin: 0; color: var(--muted); }

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(64,19,53,.97), rgba(194,24,112,.88)),
    var(--brand-dark);
  color: white;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}
.cta-panel h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: 0; line-height: 1.05; }
.cta-panel p { margin: 0; color: rgba(255,255,255,.73); }
.cta-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 12px; }

.site-footer { padding: 38px 0; border-top: 1px solid var(--line); color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; }

.location-hero {
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(64,19,53,.94), rgba(194,24,112,.76)),
    var(--brand-dark);
  color: white;
}
.location-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 38px; align-items: stretch; }
.location-copy { display: flex; flex-direction: column; justify-content: center; }
.location-copy .lead { color: rgba(255,255,255,.82); }
.address-panel {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 28px 0 0;
  padding: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
}
.address-panel strong,
.address-panel span { display: block; }
.address-panel span { color: rgba(255,255,255,.78); margin-top: 4px; }
.pin-dot {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50% 50% 50% 0;
  background: var(--coral);
  transform: rotate(-45deg);
  box-shadow: 0 12px 26px rgba(255,92,157,.34);
}
.pin-dot::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: white;
}
.map-shell {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 8px solid white;
  box-shadow: var(--shadow);
  background: white;
}
.map-shell iframe { width: 100%; height: 100%; min-height: 520px; border: 0; display: block; }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.detail-tile { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 14px 30px rgba(18,49,60,.06); }
.detail-tile h2 { font-size: 1.3rem; margin: 18px 0 8px; }
.detail-tile p { color: var(--muted); margin: 0; }
.detail-tile p strong { color: var(--ink); }

.contact-hero {
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(64,19,53,.96), rgba(194,24,112,.76)),
    var(--brand-dark);
  color: white;
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 38px;
  align-items: center;
}
.contact-copy .lead { color: rgba(255,255,255,.82); }
.contact-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.contact-method {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-method:first-child { padding-top: 0; }
.contact-method:last-child { padding-bottom: 0; border-bottom: 0; }
.contact-label {
  display: block;
  margin-bottom: 4px;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-value {
  display: inline-block;
  color: var(--ink);
  font-size: clamp(1.2rem, 3vw, 1.58rem);
  font-weight: 900;
  line-height: 1.18;
  text-decoration: none;
}
.contact-value:hover { color: var(--brand); }
.contact-subvalue {
  display: inline-block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 850;
  text-decoration: none;
}
.contact-subvalue:hover { color: var(--brand); }
.address-value {
  max-width: 480px;
  font-size: 1.12rem;
}
.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.contact-actions .button {
  min-height: 44px;
  padding: 0 16px;
}
.contact-map-section {
  background: #fff;
}
.contact-map-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: center;
}
.contact-map-copy h2 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
}
.contact-map-copy p {
  margin: 0;
  color: var(--muted);
}
.dark-eyebrow {
  border-color: var(--line);
  background: var(--soft);
  color: var(--brand);
}
.light-address-panel {
  background: var(--soft);
  border-color: var(--line);
}
.light-address-panel span { color: var(--muted); }
.contact-map-shell {
  border-color: var(--soft);
}
.contact-details-section { background: linear-gradient(180deg, #fff, var(--soft)); }

.about-hero {
  padding: 76px 0;
  background:
    linear-gradient(90deg, rgba(64,19,53,.95), rgba(194,24,112,.72)),
    var(--brand-dark);
  color: white;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
}
.about-copy .lead { color: rgba(255,255,255,.82); }
.about-photo-block {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.94);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--brand-dark);
}
.about-photo-block img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(64,19,53,.05), rgba(64,19,53,.82));
}
.about-photo-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding-left: 16px;
  border-left: 5px solid var(--accent);
}
.about-photo-caption strong,
.about-photo-caption span { display: block; }
.about-photo-caption strong { font-size: 1.45rem; line-height: 1.15; }
.about-photo-caption span { margin-top: 6px; color: rgba(255,255,255,.78); }
.about-proof {
  background: white;
  border-bottom: 1px solid var(--line);
}
.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.about-proof-item {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}
.about-proof-item:last-child { border-right: 0; }
.about-proof-item strong,
.about-proof-item span { display: block; }
.about-proof-item strong { color: var(--brand); font-size: 1.02rem; }
.about-proof-item span { color: var(--muted); margin-top: 4px; }
.about-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.story-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 30px rgba(18,49,60,.06);
}
.story-card h3 { margin: 0 0 10px; font-size: 1.28rem; }
.story-card p { margin: 0; color: var(--muted); }
.about-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.about-area-grid h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
}
.about-area-grid p { color: var(--muted); margin: 0; }
.about-area-list {
  display: grid;
  gap: 10px;
}
.about-area-list span {
  display: block;
  padding: 14px 16px;
  border-left: 5px solid var(--brand);
  background: white;
  color: var(--ink);
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(64,19,53,.07);
}

.mobile-page {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--brand-dark), var(--brand), #fff 72%);
  padding: 24px 0 50px;
}
.mobile-shell { width: min(520px, calc(100% - 28px)); margin: 0 auto; }
.mobile-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.mobile-card h1 { font-size: clamp(2.1rem, 10vw, 3.4rem); margin: 10px 0 18px; }
.mobile-card p { color: var(--muted); }
.dropoff-page { background: linear-gradient(160deg, var(--brand-dark), var(--brand), #fff 78%); }
.dropoff-card { margin-top: 24px; }
.dropoff-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.dropoff-logo { margin-bottom: 0; }
.dropoff-logo img { height: 96px; }
.dropoff-home-link {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.dropoff-instructions {
  margin-top: 22px;
  padding: 18px;
  background: #fff8e3;
  border: 1px solid rgba(255,207,74,.9);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
}
.dropoff-instructions h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}
.dropoff-instructions p { margin: 0; }
.pricing-box {
  margin-top: 22px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.pricing-box h2 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 900;
}
.price-row:first-of-type { border-top: 0; padding-top: 0; }
.price-row strong { color: var(--brand); }
.price-note {
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: .9rem;
}
.price-note:last-child { margin-bottom: 0; }
.dropoff-form { margin-top: 24px; background: var(--brand-dark); color: white; }
.dropoff-form .form-head span { color: rgba(255,255,255,.72); }
.action-stack { display: grid; gap: 12px; margin-top: 28px; }
.action-tile { display: flex; align-items: center; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; background: white; }
.action-tile:hover { border-color: var(--brand); }
.action-tile .icon { flex: 0 0 auto; }
.action-tile strong { display: block; }
.action-tile span { color: var(--muted); font-size: .92rem; }
.payment-box { padding: 20px; background: var(--soft); border-radius: var(--radius); margin: 22px 0; }
.payment-box label { display: block; font-weight: 800; margin-bottom: 8px; }
.payment-box input { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 12px; padding: 0 14px; font: inherit; }
.inquiry-form {
  display: grid;
  gap: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--radius);
  padding: 20px;
}
.hero-form { background: rgba(255,255,255,.16); }
.hidden-field { display: none; }
.form-head { margin-bottom: 4px; }
.form-head strong { display: block; font-size: 1.35rem; line-height: 1.1; }
.form-head span { display: block; margin-top: 4px; color: rgba(255,255,255,.72); }
.form-required-note {
  margin: 0 0 2px;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 800;
}
.form-required-note span { color: var(--accent); }
.subtle-required {
  margin-top: 2px;
  color: rgba(255,255,255,.66);
  font-size: .8rem;
}
.inquiry-form label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 900;
  font-size: .92rem;
}
.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 2px solid #111111;
  border-radius: var(--radius);
  background: rgba(255,255,255,.95);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
  box-shadow: none;
}
.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #796b77;
  opacity: 1;
}
.inquiry-form input { min-height: 48px; }
.inquiry-form textarea { resize: vertical; min-height: 116px; }
.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: 3px solid rgba(255,207,74,.45);
  border-color: var(--accent);
}
.required-mark { color: var(--accent); font-size: 1.2rem; line-height: 1; }
.required-mark.subtle-mark {
  font-size: 1rem;
  opacity: .82;
}
.optional-mark {
  display: inline-flex;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: rgba(255,255,255,.86);
  font-size: .68rem;
  line-height: 1;
  text-transform: uppercase;
  vertical-align: middle;
}
.field-help {
  margin: -4px 0 2px;
  color: rgba(255,255,255,.74);
  font-size: .84rem;
}
.disclaimer { font-size: .84rem; color: var(--muted); margin-top: 16px; }
.back-link { text-decoration: none; font-weight: 750; color: var(--brand); }
.mobile-hero-stamp,
.mobile-choice-band,
.mobile-quote-cta,
.mobile-phone-cta,
.mobile-sticky-actions { display: none; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(64,19,53,.10);
    cursor: pointer;
  }
  .mobile-menu-toggle span,
  .mobile-menu-toggle span::before,
  .mobile-menu-toggle span::after {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }
  .mobile-menu-toggle span { position: relative; }
  .mobile-menu-toggle span::before,
  .mobile-menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
  }
  .mobile-menu-toggle span::before { top: -7px; }
  .mobile-menu-toggle span::after { top: 7px; }
  .site-header.menu-open .mobile-menu-toggle span { background: transparent; }
  .site-header.menu-open .mobile-menu-toggle span::before { transform: translateY(7px) rotate(45deg); }
  .site-header.menu-open .mobile-menu-toggle span::after { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: rgba(255,251,254,.98);
    border-top: 1px solid transparent;
    transition: max-height .25s ease, opacity .2s ease, border-color .2s ease;
  }
  .site-header.menu-open .mobile-menu {
    max-height: 280px;
    opacity: 1;
    border-top-color: var(--line);
  }
  .mobile-menu-panel {
    padding: 8px 0 16px;
  }
  .mobile-menu a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
    font-weight: 850;
  }
  .mobile-menu a::after {
    content: ">";
    margin-left: auto;
    color: var(--brand);
    font-size: 1.45rem;
    line-height: 1;
  }
  .hero { padding-top: 60px; }
  .hero-grid, .cta-panel, .location-grid, .contact-hero-grid, .contact-map-grid, .about-hero-grid, .about-proof-grid, .about-story-grid, .about-area-grid { grid-template-columns: 1fr; }
  .visual-card { min-height: 340px; }
  .cards, .custom-cards, .process, .brand-grid, .detail-grid { grid-template-columns: 1fr; }
  .about-proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-proof-item:last-child { border-bottom: 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid rgba(43,33,9,.2); }
  .trust-grid div:last-child { border-bottom: 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav { min-height: 66px; }
  .logo img { height: 52px; }
  .nav .button { min-height: 42px; padding: 0 15px; }
  .hero { padding: 48px 0 56px; }
  .hero-actions .button { width: 100%; }
  .visual-card { min-height: 330px; padding: 22px; }
  .turnaround-badge { left: 18px; top: 18px; width: calc(100% - 36px); padding: 14px 15px; }
  .turnaround-badge strong { font-size: 1.55rem; }
  .visual-copy { left: 22px; bottom: 22px; }
  .section { padding: 64px 0; }
  .service-group { padding: 16px; }
  .group-label { align-items: flex-start; }
  .group-label > span { min-width: 70px; }
  .location-hero { padding: 52px 0; }
  .contact-hero { padding: 52px 0; }
  .about-hero { padding: 52px 0; }
  .about-photo-block { min-height: 320px; border-width: 5px; }
  .map-shell, .map-shell iframe { min-height: 380px; }
  .cta-panel { padding: 30px 24px; }
  .cta-actions .button { width: 100%; }
}

@media (max-width: 520px) {
  body { background: #fffbfe; }
  .site-header {
    background: rgba(255,251,254,.98);
    border-bottom-color: rgba(234,214,228,.9);
  }
  .nav { min-height: 64px; }
  .hero {
    padding: 38px 0 46px;
    background:
      radial-gradient(circle at top right, rgba(255,92,157,.34), transparent 42%),
      linear-gradient(180deg, #431334 0%, #651044 58%, #a51565 100%);
  }
  .hero-grid { gap: 28px; }
  .eyebrow {
    padding: 0 0 0 12px;
    border: 0;
    border-left: 4px solid var(--accent);
    border-radius: 0;
    background: transparent;
    font-size: .72rem;
  }
  h1 {
    font-size: 2.55rem;
    line-height: 1.02;
    margin: 16px 0 18px;
  }
  .lead { font-size: 1.02rem; }
  .hero-actions { margin-top: 24px; }
  .hero-note {
    margin-top: 16px;
    padding-left: 12px;
    border-left: 3px solid rgba(255,207,74,.7);
  }
  .photo-card {
    min-height: 286px;
    box-shadow: 0 18px 38px rgba(64,19,53,.24);
  }
  .turnaround-badge {
    left: 16px;
    top: 16px;
    width: calc(100% - 32px);
  }
  .visual-copy {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
  }
  .visual-copy strong { font-size: 1.28rem; }
  .hero-form {
    padding: 18px 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .hero-form .form-head,
  .hero-form .form-required-note,
  .hero-form label { padding: 0 2px; }

  .trust-strip {
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .trust-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .trust-grid div,
  .trust-grid a {
    position: relative;
    padding: 14px 0 14px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    background: white;
    color: var(--ink);
    font-size: .9rem;
  }
  .trust-grid div::before,
  .trust-grid a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    transform: translateY(-50%);
  }

  .section { padding: 54px 0; }
  .section-head { margin-bottom: 24px; }
  .section-head h2 { font-size: 2rem; }
  .about-proof-item {
    padding: 18px 0;
  }
  .about-story-grid {
    display: block;
  }
  .story-card {
    padding: 22px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .story-card:first-child { padding-top: 0; }
  .story-card h3 { font-size: 1.2rem; }
  .about-area-list span {
    padding: 13px 0 13px 14px;
    box-shadow: none;
  }
  .about-photo-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .about-photo-caption strong { font-size: 1.25rem; }
  .service-groups { gap: 54px; }
  .service-group {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .fast-group,
  .custom-group { background: transparent; }
  .group-label {
    display: block;
    margin-bottom: 12px;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .group-label > span {
    display: none;
  }
  .mobile-word-highlight { color: var(--brand); }
  .mobile-word-highlight.fast-highlight { color: #a17400; }
  .group-label h3 {
    max-width: 315px;
    margin: 0 0 8px;
    font-size: 1.58rem;
    line-height: 1.08;
  }
  .group-label p {
    max-width: 315px;
    font-size: .98rem;
  }
  .cards,
  .custom-cards { display: block; }
  .card {
    position: relative;
    display: block;
    padding: 22px 0 24px 18px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .card.fast-card,
  .card.custom-card {
    border-top: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .card:first-child { border-top: 0; }
  .card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 26px;
    bottom: 28px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), var(--brand));
  }
  .custom-card::before {
    background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  }
  .card .icon {
    display: none;
  }
  .card h3 {
    margin: 0 0 6px;
    font-size: 1.15rem;
  }
  .card p {
    font-size: .96rem;
  }

  .brand-grid { gap: 10px; }
  .brand-card {
    min-height: 112px;
    padding: 20px;
    box-shadow: 0 12px 28px rgba(64,19,53,.10);
  }
  .process {
    display: block;
    border-top: 1px solid var(--line);
  }
  .step {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
    padding: 20px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .step::before {
    grid-row: 1 / span 2;
    font-size: 1.08rem;
  }
  .step h3 { margin: 0 0 5px; }
  .step p { grid-column: 2; }
  .cta-panel {
    margin: 0;
    padding: 32px 18px;
    border-radius: 0;
    box-shadow: none;
  }

  .mobile-page {
    padding: 0 0 42px;
    background: linear-gradient(180deg, var(--brand-dark), var(--brand) 34%, #fff 34%);
  }
  .mobile-shell { width: min(520px, 100%); }
  .mobile-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 24px 22px 30px;
  }
  .dropoff-card {
    min-height: 100vh;
    margin-top: 0;
  }
  .dropoff-logo img { height: 80px; }
  .dropoff-home-link {
    background: #fff;
    box-shadow: 0 10px 22px rgba(64,19,53,.10);
  }
  .dropoff-instructions,
  .pricing-box {
    border: 0;
    border-left: 4px solid var(--accent);
    box-shadow: none;
  }
  .dropoff-form {
    padding: 18px 0 0;
    border: 0;
    background: transparent;
    color: var(--ink);
  }
  .dropoff-form .form-required-note,
  .dropoff-form label { color: var(--ink); }
  .dropoff-form .field-help { color: var(--muted); }
  .dropoff-form .optional-mark {
    background: var(--soft);
    color: var(--brand);
  }
}

@media (max-width: 640px) {
  .contact-panel {
    padding: 22px;
  }
  .contact-method {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-actions {
    justify-content: flex-start;
  }
  .contact-actions .button {
    flex: 1 1 130px;
  }
}

@media (max-width: 520px) {
  body { padding-bottom: 70px; }

  .hero {
    padding: 0;
    color: var(--ink);
    background: #fff;
    border-bottom: 1px solid var(--line);
    overflow: visible;
  }
  .hero-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .hero-side { display: contents; }
  .photo-card {
    order: 1;
    width: 100%;
    min-height: 335px;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .photo-card::after {
    background:
      linear-gradient(180deg, rgba(64,19,53,.04), rgba(64,19,53,.68)),
      linear-gradient(90deg, rgba(64,19,53,.72), rgba(64,19,53,.08));
  }
  .turnaround-badge,
  .visual-copy { display: none; }
  .mobile-hero-stamp {
    position: absolute;
    left: 15px;
    bottom: 18px;
    z-index: 2;
    display: block;
    max-width: 250px;
    padding-left: 14px;
    border-left: 4px solid var(--accent);
    color: #fff;
  }
  .mobile-hero-stamp strong,
  .mobile-hero-stamp span { display: block; }
  .mobile-hero-stamp strong {
    color: var(--accent);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .mobile-hero-stamp span {
    margin-top: 4px;
    color: rgba(255,255,255,.84);
    font-size: .94rem;
    font-weight: 760;
  }
  .hero-copy {
    order: 2;
    width: min(100% - 30px, 420px);
    margin: 0 auto;
    padding: 24px 0 28px;
    color: var(--ink);
  }
  .hero-copy .eyebrow,
  .hero-copy .hero-note { display: none; }
  .hero-copy h1 {
    max-width: 360px;
    margin: 0;
    color: var(--ink);
    font-size: 2.65rem;
    line-height: 1;
  }
  .hero-copy .lead {
    max-width: 350px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 1.02rem;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 20px;
  }
  .hero-actions .button {
    width: auto;
    min-height: 48px;
    padding: 0 12px;
    font-size: .88rem;
  }
  .desktop-quote-cta,
  .desktop-phone-cta { display: none; }
  .mobile-quote-cta,
  .mobile-phone-cta { display: inline; }
  .hero-actions .button.secondary {
    background: #fff;
    color: var(--ink) !important;
    border: 1px solid var(--line);
  }

  .mobile-choice-band {
    order: 3;
    display: block;
    width: 100%;
    padding: 18px 0;
    background: var(--brand-dark);
    color: #fff;
  }
  .choice-eyebrow {
    margin: 0 0 12px;
    color: rgba(255,255,255,.7);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.16);
  }
  .choice {
    min-height: 86px;
    display: grid;
    align-content: center;
    gap: 3px;
    padding: 14px;
    background: var(--brand-dark);
  }
  .choice strong {
    color: var(--accent);
    font-size: 1rem;
    line-height: 1.08;
  }
  .choice span {
    color: rgba(255,255,255,.72);
    font-size: .78rem;
    line-height: 1.24;
  }
  .trust-strip { display: none; }

  .hero-form {
    order: 4;
    width: 100%;
    padding: 48px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    color: var(--ink);
    box-shadow: none;
  }
  .hero-form > * {
    width: min(100% - 30px, 420px);
    margin-left: auto;
    margin-right: auto;
  }
  .hero-form .form-head strong {
    color: var(--ink);
    font-size: 1.5rem;
    line-height: 1.08;
  }
  .hero-form .form-head span {
    max-width: 350px;
    color: var(--muted);
    font-size: .96rem;
  }
  .hero-form .form-required-note {
    margin-top: -2px;
    color: var(--muted);
    font-size: .8rem;
  }
  .hero-form label {
    display: flex;
    justify-content: flex-start;
    gap: 4px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: .84rem;
  }
  .hero-form input,
  .hero-form textarea {
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    padding: 8px 0 12px;
  }
  .hero-form input:focus,
  .hero-form textarea:focus {
    outline: 0;
    border-color: var(--brand);
    box-shadow: 0 2px 0 var(--brand);
  }
  .hero-form textarea { min-height: 86px; }
  .hero-form .button.gold {
    margin-top: 18px;
    background: var(--brand);
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(194,24,112,.22);
  }

  .services-page #services {
    padding-bottom: 38px;
  }
  .services-page .service-groups,
  .services-page .mesh-options,
  .services-page .brands {
    display: none;
  }
  .services-page #services .section-head {
    margin-bottom: 22px;
  }
  .services-page #services .section-head p {
    font-size: .96rem;
  }
  .mobile-services-accordion {
    display: grid;
    gap: 10px;
  }
  .mobile-service-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 10px 24px rgba(64,19,53,.08);
    overflow: hidden;
  }
  .mobile-service-panel summary {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32px;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 15px 16px;
    cursor: pointer;
    list-style: none;
  }
  .mobile-service-panel summary::-webkit-details-marker {
    display: none;
  }
  .mobile-service-panel summary::after {
    content: "+";
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--soft);
    color: var(--brand);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
  }
  .mobile-service-panel[open] summary::after {
    content: "-";
    background: var(--brand);
    color: white;
  }
  .mobile-service-panel summary span,
  .mobile-service-panel summary strong {
    display: block;
    grid-column: 1;
  }
  .mobile-service-panel summary span {
    color: var(--brand);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .mobile-service-panel summary strong {
    margin-top: 3px;
    color: var(--ink);
    font-size: 1.1rem;
    line-height: 1.1;
  }
  .mobile-panel-list,
  .mobile-brand-list {
    display: grid;
    border-top: 1px solid var(--line);
  }
  .mobile-panel-row,
  .mobile-brand-list a {
    padding: 14px 16px;
    border-top: 1px solid var(--line);
  }
  .mobile-panel-row:first-child,
  .mobile-brand-list a:first-child {
    border-top: 0;
  }
  .mobile-panel-row h3 {
    margin: 0 0 4px;
    font-size: 1rem;
  }
  .mobile-panel-row p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.42;
  }
  .mobile-brand-list a {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--ink);
    text-decoration: none;
  }
  .mobile-brand-list strong {
    color: var(--ink);
    font-size: 1rem;
  }
  .mobile-brand-list span {
    max-width: 155px;
    color: var(--muted);
    font-size: .84rem;
    font-weight: 760;
    text-align: right;
  }

  #services .section-head h2 { font-size: 2.08rem; }
  .service-preview-actions {
    justify-content: flex-start;
  }
  .service-preview-actions .button {
    width: 100%;
  }
  .service-groups { gap: 34px; }
  .service-group,
  .fast-group,
  .custom-group {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .group-label {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--ink);
  }
  .group-label > span { display: none; }
  .group-label h3 {
    max-width: 320px;
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.08;
  }
  .group-label p {
    max-width: 350px;
    color: var(--muted);
    font-size: .95rem;
  }
  .cards,
  .custom-cards {
    display: grid;
    gap: 0;
  }
  .card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 13px;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid var(--line) !important;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .card::before { display: none; }
  .card .icon,
  .fast-card .icon {
    grid-row: 1 / span 2;
    display: block;
    width: auto;
    height: auto;
    padding-top: 1px;
    background: transparent;
    color: var(--brand);
    font-size: .88rem;
    line-height: 1.5;
  }
  .fast-card .icon { color: #a17400; }
  .card h3 {
    grid-column: 2;
    margin: 0 0 4px;
    font-size: 1.08rem;
  }
  .card p {
    grid-column: 2;
    color: var(--muted);
    font-size: .94rem;
  }

  .brands {
    padding: 48px 0;
    border: 0;
    background: linear-gradient(180deg, #2d1028, var(--brand-dark));
    color: #fff;
  }
  .brands .section-head h2 { color: #fff; }
  .brands .section-head p { color: rgba(255,255,255,.7); }
  .brand-grid {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.18);
  }
  .brand-card,
  .brand-card.dark-brand {
    min-height: 72px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
    border-radius: 0;
    background: transparent;
    color: #fff;
    box-shadow: none;
  }
  .brand-card:hover { transform: none; }
  .brand-card span:last-child,
  .brand-card.dark-brand span:last-child {
    max-width: 140px;
    color: rgba(255,255,255,.68);
    font-size: .82rem;
    font-weight: 820;
    text-align: right;
  }
  .brand-logo { max-width: 140px; max-height: 36px; }
  .image-logo {
    width: 130px;
    filter: brightness(0) invert(1);
  }
  .text-logo {
    min-height: auto;
    color: #fff;
    font-size: 1.5rem;
  }

  .section.soft {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .process {
    display: grid;
    gap: 16px;
    border-top: 0;
  }
  .step {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 0 0 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .step::before {
    grid-row: 1 / span 2;
    color: var(--brand);
    font-size: 1rem;
    line-height: 1.5;
  }
  .step h3 {
    margin: 0 0 4px;
    font-size: 1.06rem;
  }
  .step p {
    grid-column: 2;
    color: var(--muted);
    font-size: .94rem;
  }

  #contact { padding: 0; }
  .cta-panel {
    margin: 0 -15px;
    padding: 34px 15px 42px;
    border-radius: 0;
    background: linear-gradient(135deg, var(--brand), #ec5a9f);
    box-shadow: none;
  }
  .cta-panel h2 {
    font-size: 1.95rem;
    line-height: 1.06;
  }
  .cta-panel p { color: rgba(255,255,255,.82); }
  .cta-actions .button.gold {
    background: var(--accent);
    color: #241a08 !important;
  }
  .site-footer { padding-bottom: 96px; }

  .mobile-sticky-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: block;
    padding: 10px 15px;
    background: rgba(255,251,254,.95);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity .22s ease, transform .22s ease;
  }
  body.show-mobile-sticky .mobile-sticky-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-sticky-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: min(100%, 420px);
    margin: 0 auto;
  }
  .mobile-sticky-inner .button {
    min-height: 44px;
    box-shadow: none;
    font-size: .88rem;
  }
  .mobile-sticky-inner .button.secondary {
    background: #fff;
    color: var(--ink) !important;
    border: 1px solid var(--line);
  }
}
