:root {
  color-scheme: dark;
  --red: #e51621;
  --red-dark: #9c1017;
  --black: #050506;
  --ink: #111318;
  --muted: #535d68;
  --gold: #f5b400;
  --card-shadow: 0 18px 42px rgba(0,0,0,.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(229,22,33,.14), transparent 30%),
    linear-gradient(180deg, #101116 0%, #050506 50%, #000 100%);
  color: #fff;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 1.16em;
  height: 1.16em;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: -0.18em;
}

.landing {
  width: min(1240px, calc(100vw - 20px));
  height: 100dvh;
  max-height: 100dvh;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: clamp(4px, .75vh, 8px);
  margin: 0 auto;
  padding: clamp(4px, .8vh, 8px) 0;
  overflow: hidden;
}

.header {
  display: grid;
  justify-items: center;
  gap: 2px;
}

.text-logo,
.brand-subtitle {
  display: inline-grid;
  place-items: center;
  border: 3px solid #000;
  border-radius: 4px;
  background: #fff;
  color: var(--red);
  text-align: center;
  text-transform: uppercase;
  box-shadow: none;
}

.text-logo {
  min-height: clamp(36px, 6vh, 54px);
  padding: 5px clamp(18px, 3.7vw, 42px);
  font-size: clamp(1.45rem, 4.55vw, 3.2rem);
  line-height: .88;
  font-weight: 1000;
}

.brand-subtitle {
  min-height: clamp(23px, 3.7vh, 32px);
  padding: 3px clamp(14px, 2.7vw, 28px);
  border-width: 2px;
  font-size: clamp(.7rem, 1.45vw, .98rem);
  font-weight: 950;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(5px, .8vw, 9px);
}

.value-cards article {
  min-height: clamp(31px, 5vh, 44px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(24,25,30,.98), rgba(7,7,8,.98));
  box-shadow: 0 9px 24px rgba(0,0,0,.26);
  text-align: center;
}

.value-cards svg {
  width: clamp(18px, 2.7vh, 24px);
  height: clamp(18px, 2.7vh, 24px);
}

.value-cards span {
  font-size: clamp(.68rem, 1.3vw, .94rem);
  line-height: 1.05;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.main-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(250px, .82fr) minmax(230px, .72fr);
  gap: clamp(7px, 1vw, 12px);
}

.video-panel,
.reviews-panel,
.contact-panel {
  min-height: 0;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

.video-panel {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, #15161b, #070708);
  overflow: hidden;
}

.video-frame {
  position: relative;
  min-height: 0;
  border-radius: 7px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #050506, #111216 21%, #050506 50%, #111216 79%, #050506);
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: auto;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  transform: translateX(-50%);
  border: 0;
}

.work-button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  background: linear-gradient(180deg, #f01d28, #c9141d);
  color: #fff;
  font-weight: 950;
  font-size: clamp(.76rem, 1.15vw, .9rem);
  text-align: center;
}

.reviews-panel,
.contact-panel {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(5px, .9vh, 8px);
  padding: clamp(8px, 1.25vh, 13px);
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(180deg, #fff, #f4f6f8);
  color: var(--ink);
  overflow: hidden;
  text-align: center;
}

.reviews-panel::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--red);
  pointer-events: none;
}

.reviews-panel {
  cursor: pointer;
}

.reviews-panel > *,
.contact-panel > * {
  position: relative;
  z-index: 2;
}

.reviews-head {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 3px;
  text-align: center;
}

.google-mark {
  width: clamp(42px, 6.7vh, 58px);
  height: clamp(42px, 6.7vh, 58px);
  padding: 4px;
  border: 1px solid #e5e8ed;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.panel-label {
  margin: 0 0 1px;
  color: var(--red);
  font-size: clamp(.68rem, 1.05vw, .8rem);
  font-weight: 1000;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.reviews-head strong {
  display: block;
  font-size: clamp(.9rem, 1.35vw, 1.08rem);
  line-height: 1;
}

.reviews-head span {
  display: block;
  margin-top: 2px;
  color: #3a4048;
  font-size: clamp(.68rem, .98vw, .8rem);
  font-weight: 900;
}

.featured-review {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: clamp(7px, 1vh, 10px);
  border: 1px solid #e1e5eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17,19,24,.08);
  text-align: left;
}

.review-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px;
  align-items: center;
}

.avatar {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2f6fed;
  color: #fff;
  font-weight: 950;
}

.review-meta b,
.review-meta small {
  display: block;
  line-height: 1.05;
}

.review-meta b {
  font-size: clamp(.78rem, 1.1vw, .9rem);
}

.review-meta small {
  margin-top: 2px;
  color: #69727d;
  font-size: clamp(.62rem, .9vw, .72rem);
  font-weight: 750;
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: clamp(.84rem, 1.25vw, .98rem);
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0,0,0,.18);
}

.featured-review p {
  margin: 0;
  color: #262b31;
  font-size: clamp(.61rem, .84vw, .7rem);
  line-height: 1.17;
  font-weight: 720;
}

.review-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 4px;
  width: 100%;
  height: clamp(104px, 18vh, 142px);
  max-height: 150px;
}

.review-photos img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 7px;
  background: #d9dde3;
}

.trust-line {
  max-width: 30ch;
  margin: 0;
  color: #333940;
  font-size: clamp(.68rem, .98vw, .78rem);
  line-height: 1.2;
  font-weight: 780;
  text-align: center;
}

