:root {
  --brand: #f04a18;
  --brand-dark: #bd2d0c;
  --ink: #131313;
  --muted: #626262;
  --paper: #f6f4f1;
  --line: #e5e0da;
  --steel: #282a2d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

@keyframes heroEase {
  from {
    transform: scale(1.055);
  }

  to {
    transform: scale(1.02);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 18px 44px rgba(32, 177, 90, 0.34);
  }

  50% {
    box-shadow: 0 18px 54px rgba(32, 177, 90, 0.48);
  }
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 12px clamp(20px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active,
.site-header-solid {
  min-height: 70px;
  background: rgba(17, 17, 17, 0.94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 168px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.42));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.header-cta {
  color: var(--white);
  background: var(--brand);
}

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

.btn svg,
.header-cta svg {
  width: 19px;
  height: 19px;
}

.btn-primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(240, 74, 24, 0.28);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary.dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.btn-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.menu-toggle-text {
  width: auto;
  padding: 0 14px;
  color: var(--white);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../../images/hero-taller.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  animation: heroEase 1300ms ease-out both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.72) 38%, rgba(10, 10, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.62) 0%, rgba(10, 10, 10, 0.06) 54%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 88px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.15rem, 4.6vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-badges svg {
  width: 17px;
  height: 17px;
  color: var(--brand);
}

.quick-contact {
  background: #171717;
  color: var(--white);
}

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

.quick-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 82px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.quick-grid a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-grid svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
  transition: transform 180ms ease;
}

.quick-grid a:hover {
  background: rgba(255, 255, 255, 0.04);
}

.quick-grid a:hover svg {
  transform: translateY(-2px);
}

.section {
  padding: clamp(74px, 9vw, 116px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-intro {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.compact {
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.lead {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.service-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 18, 18, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: rgba(240, 74, 24, 0.28);
  box-shadow: 0 18px 44px rgba(18, 18, 18, 0.09);
  transform: translateY(-4px);
}

.service-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  color: var(--brand);
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.4;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 22px;
}

.service-list li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(240, 74, 24, 0.12);
}

.service-card.featured {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}

.service-card.featured img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.service-card.featured div {
  padding: 24px;
}

.service-card.accent {
  color: var(--white);
  border-color: transparent;
  background: var(--steel);
}

.service-card.accent p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card.accent .service-list {
  color: rgba(255, 255, 255, 0.72);
}

.split-section {
  color: var(--white);
  background: #151515;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

.split-section .lead {
  color: rgba(255, 255, 255, 0.68);
}

.trust-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.trust-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.trust-list svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--brand);
}

.hours-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(240, 74, 24, 0.18), rgba(255, 255, 255, 0.03)),
    #202020;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hours-panel:hover {
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

.panel-kicker {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hours-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.hours-panel p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.panel-line {
  height: 1px;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.12);
}

.hours-panel .btn {
  margin-top: 28px;
}

.work-section {
  background: var(--white);
}

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

.work-grid figure {
  position: relative;
  min-height: 330px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #222;
}

.work-grid img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.work-grid figure:hover img {
  transform: scale(1.04);
}

.work-grid figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.faq-section {
  background: #efebe5;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 18, 18, 0.05);
}

.faq-list p {
  margin-top: 10px;
  color: var(--muted);
}

.contact-section {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-card {
  display: grid;
  gap: 18px;
  border-radius: 8px;
  padding: 28px;
  color: var(--white);
  background: #171717;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover {
  box-shadow: 0 30px 78px rgba(17, 17, 17, 0.2);
  transform: translateY(-3px);
}

.contact-card div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-card svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--brand);
}

.contact-card strong {
  display: block;
  margin-bottom: 3px;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
}

.contact-card strong {
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  z-index: 15;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: #20b15a;
  box-shadow: 0 18px 44px rgba(32, 177, 90, 0.34);
  animation: softPulse 2600ms ease-in-out infinite;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  background: #179a4c;
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 27px;
  height: 27px;
}

.site-footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #101010;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr auto;
  gap: 34px;
  align-items: start;
}

.footer-brand img {
  width: 140px;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.footer-details {
  display: grid;
  gap: 10px;
  font-size: 0.94rem;
}

.footer-details a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  transition: color 160ms ease;
}

