:root {
  --orange: #f78e1e;
  --orange-dark: #e07d0f;
  --orange-soft: #fff4e8;
  --navy: #343d4b;
  --navy-deep: #1e242d;
  --grey: #a7a9ac;
  --grey-soft: #ececee;
  --cream: #f7f5f2;
  --white: #ffffff;
  --text: #343d4b;
  --muted: #5c6370;
  --shadow: 0 18px 50px rgba(32, 38, 48, 0.12);
  --radius: 18px;
  --header-h: 6.5rem;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.25rem;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--orange);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

#phi-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 4000;
  pointer-events: none;
}

#phi-progress .phi-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(247, 142, 30, 0.7);
  transition: width 0.2s ease;
}

#phi-progress.is-done {
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}

#phi-loading-chip {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 4001;
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy-deep);
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.85rem 0.45rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}

#phi-loading-chip.is-on {
  display: inline-flex;
}

#phi-loading-chip .phi-loading-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: phiSpin 0.7s linear infinite;
}

@keyframes phiSpin {
  to { transform: rotate(360deg); }
}

.container {
  width: min(1180px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.85rem;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.12;
  font-weight: 600;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.15rem);
}

h3 {
  font-size: 1.35rem;
}

.section {
  padding: 6.5rem 0;
}

.section-alt {
  background: var(--cream);
}

.section-head {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.section-lead {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-head.light h2 {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(247, 142, 30, 0.28);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(52, 61, 75, 0.25);
}

.btn-ghost-dark:hover {
  border-color: var(--navy);
}

.btn-lg {
  padding: 1rem 1.7rem;
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(32, 38, 48, 0.08);
  border-bottom-color: var(--grey-soft);
}

.site-header.is-scrolled .topbar {
  background: #161b22;
}

.nav-wrap {
  position: relative;
}

.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 500;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.4rem;
  padding: 0.35rem 0;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.topbar-right {
  margin-left: auto;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
}

.topbar-link i {
  color: var(--orange);
}

.topbar-link:hover {
  color: var(--orange);
}

.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.topbar-social a i {
  color: #fff;
  font-size: 0.78rem;
}

.topbar-social a:hover {
  background: var(--orange);
  color: #fff;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.6rem;
  gap: 1.5rem;
}

.brand {
  flex: 0 1 auto;
  min-width: 0;
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.brand-logo {
  height: 54px;
  width: auto;
  max-width: min(260px, 52vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}

.site-nav a:not(.btn):hover {
  color: var(--orange);
}

.nav-cta {
  margin-left: 0.4rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 5px auto;
  background: var(--navy);
  transition: 0.2s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 0;
  display: flex;
  align-items: flex-end;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
}

.hero-slide.is-active .hero-media {
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(30, 36, 45, 0.82) 0%, rgba(30, 36, 45, 0.45) 55%, rgba(30, 36, 45, 0.2) 100%);
}

.hero-diagonal {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, transparent 62%, rgba(247, 142, 30, 0.22) 62.2%, rgba(247, 142, 30, 0.22) 68%, transparent 68.2%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 7rem 0 5.5rem;
  max-width: 760px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.1rem;
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}

.hero-nav:hover {
  background: var(--orange);
}

.hero-nav-prev { left: 1.2rem; }
.hero-nav-next { right: 1.2rem; }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--orange);
  transform: scale(1.2);
}

.trust-bar {
  background: var(--navy);
  color: #fff;
  padding: 2.4rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-label {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
}

.trust-grid p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 4px 48px 4px 48px;
}

.about-accent {
  position: absolute;
  left: -1.2rem;
  bottom: 2rem;
  background: var(--orange);
  color: #fff;
  padding: 1.1rem 1.4rem;
  min-width: 180px;
}

.about-accent span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-accent strong {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-copy h2 {
  margin-bottom: 1.1rem;
}

.check-list {
  list-style: none;
  margin: 1.4rem 0 2rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.55rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  background: var(--orange);
  transform: rotate(45deg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.service-card {
  background: #fff;
  padding: 1.7rem 1.5rem 1.8rem;
  border: 1px solid rgba(167, 169, 172, 0.35);
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  font-size: 1.15rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-card p {
  color: var(--muted);
  margin-top: 0.55rem;
}

.project-filters,
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
}

.gallery-tabs-wrap {
  margin-bottom: 1.8rem;
}

.gallery-tabs-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.gallery-tabs {
  margin-bottom: 0;
  padding: 0.55rem;
  background: var(--cream);
  border: 1px solid var(--grey-soft);
  border-radius: 18px;
  overflow-x: auto;
  flex-wrap: wrap;
  scrollbar-width: thin;
  scrollbar-color: var(--grey) transparent;
  -webkit-overflow-scrolling: touch;
}

.filter-btn {
  border: 1px solid transparent;
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 1px 0 rgba(32, 38, 48, 0.04);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-btn span {
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--grey-soft);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
}

.filter-btn:hover {
  border-color: rgba(247, 142, 30, 0.45);
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(32, 38, 48, 0.08);
}

.filter-btn.is-active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 10px 22px rgba(247, 142, 30, 0.28);
}

.filter-btn.is-active span {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.filter-btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  display: block;
  color: inherit;
}

.project-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--grey) 100%);
}

