* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: white;
}

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


/* HEADER */

header {
  height: 105px;
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;

  display: flex;
  align-items: center;

  padding: 0 4%;

  background: rgba(0,0,0,.96);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.brand {
  margin-right: 45px;
}

.brand-circle {
  width: 115px;
  height: 115px;

  margin-top: 20px;

  border: 3px solid #e31620;
  border-radius: 50%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background:
    radial-gradient(circle, #291010 0%, #050505 65%);

  box-shadow:
    0 0 20px rgba(227,22,32,.28),
    inset 0 0 22px rgba(227,22,32,.15);

  transform: rotate(-4deg);
}

.brand-circle small {
  color: #e31620;
  font-size: 15px;
  font-weight: 900;
  font-style: italic;
}

.brand-circle strong {
  font-size: 22px;
  font-style: italic;
}

nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

nav a {
  position: relative;
  font-size: 15px;
  color: #ddd;
  padding: 42px 0 37px;
}

nav a:hover {
  color: white;
}

nav a.active {
  color: #e31620;
}

nav a.active::after {
  content: "";
  position: absolute;

  height: 2px;
  background: #e31620;

  left: 0;
  right: 0;
  bottom: 27px;
}

.instagram {
  margin-left: auto;
  color: #ddd;
  font-size: 14px;
}

.top-btn {
  margin-left: 30px;

  background: linear-gradient(
    180deg,
    #ef2029,
    #cb0e16
  );

  padding: 17px 29px;

  border-radius: 5px;

  font-size: 14px;
  font-weight: 800;

  box-shadow: 0 7px 25px rgba(225,20,30,.16);
}


/* HERO */

.hero {
  position: relative;
  min-height: 100vh;

  padding-top: 105px;

  overflow: hidden;
}

.hero-photo {
  position: absolute;

  top: 105px;
  right: 0;
  bottom: 0;

  width: 73%;

  background:
    url("hero.jpg")
    center center / cover
    no-repeat;
}

.hero-gradient {
  position: absolute;
  inset: 105px 0 0 0;

  background:
    linear-gradient(
      90deg,
      #050505 0%,
      rgba(5,5,5,.97) 18%,
      rgba(5,5,5,.87) 30%,
      rgba(5,5,5,.50) 46%,
      rgba(5,5,5,.12) 66%,
      rgba(5,5,5,0) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 10;

  padding:
    92px
    0
    270px
    3.5%;

  max-width: 760px;
}

.mini-title {
  display: flex;
  align-items: center;

  gap: 8px;

  margin-bottom: 27px;
}

.mini-title span {
  width: 20px;
  height: 2px;
  background: #e31620;
}

.mini-title b {
  color: #e31620;
  font-size: 14px;
}

.mini-title p {
  font-size: 14px;
  color: #ddd;
}

h1 {
  font-size: clamp(52px, 5.5vw, 88px);
  line-height: .98;

  letter-spacing: -4px;

  margin-bottom: 25px;

  text-transform: none;
}

h1 strong {
  color: #e31620;
}

.description {
  color: #d0d0d0;

  font-size: 18px;
  line-height: 1.6;
}

.actions {
  display: flex;
  gap: 18px;

  margin-top: 35px;
}

.red-button,
.outline-button {
  min-width: 220px;

  padding: 17px 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;
  font-size: 15px;

  border-radius: 5px;

  transition: .2s;
}

.red-button {
  background: #e0161f;
}

.red-button:hover {
  background: #f51c26;
  transform: translateY(-2px);
}

.outline-button {
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(0,0,0,.35);

  gap: 35px;
}

.outline-button:hover {
  background: rgba(255,255,255,.08);
}


/* SERVICE STRIP */

.services-strip {
  position: absolute;

  z-index: 20;

  bottom: 95px;

  left: 3.5%;
  right: 3.5%;

  min-height: 160px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border: 1px solid rgba(255,255,255,.11);

  border-radius: 7px;

  background:
    linear-gradient(
      180deg,
      rgba(19,19,19,.98),
      rgba(9,9,9,.98)
    );
}

.services-strip article {
  display: flex;
  align-items: center;

  gap: 26px;

  padding: 27px 35px;

  position: relative;
}

.services-strip article:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 20%;
  bottom: 20%;

  width: 1px;

  background: rgba(255,255,255,.13);
}

.icon {
  min-width: 70px;

  color: #e31620;

  font-size: 52px;
  text-align: center;

  font-weight: 300;
}

.services-strip h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.services-strip p {
  color: #aaa;

  font-size: 13px;
  line-height: 1.55;
}


/* INFO */

.info-strip {
  position: absolute;

  bottom: 15px;

  left: 3.5%;
  right: 3.5%;

  height: 64px;

  z-index: 20;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid rgba(255,255,255,.12);
}

.info-strip > div {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 13px;

  color: #ccc;

  position: relative;
}

.info-strip > div:not(:last-child)::after {
  content: "";
  position: absolute;

  right: 0;

  height: 30px;
  width: 1px;

  background: rgba(255,255,255,.10);
}

.info-strip span {
  color: #e31620;
  font-size: 23px;
}


/* LOWER TEMP SECTIONS */

.placeholder {
  min-height: 500px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  background: #0c0c0c;
}

.placeholder.dark {
  background: #050505;
}

.placeholder h2 {
  font-size: 50px;
  margin-bottom: 15px;
}

.placeholder p {
  color: #888;
}


/* MOBILE */






/* ===== DESKTOP FIX FOR MAC WINDOW ===== */

@media (min-width: 760px) {

  nav {
    display: flex !important;
    gap: 24px;
  }

  .instagram {
    display: block !important;
  }

  header {
    min-width: 100%;
    padding-left: 3%;
    padding-right: 3%;
  }

  .brand {
    margin-right: 30px;
  }

  .brand-circle {
    width: 95px;
    height: 95px;
  }

  .brand-circle small {
    font-size: 12px;
  }

  .brand-circle strong {
    font-size: 19px;
  }

  .hero-photo {
    width: 72%;
    opacity: 1;
  }

  .hero-gradient {
    background:
      linear-gradient(
        90deg,
        #050505 0%,
        rgba(5,5,5,.97) 17%,
        rgba(5,5,5,.80) 31%,
        rgba(5,5,5,.42) 48%,
        rgba(5,5,5,.08) 70%,
        transparent 100%
      );
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 265px;
    max-width: 670px;
  }

  h1 {
    font-size: clamp(52px, 5vw, 78px);
  }

  .services-strip {
    position: absolute;
    left: 3.5%;
    right: 3.5%;
    bottom: 92px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
  }

  .services-strip article {
    padding: 25px 27px;
  }

  .services-strip article:not(:last-child)::after {
    top: 20%;
    bottom: 20%;
    left: auto;
    right: 0;
    width: 1px;
    height: auto;
  }

  .info-strip {
    position: absolute;
    left: 3.5%;
    right: 3.5%;
    bottom: 15px;
    height: 62px;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
  }

  .info-strip > div:not(:last-child)::after {
    display: block;
  }
}

/* Only switch to mobile on genuinely narrow screens */


/* ===== REAL BUBBLE WASH LOGO ===== */

.brand {
  display: flex;
  align-items: center;
  margin-right: 28px;
}

.brand img {
  display: block;
  width: 105px;
  height: 105px;
  object-fit: contain;
  border-radius: 50%;
}




/* ==============================
   PRICES
============================== */

.prices-section {
  padding: 110px 5%;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(220, 20, 30, .08),
      transparent 30%
    ),
    #080808;
}

.prices-heading {
  max-width: 650px;
  margin-bottom: 55px;
}

.prices-heading span {
  color: #e31620;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.prices-heading h2 {
  margin-top: 12px;

  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -3px;
}

.prices-heading p {
  margin-top: 17px;

  max-width: 540px;

  color: #888;

  font-size: 16px;
  line-height: 1.6;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 16px;
}

.price-card {
  position: relative;

  min-height: 285px;

  padding: 32px;

  display: flex;
  flex-direction: column;

  background:
    linear-gradient(
      145deg,
      #111,
      #0b0b0b
    );

  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;

  overflow: hidden;

  transition:
    transform .25s ease,
    border-color .25s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: rgba(227,22,32,.55);
}

.price-number {
  margin-bottom: 30px;

  color: #e31620;

  font-size: 13px;
  font-weight: 900;
}

.price-card h3 {
  font-size: 23px;
  margin-bottom: 14px;
}

.price-card p {
  max-width: 330px;

  color: #888;

  font-size: 14px;
  line-height: 1.6;
}

.price {
  margin-top: auto;
  padding-top: 28px;

  color: #777;

  font-size: 14px;
}

.price strong {
  margin-left: 5px;

  color: white;

  font-size: 25px;
}

.price-card.featured {
  border-color: rgba(227,22,32,.55);

  background:
    linear-gradient(
      145deg,
      rgba(227,22,32,.11),
      #0b0b0b 50%
    );
}

.popular {
  position: absolute;

  top: 22px;
  right: 22px;

  padding: 7px 10px;

  background: #e31620;

  border-radius: 4px;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
}

.temporary-price {
  margin-top: 25px;

  color: #555;

  font-size: 12px;
}


/* TABLET */




/* MOBILE */



/* ===== 5 WORKS GALLERY ===== */

.before-after {
  padding: 110px 5%;
  background: #050505;
}

.ba-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 45px;
}

