:root {
  --ink: #141414;
  --muted: #676767;
  --black: #080808;
  --black-soft: #151515;
  --red: #d7382e;
  --red-dark: #8e1814;
  --red-soft: #fff0ee;
  --silver: #f4f4f4;
  --paper: #ffffff;
  --soft: #f7f7f7;
  --line: #dedede;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --loader-duration: 4000ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

body > :not(.page-loader) {
  transition: opacity 380ms ease, visibility 380ms ease;
}

body.is-loading > :not(.page-loader) {
  opacity: 0;
  visibility: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: url("../assets/loader-mountains.png") center / cover;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.phoenix-loader {
  width: min(88vw, 680px);
  display: grid;
  justify-items: center;
  gap: 22px;
  color: #fff;
}

.phoenix-loader__stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1.5 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: url("../assets/loader-mountains.png") center / cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.phoenix-loader__stage::before {
  content: none;
}

.phoenix-loader__bird {
  position: relative;
  z-index: 3;
  width: min(78%, 430px);
  filter:
    drop-shadow(0 18px 32px rgba(0, 0, 0, 0.44))
    saturate(1.08)
    brightness(1.14);
  opacity: 0;
  transform: scale(0.28);
  animation: phoenix-logo-zoom 1500ms ease-out forwards;
}

.phoenix-loader__bird img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: normal;
}

.phoenix-loader__name {
  position: relative;
  overflow: hidden;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  max-width: min(92vw, 760px);
  font-size: clamp(1.6rem, 5.8vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.02;
  text-align: center;
  text-transform: uppercase;
}

.phoenix-loader__name::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 97, 0.6), transparent);
  filter: blur(12px);
  transform: translateX(-110%);
  animation: phoenix-name-heat 1500ms ease-out forwards;
}

.phoenix-loader__name span {
  display: block;
  opacity: 1;
  text-shadow:
    0 0 20px rgba(215, 56, 46, 0.48),
    0 2px 0 rgba(0, 0, 0, 0.4);
  transform: none;
}

.phoenix-loader__name strong {
  color: #ff6b61;
}

.phoenix-loader__progress {
  width: min(100%, 420px);
  display: grid;
  gap: 9px;
}

.phoenix-loader__progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.phoenix-loader__progress-track {
  height: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.phoenix-loader__progress-track span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, #8e1814, #d7382e, #ff6b61, #f4f4f4);
  border-radius: inherit;
  box-shadow: 0 0 18px rgba(215, 56, 46, 0.58);
  transform: scaleX(0);
  transform-origin: left center;
  animation: loading-fill var(--loader-duration) linear forwards;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--black);
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  color: #fff;
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.topline {
  background: var(--black);
  font-size: 0.9rem;
}

.topline__inner {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
  padding: 0.55rem 0;
}

.topline a {
  text-decoration: none;
}

