:root {
  --bg: #050509;
  --bg-soft: #0b0b11;
  --panel: #101017;
  --panel-2: #15151d;
  --text: #f7f7f8;
  --muted: #a8a8b2;
  --line: rgba(255,255,255,.11);
  --red: #ef0917;
  --red-dark: #85000a;
  --red-soft: rgba(239,9,23,.16);
  --shadow: 0 30px 70px rgba(0,0,0,.45);
  --radius: 22px;
  --max: 1220px;
}


body.splash-active {
  overflow: hidden;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(239,9,23,.25), transparent 24rem),
    linear-gradient(180deg, #020205 0%, #07070b 58%, #030306 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity .6s ease, visibility .6s ease;
  overflow: hidden;
}

.splash-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 18%, rgba(239,9,23,.07) 50%, transparent 74%),
    repeating-linear-gradient(120deg, transparent 0 42px, rgba(255,255,255,.015) 43px 44px);
  pointer-events: none;
}

.splash-screen.is-leaving {
  opacity: 0;
  visibility: hidden;
}

.splash-enter {
  position: relative;
  z-index: 1;
  width: min(88vw, 620px);
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.splash-enter img {
  position: relative;
  z-index: 2;
  width: min(100%, 540px);
  max-height: 68vh;
  object-fit: contain;
  border-radius: 28px;
  box-shadow:
    0 32px 85px rgba(0,0,0,.78),
    0 0 44px rgba(239,9,23,.16);
  transition: transform .35s ease, filter .35s ease;
}

.splash-enter:hover img,
.splash-enter:focus-visible img {
  transform: scale(1.025);
  filter: brightness(1.06);
}

.splash-enter:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 12px;
  border-radius: 28px;
}

.splash-label {
  position: relative;
  z-index: 2;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #f5f5f7;
}

.splash-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 900;
  animation: splashArrow 1.7s ease-in-out infinite;
}

.splash-lines {
  position: absolute;
  inset: -12%;
  z-index: 0;
  opacity: .68;
  background:
    linear-gradient(104deg, transparent 0 42%, rgba(239,9,23,.28) 43%, transparent 44%),
    linear-gradient(112deg, transparent 0 58%, rgba(239,9,23,.17) 59%, transparent 60%);
  filter: blur(.4px);
  animation: splashGlow 2.7s ease-in-out infinite;
}

@keyframes splashArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

@keyframes splashGlow {
  0%, 100% { opacity: .46; transform: scale(.98); }
  50% { opacity: .85; transform: scale(1.02); }
}

@media (max-width: 780px) {
  .splash-screen {
    padding: 18px;
  }

  .splash-enter {
    width: min(92vw, 470px);
    gap: 16px;
  }

  .splash-enter img {
    width: min(100%, 430px);
    max-height: 64vh;
    border-radius: 22px;
  }

  .splash-label {
    font-size: .7rem;
    letter-spacing: .18em;
  }

  .splash-arrow {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 390px) {
  .splash-enter {
    width: 94vw;
  }

  .splash-enter img {
    max-height: 61vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash-arrow,
  .splash-lines {
    animation: none;
  }
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(239,9,23,.08), transparent 28rem),
    linear-gradient(180deg, #050509, #08080c 60%, #050509);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 9999;
  background: #fff; color: #000; padding: 12px 16px; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled {
  background: rgba(5,5,9,.86);
  backdrop-filter: blur(16px);
  border-color: var(--line);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-size: .9rem; letter-spacing: .12em; }
.brand img { width: 54px; height: 54px; object-fit: cover; border-radius: 10px; }
.brand b { color: var(--red); }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: .92rem; font-weight: 700; }
.main-nav > a:not(.nav-cta) { color: #d9d9df; }
.main-nav > a:not(.nav-cta):hover { color: #fff; }
.nav-cta {
  padding: 11px 18px; background: var(--red); color: white;
  border-radius: 999px; box-shadow: 0 8px 25px rgba(239,9,23,.27);
}
.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { width: 27px; height: 2px; background: white; display: block; margin: 6px; transition: .25s; }

.hero {
  position: relative;
  min-height: 890px; padding-top: 125px; display: grid; align-items: center;
  overflow: hidden; isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,5,9,.98) 0%, rgba(5,5,9,.86) 42%, rgba(5,5,9,.24) 80%),
    repeating-linear-gradient(120deg, transparent 0 48px, rgba(255,255,255,.018) 49px 50px);
}
.hero-glow {
  position: absolute; width: 720px; height: 720px; right: -140px; top: 80px; z-index: -1;
  border-radius: 50%; background: radial-gradient(circle, rgba(239,9,23,.32), transparent 66%);
  filter: blur(8px);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 46px; }
.eyebrow {
  margin: 0 0 18px; color: #ff4753; font-size: .78rem; font-weight: 900;
  letter-spacing: .18em; text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: -.035em; }
h1 { font-size: clamp(3.2rem, 7vw, 6.6rem); max-width: 780px; text-transform: uppercase; }
h2 { font-size: clamp(2.3rem, 5vw, 4.5rem); }
h3 { font-size: 1.45rem; }
.hero-text { max-width: 700px; color: #c4c4cc; font-size: clamp(1rem, 1.6vw, 1.2rem); margin: 28px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex; justify-content: center; align-items: center; min-height: 52px;
  padding: 0 24px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 850; cursor: pointer; transition: transform .2s, background .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--red); box-shadow: 0 14px 35px rgba(239,9,23,.27); }
