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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

html, body { overflow-x: clip; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: #f25420; color: #fff; }

a { text-decoration: none; }
button { cursor: pointer; font: inherit; }

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

.kenburns-img {
  object-position: center 35%;
}

.logo-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  position: relative;
}

.logo-text {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.035em;
  color: #fbfbfa;
  line-height: 1;
}
.logo-text--light { color: #fbfbfa; }

.logo-ab {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #f25420;
  transform: translateY(-3px);
}

.logo-link:hover .logo-text { color: #ffffff; }
.logo-link:hover .logo-ab { color: #ff9c66; }

#topbar {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#topbar.topbar-hidden { transform: translateY(-100%); }

#navbar {
  top: 0;
  background: linear-gradient(180deg, rgba(14, 16, 19, 0.72) 0%, rgba(14, 16, 19, 0.32) 60%, rgba(14, 16, 19, 0) 100%);
  transition: top 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#navbar.has-topbar { top: 2.25rem; }

#navbar.scrolled {
  top: 0;
  background: rgba(14, 16, 19, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}
#navbar.scrolled.has-topbar { top: 2.25rem; }

#navbar.scrolled .menu-bar { background: #fbfbfa; }

.nav-link {
  position: relative;
  padding: 0.5rem 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color 0.25s;
}
.nav-link:hover { color: #fff; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0.9rem;
  right: 0.9rem;
  height: 1px;
  background: #f25420;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  background: #f25420;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover {
  background: #ff7639;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(242, 84, 32, 0.32);
}

.mobile-link {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fbfbfa;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-cta {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: #f25420;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

#mobile-menu {
  z-index: 55;
  background: #0e1013;
  padding: 6rem 1.5rem 3rem;
  overflow-y: auto;
}
#mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}
#mobile-menu.active .mobile-link,
#mobile-menu.active .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}
#mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.06s; }
#mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.12s; }
#mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.18s; }
#mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.24s; }
#mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.30s; }
#mobile-menu.active .mobile-cta { transition-delay: 0.38s; }

.menu-open .menu-bar:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-open .menu-bar:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.menu-open .menu-bar:nth-child(3) {
  width: 1.5rem;
  align-self: center;
  margin-right: 0;
  transform: translateY(-4px) rotate(-45deg);
}

.kenburns {
  animation: kenburns 18s ease-out forwards;
}
@keyframes kenburns {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

.hero-stat {
  background: rgba(14, 16, 19, 0.62);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
@media (min-width: 640px) { .hero-stat { padding: 1.1rem 1.3rem; } }

.hero-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fbfbfa;
  line-height: 1;
}
@media (min-width: 1024px) { .hero-stat-num { font-size: 1.85rem; } }

.hero-stat-label {
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #c3c7cb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 640px) { .hero-stat-label { font-size: 0.72rem; letter-spacing: 0.16em; } }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #f25420;
  padding: 0.4rem 0.7rem;
  background: #fff5ef;
  border-radius: 999px;
}
.section-tag--light {
  background: rgba(242, 84, 32, 0.12);
  color: #ff9c66;
}

.section-mini-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f25420;
  padding: 0.4rem 0.85rem;
  background: #fff5ef;
  border-radius: 999px;
}
.section-mini-tag--light {
  color: #ff9c66;
  background: rgba(242, 84, 32, 0.14);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff9c66;
  padding: 0.4rem 0.85rem;
  background: rgba(242, 84, 32, 0.14);
  border: 1px solid rgba(242, 84, 32, 0.3);
  border-radius: 999px;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: #0e1013;
}
@media (min-width: 640px) { .section-title { font-size: 2.4rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3.2rem; } }
.section-title--light { color: #fbfbfa; }

.lead-statement {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: #0e1013;
  max-width: 38ch;
}
@media (min-width: 640px) { .lead-statement { font-size: 2rem; } }
@media (min-width: 1024px) { .lead-statement { font-size: 2.5rem; } }

.lead-statement--centered {
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.18;
}
@media (min-width: 768px) { .lead-statement--centered { max-width: 38ch; } }
@media (min-width: 1024px) { .lead-statement--centered { max-width: 42ch; } }

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border: 1px solid #d8d8d4;
  background: #fbfbfa;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: #2b3036;
}
.chip--accent {
  background: #fff5ef;
  border-color: #ffc4a0;
  color: #d63d10;
  font-weight: 700;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  background: #f25420;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(242, 84, 32, 0.25);
}
.btn-primary:hover {
  background: #ff7639;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(242, 84, 32, 0.42);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  color: #fbfbfa;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 2rem;
  background: #0e1013;
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn-submit:hover {
  background: #f25420;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(242, 84, 32, 0.3);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e8e8e5;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s;
}
.service-card:hover {
  border-color: #d8d8d4;
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -25px rgba(14, 16, 19, 0.18);
}
.service-card--accent {
  background: #fff5ef;
  border-color: #ffe0c4;
}
.service-card--accent:hover { border-color: #ffc4a0; }

.service-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-badge {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  padding: 0.4rem 0.8rem;
  background: rgba(242, 84, 32, 0.94);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.service-card-badge--neutral {
  background: rgba(14, 16, 19, 0.78);
  color: #ffe5d3;
}

.service-card-body {
  padding: 1.75rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0e1013;
  line-height: 1.1;
}
@media (min-width: 1024px) { .service-card-title { font-size: 1.7rem; } }

.service-card-lede {
  margin-top: 0.7rem;
  color: #454c54;
  font-size: 14.5px;
  line-height: 1.65;
}

.service-card-list {
  margin-top: 1.1rem;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.service-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #2b3036;
  font-size: 13.5px;
  line-height: 1.5;
}
.service-card-list li::before {
  content: "✓";
  color: #f25420;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  line-height: 1.45;
}

.service-card-cta {
  margin-top: auto;
  padding-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0e1013;
  transition: color 0.25s, gap 0.25s;
}
.service-card-cta span {
  position: relative;
  padding-bottom: 2px;
}
.service-card-cta span::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: #f25420;
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card-cta:hover { color: #f25420; gap: 0.7rem; }
.service-card-cta svg { color: #f25420; transition: transform 0.3s; }
.service-card-cta:hover svg { transform: translateX(3px); }

.service-banner {
  background: #0e1013;
  border: 1px solid #1d2125;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.service-banner-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .service-banner-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    min-height: 460px;
  }
}

.service-banner-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
@media (min-width: 1024px) {
  .service-banner-img { aspect-ratio: auto; height: 100%; }
}
.service-banner-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-banner:hover .service-banner-img img { transform: scale(1.04); }

.service-banner-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(14, 16, 19, 0.6) 100%);
  pointer-events: none;
}
@media (max-width: 1023px) {
  .service-banner-img::after {
    background: linear-gradient(to bottom, transparent 60%, rgba(14, 16, 19, 0.7) 100%);
  }
}

.service-banner-body {
  padding: 2rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  color: #f4f4f2;
}
@media (min-width: 1024px) {
  .service-banner-body { padding: 2.5rem 2.75rem; }
}

.service-banner-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.service-banner-meta::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: #f25420;
}
.service-banner-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ff9c66;
}

.service-banner-title {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: #fbfbfa;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .service-banner-title { font-size: 2rem; } }
@media (min-width: 1024px) { .service-banner-title { font-size: 2.4rem; } }

.service-banner-lede {
  color: #c3c7cb;
  font-size: 15px;
  line-height: 1.65;
  max-width: 56ch;
}

.rental-roles {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
@media (min-width: 640px) {
  .rental-roles { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.6rem; }
}

.rental-role {
  padding: 0.95rem 1.05rem;
  background: rgba(251, 251, 250, 0.04);
  border: 1px solid rgba(251, 251, 250, 0.1);
  border-radius: 10px;
  transition: background 0.25s, border-color 0.25s;
}
.rental-role:hover {
  background: rgba(242, 84, 32, 0.08);
  border-color: rgba(242, 84, 32, 0.32);
}

.rental-role-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ff9c66;
  margin-bottom: 0.5rem;
}

.rental-role-list {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.5;
  color: #f4f4f2;
}

.service-banner-certs {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}
@media (max-width: 419px) {
  .service-banner-certs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 640px) {
  .service-banner-certs { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.55rem; }
}
@media (min-width: 1024px) {
  .service-banner-certs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.cert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.4rem;
  background: rgba(251, 251, 250, 0.045);
  border: 1px solid rgba(251, 251, 250, 0.12);
  color: #f4f4f2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 8px;
  text-align: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}
.cert:hover {
  background: rgba(242, 84, 32, 0.18);
  border-color: rgba(242, 84, 32, 0.55);
  color: #ffc4a0;
}

.service-banner-cta-row {
  margin-top: auto;
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  background: #f25420;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 14px rgba(242, 84, 32, 0.28);
}
.btn-primary-light:hover {
  background: #ff7639;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(242, 84, 32, 0.42);
}

.service-banner-phone {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(251, 251, 250, 0.12);
  transition: border-color 0.25s;
}
.service-banner-phone:hover { border-color: #f25420; }
.service-banner-phone-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8e949a;
}
.service-banner-phone-num {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fbfbfa;
  transition: color 0.25s;
}
.service-banner-phone:hover .service-banner-phone-num { color: #ff9c66; }

.portrait-frame {
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  background: #15181c;
  position: relative;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.portrait-frame:hover img { transform: scale(1.04); }
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 16, 19, 0.55) 100%);
  pointer-events: none;
}

.portrait-badge {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  background: rgba(251, 251, 250, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.3);
}
.portrait-badge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #6b727a;
}
.portrait-badge-num {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0e1013;
  line-height: 1;
}

.stat-card {
  padding: 1.2rem 1rem;
  background: #ffffff;
  border: 1px solid #e8e8e5;
  border-radius: 12px;
  text-align: left;
  transition: border-color 0.25s, transform 0.25s;
}
.stat-card:hover { border-color: #f25420; transform: translateY(-2px); }

.stat-num {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0e1013;
  line-height: 1;
  margin-bottom: 0.4rem;
}
@media (min-width: 1024px) { .stat-num { font-size: 2.1rem; } }

.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b727a;
}

.process-step {
  position: relative;
  background: rgba(251, 251, 250, 0.04);
  border: 1px solid rgba(251, 251, 250, 0.08);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
}
.process-step:hover {
  background: rgba(251, 251, 250, 0.06);
  border-color: rgba(242, 84, 32, 0.35);
  transform: translateY(-3px);
}
.process-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #f25420;
  background: rgba(242, 84, 32, 0.12);
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.process-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fbfbfa;
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #b5b5b1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  grid-auto-flow: dense;
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
}
.gallery-item--tall { grid-row: span 1; aspect-ratio: 1/1; }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 2/1; }

@media (max-width: 639px) {
  .gallery-item--hide-mobile { display: none; }
}

@media (min-width: 1024px) {
  .gallery-item--tall { grid-row: span 2; aspect-ratio: 4/8.2; }
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 16, 19, 0.78) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-overlay span {
  color: #fbfbfa;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.usp-card {
  background: #fbfbfa;
  border: 1px solid #e8e8e5;
  border-radius: 14px;
  padding: 1.8rem 1.4rem;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}
.usp-card:hover {
  border-color: #f25420;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -20px rgba(242, 84, 32, 0.22);
}
.usp-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: #fff5ef;
  color: #f25420;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
  margin-bottom: 1.1rem;
}
.usp-card:hover .usp-icon {
  background: #f25420;
  color: #fbfbfa;
}
.usp-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #0e1013;
  margin-bottom: 0.45rem;
}
.usp-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b727a;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #e8e8e5;
  transition: padding-left 0.3s;
}
.contact-row:last-of-type { border-bottom: 0; }
a.contact-row:hover { padding-left: 0.35rem; }