.mainnav {
  background: rgba(12, 12, 12, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.mainnav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.3rem;
  min-height: 82px;
}

.mainnav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand img {
  width: 78px;
  height: 50px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 0.2rem;
}

.brand strong {
  color: var(--red);
}

.brand span {
  min-width: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.55rem;
}

.nav-menu a,
.nav-submenu-toggle {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.nav-menu a:hover,
.nav-menu a.is-active,
.nav-submenu-toggle:hover,
.nav-submenu-toggle.is-active,
.nav-item.is-open > .nav-submenu-toggle {
  color: #ff6b61;
}

.nav-item {
  position: relative;
}

.nav-item--has-submenu {
  display: flex;
  align-items: center;
}

.nav-submenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-submenu-toggle::after {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-item.is-open > .nav-submenu-toggle::after,
.nav-item:focus-within > .nav-submenu-toggle::after {
  transform: translateY(1px) rotate(-135deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  z-index: 35;
  min-width: 290px;
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem;
  background: rgba(12, 12, 12, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 18px;
}

.nav-submenu a {
  padding: 0.82rem 0.95rem;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 0.92rem;
}

.nav-submenu a:hover,
.nav-submenu a.is-active {
  color: #fff;
  background: rgba(215, 56, 46, 0.18);
}

.nav-item.is-open > .nav-submenu,
.nav-item:focus-within > .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

@media (hover: hover) and (pointer: fine) {
  .nav-item--has-submenu:hover > .nav-submenu,
  .nav-item--has-submenu:hover > .nav-submenu-toggle {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-item--has-submenu:hover > .nav-submenu {
    transform: translate(-50%, 0);
  }

  .nav-item--has-submenu:hover > .nav-submenu-toggle::after {
    transform: translateY(1px) rotate(-135deg);
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: #fff;
  background: #25d366;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.whatsapp-link:hover {
  background: #1ebc59;
  transform: translateY(-2px);
}

.whatsapp-link svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-link--contact {
  border-color: transparent;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 190px 0 70px;
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: 82px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 78%, rgba(0, 0, 0, 0.98) 100%);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(20, 0, 0, 0.68) 50%, rgba(110, 14, 12, 0.34)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.05));
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 5000ms ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: 3rem;
}

.hero__copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: 4rem;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.hero .eyebrow,
.promo-band .eyebrow {
  color: #ff6b61;
}

.hero__lead {
  max-width: 650px;
  margin: 1.25rem 0 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 48px;
  padding: 0.9rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: var(--red);
}

.btn--light {
  color: var(--black);
  background: #fff;
}

.btn--outline {
  color: var(--black);
  border-color: var(--red);
  background: transparent;
}

.btn--full {
  width: 100%;
}

.hero__checks {
  display: grid;
  gap: 0.55rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__checks li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 700;
}

.hero__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
}

.estimate-panel {
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.estimate-panel__head {
  padding: 1.45rem 1.45rem 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--black) 0%, var(--red-dark) 100%);
}

.estimate-panel__head h2 {
  margin: 0.35rem 0 0.3rem;
  font-size: 1.75rem;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.estimate-panel__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.panel-label {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.estimate-form {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 1.45rem 1.45rem;
}

.estimate-form label {
  display: grid;
  gap: 0.25rem;
  color: var(--black);
  font-weight: 800;
  font-size: 0.88rem;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.82rem 0.9rem;
  background: var(--silver);
}

.estimate-form input[type="file"] {
  padding: 0.7rem;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(24, 24, 24, 0.98) 42%, rgba(142, 24, 20, 0.98) 100%);
  color: #fff;
}

.trust-strip::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(24, 24, 24, 0.98) 42%, rgba(142, 24, 20, 0.98) 100%);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid article {
  display: grid;
  align-content: start;
  gap: 0.4rem;
  min-height: 150px;
  padding: 1.45rem 1.15rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip__grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip strong {
  display: block;
}

.trust-strip strong {
  max-width: 14rem;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.08;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.35;
}

.trust-strip__kicker {
  width: max-content;
  padding: 0.18rem 0.42rem;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.section {
  padding: 5.3rem 0;
}

.section:nth-of-type(even) {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-head h2,
.split__content h2,
.promo-band h2,
.contact-copy h2 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.08;
}

.section-head p:not(.eyebrow),
.split__content p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  display: grid;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.14 / 1;
  object-fit: cover;
}

.service-card__body {
  padding: 1.15rem;
}

.service-card__body span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.service-card h3 {
  margin: 0.8rem 0 0.4rem;
  font-size: 1.35rem;
}

.service-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.service-card a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.service-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  padding: 190px 0 84px;
  color: #fff;
  overflow: hidden;
  background: var(--black);
}

.service-hero__media {
  position: absolute;
  inset: 0;
}

.service-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(12, 12, 12, 0.68) 46%, rgba(142, 24, 20, 0.34)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.04));
}

.service-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 2rem;
  align-items: end;
}

.service-hero__content {
  position: relative;
  width: auto;
  max-width: none;
}

.service-hero__copy {
  max-width: 840px;
}

.service-hero__copy .eyebrow {
  color: #ff6b61;
}