.button.ghost { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.04); }
.button.full { width: 100%; border-radius: 13px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 42px; }
.hero-stats > div {
  min-width: 165px;
  padding: 13px 18px;
  border-left: 2px solid var(--red);
  background: rgba(255,255,255,.035);
}
.hero-stats strong, .hero-stats span { display: block; }
.hero-stats strong { font-size: 1.08rem; }
.hero-stats span { color: var(--muted); font-size: .78rem; }
.logo-stage {
  position: relative; min-height: 550px; display: grid; place-items: center;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.06), transparent 64%);
}
.logo-stage::after {
  content: ""; position: absolute; inset: 11%; border: 1px solid rgba(255,255,255,.08); border-radius: 50%;
}
.logo-stage img {
  width: min(100%, 560px); border-radius: 30px;
  filter: drop-shadow(0 34px 45px rgba(0,0,0,.75));
  position: relative; z-index: 2;
}
.speed-line {
  position: absolute; height: 4px; border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  filter: blur(.4px); transform: rotate(-12deg); opacity: .7;
}
.line-a { width: 88%; top: 23%; right: -18%; }
.line-b { width: 72%; bottom: 29%; left: -20%; }
.line-c { width: 48%; bottom: 17%; right: -9%; }
.hero-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(transparent, #08080c);
}