.project-card.is-hidden {
  display: none;
}

.project-card-tall {
  grid-row: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-meta {
  position: absolute;
  inset: auto 0 0;
  padding: 1.3rem 1.2rem;
  background: linear-gradient(transparent, rgba(20, 24, 30, 0.82));
  color: #fff;
}

.project-meta span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.project-meta h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-top: 0.2rem;
}

.process {
  background: var(--navy-deep);
  color: #fff;
}

.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.process-grid h3 {
  color: #fff;
  margin: 0.7rem 0 0.5rem;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.step-num {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--orange);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.why-grid > div > p {
  color: var(--muted);
  margin-top: 1rem;
}

.why-list {
  display: grid;
  gap: 1rem;
}

.why-list article {
  padding: 1.3rem 1.4rem;
  border-left: 3px solid var(--orange);
  background: var(--cream);
}

.why-list p {
  color: var(--muted);
  margin-top: 0.35rem;
}

.cta-band {
  background:
    linear-gradient(120deg, rgba(30, 36, 45, 0.78), rgba(30, 36, 45, 0.55)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1800&q=80") center/cover;
  padding: 5rem 0;
  color: #fff;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cta-band h2 {
  color: #fff;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

.contact-copy > p {
  color: var(--muted);
  margin: 1rem 0 1.6rem;
}

.contact-cards {
  display: grid;
  gap: 0.8rem;
}

.contact-card {
  display: block;
  padding: 1rem 1.15rem;
  border: 1px solid var(--grey-soft);
  border-radius: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
  border-color: var(--orange);
  transform: translateX(4px);
}

.contact-card span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}

.contact-card strong {
  font-weight: 600;
  word-break: break-word;
}

.contact-form {
  background: var(--cream);
  padding: 2rem;
  border-radius: 24px;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid transparent;
  background: #fff;
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247, 142, 30, 0.18);
}

.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--navy);
  min-height: 1.2em;
}

.form-note.is-success {
  color: #2e7d4f;
}

