:root {
  --bg: #0d0f10;
  --bg2: #111416;
  --panel: #1a1d1e;
  --panel2: #202425;
  --green: #78d143;
  --green2: #8ae85a;
  --text: #f8f8f4;
  --muted: #d4d4ce;
  --soft: rgba(255,255,255,.08);
  --line: rgba(120,209,67,.36);
  --shadow: 0 22px 70px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(120,209,67,.10), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(120,209,67,.055), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.topbar {
  background: #070808;
  color: #fff;
  padding: 9px 4.5vw;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-weight: 900;
  letter-spacing: .045em;
  font-size: 13px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,17,18,.96);
  backdrop-filter: blur(14px);
  border-bottom: 3px solid var(--green);
  padding: 14px 4.5vw;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 26px;
  box-shadow: 0 10px 36px rgba(0,0,0,.18);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 112px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.4));
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .045em;
  opacity: .9;
  transition: color .18s ease, opacity .18s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--green2);
  opacity: 1;
}

.call,
.btn.primary {
  background: linear-gradient(180deg, var(--green2), #68c83d);
  color: #111 !important;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 950;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: 0 16px 34px rgba(120,209,67,.16);
}

.btn.secondary {
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.7);
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 950;
  text-transform: uppercase;
  display: inline-block;
}

.btn.primary:hover,
.call:hover,
.help:hover {
  transform: translateY(-1px);
}

.btn.secondary:hover {
  border-color: var(--green2);
  color: var(--green2) !important;
}

.hero {
  min-height: 640px;
  padding: 72px 4.5vw 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  align-items: center;
  gap: 44px;
  background:
    linear-gradient(90deg, rgba(10,10,10,.94), rgba(10,10,10,.72)),
    url('/assets/hero-main.jpg');
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,15,16,.12), rgba(13,15,16,.84) 92%),
    radial-gradient(circle at 68% 42%, rgba(120,209,67,.12), transparent 28%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 930px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.badges span {
  border: 2px solid var(--green);
  border-radius: 6px;
  padding: 9px 13px;
  background: rgba(0,0,0,.45);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .065em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.eyebrow {
  color: var(--green2);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .19em;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: .95;
  text-transform: uppercase;
  margin: 0 0 24px;
  font-weight: 1000;
  letter-spacing: -.04em;
  max-width: 1000px;
  text-wrap: balance;
}

.hero p {
  font-size: 21px;
  line-height: 1.45;
  color: #f2f2ee;
  max-width: 780px;
}

.cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-panel {
  align-self: stretch;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    rgba(17,20,21,.74);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero-panel-image {
  min-height: 255px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35)),
    url('/assets/hero-main.jpg');
  background-position: center;
  background-size: cover;
}

.hero-panel-body {
  padding: 24px;
}

.hero-panel-body h3 {
  color: var(--green2);
  font-size: 25px;
  margin: 0 0 10px;
}

.hero-panel-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.quick-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.quick-list li {
  color: #fff;
  font-weight: 800;
  padding-left: 22px;
  position: relative;
}

.quick-list li::before {
  content: "✓";
  color: var(--green2);
  position: absolute;
  left: 0;
}

.section {
  padding: 76px 4.5vw;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), transparent),
    #131617;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.section h2 {
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 18px;
  text-wrap: balance;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  align-items: stretch;
}

.card,
.info,
.notice-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.card {
  min-height: 220px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(138,232,90,.72);
  background:
    linear-gradient(180deg, rgba(138,232,90,.06), rgba(255,255,255,.015)),
    var(--panel2);
}

.card h3,
.info h3,
.notice-card h3 {
  color: var(--green2);
  font-size: 25px;
  line-height: 1.1;
  margin: 0 0 12px;
  text-wrap: balance;
}

.card p,
.info p,
.notice-card p,
.footer p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--green2);
  text-decoration: none;
  border-bottom: 1px solid rgba(138,232,90,.55);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 30px;
  align-items: start;
}

.service-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin-top: 30px;
}

.service-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 14px;
  color: #fff;
  font-weight: 900;
  text-align: center;
  background: rgba(0,0,0,.24);
}