.footer-details a:hover {
  color: var(--white);
}

.footer-legal {
  display: grid;
  justify-items: end;
  gap: 14px;
  text-align: right;
}

.footer-legal a {
  color: var(--white);
  font-weight: 800;
}

.footer-legal small {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.45;
}

.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding: 150px 0 62px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.94), rgba(13, 13, 13, 0.72)),
    url("../../images/hero-taller.jpg") center/cover;
}

.legal-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.04;
}

.legal-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.legal-section {
  padding-top: 56px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 18, 18, 0.05);
}

.legal-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-summary strong {
  display: block;
  margin-top: 5px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.legal-summary p {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-content {
  display: grid;
  gap: 14px;
}

.legal-content article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 18, 18, 0.04);
}

.legal-content h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.18;
}

.legal-content p {
  margin-top: 12px;
  color: var(--muted);
}

.legal-date {
  font-weight: 800;
}

.legal-page-plain {
  background: var(--white);
}

.legal-hero-plain {
  padding: 126px 0 34px;
  color: var(--ink);
  background: var(--white);
}

.legal-hero-plain h1 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-hero-plain p {
  max-width: 760px;
  color: var(--muted);
}

.legal-text-section {
  padding: 18px 0 76px;
  background: var(--white);
}

.legal-text {
  max-width: 820px;
}

.legal-text h2 {
  margin-top: 30px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text p {
  margin-top: 10px;
  color: var(--muted);
}

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

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

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

.reveal-delay-2 {
  transition-delay: 150ms;
}

.reveal-delay-3 {
  transition-delay: 220ms;
}

@media (max-width: 1120px) {
  .site-header {
    padding-inline: 24px;
  }

  .brand img {
    width: 150px;
  }

  .site-nav {
    gap: 20px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr 360px;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    background: rgba(18, 18, 18, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 0 12px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.07);
  }

  .site-nav a::after {
    display: none;
  }

  .services-grid,
  .contact-grid,
  .faq-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card.featured {
    grid-row: auto;
  }

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

  .quick-grid a,
  .quick-grid a:last-child {
    min-height: 64px;
    border-right: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .quick-grid a:first-child {
    border-top: 0;
  }

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

  .footer-legal {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  html {
    scroll-padding-top: 74px;
  }

  .site-header.is-scrolled,
  .site-header.nav-active,
  .site-header-solid {
    min-height: 66px;
  }

  .site-nav {
    top: 66px;
    left: 14px;
    right: 14px;
  }

  .brand img {
    width: 124px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 58px;
    align-items: end;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.74) 100%),
      linear-gradient(0deg, rgba(10, 10, 10, 0.56) 0%, rgba(10, 10, 10, 0.1) 54%);
  }

  .hero-content {
    padding-top: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.5vw, 2.65rem);
    line-height: 1.05;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions,
  .hero-badges {
    margin-top: 24px;
  }

  .btn {
    min-height: 48px;
    padding-inline: 16px;
  }

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

  .hero-badges span {
    width: 100%;
    min-height: 38px;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
  }

  .service-card.featured div {
    padding: 20px;
  }

  .service-card.featured img {
    aspect-ratio: 1.5;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  h2 {
    font-size: clamp(1.72rem, 9vw, 2.35rem);
    line-height: 1.08;
  }

  .lead {
    font-size: 1rem;
  }

  .trust-list div {
    align-items: flex-start;
  }

  .hours-panel,
  .contact-card {
    padding: 22px;
  }

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

  .work-grid figure,
  .work-grid img {
    min-height: 260px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .legal-hero {
    padding: 118px 0 46px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  .hero {
    padding-top: 104px;
  }

  .hero h1 {
    font-size: 1.78rem;
  }

  .hero-copy {
    font-size: 0.95rem;
  }

  .quick-grid a {
    min-height: 58px;
    justify-content: flex-start;
    padding-inline: 14px;
  }

  .contact-card div {
    gap: 10px;
  }
}

@media (hover: none) {
  .header-cta:hover,
  .btn:hover,
  .service-card:hover,
  .hours-panel:hover,
  .contact-card:hover,
  .floating-whatsapp:hover {
    transform: none;
  }

  .work-grid figure:hover img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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