:root {
  --bg: #07111a;
  --bg-2: #0b1620;
  --panel: #101d27;
  --panel-2: #14232f;
  --line: rgba(255,255,255,.11);
  --text: #f6f9fb;
  --muted: #9eacb8;
  --blue: #1593f4;
  --blue-2: #0a73c9;
  --light: #edf3f7;
  --ink: #0d151b;
  --gold: #ffbd2e;
  --shadow: 0 24px 70px rgba(0,0,0,.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: white;
  color: black;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(5, 12, 18, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background .2s ease;
}

.site-header.scrolled {
  background: rgba(5, 12, 18, .96);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 330px;
  flex-shrink: 0;
}

.brand-avatar {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
  flex: 0 0 62px;
}

.brand-wordmark {
  width: 245px;
  height: 68px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.primary-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .55px;
  font-size: 12px;
  font-weight: 700;
  color: #d8e0e6;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--blue);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(21,147,244,.7);
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 82px;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,8,12,.96) 0%, rgba(2,8,12,.84) 31%, rgba(2,8,12,.39) 66%, rgba(2,8,12,.18) 100%),
    linear-gradient(0deg, rgba(3,9,13,.78) 0%, transparent 52%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 678px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 48px;
  padding-bottom: 138px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 2.1px;
  font-size: 11px;
  font-weight: 800;
}

.hero h1,
.section h2,
.site-footer strong {
  font-family: "Barlow Condensed", sans-serif;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(66px, 7vw, 108px);
  line-height: .87;
  letter-spacing: -1.7px;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: #d6dee4;
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 7px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .35px;
  transition: transform .18s ease, filter .18s ease, border-color .18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--blue), var(--blue-2));
  color: white;
  box-shadow: 0 12px 30px rgba(10,115,201,.23);
}

.btn-ghost {
  color: white;
  border-color: rgba(255,255,255,.45);
  background: rgba(6,12,17,.3);
  backdrop-filter: blur(10px);
}

.hero-facts {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(950px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(6,13,19,.92);
  backdrop-filter: blur(16px);
}

.hero-facts article {
  padding: 19px 22px;
  border-right: 1px solid var(--line);
}

.hero-facts article:last-child {
  border-right: 0;
}

.hero-facts span,
.hero-facts strong,
.hero-facts small {
  display: block;
}

.hero-facts span {
  color: #778896;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero-facts strong {
  margin-top: 5px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  text-transform: uppercase;
}

.hero-facts small {
  color: var(--muted);
  font-size: 10px;
}

.section {
  padding: 95px 0;
}

.section-dark {
  background: linear-gradient(180deg, #0b151d, #071018);
}

.section-light {
  background: var(--light);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 38px;
}

.section h2 {
  margin: 0;
  font-size: clamp(44px, 5.5vw, 70px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.section-heading > p,
.about-copy > p,
.shop-grid > div:first-child > p,
.request-grid > div:first-child > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.section-light .about-copy > p {
  color: #62717c;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-card {
  position: relative;
  min-height: 150px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.016));
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21,147,244,.6);
  background: linear-gradient(145deg, rgba(21,147,244,.09), rgba(255,255,255,.02));
}


.service-card h3 {
  margin: 0 0 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}

.about-image {
  min-height: 410px;
  display: grid;
  place-items: center;
  padding: 38px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 45%, rgba(21,147,244,.18), transparent 42%),
    #08121a;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  border-radius: 4px;
}

.about-list {
  margin: 30px 0;
  border-top: 1px solid #cbd4da;
}

.about-list div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #cbd4da;
}

.about-list span {
  color: var(--blue-2);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
}

.about-list strong {
  font-size: 13px;
}

.text-link {
  color: var(--blue-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.reviews-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(21,147,244,.12), transparent 30%),
    #08121a;
}

.reviews-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rating-box > strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 68px;
  line-height: .8;
  color: var(--blue);
}

.rating-box small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.review-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
}

.review-card blockquote {
  margin: 27px 0 24px;
  color: #edf3f7;
  font-size: 14px;
  line-height: 1.7;
}

