:root {
  --uf-orange: #f47521;
  --uf-orange-dark: #d85c0d;
  --uf-ink: #15191c;
  --uf-slate: #30373d;
  --uf-muted: #697178;
  --uf-sand: #f5f2ed;
  --uf-line: #e7e2dc;
  --uf-white: #ffffff;
  --uf-shadow: 0 22px 60px rgba(21, 25, 28, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--uf-ink);
  background: var(--uf-white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.btn {
  font-weight: 750;
  letter-spacing: -0.025em;
}

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

img {
  max-width: 100%;
}

.text-orange {
  color: var(--uf-orange) !important;
}

.bg-ink {
  background: var(--uf-ink) !important;
}

.bg-sand {
  background: var(--uf-sand) !important;
}

.section-pad {
  padding: 7rem 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--uf-orange-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 2.2rem;
  height: 2px;
  background: var(--uf-orange);
  content: "";
}

.section-title {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.15rem, 4vw, 4.15rem);
  line-height: 1.04;
}

.section-copy {
  max-width: 660px;
  color: var(--uf-muted);
  font-size: 1.05rem;
}

.topbar {
  position: relative;
  z-index: 1040;
  padding: 0.55rem 0;
  color: rgba(255, 255, 255, 0.72);
  background: #0d1012;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.topbar a:hover {
  color: var(--uf-orange);
}

.navbar {
  z-index: 1030;
  min-height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(21, 25, 28, 0.94);
  backdrop-filter: blur(16px);
  transition: min-height 0.25s ease, box-shadow 0.25s ease;
}

.navbar.is-scrolled {
  min-height: 72px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
}

.brand-lockup:hover {
  color: #fff;
}

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-name small {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.navbar .nav-link {
  position: relative;
  margin: 0 0.3rem;
  padding: 0.75rem 0.55rem !important;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.87rem;
  font-weight: 700;
}

.navbar .nav-link::after {
  position: absolute;
  right: 0.55rem;
  bottom: 0.45rem;
  left: 0.55rem;
  height: 2px;
  background: var(--uf-orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #fff;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.btn {
  padding: 0.85rem 1.35rem;
  border-radius: 0.35rem;
  font-size: 0.86rem;
}

.btn-orange {
  border-color: var(--uf-orange);
  color: #fff;
  background: var(--uf-orange);
  box-shadow: 0 10px 25px rgba(244, 117, 33, 0.24);
}

.btn-orange:hover,
.btn-orange:focus {
  border-color: var(--uf-orange-dark);
  color: #fff;
  background: var(--uf-orange-dark);
  transform: translateY(-1px);
}

.btn-outline-light:hover {
  color: var(--uf-ink);
}

.hero {
  position: relative;
  display: flex;
  min-height: 82vh;
  align-items: center;
  color: #fff;
  background: #15191c;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 12, 14, 0.98) 0%, rgba(9, 12, 14, 0.88) 42%, rgba(9, 12, 14, 0.28) 100%), var(--hero-image, linear-gradient(130deg, #15191c, #30373d));
  background-position: center;
  background-size: cover;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -10rem;
  bottom: -18rem;
  width: 34rem;
  height: 34rem;
  border: 5rem solid rgba(244, 117, 33, 0.12);
  content: "";
  transform: rotate(35deg);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
  color: #ffd0b0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-eyebrow span {
  width: 2.5rem;
  height: 2px;
  background: var(--uf-orange);
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 7.5vw, 7.2rem);
  line-height: 0.93;
}

.hero h1 em {
  color: var(--uf-orange);
  font-style: normal;
}

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

.hero-proof {
  position: absolute;
  right: 4vw;
  bottom: 3rem;
  display: flex;
  gap: 2rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(13, 16, 18, 0.78);
  backdrop-filter: blur(14px);
}

.hero-proof strong {
  display: block;
  color: #fff;
  font-size: 1.4rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--uf-orange);
}

.metric {
  padding: 2.15rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.23);
  color: #fff;
  text-align: center;
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}