.form-note.is-error {
  color: #b42318;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 4.2rem 0 0;
  border-top: 4px solid var(--orange);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: var(--orange);
  filter: blur(140px);
  opacity: 0.16;
  pointer-events: none;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.9fr 1.1fr;
  gap: 2.4rem;
  padding-bottom: 2.8rem;
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: 58px;
  width: auto;
  max-width: min(240px, 70vw);
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 1rem;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.footer-brand-link {
  display: inline-block;
}

.footer-brand-col p {
  max-width: 32ch;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.footer-contact-inline {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-contact-inline a,
.footer-line a {
  color: inherit;
}

.footer-contact-inline a:hover,
.footer-line a:hover,
.footer-col a:hover {
  color: var(--orange);
}

.footer-col h3 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 34px;
  height: 3px;
  background: var(--orange);
  border-radius: 99px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-col ul a i {
  font-size: 0.7rem;
  color: var(--orange);
}

.footer-line {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.footer-line i {
  color: var(--orange);
  margin-top: 0.3rem;
  width: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.15rem 0 1.4rem;
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
}

.footer-legal a:hover {
  color: var(--orange);
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  z-index: 40;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.center-link {
  text-align: center;
  margin-top: 2.2rem;
}

.site-nav .nav-dropdown {
  position: relative;
}

.site-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0.6rem 0;
  z-index: 20;
}

.site-nav .nav-dropdown:hover .dropdown-menu,
.site-nav .nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.site-nav .dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.site-nav .dropdown-item.has-subs > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.site-nav .dropdown-item.has-subs > a i {
  font-size: 0.65rem;
  color: var(--orange);
}

.site-nav .dropdown-subs {
  display: none;
  background: var(--cream);
  padding: 0.2rem 0 0.4rem;
}

.site-nav .dropdown-item.has-subs:hover > .dropdown-subs,
.site-nav .dropdown-item.has-subs:focus-within > .dropdown-subs {
  display: block;
}

.site-nav .dropdown-subs a {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 1.4rem;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(30, 36, 45, 0.92), rgba(30, 36, 45, 0.72)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
  padding: 8.5rem 1.2rem 4.5rem;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  max-width: 16ch;
  margin: 0 auto 0.9rem;
}

.page-hero p {
  max-width: 38rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero .breadcrumb,
.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.service-photo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
}

.service-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  transition: transform 0.5s ease;
}

.service-photo-card:hover img {
  transform: scale(1.05);
}

.service-photo-meta {
  position: absolute;
  inset: auto 0 0;
  padding: 1.3rem;
  background: linear-gradient(transparent, rgba(20, 24, 30, 0.86));
  color: #fff;
}

.service-photo-meta h2,
.service-photo-meta h3 {
  color: #fff;
  margin-bottom: 0.2rem;
}

.service-photo-meta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  margin: 0 0 0.35rem;
  max-height: 3.2em;
  overflow: hidden;
}

.service-photo-meta span {
  color: var(--orange);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.review-card {
  background: var(--cream);
  padding: 1.6rem;
  border-radius: 18px;
  border-left: 3px solid var(--orange);
}

.review-card p {
  color: var(--muted);
  margin: 0.8rem 0;
}

.review-card cite,
.review-card strong {
  font-style: normal;
  font-weight: 600;
}

.stars {
  color: var(--orange);
  letter-spacing: 0.08em;
}

.review-profile {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--grey-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.2rem 1.3rem 1.4rem;
}

.blog-card-body h3 {
  margin: 0.35rem 0 0.5rem;
}

.read-more {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.featured-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.featured-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 2.4rem;
  align-items: start;
}

.article-hero-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.article-body {
  color: var(--muted);
  font-size: 1.05rem;
}

.article-body p {
  margin-bottom: 1rem;
}

.article-body a {
  color: var(--orange);
}

.article-aside {
  position: sticky;
  top: 7rem;
}

.aside-card {
  background: var(--cream);
  padding: 1.4rem;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.aside-card h3 {
  margin-bottom: 0.8rem;
}

.aside-card a {
  display: block;
  margin-bottom: 0.5rem;
}

.aside-card a:hover {
  color: var(--orange);
}

.service-side {
  background: #fff;
  border: 1px solid var(--grey-soft);
  box-shadow: 0 16px 40px rgba(32, 38, 48, 0.06);
  padding: 1.3rem 1rem;
}

.service-side h3 {
  padding: 0 0.5rem 0.7rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid var(--grey-soft);
}

.service-side-nav a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  padding: 0.75rem 0.7rem;
  border-radius: 12px;
  color: var(--navy);
  font-weight: 600;
}

.service-side-nav a span {
  flex: 1;
}

.service-side-nav a em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
}

.service-side-nav a i {
  font-size: 0.7rem;
  color: var(--grey);
}

.service-side-nav a:hover,
.service-side-nav a.is-active {
  background: var(--navy-deep);
  color: #fff;
}

.service-side-nav a:hover em,
.service-side-nav a.is-active em {
  background: var(--orange);
  color: #fff;
}

.service-side-nav a:hover i,
.service-side-nav a.is-active i {
  color: var(--orange);
}

.service-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 2.2rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-soft);
}