.review-card footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.review-card footer strong,
.review-card footer span {
  display: block;
}

.review-card footer strong {
  font-size: 12px;
}

.review-card footer span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.social-card {
  min-height: 82px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  background: rgba(255,255,255,.025);
  transition: transform .18s ease, border-color .18s ease;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21,147,244,.6);
}

.social-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #152737;
  color: white;
  font-size: 21px;
  font-weight: 800;
}

.social-card small,
.social-card strong {
  display: block;
}

.social-card small {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-card strong {
  margin-top: 3px;
  font-size: 14px;
}

.facebook .social-icon {
  background: #1667d9;
}

.yelp .social-icon {
  background: #d3272e;
}

.reviews .social-icon {
  background: #d29417;
}

.shop-section {
  background: #dfe7ec;
  color: var(--ink);
}

.shop-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.shop-grid > div:first-child > p {
  color: #62717c;
}

.shop-image {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.shop-image img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.contact-list {
  margin-top: 30px;
  border-top: 1px solid #c3ced5;
}

.contact-list a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid #c3ced5;
  text-decoration: none;
}

.contact-list small,
.contact-list strong {
  display: block;
}

.contact-list small {
  color: #6f7e89;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-list strong {
  margin-top: 4px;
  font-size: 14px;
}

.request-section {
  background: #0a151e;
}

.request-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
}

.big-phone {
  display: inline-block;
  margin-top: 32px;
  color: var(--blue);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  font-weight: 700;
}

.request-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #101c25;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.request-form label {
  display: block;
  margin-bottom: 15px;
  color: #d9e1e6;
  font-size: 11px;
  font-weight: 700;
}

.request-form input,
.request-form textarea,
.request-form select {
  width: 100%;
  display: block;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #34424d;
  border-radius: 7px;
  outline: 0;
  background: #09131a;
  color: white;
}

.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
  border-color: var(--blue);
}

.btn-full {
  width: 100%;
}

.form-result {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #28613c;
  border-radius: 8px;
  background: #102719;
  color: #b8e9c7;
  white-space: pre-wrap;
  font-size: 11px;
  line-height: 1.6;
}