.metric span {
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card {
  position: relative;
  height: 100%;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--uf-line);
  border-radius: 0.55rem;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::after {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 6rem;
  height: 6rem;
  border: 1.2rem solid rgba(244, 117, 33, 0.08);
  content: "";
  transform: rotate(28deg);
}

.service-card:hover {
  border-color: rgba(244, 117, 33, 0.35);
  box-shadow: var(--uf-shadow);
  transform: translateY(-7px);
}

.icon-box {
  display: inline-grid;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.5rem;
  place-items: center;
  border-radius: 0.35rem;
  color: #fff;
  background: var(--uf-orange);
  font-size: 1.35rem;
}

.service-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.3rem;
}

.service-card p {
  margin-bottom: 1.1rem;
  color: var(--uf-muted);
  font-size: 0.93rem;
}

.arrow-link {
  position: relative;
  z-index: 2;
  color: var(--uf-orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.arrow-link i {
  margin-left: 0.4rem;
  transition: transform 0.2s ease;
}

.arrow-link:hover i {
  transform: translateX(4px);
}

.image-frame {
  position: relative;
}

.image-frame img {
  width: 100%;
  min-height: 530px;
  border-radius: 0.55rem;
  object-fit: cover;
}

.image-frame::before {
  position: absolute;
  z-index: -1;
  top: -1.25rem;
  right: -1.25rem;
  width: 45%;
  height: 42%;
  background: var(--uf-orange);
  content: "";
}

.floating-card {
  position: absolute;
  right: -1.3rem;
  bottom: 1.5rem;
  max-width: 260px;
  padding: 1.45rem;
  color: #fff;
  background: var(--uf-ink);
  box-shadow: var(--uf-shadow);
}

.floating-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--uf-orange);
  font-size: 2rem;
}

.check-list {
  margin: 1.8rem 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  align-items: flex-start;
  font-weight: 650;
}

.check-list i {
  color: var(--uf-orange);
}

.project-card {
  position: relative;
  display: block;
  min-height: 450px;
  overflow: hidden;
  border-radius: 0.55rem;
  color: #fff;
  background: var(--uf-ink);
}

.project-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(8, 11, 13, 0.9) 100%);
  content: "";
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2rem;
}

.project-type {
  color: #ffc29b;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0.45rem 0 0;
  font-size: 1.45rem;
}

.process-step {
  position: relative;
  height: 100%;
  padding: 2rem 1.3rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.process-step .number {
  display: inline-grid;
  width: 3.1rem;
  height: 3.1rem;
  margin-top: -3.55rem;
  margin-bottom: 1.6rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--uf-orange);
  background: var(--uf-ink);
  font-weight: 800;
}

.process-step p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.testimonial {
  padding: 2.4rem;
  border-left: 4px solid var(--uf-orange);
  background: var(--uf-sand);
}

.testimonial blockquote {
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.6;
}

.page-hero {
  position: relative;
  padding: 8rem 0 7rem;
  overflow: hidden;
  color: #fff;
  background: var(--uf-ink);
}

.page-hero::after {
  position: absolute;
  top: -16rem;
  right: -8rem;
  width: 38rem;
  height: 38rem;
  border: 6rem solid rgba(244, 117, 33, 0.1);
  content: "";
  transform: rotate(31deg);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.97;
}

.breadcrumb {
  margin-top: 1.6rem;
  margin-bottom: 0;
}

.breadcrumb-item,
.breadcrumb-item a,
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item.active {
  color: var(--uf-orange);
}

.value-card {
  height: 100%;
  padding: 2rem;
  border-top: 3px solid var(--uf-orange);
  background: #fff;
  box-shadow: 0 12px 40px rgba(21, 25, 28, 0.07);
}

.value-card i {
  color: var(--uf-orange);
  font-size: 1.8rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--uf-line);
}

.timeline-item {
  position: relative;
  padding: 0 0 2.2rem 1.2rem;
}