.service-hero h1 {
  margin: 0;
  font-size: 4.7rem;
  line-height: 0.93;
  overflow-wrap: anywhere;
}

.service-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.24rem;
}

.service-hero__aside {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
  color: var(--ink);
}

.service-hero__aside h2 {
  margin: 0.8rem 0 0.7rem;
  font-size: 1.45rem;
  line-height: 1.08;
}

.service-hero .service-hero__aside p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.service-hero__list {
  display: grid;
  gap: 0.75rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-hero__list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink);
  font-weight: 700;
}

.service-hero__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 2rem;
  align-items: start;
}

.service-copy h2 {
  margin: 0;
  font-size: 2.65rem;
  line-height: 1.08;
}

.service-copy p:not(.eyebrow) {
  max-width: 760px;
  width: 100%;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-fact-card,
.detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-fact-card {
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.service-fact-card h3 {
  margin: 0.85rem 0 0.65rem;
  font-size: 1.45rem;
  line-height: 1.12;
}

.service-fact-card p {
  margin: 0;
  color: var(--muted);
}

.service-overview {
  background: var(--red-soft);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.detail-grid--compact {
  grid-template-columns: repeat(4, 1fr);
}

.detail-card {
  min-height: 180px;
  padding: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.detail-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.24rem;
  line-height: 1.14;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
}

.media-section {
  background: #fff;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.photo-gallery--masonry img:nth-child(1),
.photo-gallery--masonry img:nth-child(4) {
  transform: translateY(26px);
}

.photo-gallery--wide {
  grid-template-columns: repeat(5, 1fr);
}

.promo-band--snow {
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.9), rgba(137, 24, 20, 0.82)),
    url("../assets/services/dach-entlastung-hero.jpg") center / cover;
}

.promo-band {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.94), rgba(137, 24, 20, 0.88)),
    url("../assets/photos/0b3299_31707843739a45239526fbf41141c404~mv2.jpg") center / cover;
}

.promo-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 190px;
}

.promo-band h2 {
  max-width: 780px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.split__image {
  position: relative;
}

.split__image::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  z-index: -1;
  background: linear-gradient(135deg, var(--red), var(--black));
  border-radius: var(--radius);
}

.split__image img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.feature-list div,
.process-step,
.review-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-list div {
  padding: 1rem;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  color: var(--muted);
}