.reviews-button {
  width: min(100%, 240px);
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 6px;
  background: linear-gradient(180deg, #f01d28, #c9141d);
  color: #fff;
  font-size: clamp(.72rem, 1.04vw, .84rem);
  font-weight: 950;
}

.contact-badge {
  width: clamp(54px, 8vh, 70px);
  height: clamp(54px, 8vh, 70px);
  display: grid;
  place-items: center;
  border: 1px solid #e1e5eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17,19,24,.1);
}

.contact-badge svg {
  width: 74%;
  height: 74%;
}

.contact-copy {
  display: grid;
  gap: 3px;
}

.contact-copy h1 {
  margin: 0;
  color: #111318;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  line-height: 1.05;
}

.contact-copy p {
  max-width: 24ch;
  margin: 0;
  color: #555f6b;
  font-size: clamp(.7rem, 1vw, .82rem);
  line-height: 1.2;
  font-weight: 750;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.trust-badges span {
  padding: 4px 6px;
  border: 1px solid #e1e5eb;
  border-radius: 999px;
  background: #fff;
  color: #333940;
  font-size: clamp(.58rem, .82vw, .68rem);
  font-weight: 900;
  line-height: 1;
}

.contact-buttons {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.contact-buttons a {
  min-height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 6px;
  background: linear-gradient(180deg, #f01d28, #c9141d);
  color: #fff;
  font-weight: 950;
  font-size: clamp(.76rem, 1.06vw, .86rem);
}

address {
  display: grid;
  gap: 5px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(.68rem, .98vw, .8rem);
  font-style: normal;
  font-weight: 820;
  line-height: 1.18;
  justify-items: center;
  text-align: center;
}

address a,
address span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

address a {
  color: var(--ink);
}

address svg {
  width: 1.05em;
  height: 1.05em;
}

@media (max-width: 760px) {
  html,
  body {
    overflow: auto;
  }

  .landing {
    width: min(100vw - 10px, 440px);
    min-height: 100dvh;
    height: auto;
    max-height: none;
    gap: 4px;
    padding: 4px 0;
    overflow: visible;
  }

  .text-logo {
    min-height: 35px;
    padding: 5px 13px;
    border-width: 2px;
    font-size: clamp(1.28rem, 7.8vw, 1.72rem);
  }

  .brand-subtitle {
    min-height: 23px;
    padding: 3px 9px;
    font-size: clamp(.62rem, 3.2vw, .78rem);
  }

  .value-cards {
    gap: 4px;
  }

  .value-cards article {
    min-height: 32px;
    gap: 4px;
    padding: 4px 3px;
  }

  .value-cards svg {
    width: 17px;
    height: 17px;
  }

  .value-cards span {
    font-size: clamp(.56rem, 2.9vw, .7rem);
  }

  .main-grid {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(220px, 39dvh) auto auto;
    gap: 5px;
  }

  .video-panel {
    order: 1;
    gap: 5px;
    padding: 5px;
  }

  .contact-panel {
    order: 2;
  }

  .reviews-panel {
    order: 3;
  }

  .work-button {
    min-height: 31px;
    padding: 6px 8px;
    font-size: clamp(.66rem, 3vw, .76rem);
  }

  .reviews-panel,
  .contact-panel {
    gap: 5px;
    padding: 8px;
  }

  .reviews-head {
    gap: 3px;
  }

  .google-mark {
    width: 38px;
    height: 38px;
  }

  .panel-label {
    font-size: clamp(.6rem, 2.8vw, .7rem);
  }

  .reviews-head strong {
    font-size: clamp(.86rem, 3.7vw, 1rem);
  }

  .reviews-head span,
  .trust-line {
    font-size: clamp(.6rem, 2.7vw, .7rem);
  }

  .featured-review {
    gap: 4px;
    padding: 7px;
  }

  .review-photos {
    gap: 4px;
    height: clamp(96px, 25vw, 126px);
    max-height: 130px;
  }

  .avatar {
    width: 26px;
    height: 26px;
  }

  .review-meta b,
  .stars {
    font-size: .78rem;
  }

  .review-meta small,
  .featured-review p {
    font-size: clamp(.6rem, 2.62vw, .68rem);
  }

  .featured-review p {
    line-height: 1.2;
  }

  .reviews-button,
  .contact-buttons a {
    min-height: 32px;
    font-size: .74rem;
  }

  .contact-badge {
    width: 54px;
    height: 54px;
    border-radius: 13px;
  }

  .trust-badges {
    gap: 4px;
  }

  .trust-badges span {
    padding: 3px 5px;
    font-size: clamp(.54rem, 2.35vw, .64rem);
  }

  .contact-copy h1 {
    font-size: clamp(.92rem, 3.9vw, 1.06rem);
  }

  .contact-copy p,
  address {
    font-size: clamp(.62rem, 2.75vw, .7rem);
  }

  address {
    gap: 3px;
  }
}

@media (max-height: 650px) and (min-width: 761px) {
  .landing {
    gap: 4px;
    padding: 4px 0;
  }

  .text-logo {
    min-height: 32px;
  }

  .brand-subtitle {
    min-height: 22px;
  }

  .value-cards article {
    min-height: 29px;
    padding-block: 4px;
  }

  .reviews-panel,
  .contact-panel {
    padding: 7px;
    gap: 5px;
  }

  .video-panel {
    padding: 5px;
  }

  .featured-review p {
    font-size: .66rem;
    line-height: 1.18;
  }

  .contact-badge {
    width: 52px;
    height: 52px;
  }

  .work-button,
  .reviews-button,
  .contact-buttons a {
    min-height: 30px;
  }
}