.footer {
  background:
    linear-gradient(180deg, #101112, #080909);
  border-top: 1px solid rgba(138,232,90,.4);
  padding: 60px 4.5vw;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer h4 {
  color: var(--green2);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 16px;
}

.footer a {
  display: block;
  text-decoration: none;
  margin: 9px 0;
  color: #ddd;
  font-weight: 800;
}

.footer a:hover {
  color: var(--green2);
}

.text-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.cube {
  color: var(--green2);
  font-size: 32px;
  transform: rotate(45deg);
  display: inline-block;
}

.text-logo b {
  color: var(--green2);
  display: block;
  font-size: 20px;
}

.text-logo small {
  color: #aaa;
  display: block;
  font-size: 12px;
}

.copyright {
  background: #080909;
  color: #999;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 4.5vw;
}

.help {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  background: linear-gradient(180deg, var(--green2), #68c83d);
  color: #111;
  text-decoration: none;
  font-weight: 950;
  border-radius: 999px;
  padding: 13px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .04em;
}

@media(max-width:1100px) {
  .header {
    grid-template-columns: 130px 1fr;
  }

  .call {
    grid-column: 1 / -1;
    justify-self: stretch;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .service-band {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media(max-width:760px) {
  .topbar {
    padding: 9px 5vw;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    line-height: 1.35;
  }

  .header {
    padding: 13px 5vw;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand img {
    width: 92px;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav a {
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 11px 12px;
  }

  .hero {
    padding: 54px 5vw 64px;
    min-height: auto;
  }

  h1 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .hero p {
    font-size: 18px;
  }

  .badges span {
    font-size: 11px;
    padding: 8px 10px;
  }

  .cta {
    flex-direction: column;
  }

  .btn.primary,
  .btn.secondary,
  .call {
    width: 100%;
    text-align: center;
  }

  .section {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .cards,
  .split,
  .service-band,
  .footer {
    grid-template-columns: 1fr;
  }

  .card,
  .info,
  .notice-card {
    min-height: unset;
    padding: 24px;
  }

  .footer {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .help {
    right: 14px;
    bottom: 14px;
  }
}

/* PPP v1.0 polish pass 4 — hours + reviews */
.hours-reviews {
  background:
    radial-gradient(circle at 12% 18%, rgba(138,232,90,.10), transparent 25%),
    #111416;
}

.proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.review-panel,
.hours-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)),
    #1a1d1e;
  border: 1px solid rgba(138,232,90,.42);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 16px;
}

.rating-score {
  font-size: 46px;
  font-weight: 1000;
  color: #fff;
  line-height: 1;
}

.stars {
  color: #ffc83d;
  letter-spacing: .04em;
  font-size: 26px;
  line-height: 1;
}

.review-count {
  color: #d6d6d0;
  font-weight: 800;
}

.review-quote {
  color: #e9e9e3;
  line-height: 1.6;
  font-size: 17px;
  border-left: 3px solid var(--green2);
  padding-left: 16px;
  margin: 18px 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
}

.hours-table tr {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hours-table td {
  padding: 10px 0;
  color: #e5e5df;
  font-weight: 750;
}

.hours-table td:last-child {
  text-align: right;
  color: #fff;
}

.hours-table .closed td:last-child {
  color: #ffb2a0;
}

.today-note {
  color: var(--green2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.footer .hours-mini {
  margin-top: 8px;
  color: #d7d7d0;
  font-size: 14px;
  line-height: 1.5;
}

@media(max-width:900px) {
  .proof-row {
    grid-template-columns: 1fr;
  }

  .hours-table td {
    display: block;
    text-align: left !important;
    padding: 6px 0;
  }

  .hours-table tr {
    display: block;
    padding: 8px 0;
  }
}

/* PPP v1.0 visual polish pass 5 — remove empty panels and tighten above-fold experience */
.hero {
  min-height: 520px !important;
  padding-top: 54px !important;
  padding-bottom: 64px !important;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px) !important;
}

.hero-content {
  max-width: 860px !important;
}

.hero h1,
h1 {
  font-size: clamp(42px, 5.5vw, 74px) !important;
  line-height: .96 !important;
}

.hero p {
  font-size: 19px !important;
  max-width: 720px !important;
}

.hero-panel-fixed {
  min-height: unset !important;
  align-self: center !important;
  display: block !important;
  overflow: visible !important;
  background:
    radial-gradient(circle at top right, rgba(138,232,90,.14), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    #1a1f20 !important;
}

.hero-panel-fixed .hero-panel-image {
  display: none !important;
}

.hero-panel-fixed .hero-panel-body {
  padding: 30px !important;
}

.hero-panel-fixed h3 {
  font-size: 28px !important;
  line-height: 1.08 !important;
  margin-bottom: 12px !important;
}

.hero-panel-fixed p {
  font-size: 16px !important;
  color: #deded8 !important;
}

.mini-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e8e8e0;
  font-weight: 850;
  margin-bottom: 18px;
}

.rating-badge {
  background: #ffc83d;
  color: #151515;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 1000;
}

.mini-hours {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: grid;
  gap: 4px;
}

.mini-hours strong {
  color: var(--green2);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.mini-hours span {
  color: #e7e7df;
  font-weight: 750;
  line-height: 1.45;
}

.badges {
  margin-bottom: 22px !important;
}

.service-band {
  margin-top: 24px !important;
}

.help {
  bottom: 18px !important;
  right: 20px !important;
  z-index: 250 !important;
}

.section {
  padding-top: 64px !important;
}

.hours-reviews {
  padding-top: 68px !important;
}

@media(max-width:1100px) {
  .hero {
    grid-template-columns: 1fr !important;
  }

  .hero-panel-fixed {
    margin-top: 18px;
  }
}

@media(max-width:760px) {
  .hero {
    padding-top: 42px !important;
    padding-bottom: 50px !important;
  }

  .hero h1,
  h1 {
    font-size: clamp(32px, 10vw, 50px) !important;
  }

  .hero-panel-fixed .hero-panel-body {
    padding: 24px !important;
  }

  .mini-rating {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* PPP v1.0 visual polish pass 6 small — hero photo + trust strip */
.hero {
  min-height: 500px !important;
  padding-top: 46px !important;
  padding-bottom: 54px !important;
  grid-template-columns: minmax(0, .96fr) minmax(360px, 500px) !important;
  gap: 48px !important;
}

.hero h1,
h1 {
  font-size: clamp(40px, 5vw, 66px) !important;
  line-height: .98 !important;
}

.hero-panel-fixed {
  display: grid !important;
  grid-template-rows: 210px auto !important;
  min-height: 430px !important;
  align-self: center !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.02)), #1a1f20 !important;
}

.hero-panel-photo {
  display: block !important;
  min-height: 210px;
  position: relative;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.34)), url("/assets/hero-main.jpg");
  background-size: cover;
  background-position: center;
}

.photo-badge {
  position: absolute;
  left: 18px;
  bottom: 16px;
  background: rgba(10,12,12,.82);
  border: 1px solid rgba(138,232,90,.55);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-panel-fixed .hero-panel-image {
  display: none !important;
}

.hero-panel-fixed .hero-panel-body {
  padding: 24px 28px 28px !important;
}

.trust-strip {
  background: linear-gradient(90deg, rgba(120,209,67,.10), rgba(255,255,255,.025)), #111415;
  border-top: 1px solid rgba(138,232,90,.28);
  border-bottom: 1px solid rgba(138,232,90,.28);
  padding: 18px 4.5vw;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

.trust-strip div {
  border-left: 2px solid rgba(138,232,90,.55);
  padding-left: 14px;
}

.trust-strip strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

.trust-strip span {
  display: block;
  color: #cfcfc8;
  font-size: 13px;
  margin-top: 3px;
}

@media(max-width:1100px) {
  .hero {
    grid-template-columns: 1fr !important;
  }

  .hero-panel-fixed {
    grid-template-rows: 250px auto !important;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media(max-width:760px) {
  .hero {
    padding-top: 36px !important;
    padding-bottom: 44px !important;
  }

  .hero h1,
  h1 {
    font-size: clamp(32px, 9.4vw, 48px) !important;
  }

  .hero-panel-fixed {
    grid-template-rows: 200px auto !important;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

/* PPP v1.0 pass 8 — force visible hero image + mobile cleanup */
.header {
  min-height: 86px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.brand img {
  width: 92px !important;
}

.hero {
  min-height: 455px !important;
  padding-top: 34px !important;
  padding-bottom: 40px !important;
}

.hero h1,
h1 {
  font-size: clamp(36px, 4.5vw, 58px) !important;
  line-height: 1 !important;
}

.hero-panel-fixed {
  grid-template-rows: 245px auto !important;
  min-height: 410px !important;
}

.force-visible-photo {
  height: 245px !important;
  min-height: 245px !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative !important;
}

.force-visible-photo img {
  width: 100% !important;
  height: 245px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: brightness(.96) contrast(1.06) saturate(1.06) !important;
}

.force-visible-photo::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.20)) !important;
  pointer-events: none !important;
}

.hero-panel-fixed .hero-panel-body {
  padding-top: 20px !important;
}

.trust-strip {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.help {
  font-size: 11px !important;
  padding: 10px 15px !important;
}

@media(max-width:760px) {
  .topbar {
    font-size: 11px !important;
  }

  .header {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .brand img {
    width: 74px !important;
  }

  .nav {
    grid-template-columns: 1fr 1fr !important;
    gap: 7px !important;
  }

  .nav a {
    font-size: 11px !important;
    padding: 9px 8px !important;
  }

  .call {
    font-size: 14px !important;
    padding: 11px 14px !important;
  }

  .hero {
    padding-top: 26px !important;
    padding-bottom: 34px !important;
  }

  .hero h1,
  h1 {
    font-size: clamp(28px, 8.6vw, 40px) !important;
    line-height: 1.04 !important;
  }

  .hero p {
    font-size: 15px !important;
  }

  .hero-panel-fixed {
    grid-template-rows: 180px auto !important;
  }

  .force-visible-photo,
  .force-visible-photo img {
    height: 180px !important;
    min-height: 180px !important;
  }

  .help {
    position: fixed !important;
    right: 10px !important;
    bottom: 10px !important;
    opacity: .88 !important;
    transform: scale(.92) !important;
  }
}

/* PPP v1.0 pass 9 — owner-standard UX cleanup */
:root {
  --green: #79d64a;
  --green2: #95f067;
  --ink: #0b0d0e;
  --panel-warm: #202423;
}

/* tighter header */
.topbar {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  font-size: 12px !important;
}

.header {
  min-height: 78px !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  background:
    linear-gradient(180deg, rgba(18,21,21,.98), rgba(13,15,15,.98)) !important;
}

.brand img {
  width: 82px !important;
}

.nav {
  gap: 22px !important;
}

.nav a {
  font-size: 12px !important;
  letter-spacing: .055em !important;
}

.call {
  padding: 12px 22px !important;
  border-radius: 7px !important;
}

/* less template-dark, more dimensional */
body {
  background:
    radial-gradient(circle at 18% 10%, rgba(121,214,74,.08), transparent 24%),
    radial-gradient(circle at 82% 28%, rgba(121,214,74,.06), transparent 28%),
    linear-gradient(180deg, #0b0d0e, #101312 44%, #0c0e0e) !important;
}

.hero {
  min-height: 430px !important;
  padding-top: 30px !important;
  padding-bottom: 34px !important;
  background:
    radial-gradient(circle at 70% 40%, rgba(121,214,74,.08), transparent 25%),
    linear-gradient(90deg, rgba(8,9,10,.98), rgba(12,15,14,.93)) !important;
}

.hero h1,
h1 {
  font-size: clamp(34px, 4.25vw, 56px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.035em !important;
}

.hero p {
  font-size: 16.5px !important;
  line-height: 1.48 !important;
  max-width: 680px !important;
}

.badges {
  margin-bottom: 16px !important;
}

.badges span {
  padding: 8px 12px !important;
  font-size: 12px !important;
  background: rgba(5,7,7,.66) !important;
}

.cta {
  margin-top: 22px !important;
}

.service-band {
  margin-top: 18px !important;
}

.service-pill {
  padding: 10px 12px !important;
  background: rgba(5,7,7,.42) !important;
}

/* stronger image card */
.hero-panel-fixed {
  border-color: rgba(149,240,103,.50) !important;
  box-shadow:
    0 20px 70px rgba(0,0,0,.36),
    0 0 0 1px rgba(255,255,255,.035) inset !important;
  grid-template-rows: 220px auto !important;
  min-height: 380px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    #1b2020 !important;
}

.force-visible-photo,
.force-visible-photo img {
  height: 220px !important;
  min-height: 220px !important;
}

.force-visible-photo img {
  object-position: center center !important;
  filter: brightness(.98) contrast(1.05) saturate(1.07) !important;
}

.hero-panel-fixed .hero-panel-body {
  padding: 20px 24px 22px !important;
}

.hero-panel-fixed h3 {
  font-size: 22px !important;
  line-height: 1.12 !important;
}

.mini-rating {
  margin-bottom: 12px !important;
}

.quick-list {
  gap: 7px !important;
}

.mini-hours {
  margin-top: 13px !important;
  padding-top: 13px !important;
}

/* make lower trust strip feel intentional */
.trust-strip {
  background:
    linear-gradient(90deg, rgba(121,214,74,.13), rgba(255,255,255,.025)),
    #111716 !important;
  padding-top: 11px !important;
  padding-bottom: 11px !important;
}

/* less intrusive floating helper */
.help {
  right: 16px !important;
  bottom: 14px !important;
  transform: scale(.92) !important;
  opacity: .92 !important;
}

/* tablet */
@media(max-width:1100px) {
  .header {
    grid-template-columns: 100px 1fr !important;
  }

  .brand img {
    width: 76px !important;
  }

  .hero {
    gap: 26px !important;
  }

  .hero-panel-fixed {
    max-width: 760px;
  }
}

/* mobile: reduce nav height and prevent overlap */
@media(max-width:760px) {
  .topbar {
    font-size: 11px !important;
    line-height: 1.25 !important;
  }

  .header {
    display: grid !important;
    grid-template-columns: 76px 1fr !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 5vw !important;
  }

  .brand {
    grid-column: 1 / 2 !important;
    align-self: start !important;
  }

  .brand img {
    width: 66px !important;
  }

  .nav {
    grid-column: 2 / 3 !important;
    display: flex !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    padding-bottom: 2px !important;
    scrollbar-width: none !important;
  }

  .nav::-webkit-scrollbar {
    display: none !important;
  }

  .nav a {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    font-size: 10.5px !important;
    padding: 8px 9px !important;
    border-radius: 999px !important;
  }

  .call {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    font-size: 14px !important;
    padding: 11px 14px !important;
  }

  .hero {
    padding-top: 24px !important;
    padding-bottom: 28px !important;
  }

  .hero h1,
  h1 {
    font-size: clamp(27px, 8.1vw, 38px) !important;
    line-height: 1.04 !important;
  }

  .eyebrow {
    font-size: 12px !important;
    letter-spacing: .16em !important;
  }

  .hero p {
    font-size: 15px !important;
  }

  .badges {
    gap: 7px !important;
  }

  .badges span {
    font-size: 10.5px !important;
    padding: 7px 8px !important;
  }

  .cta {
    gap: 10px !important;
  }

  .hero-panel-fixed {
    grid-template-rows: 170px auto !important;
    margin-top: 18px !important;
  }

  .force-visible-photo,
  .force-visible-photo img {
    height: 170px !important;
    min-height: 170px !important;
  }

  .hero-panel-fixed .hero-panel-body {
    padding: 18px 19px 20px !important;
  }

  .trust-strip {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .trust-strip strong {
    font-size: 12px !important;
  }

  .trust-strip span {
    font-size: 11px !important;
  }

  .help {
    position: fixed !important;
    right: 8px !important;
    bottom: 8px !important;
    transform: scale(.82) !important;
    opacity: .84 !important;
  }
}

/* PPP v1.0 pass 10 — restore brand logo presence and lock header */
.header {
  min-height: 92px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  grid-template-columns: 170px 1fr auto !important;
}

.brand {
  min-width: 150px !important;
  justify-content: flex-start !important;
}

.brand img {
  width: 118px !important;
  max-width: 118px !important;
  height: auto !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.42)) !important;
}

.nav {
  justify-content: center !important;
  gap: 24px !important;
}

.nav a {
  font-size: 12.5px !important;
}

.call {
  padding: 13px 24px !important;
}

/* keep hero polished but not over-compressed */
.hero {
  min-height: 455px !important;
  padding-top: 34px !important;
  padding-bottom: 42px !important;
}

.hero h1,
h1 {
  font-size: clamp(38px, 4.55vw, 60px) !important;
}

/* reduce Get Help distraction on review screens */
.help {
  opacity: .82 !important;
  transform: scale(.88) !important;
}

.help:hover {
  opacity: 1 !important;
  transform: scale(.92) translateY(-1px) !important;
}

@media(max-width:1100px) {
  .header {
    grid-template-columns: 140px 1fr !important;
  }

  .brand {
    min-width: 120px !important;
  }

  .brand img {
    width: 96px !important;
    max-width: 96px !important;
  }
}

@media(max-width:760px) {
  .header {
    grid-template-columns: 92px 1fr !important;
    gap: 10px !important;
  }

  .brand {
    min-width: 80px !important;
  }

  .brand img {
    width: 82px !important;
    max-width: 82px !important;
  }

  .nav {
    grid-column: 2 / 3 !important;
  }

  .nav a {
    font-size: 10.5px !important;
    padding: 8px 9px !important;
  }

  .call {
    grid-column: 1 / -1 !important;
  }

  .help {
    transform: scale(.78) !important;
    opacity: .72 !important;
  }
}

/* PPP v1.0 pass 11 — restore correct brand logo and footer logo */
.brand img {
  width: 118px !important;
  max-width: 118px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  border-radius: 0 !important;
}

.footer-brand-logo img {
  width: 150px !important;
  max-width: 150px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin-bottom: 16px !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.footer-brand-logo p {
  color: #d7d7d0 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

@media(max-width:760px) {
  .brand img {
    width: 86px !important;
    max-width: 86px !important;
  }

  .footer-brand-logo img {
    width: 130px !important;
    max-width: 130px !important;
  }
}

/* PPP v1.0 pass 12 — hard lock brand logo + homepage large hero */
.brand img {
  width: 112px !important;
  max-width: 112px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.footer-brand-logo img {
  width: 150px !important;
  max-width: 150px !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.ppp-home-large-hero .hero {
  min-height: 620px !important;
  grid-template-columns: 1fr !important;
  align-items: center !important;
  background:
    linear-gradient(90deg, rgba(8,10,10,.92), rgba(8,10,10,.58)),
    url('/assets/store-hero.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
}

.ppp-home-large-hero .hero-panel {
  display: none !important;
}

.ppp-home-large-hero .hero-content {
  max-width: 760px !important;
}

.ppp-home-large-hero .hero h1 {
  font-size: clamp(48px, 6.2vw, 86px) !important;
  line-height: .94 !important;
}

.ppp-home-large-hero .hero p {
  max-width: 720px !important;
  font-size: 20px !important;
}

/* inner pages keep split layout */
body:not(.ppp-home-large-hero) .hero {
  grid-template-columns: minmax(0,.95fr) minmax(360px,500px) !important;
}

/* mobile homepage should not feel crushed */
@media(max-width:760px) {
  .brand img {
    width: 86px !important;
    max-width: 86px !important;
  }

  .footer-brand-logo img {
    width: 130px !important;
    max-width: 130px !important;
  }

  .ppp-home-large-hero .hero {
    min-height: auto !important;
    padding-top: 42px !important;
    padding-bottom: 50px !important;
  }

  .ppp-home-large-hero .hero h1 {
    font-size: clamp(34px, 10vw, 54px) !important;
    line-height: 1 !important;
  }

  .ppp-home-large-hero .hero p {
    font-size: 17px !important;
  }
}

/* PPP micro lock — uniform header/footer */
.brand img {
  width: 112px !important;
  max-width: 112px !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.footer-brand-logo img {
  width: 150px !important;
  max-width: 150px !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  background: transparent !important;
  display: block !important;
  margin-bottom: 14px !important;
}

.nav a.active {
  color: var(--green2) !important;
}

@media(max-width:760px) {
  .brand img {
    width: 86px !important;
    max-width: 86px !important;
  }

  .footer-brand-logo img {
    width: 130px !important;
    max-width: 130px !important;
  }
}