.ba-heading span {
  color: #e31620;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.ba-heading h2 {
  margin-top: 10px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -3px;
}

.ba-heading > p {
  max-width: 350px;
  color: #777;
  line-height: 1.6;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.work-card {
  position: relative;
  grid-column: span 2;
  height: 430px;
  overflow: hidden;

  background: #111;
  border: 1px solid #222;
  border-radius: 8px;
}

.work-card.work-large {
  grid-column: span 3;
  height: 540px;
}

.work-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.work-card:hover img {
  transform: scale(1.035);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(0,0,0,.92)
    );

  pointer-events: none;
}

.work-info {
  position: absolute;
  z-index: 2;
  left: 25px;
  right: 25px;
  bottom: 25px;
}

.work-info span {
  color: #e31620;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.work-info h3 {
  margin-top: 7px;
  font-size: 21px;
}

.works-bottom {
  margin-top: 28px;
}

.works-bottom a {
  display: inline-flex;

  padding: 15px 22px;

  border: 1px solid #444;
  border-radius: 5px;

  font-size: 14px;
  font-weight: 800;

  transition: .2s;
}

.works-bottom a:hover {
  background: #e31620;
  border-color: #e31620;
}


/* TABLET */




/* MOBILE */



/* ===== REAL BUBBLE WASH PRICE ===== */