.contact-external {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: #fff5ef;
  color: #f25420;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.contact-row--external:hover .contact-external {
  background: #f25420;
  color: #fbfbfa;
  transform: translate(2px, -2px);
}

.contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #fff5ef;
  color: #f25420;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
a.contact-row:hover .contact-icon { background: #f25420; color: #fbfbfa; }

.contact-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8e949a;
  margin-bottom: 1px;
}
.contact-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #0e1013;
}

.contact-form {
  background: #ffffff;
  border: 1px solid #e8e8e5;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 4px 24px -10px rgba(14, 16, 19, 0.06);
}
@media (max-width: 640px) { .contact-form { padding: 1.4rem; } }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #2b3036;
  margin-bottom: 0.4rem;
}
.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #fbfbfa;
  border: 1.5px solid #e8e8e5;
  border-radius: 10px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 14.5px;
  color: #0e1013;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  outline: none;
}
.form-input::placeholder { color: #b5b5b1; }
.form-input:focus {
  border-color: #f25420;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(242, 84, 32, 0.08);
}
select.form-input {
  cursor: pointer;
  padding-right: 1rem;
}
textarea.form-input { resize: vertical; min-height: 130px; }

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ff9c66;
  margin-bottom: 1rem;
}
.footer-link {
  font-size: 14px;
  color: #c3c7cb;
  transition: color 0.25s;
}
.footer-link:hover { color: #fbfbfa; }

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(251, 251, 250, 0.05);
  color: #c3c7cb;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.footer-social:hover {
  background: #f25420;
  color: #fbfbfa;
  transform: translateY(-2px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(7, 8, 9, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 92vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.96);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox.active img { transform: scale(1); }

.lightbox-close, .lightbox-nav {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #c3c7cb;
  font-size: 13px;
  letter-spacing: -0.005em;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid #f25420;
  outline-offset: 2px;
}

.form-messages {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-size: 14px;
}

#contact-form {
  max-width: 100%;
  overflow: hidden;
}

#contact-form .g-recaptcha {
  margin-top: 1rem;
  transform-origin: left center;
  max-width: 100%;
}
@media (max-width: 400px) { #contact-form .g-recaptcha { transform: scale(0.85); } }
@media (max-width: 340px) { #contact-form .g-recaptcha { transform: scale(0.75); } }
