:root {
  --bg: #0c0d10;
  --bg-soft: #121418;
  --surface: #171a1f;
  --surface-2: #1d2128;
  --text: #f5f6f8;
  --text-soft: #d7dde5;
  --muted: #9ea8b3;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #d84b36;
  --accent-strong: #ef674f;
  --shadow-sm: 0 12px 28px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 20px 42px rgba(0, 0, 0, 0.22);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shell: 1480px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(216, 75, 54, 0.06), transparent 22rem),
    linear-gradient(180deg, #0d0f13 0%, var(--bg) 100%);
}

body.menu-open {
  overflow: hidden;
}

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

figure,
ul,
p,
h1,
h2,
h3 {
  margin: 0;
}

ul {
  padding: 0;
}

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

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

[id] {
  scroll-margin-top: 5.6rem;
}

:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 120;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #0c0d10;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(calc(100% - 0.8rem), var(--shell));
  margin: 0 auto;
}

.section {
  padding: clamp(2.15rem, 3.8vw, 3.15rem) 0;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f2b3aa;
}

.section-kicker::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--accent);
}

.section-head {
  max-width: 45rem;
  margin-bottom: 1rem;
}

.section-head h2,
.trust-copy h2,
.cta-copy h2,
.contact-copy h2 {
  margin-top: 0.55rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-head p:last-child,
.trust-copy p,
.review-copy,
.footer-brand p,
.contact-copy p {
  margin-top: 0.7rem;
  color: var(--muted);
  line-height: 1.58;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 13, 16, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(12, 13, 16, 0.96);
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 4.05rem;
  width: min(calc(100% - 0.35rem), 1540px);
  padding: 0.16rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: clamp(8rem, 11.4vw, 10.2rem);
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-copy strong {
  font-size: 1.18rem;
  line-height: 1;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.48rem;
  width: auto;
}

.site-nav a {
  color: var(--muted);
  font-size: 1.03rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-phone:hover,
.header-phone:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.contact-item a:hover,
.contact-item a:focus-visible {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 2.85rem;
  padding: 0 1.08rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 10px 22px rgba(216, 75, 54, 0.18);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.menu-icon {
  position: relative;
  display: inline-block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-icon::before {
  top: -0.35rem;
}

.menu-icon::after {
  top: 0.35rem;
}

.menu-label {
  font-size: 0.88rem;
  font-weight: 700;
}

.button,
.nav-cta,
.mobile-action-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.16rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.mobile-action-bar a:hover,
.mobile-action-bar a:focus-visible {
  transform: translateY(-1px);
}

.button-primary,
.nav-cta,
.mobile-action-bar a:first-child {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(216, 75, 54, 0.18);
}

.button-secondary,
.mobile-action-bar a:nth-child(2) {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.button-compact {
  min-height: 2.85rem;
  padding: 0.72rem 1.12rem;
  font-size: 0.98rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.65rem, 3.25vw, 2.5rem) 0 0.7rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 75, 54, 0.12), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1rem;
  background: linear-gradient(180deg, rgba(12, 13, 16, 0) 0%, var(--bg) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(500px, 0.96fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  align-items: center;
  min-height: min(69vh, 32.5rem);
}

.hero-copy {
  max-width: 42rem;
  padding-right: 0.55rem;
}

.hero-copy h1 {
  margin-top: 0.65rem;
  font-family: "Barlow Condensed", sans-serif;
  max-width: 16ch;
  font-size: clamp(2.35rem, 4.15vw, 3.9rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: none;
}

.hero-copy h1 span {
  display: block;
}

.hero-text {
  max-width: 38rem;
  margin-top: 0.7rem;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.58;
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 1rem;
}

.hero-actions .hero-primary {
  min-height: 3.2rem;
  padding: 0.92rem 1.5rem;
  font-size: 1rem;
}

.hero-media {
  position: relative;
  min-height: 23.2rem;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 17, 0.08) 0%, rgba(11, 13, 17, 0.32) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-trust {
  margin-top: 0.75rem;
  color: #d6dce3;
  font-size: 0.82rem;
  font-weight: 700;
}

.trust {
  background: rgba(255, 255, 255, 0.014);
}

.trust.section {
  padding-top: 0.25rem;
}

.trust-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.86fr);
  gap: 1.5rem;
  align-items: center;
}

.trust-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 0.35rem;
}

.trust-copy h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 3.45vw, 3rem);
}

.trust-copy p {
  max-width: 43rem;
  font-size: 1.08rem;
  line-height: 1.68;
}

.trust-copy p + p {
  margin-top: 0.72rem;
}

.trust-panel,
.service-card,
.reason-card,
.review-card,
.cta-panel,
.contact-card,
.contact-item {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.trust-panel {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: 28.5rem;
  padding: 0;
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  justify-self: center;
}

.trust-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
}

.trust-panel-body {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem;
}

.trust-item {
  padding: 0.72rem 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.trust-item strong {
  display: block;
  font-size: 0.98rem;
}

.trust-item span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  line-height: 1.55;
}

.services-grid,
.reasons-grid,
.reviews-grid {
  display: grid;
  gap: 0.9rem;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.95rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.9rem;
  background: rgba(216, 75, 54, 0.1);
  border: 1px solid rgba(216, 75, 54, 0.14);
}

.service-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: var(--text);
}

.service-card h3,
.reason-card h3,
.review-meta strong {
  margin-top: 0.85rem;
  font-size: 1.22rem;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.service-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.78rem;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--text-soft);
  line-height: 1.58;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--accent);
}

