:root {
  --black: #0B0B0B;
  --white: #FFFFFF;
  --orange: #F28C1E;
  --grey-900: #2A2A2A;
  --grey-600: #6B6B6B;
  --grey-100: #F4F3F0;
  --header: 56px;
  --radius-btn: 6px;
  --radius-card: 8px;
  --container: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Barlow, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--grey-900);
  background: var(--white);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
.btn {
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--white);
}

h2 {
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--black);
  text-transform: none;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--black);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 48px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 18px;
  border: 0;
  cursor: pointer;
  width: 100%;
}

.btn-orange {
  background: var(--orange);
  color: var(--black);
}

.btn-orange:hover,
.btn-orange:focus-visible {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}

.btn-call {
  background: var(--black);
  color: var(--white);
  border: 1.5px solid var(--white);
}

.btn-ghost-dark {
  display: none;
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
  height: 44px;
  width: auto;
  padding: 0 20px;
}

html.js .btn-ghost-dark {
  display: inline-flex;
}

.btn-full {
  width: 100%;
}

.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.text-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.text-link {
  color: var(--grey-900);
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover {
  color: var(--orange);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: var(--black);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
  padding-top: 2px;
  padding-bottom: 2px;
}

.logo img {
  height: 36px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--orange);
}

.header-quote {
  display: none;
  width: auto;
  height: 40px;
  padding: 0 20px;
  font-size: 16px;
}

.hero {
  position: relative;
  color: var(--white);
  background: var(--black);
}

.hero-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    to top,
    #0b0b0b 0%,
    rgba(11, 11, 11, 0.88) 50%,
    rgba(11, 11, 11, 0) 100%
  );
}

.hero-copy {
  padding-bottom: 24px;
}

.hero-sub {
  margin: 0 0 20px;
  max-width: 34em;
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.trust {
  background: var(--grey-100);
  padding: 24px 0;
}

.trust-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 15px;
}

.trust-item {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
}

.bullet {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  flex: 0 0 8px;
  background: var(--orange);
}

.services-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
}

.service-card img,
.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.service-body {
  padding: 16px;
}

.service-body p {
  margin: 0;
  color: var(--grey-600);
}

.ba-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ba-pair figure {
  margin: 0;
  position: relative;
  min-width: 0;
}

.ba-pair img {
  width: 100%;
  aspect-ratio: var(--ba-ratio, 3 / 4);
  object-fit: cover;
  border-radius: var(--radius-card);
}

.ba-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--black);
  color: var(--white);
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
}

.ba-caption {
  margin: 16px 0 0;
  color: var(--grey-600);
  font-size: 14px;
}

.walkthrough {
  margin-top: 16px;
}

.walkthrough video {
  width: min(100%, 400px);
  background: var(--black);
}

.gallery-grid {
  grid-template-columns: 1fr 1fr;
}

.gallery-item {
  text-decoration: none;
  color: inherit;
}

.gallery-video {
  position: relative;
  display: grid;
  border: 0;
  padding: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 100%;
}

.gallery-video > img {
  grid-area: 1 / 1;
}

.gallery-video::after {
  content: "";
  grid-area: 1 / 1;
  place-self: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 14'%3E%3Cpath fill='%23fff' d='M0 0v14l12-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 58% 50%;
  background-size: 16px 18px;
  pointer-events: none;
}

.gallery-video.is-playing,
.gallery-video[data-walkthrough] {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
}

.gallery-video.is-playing::after,
.gallery-video[data-walkthrough]::after {
  display: none;
}

.gallery-video video {
  width: min(100%, 400px);
  background: var(--black);
}

.gallery-video .text-link {
  margin-top: 8px;
}

.about-block p {
  margin: 0;
  color: var(--grey-600);
  max-width: 38em;
}

.about-block-has-photo {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 120px;
}

.about-facts {
  margin-top: 20px;
}

.about-reviews {
  margin: 16px 0 0;
}

.gallery-item span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--grey-600);
}

.ig-more {
  margin: 24px 0 0;
}

.quote {
  background: var(--black);
  padding: 48px 0;
  scroll-margin-top: 72px;
}

.quote h2 {
  color: var(--black);
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px 20px 32px;
  max-width: 560px;
  margin: 0 auto;
}

.quote-sub {
  margin: -8px 0 24px;
  color: var(--grey-600);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.quote-form label em {
  font-style: normal;
  font-weight: 400;
  color: var(--grey-600);
}

.quote-form small {
  font-weight: 400;
  color: var(--grey-600);
  font-size: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  font: inherit;
  font-weight: 400;
  color: var(--grey-900);
  border: 1px solid #d8d6d1;
  border-radius: var(--radius-btn);
  padding: 12px 14px;
  min-height: 52px;
  background: var(--white);
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-form input[type="file"] {
  min-height: 0;
  padding: 8px 0;
  border: 0;
}

.file-control {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

html.js .quote-form input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
}

[data-file-count] {
  font-weight: 400;
  color: var(--grey-600);
  font-size: 14px;
}

.field-error,
.form-banner {
  color: #9b1c1c;
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}

.form-note {
  margin: 0;
  font-size: 14px;
  color: var(--grey-600);
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 8px;
}

.footer-tag,
.site-footer p {
  margin: 0;
  color: #c8c8c8;
  font-size: 14px;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--orange);
}

.copy {
  margin-top: 16px !important;
}

.sticky-bar {
  display: none;
}

.sticky-bar-on {
  padding-bottom: 52px;
}

@media (max-width: 767px) {
  .sticky-bar:not([hidden]) {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
  }

  .sticky-bar .btn {
    width: 50%;
    border-radius: 0;
  }

  .sticky-bar .btn:only-child {
    width: 100%;
  }

  .service-card {
    flex-direction: row;
    align-items: stretch;
  }

  .service-card img {
    width: 112px;
    flex: 0 0 112px;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .service-body {
    padding: 12px 14px;
    min-width: 0;
    flex: 1;
  }

  .service-body h3 {
    font-size: 19px;
  }

  .service-body p {
    font-size: 15px;
    line-height: 1.4;
  }
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 44px;
    margin-bottom: 24px;
  }

  h3 {
    font-size: 24px;
  }

  .section,
  .quote,
  .site-footer {
    padding: 96px 0;
  }

  .btn {
    width: auto;
  }

  .header-quote {
    display: inline-flex;
  }

  .hero-media {
    aspect-ratio: 16 / 9;
  }

  .hero-copy {
    padding-bottom: 40px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .trust-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    font-size: inherit;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .gallery-grid {
    gap: 24px;
  }

  .ba-list {
    gap: 48px;
  }

  .ba-pair {
    gap: 16px;
  }

  .quote-card {
    padding: 40px;
  }

  .hero-actions .btn,
  .quote-form .btn {
    width: auto;
  }

  .quote-form .btn-full {
    width: 100%;
  }
}

@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