.service-block-head h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.service-block-head span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.service-subs {
  display: grid;
  gap: 0.9rem;
}

.service-sub {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--grey-soft);
  border-radius: 16px;
  background: #fff;
  scroll-margin-top: 7.5rem;
}

.service-sub-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange);
  font-weight: 800;
  font-size: 0.85rem;
}

.service-sub h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.service-sub-body,
.service-sub-body p {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.service-cta-box {
  margin-top: 2.2rem;
  padding: 1.6rem 1.7rem;
  border-radius: 18px;
  background: var(--cream);
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
}

.service-cta-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.8rem;
  align-items: start;
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.contact-info-card,
.contact-link {
  background: var(--cream);
  border-radius: 18px;
  padding: 1.4rem;
}

.contact-info-card h2 {
  margin-bottom: 0.8rem;
}

.contact-line {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.contact-line i {
  color: var(--orange);
  margin-top: 0.3rem;
}

.contact-actions {
  display: grid;
  gap: 0.7rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid var(--grey-soft);
}

.contact-link i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange);
}

.contact-link small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.contact-socials {
  display: flex;
  gap: 0.45rem;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
}

.contact-socials a:hover {
  background: var(--orange);
}

.map-wrap {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.footer-social {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-social a:hover {
  background: var(--orange);
}

.aside-dark {
  background: var(--navy-deep);
  color: #fff;
}

.aside-dark h3,
.aside-cta h3 {
  color: #fff;
}

.aside-cta {
  background: var(--navy);
  color: #fff;
}

.aside-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-card {
  background: var(--cream);
  padding: 1.3rem;
  border-radius: 16px;
  border-left: 3px solid var(--orange);
}

.benefit-card i {
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.story-wrap {
  max-width: 720px;
}

.story-wrap h2 {
  margin-bottom: 1rem;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.vm-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 18px;
  border-left: 4px solid var(--orange);
}

.vm-card h3 {
  margin-bottom: 0.8rem;
}

.vm-card i {
  color: var(--orange);
  margin-right: 0.4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.value-card {
  background: var(--cream);
  padding: 1.8rem 1.4rem;
  border-radius: 18px;
  text-align: center;
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.faq-page,
.page-faqs {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 6vw, 6rem);
}

.faq-item {
  background: #fff;
  border: 1px solid var(--grey-soft);
  border-radius: 18px;
  margin-bottom: 0.9rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(32, 38, 48, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 1.2rem 1.4rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.4rem;
  color: var(--muted);
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.is-open {
  border-color: var(--orange);
}

.faq-item.is-open .faq-answer {
  max-height: 800px;
  padding: 0 1.4rem 1.3rem;
}

.faq-item.is-open .faq-toggle-icon,
.faq-item.is-open .faq-question i {
  transform: rotate(180deg);
  background: var(--navy);
  color: #fff;
}

.help-desk {
  background: var(--navy);
  color: #fff;
  padding: 4.5rem 0;
}

.help-desk h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.help-desk > .container > p {
  opacity: 0.8;
  max-width: 46ch;
}

.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 2.2rem;
}

.help-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 2rem;
}

.help-card i {
  color: var(--orange);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.help-card h3 {
  margin-bottom: 0.4rem;
}

.help-card p {
  opacity: 0.75;
  margin-bottom: 0.9rem;
}

.help-link {
  color: var(--orange);
  font-weight: 700;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.home-faq-card {
  background: #fff;
  border: 1px solid var(--grey-soft);
  border-left: 6px solid var(--orange);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
}

.home-faq-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.home-faq-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
  padding: 0;
  border: 0;
  background: var(--navy);
  cursor: pointer;
  width: 100%;
  text-align: left;
  color: inherit;
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(20, 24, 30, 0.82));
  font-family: var(--display);
  font-size: 1.2rem;
}

.gallery-card.is-hidden {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 18, 24, 0.92);
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.lightbox.is-open,
.lightbox:not([hidden]) {
  display: flex;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-stage {
  max-width: min(1100px, 92vw);
  text-align: center;
}

.lightbox-stage img {
  max-height: 78vh;
  max-width: 92vw;
  width: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-stage figcaption {
  color: #fff;
  margin-top: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: baseline;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  font-size: 1.8rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--orange);
}

.rating-summary-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.2rem;
  padding: 1.2rem 2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.rating-summary-box .stars {
  color: #facc15;
}

.featured-section {
  padding: 0;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.legal-copy {
  max-width: 760px;
  line-height: 1.8;
}

.legal-copy h2 {
  margin: 1.8rem 0 0.7rem;
  font-size: 1.4rem;
}

.legal-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.legal-copy a {
  color: var(--orange);
  text-decoration: underline;
}

.recent-post-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.recent-post-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 30, 0.72);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 1rem;
}

.modal-overlay.is-open {
  display: grid;
}

.modal-card {
  background: #fff;
  width: min(520px, 100%);
  padding: 2rem;
  border-radius: 24px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  border: 0;
  background: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.service-icon i {
  font-size: 1.25rem;
}

.about-api,
.about-copy,
.vm-copy,
.about-api p,
.about-copy p,
.vm-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

@media (max-width: 980px) {
  .service-photo-grid,
  .reviews-grid,
  .blog-grid,
  .gallery-grid,
  .values-grid,
  .featured-card,
  .article-layout,
  .vm-grid,
  .benefits-grid,
  .home-faq-grid,
  .help-grid,
  .contact-page-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-card,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-tabs {
    flex-wrap: nowrap;
  }
}

@media (max-width: 760px) {
  .service-photo-grid,
  .reviews-grid,
  .blog-grid,
  .gallery-grid,
  .values-grid,
  .vm-grid,
  .benefits-grid,
  .home-faq-grid,
  .help-grid,
  .footer-main,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .site-nav .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 0 0 0.4rem 0.8rem;
    display: none;
  }

  .site-nav .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .site-nav .dropdown-subs {
    display: block;
  }

  .page-hero {
    padding-top: 7rem;
    text-align: left;
  }

  .page-hero h1 {
    margin-left: 0;
  }
}


@media (max-width: 980px) {
  .trust-grid,
  .service-grid,
  .process-grid,
  .project-grid,
  .about-grid,
  .why-grid,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .project-card-tall {
    grid-row: span 1;
  }

  .project-grid {
    grid-auto-rows: 220px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-media img {
    height: 420px;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    gap: 0.5rem;
  }

  .topbar-email span,
  .topbar-email {
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem 1.2rem 1.2rem;
    gap: 0.2rem;
    border-bottom: 1px solid var(--grey-soft);
    display: none;
  }

  .site-header.is-open .site-nav {
    display: flex;
    box-shadow: 0 18px 30px rgba(32, 38, 48, 0.12);
  }

  .site-nav a {
    padding: 0.75rem 0.2rem;
  }

  .nav-cta {
    margin: 0.5rem 0 0;
    text-align: center;
    width: 100%;
  }

  .contact {
    padding-bottom: 7rem;
  }

  .hero-nav {
    width: 40px;
    height: 40px;
  }

  .hero-nav-prev { left: 0.6rem; }
  .hero-nav-next { right: 0.6rem; }

  .hero-content {
    padding: 5.5rem 0 4rem;
  }

  .trust-grid,
  .service-grid,
  .process-grid,
  .project-grid,
  .about-grid,
  .why-grid,
  .contact-grid,
  .footer-main,
  .form-split {
    grid-template-columns: 1fr;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }

  .about-accent {
    left: 0.8rem;
  }

  .contact-form {
    padding: 1.3rem;
  }

  .service-cta-box,
  .contact-page-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .service-sub {
    grid-template-columns: 1fr;
  }
}