.service-note {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.reasons-shell .section-head {
  margin-bottom: 0.9rem;
}

.reasons-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.reason-card {
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: none;
}

.reason-card h3 {
  margin-top: 0;
  font-size: 1.14rem;
  line-height: 1.22;
}

.reviews {
  background: rgba(255, 255, 255, 0.015);
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  position: relative;
  padding: 0.9rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: none;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 0.4rem;
  right: 0.7rem;
  color: rgba(255, 255, 255, 0.06);
  font-family: Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
}

.review-stars {
  color: #f6c249;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
}

.review-meta {
  display: grid;
  gap: 0.14rem;
  margin-top: 0.55rem;
}

.review-meta strong {
  margin-top: 0;
  font-size: 1rem;
}

.review-meta span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.cta {
  padding-top: 0.35rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(216, 75, 54, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
    var(--surface);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 1.15rem;
  align-items: center;
}

.contact-listing {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.95rem;
}

.contact-item {
  padding: 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item p {
  margin-top: 0.35rem;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.contact-actions {
  margin-top: 0.95rem;
}

.contact-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.contact-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #0a0b0d;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 0 0.9rem;
}

.footer-brand img {
  width: min(12rem, 100%);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  justify-items: end;
}

.footer-links a {
  color: var(--muted);
  line-height: 1.5;
  transition: color 160ms ease;
}

.footer-bottom {
  padding: 0.75rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.88rem;
}

.mobile-action-bar {
  position: fixed;
  left: 0.7rem;
  right: 0.7rem;
  bottom: max(0.7rem, env(safe-area-inset-bottom));
  z-index: 90;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(12, 13, 16, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.mobile-action-bar a {
  min-height: 3rem;
  padding: 0.8rem 0.6rem;
  font-size: 0.85rem;
  text-align: center;
}

.desktop-only {
  display: inline-flex;
}

.mobile-only {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 80ms;
}

.delay-2 {
  transition-delay: 160ms;
}

.delay-3 {
  transition-delay: 240ms;
}

.delay-4 {
  transition-delay: 320ms;
}

@media (max-width: 1080px) {
  .brand-copy {
    display: none;
  }

  .reasons-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  body {
    padding-bottom: 5.2rem;
  }

  .header-shell {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    width: min(calc(100% - 0.8rem), var(--shell));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.25rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(15, 17, 21, 0.98);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.85rem 0.9rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .hero-shell,
  .trust-shell,
  .contact-shell,
  .cta-panel {
    grid-template-columns: 1fr;
  }

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

  .reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    align-items: start;
  }

  .hero-shell {
    min-height: min(75vh, 36.5rem);
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 0;
  }

  .hero-media {
    min-height: 17rem;
  }

  .trust-panel {
    max-width: none;
  }

  .mobile-action-bar {
    display: grid;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 1.1rem), var(--shell));
  }

  .section {
    padding: 1.9rem 0;
  }

  .hero {
    padding: 1.8rem 0 1.55rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.95rem);
    max-width: 100%;
  }

  .hero-text,
  .section-head p:last-child,
  .trust-copy p,
  .review-copy,
  .footer-brand p,
  .contact-copy p {
    font-size: 0.95rem;
  }

  .hero-actions .button,
  .cta-actions .button,
  .contact-actions .button {
    flex: 1 1 100%;
  }

  .hero-media {
    min-height: 14rem;
  }

  .trust-image,
  .contact-card img {
    aspect-ratio: 4 / 3;
  }

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

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  [id] {
    scroll-margin-top: 5rem;
  }

  .header-shell {
    min-height: 3.55rem;
    gap: 0.45rem;
    width: min(calc(100% - 1rem), var(--shell));
  }

  .brand img {
    width: min(7.2rem, 40vw);
  }

  .menu-label {
    display: none;
  }

  .menu-toggle {
    padding: 0.64rem;
  }

  .service-card,
  .review-card,
  .reason-card,
  .cta-panel,
  .contact-item {
    padding: 0.9rem;
  }

  .trust-panel {
    padding: 0;
  }

  .trust-panel-body {
    padding: 0.8rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