.timeline-item::before {
  position: absolute;
  top: 0.45rem;
  left: -2.47rem;
  width: 0.85rem;
  height: 0.85rem;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--uf-orange);
  box-shadow: 0 0 0 1px var(--uf-orange);
  content: "";
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-year {
  color: var(--uf-orange-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.service-feature {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--uf-line);
  border-radius: 0.55rem;
  background: #fff;
}

.service-feature-image {
  height: 230px;
  overflow: hidden;
}

.service-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-feature:hover img {
  transform: scale(1.05);
}

.service-feature-body {
  padding: 2rem;
}

.service-number {
  color: var(--uf-orange);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.project-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-btn {
  padding: 0.65rem 1rem;
  border: 1px solid var(--uf-line);
  border-radius: 100px;
  color: var(--uf-slate);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 750;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--uf-orange);
  color: #fff;
  background: var(--uf-orange);
}

.project-item {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.project-item.is-hidden {
  display: none;
}

.project-detail-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--uf-line);
  border-radius: 0.55rem;
  background: #fff;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.project-detail-card:hover {
  box-shadow: var(--uf-shadow);
  transform: translateY(-6px);
}

.project-detail-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.project-detail-body {
  padding: 1.6rem;
}

.project-meta {
  display: flex;
  gap: 1.2rem;
  color: var(--uf-muted);
  font-size: 0.76rem;
}

.contact-card {
  height: 100%;
  padding: 2rem;
  border: 1px solid var(--uf-line);
  background: #fff;
}

.contact-card a:hover {
  color: var(--uf-orange);
}

.form-control,
.form-select {
  min-height: 52px;
  border-color: var(--uf-line);
  border-radius: 0.35rem;
  background-color: #faf9f7;
  font-size: 0.92rem;
}

textarea.form-control {
  min-height: 150px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--uf-orange);
  box-shadow: 0 0 0 0.2rem rgba(244, 117, 33, 0.13);
}

.form-label {
  font-size: 0.8rem;
  font-weight: 750;
}

.estimate-panel {
  padding: clamp(2rem, 5vw, 4.5rem);
  color: #fff;
  background: var(--uf-ink);
}

.faq .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--uf-line);
}

.faq .accordion-button {
  padding: 1.35rem 0;
  color: var(--uf-ink);
  background: transparent;
  box-shadow: none;
  font-weight: 750;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--uf-orange-dark);
}

.cta-band {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
  color: #fff;
  background: var(--uf-orange);
}

.cta-band::after {
  position: absolute;
  top: -8rem;
  right: 5%;
  width: 18rem;
  height: 18rem;
  border: 2.5rem solid rgba(255, 255, 255, 0.1);
  content: "";
  transform: rotate(32deg);
}

.cta-band .container {
  position: relative;
  z-index: 2;
}

.site-footer {
  padding: 5rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.66);
  background: #0d1012;
}

.site-footer h5 {
  margin-bottom: 1.2rem;
  color: #fff;
  font-size: 0.92rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a:hover {
  color: var(--uf-orange);
}

.social-link {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.35rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
}

.social-link:hover {
  border-color: var(--uf-orange);
  color: #fff;
  background: var(--uf-orange);
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

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

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

.toast-container {
  z-index: 1090;
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 5rem 0;
  }

  .navbar-collapse {
    margin: 1rem -0.75rem -0.75rem;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--uf-ink);
  }

  .hero {
    min-height: 720px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(9, 12, 14, 0.96), rgba(9, 12, 14, 0.55)), var(--hero-image, linear-gradient(130deg, #15191c, #30373d));
    background-position: 60% center;
    background-size: cover;
  }

  .hero-proof {
    display: none;
  }

  .image-frame img {
    min-height: 430px;
  }

  .floating-card {
    right: 1rem;
  }
}

@media (max-width: 767.98px) {
  .topbar {
    display: none;
  }

  .section-pad {
    padding: 4rem 0;
  }

  .hero {
    min-height: 660px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  }

  .metric:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .page-hero {
    padding: 6rem 0 5rem;
  }

  .project-card {
    min-height: 390px;
  }

  .project-detail-card img {
    height: 250px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

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