.site-footer {
  background: #050a0e;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap: 28px;
  padding: 40px 0 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-size: 23px;
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.footer-block small,
.footer-block a,
.footer-block span {
  display: block;
}

.footer-block small {
  color: #647583;
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.footer-block a,
.footer-block span {
  margin-top: 5px;
  color: #d9e2e8;
  text-decoration: none;
  font-size: 11px;
}

.footer-bottom {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #6f7e89;
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  text-decoration: none;
}

@media (max-width: 1050px) {
  .brand {
    min-width: auto;
  }

  .brand-wordmark {
    width: 205px;
    height: 58px;
  }

  .primary-nav {
    gap: 18px;
  }

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

  .about-grid,
  .shop-grid,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .shop-grid {
    gap: 38px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .header-call {
    display: none;
  }

  .nav-toggle {
    width: 44px;
    height: 42px;
    display: block;
    margin-left: auto;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: white;
  }

  .primary-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #09131a;
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: flex;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2,8,12,.94), rgba(2,8,12,.52)),
      linear-gradient(0deg, rgba(3,9,13,.78), transparent 52%);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .social-row {
    grid-template-columns: 1fr;
  }

  .reviews-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-avatar {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-wordmark {
    width: 158px;
    height: 48px;
  }

  .primary-nav {
    top: 78px;
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: 790px;
    padding-top: 74px;
  }

  .hero-inner {
    min-height: 716px;
    justify-content: flex-start;
    padding-top: 86px;
    padding-bottom: 235px;
  }

  .hero h1 {
    font-size: clamp(56px, 17vw, 78px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-facts {
    left: 0;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-facts article {
    padding: 11px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-facts article:last-child {
    border-bottom: 0;
  }

  .hero-facts strong {
    font-size: 18px;
  }

  .section {
    padding: 72px 0;
  }

  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 270px;
    padding: 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 17px 0;
  }
}


.about-brand-image img {
  width: min(460px, 92%);
  max-height: 260px;
  object-fit: contain;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.request-form .btn:disabled {
  opacity: .62;
  cursor: wait;
  transform: none;
}

.form-result.success {
  border-color: #28613c;
  background: #102719;
  color: #b8e9c7;
}

.form-result.error {
  border-color: #7d3333;
  background: #2a1414;
  color: #ffc1c1;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.form-note a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

/* FINAL MOBILE HERO REDESIGN */
.mobile-facts-spacer {
  display: none;
}

@media (max-width: 600px) {
  .hero {
    min-height: 0 !important;
    padding-top: 78px !important;
    overflow: hidden !important;
  }

  .hero-inner {
    min-height: 0 !important;
    display: block !important;
    padding-top: 68px !important;
    padding-bottom: 34px !important;
  }

  .hero-copy {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero h1 {
    font-size: clamp(54px, 15vw, 70px) !important;
    line-height: .9 !important;
    margin-bottom: 0 !important;
  }

  .hero-lead {
    margin-top: 24px !important;
    margin-bottom: 0 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-top: 30px !important;
    margin-bottom: 0 !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    min-height: 58px !important;
    border-radius: 12px !important;
  }

  .hero-actions .btn-ghost {
    border: 1px solid rgba(255,255,255,.35) !important;
    background: rgba(7,17,26,.86) !important;
    box-shadow: none !important;
  }

  .mobile-facts-spacer {
    display: block !important;
    height: 30px !important;
    width: 100% !important;
    flex: 0 0 30px !important;
  }

  .hero-facts {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: rgba(5,13,20,.95) !important;
    box-shadow: 0 20px 48px rgba(0,0,0,.3) !important;
    backdrop-filter: blur(16px) !important;
  }

  .hero-facts article {
    padding: 20px 24px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.10) !important;
  }

  .hero-facts article:last-child {
    border-bottom: 0 !important;
  }

  .hero-facts span {
    margin: 0 0 8px !important;
    color: #8594a1 !important;
    font-size: 9px !important;
  }

  .hero-facts strong {
    margin: 0 0 5px !important;
    font-size: 20px !important;
  }

  .hero-facts small {
    font-size: 11px !important;
    line-height: 1.45 !important;
  }

  /* Give the next section a clean break from the hero card */
  #services {
    padding-top: 72px !important;
  }
}


/* BUSINESS INFO IS A TRUE SEPARATE SECTION */
.mobile-facts-spacer {
  display: none !important;
}

.business-info-section {
  position: relative;
  z-index: 5;
  padding: 28px 0 34px;
  background: #07111a;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.business-info-section .hero-facts {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: #0a151e !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.22) !important;
}

.business-info-section .hero-facts article {
  padding: 22px 24px !important;
  border-right: 1px solid rgba(255,255,255,.10) !important;
  border-bottom: 0 !important;
}

.business-info-section .hero-facts article:last-child {
  border-right: 0 !important;
}

@media (max-width: 600px) {
  .hero {
    min-height: 0 !important;
  }

  .hero-inner {
    min-height: 0 !important;
    padding-bottom: 42px !important;
  }

  .hero-actions {
    margin-bottom: 0 !important;
  }

  .business-info-section {
    padding: 28px 0 40px !important;
    background: #07111a !important;
  }

  .business-info-section .hero-facts {
    grid-template-columns: 1fr !important;
    border-radius: 16px !important;
  }

  .business-info-section .hero-facts article {
    padding: 20px 24px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.10) !important;
  }

  .business-info-section .hero-facts article:last-child {
    border-bottom: 0 !important;
  }

  #services {
    padding-top: 72px !important;
  }
}


/* Definitive separate-section fix */
.business-info-section {
  position: static !important;
  display: block !important;
  width: 100% !important;
  clear: both !important;
  transform: none !important;
  margin: 0 !important;
  padding: 32px 0 38px !important;
  background: #07111a !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
}

.business-info-section .hero-facts {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

@media (max-width: 600px) {
  .hero {
    min-height: 0 !important;
    height: auto !important;
  }

  .hero-inner {
    min-height: 0 !important;
    height: auto !important;
    padding-bottom: 40px !important;
  }

  .business-info-section {
    padding-top: 30px !important;
  }

  .business-info-section .hero-facts {
    grid-template-columns: 1fr !important;
    border-radius: 16px !important;
  }
}


/* ===== FINAL TOP-OF-PAGE LAYOUT ===== */

.business-info-section {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 30px 0 38px !important;
  background: #07111a !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
}

.business-info-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: #0a151e;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}

.business-info-card article {
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,.10);
}

.business-info-card article:last-child {
  border-right: 0;
}

.business-info-card .info-label,
.business-info-card strong,
.business-info-card small {
  display: block;
}

.business-info-card .info-label {
  margin-bottom: 8px;
  color: #8594a1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.business-info-card strong {
  margin-bottom: 5px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 23px;
  line-height: 1;
  text-transform: uppercase;
}

.business-info-card small {
  color: #9eacb8;
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 600px) {
  .hero {
    position: relative !important;
    min-height: 0 !important;
    height: auto !important;
    padding-top: 78px !important;
    overflow: hidden !important;
  }

  .hero-photo {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
  }

  .hero-inner {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    min-height: 0 !important;
    height: auto !important;
    padding-top: 68px !important;
    padding-bottom: 38px !important;
  }

  .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero h1 {
    margin: 0 !important;
    font-size: clamp(54px, 15vw, 70px) !important;
    line-height: .90 !important;
  }

  .hero-lead {
    margin: 24px 0 0 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin: 30px 0 0 !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    min-height: 58px !important;
    border-radius: 12px !important;
  }

  .business-info-section {
    position: relative !important;
    z-index: 3 !important;
    margin: 0 !important;
    padding: 28px 0 40px !important;
    background: #07111a !important;
  }

  .business-info-card {
    grid-template-columns: 1fr !important;
    border-radius: 16px !important;
  }

  .business-info-card article {
    padding: 20px 24px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.10) !important;
  }

  .business-info-card article:last-child {
    border-bottom: 0 !important;
  }

  #services {
    padding-top: 72px !important;
  }
}

/* ===== BUSINESS INFO: REFERENCE STYLE ===== */
.business-info-section {
  padding: 0 !important;
  background: #07111a !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
}

.business-info-section .shell {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.business-info-card {
  display: block !important;
  width: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #07111a !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.business-info-card article {
  display: block !important;
  min-height: 86px !important;
  padding: 16px 28px 15px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.business-info-card article:last-child {
  border-bottom: 0 !important;
}

.business-info-card .info-label {
  display: block !important;
  margin: 0 0 8px !important;
  color: #6f7f8c !important;
  font-size: 8px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 1.7px !important;
  text-transform: uppercase !important;
}

.business-info-card strong {
  display: block !important;
  margin: 0 0 5px !important;
  color: #f7fafc !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 22px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.business-info-card small {
  display: block !important;
  margin: 0 !important;
  color: #7f8d98 !important;
  font-size: 10px !important;
  line-height: 1.35 !important;
}

@media (min-width: 761px) {
  .business-info-section .shell {
    width: min(1180px, calc(100% - 40px)) !important;
    margin-inline: auto !important;
  }

  .business-info-card {
    max-width: 440px !important;
    border-left: 1px solid rgba(255,255,255,.08) !important;
    border-right: 1px solid rgba(255,255,255,.08) !important;
  }

  .business-info-card article {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

@media (max-width: 760px) {
  .business-info-section {
    padding: 0 !important;
  }

  .business-info-section .shell {
    width: 100% !important;
  }

  .business-info-card article {
    min-height: 84px !important;
    padding: 15px 14px 14px !important;
  }

  .business-info-card .info-label {
    font-size: 7px !important;
    margin-bottom: 7px !important;
  }

  .business-info-card strong {
    font-size: 19px !important;
    margin-bottom: 5px !important;
  }

  .business-info-card small {
    font-size: 9px !important;
  }
}

/* ===== TRUE HERO GAP FIX ===== */
@media (min-width: 761px) {
  .hero {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 82px !important;
  }

  .hero-inner {
    min-height: 0 !important;
    height: auto !important;
    display: block !important;
    padding-top: 68px !important;
    padding-bottom: 52px !important;
  }

  .hero-copy {
    max-width: 720px !important;
  }

  .hero-actions {
    margin-top: 28px !important;
    margin-bottom: 0 !important;
  }
}


/* ===== FINAL VISIBLE GAP FIX ===== */
@media (min-width: 761px) {
  .hero {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 82px !important;
  }

  .hero-inner {
    min-height: 0 !important;
    height: auto !important;
    display: block !important;
    padding-top: 56px !important;
    padding-bottom: 18px !important;
  }

  .hero-actions {
    margin-top: 24px !important;
    margin-bottom: 0 !important;
  }

  .business-info-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}


/* ===== TRANSPARENT BUSINESS INFO SECTION ===== */
.business-info-section {
  background: transparent !important;
  border-top: 1px solid rgba(255,255,255,.07) !important;
  border-bottom: 1px solid rgba(255,255,255,.07) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Continue the shop photo visually behind the info area */
.business-info-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(2,8,12,.58), rgba(2,8,12,.58)),
    url("assets/shop-exterior.png") center bottom / cover no-repeat;
  z-index: 0;
}

.business-info-section .shell {
  position: relative !important;
  z-index: 1 !important;
}

.business-info-card {
  background: rgba(4,12,18,.40) !important;
  backdrop-filter: blur(7px) !important;
  -webkit-backdrop-filter: blur(7px) !important;
}

.business-info-card article {
  background: transparent !important;
}

@media (max-width: 760px) {
  .business-info-section::before {
    background:
      linear-gradient(rgba(2,8,12,.64), rgba(2,8,12,.64)),
      url("assets/shop-exterior.png") center bottom / cover no-repeat;
  }

  .business-info-card {
    background: rgba(4,12,18,.36) !important;
  }
}


/* ===== ONE CONTINUOUS HERO IMAGE / NO DUPLICATE BACKGROUND ===== */
.business-info-section,
.business-info-section::before {
  display: none !important;
  content: none !important;
  background: none !important;
}

.hero {
  min-height: 0 !important;
  height: auto !important;
  padding-bottom: 0 !important;
}

.hero-inner {
  min-height: 0 !important;
  height: auto !important;
  display: block !important;
}

.hero-business-info {
  position: relative;
  z-index: 3;
  width: min(560px, 100%);
  margin-top: 18px;
  padding-bottom: 24px;
}

.hero-business-info .business-info-card {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  display: block !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 10px !important;
  background: rgba(4,12,18,.48) !important;
  box-shadow: none !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}

.hero-business-info .business-info-card article {
  display: block !important;
  min-height: 0 !important;
  padding: 14px 18px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  background: transparent !important;
}

.hero-business-info .business-info-card article:last-child {
  border-bottom: 0 !important;
}

.hero-business-info .info-label {
  display: block !important;
  margin: 0 0 7px !important;
  color: #82919d !important;
  font-size: 8px !important;
  font-weight: 800 !important;
  letter-spacing: 1.7px !important;
  text-transform: uppercase !important;
}

.hero-business-info strong {
  display: block !important;
  margin: 0 0 4px !important;
  color: #fff !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 22px !important;
  line-height: 1 !important;
}

.hero-business-info small {
  display: block !important;
  color: #93a1ac !important;
  font-size: 10px !important;
}

@media (min-width: 761px) {
  .hero-inner {
    padding-top: 56px !important;
    padding-bottom: 0 !important;
  }

  .hero-business-info {
    margin-top: 18px !important;
  }
}

@media (max-width: 760px) {
  .hero-inner {
    padding-bottom: 0 !important;
  }

  .hero-business-info {
    width: 100% !important;
    margin-top: 22px !important;
    padding-bottom: 24px !important;
  }
}