.problem-strip {
  position: relative;
  z-index: 2;
  padding: 30px 0 42px;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, #0d0d13, #09090e);
}
.problem-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.problem-heading p {
  margin: 0;
  color: var(--red);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.problem-heading strong {
  font-size: 1.12rem;
  letter-spacing: -.01em;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.problem-grid a {
  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr;
  column-gap: 13px;
  row-gap: 7px;
  padding: 23px 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    #101016;
  box-shadow: 0 15px 30px rgba(0,0,0,.18);
  transition: transform .2s, border-color .2s, background .2s;
}
.problem-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(239,9,23,.62);
  background:
    linear-gradient(145deg, rgba(239,9,23,.14), rgba(255,255,255,.025)),
    #111117;
}
.problem-grid span {
  grid-row: 1 / 3;
  color: var(--red);
  font-size: .78rem;
  font-weight: 950;
}
.problem-grid b {
  color: #fff;
  text-transform: uppercase;
  font-size: .92rem;
  letter-spacing: .025em;
}
.problem-grid small {
  grid-column: 2 / 4;
  color: #b9b9c2;
  line-height: 1.4;
}
.problem-grid i {
  color: var(--red);
  font-style: normal;
  font-size: 1.15rem;
  font-weight: 900;
}

.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.intro-copy { font-size: 1.13rem; color: #c9c9d0; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 32px; }
.check-list li::before { content: "✓"; color: var(--red); font-weight: 950; position: absolute; left: 0; }
.section-heading { margin-bottom: 46px; }
.section-heading.center { text-align: center; max-width: 760px; margin-inline: auto; margin-bottom: 50px; }
.section-heading > p:last-child, .section-heading.center > p:last-child { color: var(--muted); max-width: 700px; }
.section-heading.center > p:last-child { margin-inline: auto; }
.section-heading.two-line { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.section-heading.two-line > p { color: var(--muted); margin: 0 0 4px; }

.packages-section { background: linear-gradient(180deg, #0a0a10, #07070b); }
.tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.tab {
  border: 1px solid var(--line); background: #111118; border-radius: 999px;
  padding: 11px 20px; cursor: pointer; font-weight: 800;
}
.tab.active, .tab:hover { background: var(--red); border-color: var(--red); }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.package-card {
  position: relative; display: flex; flex-direction: column; padding: 28px;
  background: linear-gradient(150deg, #17171f, #0d0d13); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; min-height: 100%;
  box-shadow: 0 15px 40px rgba(0,0,0,.18); transition: transform .25s, border-color .25s;
}
.package-card:hover { transform: translateY(-6px); border-color: rgba(239,9,23,.55); }
.package-card::before {
  content: ""; position: absolute; width: 160px; height: 160px; border-radius: 50%;
  right: -70px; top: -70px; background: rgba(239,9,23,.15); filter: blur(10px);
}
.package-group { color: var(--red); text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; font-weight: 900; }
.package-card h3 { margin-top: 12px; }
.price { font-size: 1.5rem; font-weight: 950; margin: 13px 0; }
.package-desc { color: var(--muted); min-height: 74px; }
.package-items { margin: 12px 0 20px; padding-left: 19px; color: #d6d6dc; }
.package-items li::marker { color: var(--red); }
.package-effect {
  margin-top: auto; border-top: 1px solid var(--line); padding-top: 17px;
  color: #cfcfd6; font-size: .9rem;
}
.package-effect b { color: white; }
.package-button { margin-top: 22px; width: 100%; border-radius: 12px; }

.service-controls { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.service-filter {
  background: transparent; border: 1px solid var(--line); border-radius: 999px; padding: 9px 15px; cursor: pointer;
}
.service-filter.active, .service-filter:hover { background: white; color: #050509; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.service-card {
  padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.028);
  display: grid; grid-template-columns: 1fr auto; gap: 20px; transition: background .2s, border-color .2s;
}
.service-card:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.22); }
.service-category { color: var(--red); text-transform: uppercase; letter-spacing: .11em; font-size: .67rem; font-weight: 900; }
.service-card h3 { margin: 7px 0 11px; }
.service-card p { color: var(--muted); margin: 0; }
.service-prices { text-align: right; display: grid; align-content: center; gap: 3px; min-width: 145px; }
.service-prices span { font-weight: 850; font-size: .87rem; }

.works-section { overflow: hidden; background: #09090e; }
.works-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 230px; gap: 12px; }
.work-card {
  position: relative; overflow: hidden; border-radius: 18px; background:
    linear-gradient(145deg, rgba(239,9,23,.20), transparent 55%),
    repeating-linear-gradient(120deg, #111118 0 36px, #15151d 37px 38px);
  border: 1px solid var(--line);
}
.work-card:nth-child(1), .work-card:nth-child(6) { grid-column: span 7; }
.work-card:nth-child(2), .work-card:nth-child(5) { grid-column: span 5; }
.work-card:nth-child(3), .work-card:nth-child(4), .work-card:nth-child(7), .work-card:nth-child(8), .work-card:nth-child(9) { grid-column: span 4; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.work-card:hover img { transform: scale(1.04); }
.work-placeholder { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 30px; }
.work-placeholder strong { font-size: 1.2rem; }
.work-placeholder span { display: block; color: var(--muted); font-size: .82rem; }
.work-badge {
  position: absolute; left: 16px; bottom: 16px; padding: 7px 11px; z-index: 2;
  background: rgba(5,5,9,.78); backdrop-filter: blur(8px); border-radius: 999px; font-size: .76rem;
}

.news-section { background: linear-gradient(180deg, #07070b, #0d0d13); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.news-card {
  padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #111118;
}
.news-card time { color: var(--red); text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 900; }
.news-card h3 { margin: 12px 0; }
.news-card p { color: var(--muted); }
.text-link { color: white; font-weight: 850; display: inline-flex; gap: 8px; }
.text-link:hover { color: #ff4a54; }

.booking-section { background:
  radial-gradient(circle at 85% 25%, rgba(239,9,23,.22), transparent 26rem),
  linear-gradient(140deg, #101017, #07070b);
}
.booking-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.booking-copy { position: sticky; top: 120px; }
.booking-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.booking-note {
  margin-top: 28px; padding: 22px; border-left: 3px solid var(--red); background: rgba(255,255,255,.04);
}
.booking-note strong, .booking-note span { display: block; }
.booking-note span { color: var(--muted); margin-top: 8px; font-size: .9rem; }
.booking-form {
  padding: 30px; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(5,5,9,.68); box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.booking-form label { display: grid; gap: 8px; margin-bottom: 16px; font-size: .84rem; font-weight: 800; color: #dedee4; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 11px; padding: 13px 14px;
  color: white; background: #111118; outline: 0;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--red); }
.booking-form select option { color: black; background: white; }
.booking-form .consent { display: flex; grid-template-columns: auto 1fr; align-items: flex-start; gap: 10px; font-weight: 500; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); }
.form-status { margin-bottom: 0; color: #b8ffbe; font-size: .86rem; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 20px; }
.contact-panel, .map-card {
  min-height: 520px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.contact-panel { padding: 42px; background: #111118; }
.contact-list { margin-top: 35px; display: grid; }
.contact-list > * { display: flex; justify-content: space-between; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-list span { color: var(--muted); }
.contact-list strong { text-align: right; }
.contact-list a:hover strong { color: #ff4a54; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.social-row a { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; }
.social-row a:hover { border-color: var(--red); }
.map-card iframe { width: 100%; height: 100%; min-height: 520px; border: 0; filter: grayscale(1) invert(.9) contrast(.85); }

.site-footer { border-top: 1px solid var(--line); padding: 28px 0; background: #050509; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 28px; color: var(--muted); font-size: .85rem; }
.footer-brand { display: flex; align-items: center; gap: 13px; color: white; }
.footer-brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 9px; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand span { color: var(--muted); font-size: .75rem; }

.floating-phone {
  position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 56px; height: 56px;
  display: grid; place-items: center; border-radius: 50%; background: var(--red);
  box-shadow: 0 15px 35px rgba(239,9,23,.38); font-size: 1.3rem;
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .main-nav { gap: 18px; }
  .hero { min-height: auto; padding: 150px 0 100px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .logo-stage { min-height: 360px; }
  .logo-stage img { width: min(76vw, 430px); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-heading { align-items: start; flex-direction: column; gap: 4px; }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid, .contact-grid { grid-template-columns: 1fr; }
  .booking-copy { position: static; }
}

@media (max-width: 780px) {
  .section { padding: 72px 0; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .site-header,
  .site-header.scrolled {
    background: rgba(5,5,9,.97);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .menu-toggle { display: block; z-index: 1003; }
  .main-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: max(105px, env(safe-area-inset-top)) 24px max(40px, env(safe-area-inset-bottom));
    overflow-y: auto;
    text-align: center;
    font-size: 1.35rem;
    background: rgba(5,5,9,.99);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 1001;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a {
    flex: 0 0 auto;
  }
  .main-nav .nav-cta {
    margin-top: 6px;
    padding-inline: 28px;
  }
  .menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .brand span { display: none; }

  /* Mobile hero: hide the duplicated large logo and keep everything inside the screen. */
  .hero {
    min-height: auto;
    padding: 126px 0 64px;
  }
  .hero-grid {
    display: block;
    width: 100%;
  }
  .hero-copy {
    width: 100%;
    min-width: 0;
    text-align: left;
  }
  .hero-visual {
    display: none;
  }
  .hero .eyebrow {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: .68rem;
    line-height: 1.5;
    letter-spacing: .13em;
    overflow-wrap: anywhere;
  }
  h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.25rem, 10.2vw, 3rem);
    line-height: 1.02;
    letter-spacing: -.045em;
    overflow-wrap: normal;
  }
  .hero-text {
    width: 100%;
    max-width: 100%;
    margin: 24px 0 28px;
    font-size: 1rem;
    line-height: 1.55;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
  }
  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 8px;
    margin-top: 28px;
  }
  .hero-stats > div {
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
  }
  .hero-bottom {
    height: 60px;
  }

  .problem-heading {
    align-items: flex-start;
  }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-grid a { min-height: 118px; }
  .two-col, .section-heading.two-line { grid-template-columns: 1fr; gap: 28px; }
  .package-grid, .service-grid, .news-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; }
  .service-prices { text-align: left; min-width: 0; }
  .works-grid { grid-template-columns: 1fr; grid-auto-rows: 270px; }
  .work-card:nth-child(n) { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-list > * { display: grid; gap: 5px; }
  .contact-list strong { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .floating-phone {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 390px) {
  h1 {
    font-size: clamp(2.05rem, 9.8vw, 2.45rem);
  }
  .hero .eyebrow {
    font-size: .62rem;
  }
}


@media (max-width: 780px) {
  .site-header {
    overflow: visible;
  }
  body.menu-open .floating-phone {
    opacity: 0;
    pointer-events: none;
  }
}


.floating-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 899;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(17,17,24,.92);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.34);
  font-size: 1.45rem;
  font-weight: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background .2s ease;
}
.floating-top:hover {
  background: var(--red);
  border-color: var(--red);
}
.floating-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 780px) {
  .floating-top {
    right: 18px;
    bottom: 82px;
    width: 46px;
    height: 46px;
  }
  body.menu-open .floating-top {
    opacity: 0;
    pointer-events: none;
  }
}


.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