.real-price-wrap {
  width: 100%;
  overflow-x: auto;
}

.real-price-table {
  min-width: 850px;
  background: #0b0b0b;
  border: 1px solid #242424;
  border-radius: 8px;
  overflow: hidden;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(260px, 2fr) repeat(5, 1fr);
  border-bottom: 1px solid #222;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  padding: 18px 15px;
  display: flex;
  align-items: center;
  border-right: 1px solid #222;
  font-size: 13px;
}

.price-row span:not(:first-child) {
  justify-content: center;
  text-align: center;
}

.price-row span:last-child {
  border-right: 0;
}

.price-header {
  background: #151515;
  color: #777;
  font-weight: 900;
}

.price-header span:not(:first-child) {
  color: #e31620;
  font-size: 15px;
}

.featured-row {
  background: rgba(227, 22, 32, .08);
}

.special-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.special-prices div {
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #111;
  border: 1px solid #292929;
  border-radius: 7px;
}

.special-prices small {
  color: #999;
  font-weight: 800;
}

.special-prices strong {
  color: #e31620;
  font-size: 24px;
}




/* ========================================
   REVIEWS
======================================== */

.reviews-section {
  padding: 110px 5%;
  background: #0a0a0a;
}

.reviews-head {
  max-width: 700px;
  margin-bottom: 45px;
}