.process {
  background: var(--red-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-step {
  position: relative;
  padding: 1.3rem;
  overflow: hidden;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.process-step h3 {
  margin: 1rem 0 0.35rem;
  font-size: 1.3rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.reviews {
  color: #fff;
  background:
    linear-gradient(rgba(0, 0, 0, 0.88), rgba(96, 12, 10, 0.88)),
    url("../assets/photos/0b3299_9180ea7eda364da2a5e3f136b1bd381a~mv2.jpg") center / cover;
}

.reviews .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.review-slider {
  position: relative;
  max-width: 820px;
  min-height: 220px;
  margin: 0 auto;
}

.review-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 2rem;
  color: var(--ink);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.review-card.is-active {
  opacity: 1;
  transform: translateY(0);
}

.review-card p {
  margin: 0.55rem 0 1rem;
  font-size: 1.35rem;
}

.stars {
  color: var(--red);
  font-size: 1.2rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--red);
}

.contact-section {
  background: #fff;
}

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

.contact-card {
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
}

.contact-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.site-footer {
  padding: 3rem 0;
  color: #fff;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 1.25fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: #ff6b61;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer p,
.footer-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo {
  width: min(100%, 230px);
  height: auto;
  margin-top: 1.1rem;
}

.site-footer nav {
  display: grid;
  gap: 0.4rem;
}

.site-footer nav a {
  color: #fff;
  text-decoration: none;
}

.footer-contact {
  display: grid;
  gap: 0.38rem;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.footer-contact strong {
  color: #fff;
  font-size: 1.04rem;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact-wrap {
  display: grid;
}

.footer-map {
  width: 100%;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
}

.legal-hero {
  min-height: 430px;
  padding: 190px 0 70px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(20, 0, 0, 0.7) 58%, rgba(110, 14, 12, 0.34)),
    url("../assets/photos/90032cdb489d445d883826c0b36f3c52.jpg") center / cover;
}

.legal-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 4rem;
  line-height: 0.98;
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.legal-content {
  display: grid;
  gap: 1.2rem;
  max-width: 980px;
}

.legal-card {
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.legal-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1.55rem;
}

.legal-card h3 {
  margin: 1.2rem 0 0.45rem;
  font-size: 1.15rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card p {
  margin: 0 0 0.8rem;
}

.legal-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-page .reveal {
  opacity: 1;
  transform: none;
}

.hero__copy.reveal,
.estimate-panel.reveal,
.service-hero__content.reveal {
  opacity: 1;
  transform: translateY(0);
}

.hero__copy.reveal,
.service-hero__content.reveal {
  animation: hero-copy-in 620ms ease both;
}

.estimate-panel.reveal {
  animation: hero-panel-in 760ms ease both;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-panel-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loading-fill {
  to {
    transform: scaleX(1);
  }
}

@keyframes phoenix-logo-zoom {
  0% {
    opacity: 0;
    filter: blur(5px) drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    transform: scale(0.28);
  }

  62% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 18px 32px rgba(0, 0, 0, 0.44));
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 14px 26px rgba(0, 0, 0, 0.36));
    transform: scale(1);
  }
}

@keyframes phoenix-light-sweep {
  0%,
  100% {
    transform: translateX(-18%);
  }

  50% {
    transform: translateX(18%);
  }
}

@keyframes phoenix-name-rise {
  0%,
  18% {
    opacity: 0;
    letter-spacing: 0.14em;
    transform: translateY(24px);
  }

  58% {
    opacity: 1;
    letter-spacing: 0.09em;
    transform: translateY(-2px);
  }

  100% {
    opacity: 1;
    letter-spacing: 0.08em;
    transform: translateY(0);
  }
}

@keyframes phoenix-name-heat {
  0%,
  20% {
    opacity: 0;
    transform: translateX(-110%);
  }

  54% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(110%);
  }
}

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

  .page-loader,
  body > :not(.page-loader),
  .phoenix-loader__bird,
  .phoenix-loader__name::after,
  .phoenix-loader__name span,
  .phoenix-loader__progress-track span,
  .phoenix-loader__stage::before,
  .hero__slide,
  .reveal,
  .hero__copy.reveal,
  .estimate-panel.reveal {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .topline__inner {
    justify-content: center;
    flex-wrap: wrap;
  }

  .mainnav__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mainnav__actions {
    justify-self: end;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-menu {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0 0 1rem;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu > a,
  .nav-submenu-toggle {
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .nav-item--has-submenu {
    display: grid;
    width: 100%;
  }

  .nav-submenu-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-submenu {
    position: static;
    left: auto;
    min-width: 0;
    display: none;
    margin-top: 0.2rem;
    padding: 0.35rem 0 0.15rem 0.9rem;
    background: transparent;
    border: 0;
    border-left: 2px solid rgba(255, 107, 97, 0.3);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-submenu a {
    padding: 0.65rem 0;
    border-radius: 0;
    white-space: normal;
  }

  .nav-submenu a:hover,
  .nav-submenu a.is-active {
    background: transparent;
  }

  .nav-item.is-open > .nav-submenu {
    display: grid;
  }

  .hero {
    padding-top: 175px;
  }

  .hero__grid,
  .service-hero__grid,
  .split,
  .contact-grid,
  .service-layout {
    grid-template-columns: 1fr;
  }

  .hero__copy h1,
  .service-hero h1 {
    font-size: 3.35rem;
  }

  .legal-hero h1 {
    font-size: 3.1rem;
  }

  .service-hero {
    min-height: 700px;
  }

  .service-hero__aside {
    max-width: 620px;
  }

  .estimate-panel {
    max-width: 620px;
  }

  .service-grid,
  .process-grid,
  .detail-grid,
  .detail-grid--compact,
  .photo-gallery,
  .photo-gallery--wide {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-band__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

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

@media (max-width: 640px) {
  .phoenix-loader {
    gap: 18px;
  }

  .phoenix-loader__stage {
    width: min(100%, 460px);
  }

  .phoenix-loader__progress {
    width: 100%;
  }

  .wrap {
    width: calc(100% - 24px);
    max-width: 1180px;
  }

  .topline {
    display: none;
  }

  .mainnav__inner {
    min-height: 72px;
    position: relative;
  }

  .nav-toggle {
    display: block !important;
    z-index: 45;
  }

  .brand {
    max-width: 100%;
  }

  .brand span {
    font-size: 0.88rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero,
  .service-hero {
    min-height: auto;
    padding: 112px 0 42px;
  }

  .service-hero__content {
    width: 100%;
  }

  .hero__copy h1,
  .service-hero h1,
  .legal-hero h1,
  .section-head h2,
  .split__content h2,
  .service-copy h2,
  .promo-band h2,
  .contact-copy h2 {
    font-size: 2.15rem;
  }

  .service-hero__grid {
    gap: 1.25rem;
  }

  .service-hero__aside {
    padding: 1.1rem;
  }

  .service-hero__aside h2 {
    font-size: 1.2rem;
  }

  .service-hero__list {
    gap: 0.6rem;
  }

  .hero__lead,
  .service-hero p:not(.eyebrow) {
    width: auto;
    max-width: 100%;
    font-size: 1.02rem;
    overflow-wrap: anywhere;
  }

  .service-page .service-hero h1,
  .service-page .service-copy h2,
  .service-page .service-copy p:not(.eyebrow) {
    width: auto;
    max-width: 100%;
  }

  .phoenix-loader__name {
    font-size: clamp(1.45rem, 9vw, 2.15rem);
    letter-spacing: 0.05em;
  }

  .hero__actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .estimate-panel__head h2 {
    font-size: 1.45rem;
  }

  .service-grid,
  .process-grid,
  .trust-strip__grid,
  .detail-grid,
  .detail-grid--compact,
  .photo-gallery,
  .photo-gallery--wide {
    grid-template-columns: 1fr;
  }

  .photo-gallery img {
    min-height: 260px;
  }

  .photo-gallery--masonry img:nth-child(1),
  .photo-gallery--masonry img:nth-child(4) {
    transform: none;
  }

  .section {
    padding: 3.6rem 0;
  }

  .review-slider {
    min-height: 290px;
  }

  .review-card {
    padding: 1.25rem;
  }

  .review-card p {
    font-size: 1.1rem;
  }

}

@media (max-width: 360px) {
  .phoenix-loader {
    width: min(100vw - 20px, 680px);
    gap: 14px;
  }

  .phoenix-loader__name {
    width: 100%;
    font-size: clamp(1.45rem, 8.4vw, 1.9rem);
    letter-spacing: 0.08em;
    text-align: center;
  }

  .phoenix-loader__progress-meta {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: calc(100% - 40px);
  }

  .brand {
    max-width: calc(100% - 116px);
  }

  .brand img {
    width: 56px;
    height: 42px;
  }

  .brand span {
    font-size: 0.74rem;
  }

  .hero__copy h1,
  .service-hero h1,
  .section-head h2,
  .split__content h2,
  .service-copy h2,
  .promo-band h2,
  .contact-copy h2 {
    font-size: 1.8rem;
  }

  .service-hero {
    padding-top: 108px;
  }

  .legal-hero {
    min-height: 360px;
    padding: 108px 0 42px;
  }

  .service-hero__aside {
    padding: 1rem;
  }

  .service-hero__aside h2 {
    font-size: 1.08rem;
  }

  .service-hero__list li {
    font-size: 0.95rem;
  }

  .hero__lead,
  .service-hero p:not(.eyebrow),
  .service-copy p:not(.eyebrow) {
    font-size: 0.98rem;
  }
}