.reviews-head > span,
.contact-label,
.map-head > span {
  color: #e31620;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.reviews-head h2,
.map-head h2 {
  margin-top: 12px;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -3px;
}

.reviews-head p {
  margin-top: 15px;
  color: #777;
  line-height: 1.6;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.review-card {
  min-height: 280px;
  padding: 30px;

  display: flex;
  flex-direction: column;

  background:
    linear-gradient(
      145deg,
      #121212,
      #0c0c0c
    );

  border: 1px solid #252525;
  border-radius: 8px;
}

.stars {
  color: #e31620;
  letter-spacing: 5px;
  margin-bottom: 25px;
}

.review-card > p {
  color: #aaa;
  line-height: 1.7;
}

.review-author {
  margin-top: auto;
  padding-top: 28px;

  display: flex;
  align-items: center;
  gap: 13px;
}

.avatar {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #e31620;

  font-weight: 900;
}

.review-author div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-author small {
  color: #666;
}


/* ========================================
   CONTACT
======================================== */

.contact-section {
  padding: 110px 5%;

  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;

  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(227,22,32,.12),
      transparent 35%
    ),
    #050505;
}

.contact-left h2 {
  margin-top: 17px;

  font-size: clamp(48px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -4px;
}

.contact-left h2 b {
  color: #e31620;
}

.contact-left > p {
  margin-top: 25px;

  max-width: 600px;

  color: #999;
  font-size: 17px;
  line-height: 1.7;
}

.contact-actions {
  margin-top: 35px;

  display: flex;
  gap: 13px;
}

.contact-main,
.contact-second {
  padding: 16px 23px;

  border-radius: 5px;

  font-size: 14px;
  font-weight: 800;

  transition: .2s;
}

.contact-main {
  background: #e31620;
}

.contact-main:hover {
  background: #f21b25;
  transform: translateY(-2px);
}

.contact-second {
  border: 1px solid #444;
}

.contact-second:hover {
  border-color: #fff;
}

.contact-right {
  border-left: 1px solid #262626;
  padding-left: 50px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 38px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-item small {
  color: #e31620;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.contact-item strong,
.contact-item a {
  font-size: 21px;
}

.contact-item p {
  color: #777;
}


/* ========================================
   MAP
======================================== */

.map-section {
  padding: 100px 5%;
  background: #0a0a0a;
}

.map-head {
  margin-bottom: 35px;
}

.map-box {
  height: 480px;

  overflow: hidden;

  border-radius: 8px;
  border: 1px solid #252525;

  background: #111;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;

  filter:
    grayscale(1)
    invert(.90)
    contrast(.90);
}


/* ========================================
   FOOTER
======================================== */

.site-footer {
  padding: 35px 5%;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;

  background: #030303;
  border-top: 1px solid #1d1d1d;
}

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

.footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-brand > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand strong {
  font-size: 15px;
}

.footer-brand span {
  color: #555;
  font-size: 10px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  color: #777;
  font-size: 12px;
  transition: .2s;
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  justify-self: end;

  color: #444;
  font-size: 11px;
}


/* ========================================
   RESPONSIVE
======================================== */


/* ========================================
   CLEAN RESPONSIVE VERSION
======================================== */

@media (max-width: 900px) {

  header {
    height: 82px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  nav,
  .instagram {
    display: none !important;
  }

  .brand {
    margin: 0 !important;
  }

  .brand img {
    width: 70px;
    height: 70px;
    object-fit: contain;
  }

  .top-btn {
    margin: 0 !important;
    padding: 12px 18px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding-top: 82px;
    overflow: visible;
  }

  .hero-photo {
    top: 82px;
    left: 0;
    right: 0;
    width: 100%;
    height: 620px;

    background-position: 62% center;
    opacity: 1;
  }

  .hero-gradient {
    inset: 82px 0 auto 0;
    height: 620px;

    background:
      linear-gradient(
        90deg,
        rgba(5,5,5,.96) 0%,
        rgba(5,5,5,.82) 48%,
        rgba(5,5,5,.40) 100%
      );
  }

  .hero-content {
    position: relative;
    z-index: 10;

    max-width: 620px;
    padding: 100px 28px 105px;
  }

  h1 {
    font-size: 58px;
    line-height: .96;
    letter-spacing: -3px;
  }

  .description {
    max-width: 480px;
  }

  .services-strip {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    width: calc(100% - 40px);
    margin: 0 20px 18px;

    grid-template-columns: 1fr;
  }

  .services-strip article {
    min-width: 0;
    padding: 25px 28px;
  }

  .services-strip article:not(:last-child)::after {
    top: auto;
    left: 25px;
    right: 25px;
    bottom: 0;

    width: auto;
    height: 1px;
  }

  .info-strip {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    width: calc(100% - 40px);
    height: auto;

    margin: 0 20px 40px;

    grid-template-columns: 1fr 1fr;
  }

  .info-strip > div {
    min-height: 65px;
  }

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

  .real-price-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .real-price-table {
    min-width: 850px;
  }

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

  .work-card,
  .work-card.work-large {
    grid-column: auto;
    height: 430px;
  }

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

  .contact-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-right {
    border-left: 0;
    border-top: 1px solid #262626;
    padding-left: 0;
    padding-top: 40px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-links {
    justify-content: center;
  }

  .footer-copy {
    justify-self: center;
  }
}


@media (max-width: 600px) {

  body {
    overflow-x: hidden;
  }

  header {
    height: 76px;
    padding: 0 16px;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .top-btn {
    padding: 11px 14px;
    font-size: 12px;
  }

  .hero {
    padding-top: 76px;
  }

  .hero-photo {
    top: 76px;
    height: 620px;
    background-position: 68% center;
  }

  .hero-gradient {
    inset: 76px 0 auto 0;
    height: 620px;

    background:
      linear-gradient(
        90deg,
        rgba(5,5,5,.97) 0%,
        rgba(5,5,5,.88) 56%,
        rgba(5,5,5,.52) 100%
      );
  }

  .hero-content {
    width: 100%;
    padding: 82px 20px 95px;
  }

  .mini-title {
    margin-bottom: 20px;
  }

  .mini-title p {
    display: none;
  }

  h1 {
    max-width: 350px;
    font-size: 46px;
    line-height: .95;
    letter-spacing: -2px;
  }

  .description {
    max-width: 335px;
    font-size: 15px;
  }

  .description br {
    display: none;
  }

  .actions {
    width: 100%;
    max-width: 330px;
    flex-direction: column;
  }

  .red-button,
  .outline-button {
    width: 100%;
    min-width: 0;
  }

  .services-strip {
    width: calc(100% - 24px);
    margin: 0 12px 14px;
  }

  .services-strip article {
    gap: 18px;
    padding: 22px 18px;
  }

  .icon {
    min-width: 38px;
    font-size: 34px;
  }

  .services-strip h3 {
    font-size: 18px;
  }

  .services-strip p {
    font-size: 12px;
  }

  .info-strip {
    width: calc(100% - 24px);
    margin: 0 12px 30px;
    grid-template-columns: 1fr;
  }

  .info-strip > div:not(:last-child)::after {
    display: none;
  }

  .prices-section,
  .before-after,
  .reviews-section,
  .contact-section,
  .map-section {
    padding: 70px 18px;
  }

  .prices-heading h2,
  .ba-heading h2,
  .reviews-head h2,
  .map-head h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .special-prices {
    grid-template-columns: 1fr;
  }

  .special-prices div {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .ba-heading {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .work-card,
  .work-card.work-large,
  .work-card:last-child {
    grid-column: auto;
    height: 440px;
  }

  .contact-left h2 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-main,
  .contact-second {
    text-align: center;
  }

  .map-box {
    height: 350px;
  }

  .footer-links {
    gap: 14px;
  }
}

/* ==================================================
   HARD MOBILE RESET — 390px
================================================== */

@media screen and (max-width: 600px) {

  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* HEADER */

  header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    min-width: 0 !important;
    height: 78px !important;

    padding: 6px 16px !important;
    margin: 0 !important;

    display: grid !important;
    grid-template-columns: 64px 1fr auto !important;
    align-items: center !important;
    gap: 10px !important;

    overflow: hidden !important;
  }

  header nav,
  header .instagram {
    display: none !important;
  }

  header .brand {
    width: 64px !important;
    height: 64px !important;

    padding: 0 !important;
    margin: 0 !important;
  }

  header .brand img {
    width: 64px !important;
    height: 64px !important;

    display: block !important;
    object-fit: contain !important;
  }

  header .top-btn {
    grid-column: 3 !important;

    width: auto !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 11px 15px !important;

    font-size: 12px !important;
    white-space: nowrap !important;

    justify-self: end !important;
  }


  /* HERO */

  .hero {
    position: relative !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 650px !important;

    padding: 78px 0 0 !important;
    margin: 0 !important;

    overflow: hidden !important;
  }

  .hero-photo {
    position: absolute !important;

    top: 78px !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    height: 572px !important;

    background-size: cover !important;
    background-position: 65% center !important;

    opacity: 1 !important;
  }

  .hero-gradient {
    position: absolute !important;

    top: 78px !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    height: 572px !important;

    background:
      linear-gradient(
        90deg,
        rgba(0,0,0,.93) 0%,
        rgba(0,0,0,.78) 58%,
        rgba(0,0,0,.32) 100%
      ) !important;
  }

  .hero-content {
    position: relative !important;
    z-index: 10 !important;

    width: 100% !important;
    max-width: 100% !important;

    padding: 92px 20px 60px !important;
    margin: 0 !important;
  }

  .mini-title {
    margin: 0 0 20px !important;
  }

  .mini-title p {
    display: none !important;
  }

  .mini-title b {
    font-size: 12px !important;
  }

  .hero h1 {
    width: 100% !important;
    max-width: 345px !important;

    margin: 0 0 24px !important;

    font-size: 46px !important;
    line-height: .94 !important;
    letter-spacing: -2px !important;
  }

  .description {
    width: 100% !important;
    max-width: 335px !important;

    margin: 0 !important;

    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .description br {
    display: none !important;
  }

  .actions {
    width: 100% !important;
    max-width: 335px !important;

    margin: 30px 0 0 !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .actions .red-button,
  .actions .outline-button {
    width: 100% !important;
    min-width: 0 !important;
    height: 52px !important;

    padding: 0 18px !important;
    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 14px !important;
  }


  /* SERVICES */

  .services-strip {
    position: relative !important;

    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    width: calc(100% - 24px) !important;

    margin: 0 12px 14px !important;

    display: block !important;

    border-radius: 8px !important;
  }

  .services-strip article {
    width: 100% !important;
    min-width: 0 !important;

    padding: 24px 20px !important;
    margin: 0 !important;

    display: grid !important;
    grid-template-columns: 42px 1fr !important;
    gap: 16px !important;
  }

  .services-strip article::after {
    top: auto !important;
    bottom: 0 !important;
    left: 20px !important;
    right: 20px !important;

    width: auto !important;
    height: 1px !important;
  }

  .services-strip article:last-child::after {
    display: none !important;
  }

  .services-strip .icon {
    width: 42px !important;
    min-width: 42px !important;

    font-size: 34px !important;
  }

  .services-strip h3 {
    font-size: 18px !important;
  }

  .services-strip p {
    font-size: 12px !important;
    line-height: 1.55 !important;
  }


  /* QUICK INFO */

  .info-strip {
    position: relative !important;

    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    width: calc(100% - 24px) !important;
    height: auto !important;

    margin: 0 12px 30px !important;

    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .info-strip > div {
    min-height: 58px !important;
  }

  .info-strip > div::after {
    display: none !important;
  }

}

/* ===== MOBILE HEADER FINAL ===== */
@media (max-width: 600px) {

  header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;

    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    height: 78px !important;

    display: block !important;

    padding: 0 !important;
    margin: 0 !important;

    overflow: hidden !important;
  }

  header nav,
  header .instagram {
    display: none !important;
  }

  header .brand {
    position: absolute !important;
    top: 7px !important;
    left: 16px !important;

    width: 64px !important;
    height: 64px !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  header .brand img {
    width: 64px !important;
    height: 64px !important;
    object-fit: contain !important;
  }

  header .top-btn {
    position: absolute !important;
    top: 18px !important;
    right: 16px !important;
    left: auto !important;

    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 12px 17px !important;

    display: block !important;

    font-size: 12px !important;
    line-height: 18px !important;
    white-space: nowrap !important;

    transform: none !important;
  }

}

/* ===== CLEAN MOBILE HEADER ===== */
@media (max-width: 600px) {

  header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 76px !important;

    padding: 0 !important;
    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    transform: none !important;
    overflow: hidden !important;
  }

  header nav,
  header .instagram,
  header .top-btn {
    display: none !important;
  }

  header .brand {
    position: static !important;

    width: 68px !important;
    height: 68px !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;
  }

  header .brand img {
    display: block !important;

    width: 68px !important;
    height: 68px !important;

    object-fit: contain !important;
  }
}

/* ==========================================
   MOBILE — PRICE + GALLERY FINAL
========================================== */

@media (max-width: 600px) {

  /* PRICE */

  .prices-section {
    overflow: hidden !important;
  }

  .real-price-wrap {
    width: calc(100% + 18px) !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    margin-right: -18px !important;
    padding: 0 18px 14px 0 !important;

    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none;
  }

  .real-price-wrap::-webkit-scrollbar {
    display: none;
  }

  .real-price-table {
    width: 760px !important;
    min-width: 760px !important;

    border-radius: 7px !important;
  }

  .price-row {
    grid-template-columns:
      205px
      105px
      105px
      105px
      105px
      105px !important;
  }

  .price-row span {
    min-height: 58px !important;

    padding: 12px 10px !important;

    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .price-row span:first-child {
    position: sticky !important;
    left: 0 !important;
    z-index: 3 !important;

    background: #0b0b0b !important;

    box-shadow: 8px 0 15px rgba(0,0,0,.28);
  }

  .price-header span:first-child {
    background: #151515 !important;
  }

  .featured-row span:first-child {
    background: #17090a !important;
  }

  .real-price-wrap::before {
    content: "←  Гортайте таблицю  →";

    display: block;

    position: sticky;
    left: 0;

    width: calc(100vw - 36px);

    margin: 0 0 12px;

    color: #777;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;

    text-align: right;
  }


  /* SPECIAL PRICE */

  .special-prices {
    margin-top: 16px !important;
    gap: 8px !important;
  }

  .special-prices div {
    padding: 20px !important;
  }

  .special-prices strong {
    font-size: 22px !important;
  }


  /* BEFORE / AFTER */

  .works-grid {
    width: 100% !important;

    display: grid !important;
    grid-template-columns: 1fr !important;

    gap: 12px !important;
  }

  .work-card,
  .work-card.work-large,
  .work-card:last-child {
    position: relative !important;

    width: 100% !important;
    height: 520px !important;
    min-height: 520px !important;

    grid-column: 1 !important;

    margin: 0 !important;

    overflow: hidden !important;

    border-radius: 8px !important;
  }

  .work-card img {
    width: 100% !important;
    height: 100% !important;

    display: block !important;

    object-fit: cover !important;
    object-position: center !important;
  }

  .work-card::after {
    content: "";

    position: absolute;
    inset: auto 0 0;

    height: 42%;

    pointer-events: none;

    background:
      linear-gradient(
        transparent,
        rgba(0,0,0,.85)
      );
  }

  .work-info {
    position: absolute !important;

    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;

    z-index: 5 !important;
  }

  .work-info span {
    color: #e31620 !important;

    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
  }

  .work-info h3 {
    margin-top: 5px !important;

    color: white !important;

    font-size: 18px !important;
    line-height: 1.2 !important;
  }

}
