
:root {
  --black: #080807;
  --ink: #17130d;
  --muted: #6b6254;
  --paper: #fffaf0;
  --white: #ffffff;
  --gold: #d49b2a;
  --gold-light: #f1d28a;
  --line: rgba(212, 155, 42, 0.24);
}

@theme inline {
  --color-background: var(--paper);
  --color-foreground: var(--ink);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
  --font-display: var(--font-oswald);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow-x: hidden;
}

section {
  scroll-margin-top: 6rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 7, 0.9);
  padding: 0.75rem max(1rem, calc((100vw - 1180px) / 2));
  color: var(--white);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 3.2rem;
  height: 3.2rem;
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: var(--white);
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: var(--font-oswald), Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand small {
  margin-top: 0.2rem;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.3rem;
}

nav a {
  border: 1px solid transparent;
  border-radius: 0.35rem;
  padding: 0.55rem 0.7rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 760;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

nav a:hover {
  border-color: rgba(212, 155, 42, 0.32);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(46rem, calc(100vh - 5.25rem));
  background: var(--black);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.92) 0%, rgba(8, 8, 7, 0.74) 44%, rgba(8, 8, 7, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 8, 7, 0.22), rgba(8, 8, 7, 0.78));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(6rem, 9vw, 7rem);
  animation: revealUp 700ms ease-out both;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-family: var(--font-oswald), Arial, sans-serif;
  font-size: clamp(2.9rem, 6vw, 5.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 690px;
  margin-bottom: 1.1rem;
  font-size: clamp(2.8rem, 5.2vw, 4.9rem);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: none;
}

h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-family: var(--font-oswald), Arial, sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 3.25rem);
  font-weight: 650;
  line-height: 1.08;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1rem;
  font-weight: 850;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
}

.hero-service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 650px;
  margin-top: 1.35rem;
}

.hero-service-strip span {
  border: 1px solid rgba(241, 210, 138, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.48rem 0.68rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 0.4rem;
  padding: 0.82rem 1rem;
  font-size: 0.92rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button.primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 1rem 2.5rem rgba(212, 155, 42, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-card {
  position: absolute;
  right: max(1rem, calc((100vw - 1180px) / 2));
  bottom: 1.5rem;
  z-index: 2;
  display: grid;
  grid-template-columns: 4.4rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  width: min(24rem, calc(100% - 2rem));
  border: 1px solid rgba(212, 155, 42, 0.32);
  border-radius: 0.55rem;
  background: rgba(8, 8, 7, 0.78);
  padding: 0.8rem;
  color: var(--white);
  backdrop-filter: blur(14px);
}

.hero-card img {
  width: 4.4rem;
  height: 4.4rem;
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: var(--white);
  object-fit: cover;
}

.hero-card span,
.address-card span,
.map-label span {
  color: #d8c6a4;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.94rem;
  line-height: 1.35;
}

.outcomes,
.section,
.projects-section,
.brands-band,
.process-band,
.clients-section,
.quote-section,
.location-section,
.contact,
.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
}

.outcomes article,
.service-card,
.project-grid article,
.client-logo-grid article,
.client-logo-grid a,
.client-name-grid span,
.testimonial-grid article,
.process-grid article,
.address-card,
.contact-card,
.quote-form {
  border: 1px solid rgba(212, 155, 42, 0.2);
  border-radius: 0.55rem;
  background: var(--white);
  box-shadow: 0 1rem 2.5rem rgba(35, 24, 5, 0.08);
}

.outcomes article {
  padding: 1rem;
}

.icon {
  position: relative;
  display: inline-block;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--gold);
}

.icon::before,
.icon::after {
  position: absolute;
  content: "";
}

.icon-check::before {
  top: 0.18rem;
  left: 0.12rem;
  width: 1rem;
  height: 0.58rem;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: rotate(-45deg);
}

.icon-network::before,
.icon-server::before,
.icon-laptop::before,
.icon-building::before,
.icon-school::before,
.icon-home::before,
.icon-shop::before {
  inset: 0.18rem;
  border: 2px solid currentColor;
  border-radius: 0.18rem;
}

.icon-network::after {
  inset: 0.52rem;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.icon-laptop::before {
  height: 0.78rem;
}

.icon-laptop::after {
  right: 0.05rem;
  bottom: 0.12rem;
  left: 0.05rem;
  height: 0.18rem;
  background: currentColor;
}

.icon-camera::before {
  top: 0.34rem;
  left: 0.1rem;
  width: 0.9rem;
  height: 0.62rem;
  border: 2px solid currentColor;
  border-radius: 0.16rem;
}

.icon-camera::after {
  top: 0.44rem;
  right: 0.08rem;
  border-top: 0.22rem solid transparent;
  border-bottom: 0.22rem solid transparent;
  border-left: 0.42rem solid currentColor;
}

.icon-tower::before {
  top: 0.08rem;
  left: 50%;
  width: 0.12rem;
  height: 1.1rem;
  background: currentColor;
  transform: translateX(-50%);
}

.icon-tower::after {
  inset: 0.2rem;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.icon-globe::before {
  inset: 0.12rem;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.icon-globe::after {
  top: 0.22rem;
  bottom: 0.22rem;
  left: 50%;
  width: 0.18rem;
  border-right: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateX(-50%);
}

.icon-solar::before {
  inset: 0.32rem;
  border-radius: 999px;
  background: currentColor;
}

.icon-solar::after {
  inset: 0.05rem;
  border: 2px dashed currentColor;
  border-radius: 999px;
}

.icon-star::before {
  inset: 0.15rem;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 92%, 50% 70%, 21% 92%, 32% 56%, 2% 35%, 39% 35%);
  background: currentColor;
}

.icon-shield::before {
  inset: 0.05rem 0.2rem;
  border: 2px solid currentColor;
  border-radius: 0.55rem 0.55rem 0.75rem 0.75rem;
}

.icon-wifi::before {
  inset: 0.15rem;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.icon-wifi::after {
  right: 0.5rem;
  bottom: 0.15rem;
  left: 0.5rem;
  height: 0.24rem;
  border-radius: 999px;
  background: currentColor;
}

.icon-battery::before {
  inset: 0.28rem 0.12rem;
  border: 2px solid currentColor;
  border-radius: 0.18rem;
}

.icon-battery::after {
  top: 0.48rem;
  right: 0;
  width: 0.14rem;
  height: 0.4rem;
  background: currentColor;
}

.outcomes p,
.section-head p,
.service-card p,
.project-grid p,
.process-grid p,
.testimonial-grid p,
.site-footer p,
.contact-card span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.section,
.projects-section,
.brands-band,
.process-band,
.clients-section,
.quote-section,
.location-section {
  padding-top: clamp(4.5rem, 8vw, 7rem);
}

.section-head {
  display: grid;
  gap: 0.65rem;
  max-width: 850px;
  margin-bottom: 2rem;
}

.section-head .eyebrow,
.location-section .eyebrow,
.contact .eyebrow {
  color: #9f6d12;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 15.5rem;
  padding: 1.2rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.learn-more {
  display: inline-block;
  margin-top: 0.7rem;
  border-bottom: 2px solid var(--gold);
  color: #9f6d12;
  font-size: 0.84rem;
  font-weight: 900;
}

.service-card:hover,
.project-grid article:hover,
.client-logo-grid article:hover,
.client-logo-grid a:hover,
.testimonial-grid article:hover,
.process-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 155, 42, 0.45);
  box-shadow: 0 1.5rem 3rem rgba(35, 24, 5, 0.12);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.3rem;
  border-radius: 0.45rem;
  background: #fff3d7;
}

.service-hero,
.service-detail-grid,
.service-proof,
.faq-section,
.service-cta {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(70vh - 5.25rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.service-hero h1 {
  color: var(--ink);
}

.service-hero > div > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.75;
}

.button.secondary.light {
  border-color: rgba(8, 8, 7, 0.18);
  background: var(--white);
  color: var(--ink);
}

.service-hero-card,
.service-detail-grid article,
.faq-grid article,
.proof-card,
.service-cta {
  border: 1px solid rgba(212, 155, 42, 0.22);
  border-radius: 0.55rem;
  background: var(--white);
  box-shadow: 0 1rem 2.5rem rgba(35, 24, 5, 0.08);
}

.service-hero-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem;
}

.service-hero-card .icon {
  width: 3rem;
  height: 3rem;
}

.service-hero-card span {
  color: #9f6d12;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-hero-card strong {
  font-family: var(--font-oswald), Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 650;
}

.service-hero-card p {
  color: var(--muted);
  font-weight: 850;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.service-detail-grid article {
  padding: 1.2rem;
}

.service-detail-grid h2,
.service-proof h2,
.service-cta h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.service-detail-grid ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-grid li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
  line-height: 1.6;
}

.service-detail-grid li::before {
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.service-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(20rem, 1fr);
  gap: 1rem;
  align-items: start;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.faq-section {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.faq-grid article {
  padding: 1.1rem;
}

.faq-grid h3 {
  font-family: var(--font-oswald), Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 650;
  line-height: 1.25;
}

.faq-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.proof-card {
  padding: 1.2rem;
}

.proof-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.2rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.7fr);
  gap: 2rem;
  align-items: end;
}

.about-metrics {
  display: grid;
  gap: 0.8rem;
}

.about-metrics article {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  align-items: center;
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, #fff4d8, var(--white));
  padding: 1rem;
}

.about-metrics strong {
  color: var(--ink);
  font-family: var(--font-oswald), Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.about-metrics span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
}

.projects-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(20rem, 1fr);
  gap: 2rem;
  align-items: start;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.project-grid article {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1rem;
  min-height: 10rem;
  padding: 1.1rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.project-grid .icon {
  width: 2rem;
  height: 2rem;
}

.brands-band {
  display: grid;
  gap: 1rem;
  border-block: 1px solid rgba(212, 155, 42, 0.22);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.brands-band div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.brands-band span {
  border: 1px solid rgba(212, 155, 42, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.7rem 1rem;
  color: #4c3c20;
  font-size: 0.86rem;
  font-weight: 900;
}

.process-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(20rem, 1fr);
  gap: 2rem;
  align-items: start;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.process-grid article {
  min-height: 12rem;
  padding: 1.1rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.process-grid span {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--gold);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.82rem;
  font-weight: 900;
}

.clients-section {
  display: grid;
  gap: 1.25rem;
  border-radius: 0.75rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 155, 42, 0.18), transparent 18rem),
    var(--black);
  padding: clamp(1.25rem, 4vw, 3rem);
  color: var(--white);
}

.clients-section .section-head {
  max-width: 780px;
  margin-bottom: 0.75rem;
}

.clients-section .section-head .eyebrow {
  color: var(--gold-light);
}

.clients-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.client-logo-grid article,
.client-logo-grid a {
  display: grid;
  gap: 0.85rem;
  align-content: space-between;
  min-height: 12rem;
  padding: 1rem;
  color: var(--ink);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.client-logo-grid img {
  width: 100%;
  height: 7rem;
  border-radius: 0.35rem;
  background: #fffdf8;
  object-fit: contain;
}

.client-logo-grid img.logo-zoom {
  object-fit: cover;
  object-position: center 63%;
}

.client-logo-grid strong {
  color: var(--ink);
  font-family: var(--font-oswald), Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.25;
}

.service-tags,
.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-tags em,
.work-tags span {
  border: 1px solid rgba(212, 155, 42, 0.28);
  border-radius: 999px;
  background: #fff7e5;
  padding: 0.36rem 0.5rem;
  color: #4d3914;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.recent-projects-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 155, 42, 0.34);
  border-radius: 0.55rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 229, 0.92)),
    radial-gradient(circle at 86% 15%, rgba(212, 155, 42, 0.2), transparent 28rem);
  padding: 1rem 1rem 2.35rem;
  box-shadow: 0 1.3rem 3rem rgba(35, 24, 5, 0.14);
}

.slider-track {
  position: relative;
  min-height: 15rem;
}

.featured-work-card {
  display: grid;
  grid-template-columns: minmax(10rem, 0.4fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  color: var(--ink);
}

.project-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(1.5rem) scale(0.985);
  animation: projectSlide 30s infinite;
}

.project-slide:nth-child(1) {
  animation-delay: 0s;
}

.project-slide:nth-child(2) {
  animation-delay: 6s;
}

.project-slide:nth-child(3) {
  animation-delay: 12s;
}

.project-slide:nth-child(4) {
  animation-delay: 18s;
}

.project-slide:nth-child(5) {
  animation-delay: 24s;
}

.featured-work-card img {
  width: 100%;
  height: 12rem;
  border-radius: 0.4rem;
  background: #fffdf8;
  object-fit: contain;
}

.featured-work-card .eyebrow {
  color: #9f6d12;
}

.featured-work-card h3 {
  font-family: var(--font-oswald), Arial, sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 650;
}

.featured-work-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.work-tags span {
  background: var(--gold);
  color: var(--black);
}

.slider-dots {
  position: absolute;
  right: 1rem;
  bottom: 0.95rem;
  left: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.42rem;
}

.slider-dots span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(212, 155, 42, 0.3);
  animation: sliderDot 30s infinite;
}

.slider-dots span:nth-child(1) {
  animation-delay: 0s;
}

.slider-dots span:nth-child(2) {
  animation-delay: 6s;
}

.slider-dots span:nth-child(3) {
  animation-delay: 12s;
}

.slider-dots span:nth-child(4) {
  animation-delay: 18s;
}

.slider-dots span:nth-child(5) {
  animation-delay: 24s;
}

@keyframes projectSlide {
  0%,
  19% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  20%,
  96% {
    opacity: 0;
    transform: translateX(-1.5rem) scale(0.985);
  }

  97%,
  100% {
    opacity: 0;
    transform: translateX(1.5rem) scale(0.985);
  }
}

@keyframes sliderDot {
  0%,
  19% {
    width: 1.35rem;
    background: var(--gold);
  }

  20%,
  100% {
    width: 0.55rem;
    background: rgba(212, 155, 42, 0.3);
  }
}

.client-name-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.client-name-grid span {
  width: fit-content;
  border-color: rgba(212, 155, 42, 0.24);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 850;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-grid article {
  display: grid;
  gap: 0.85rem;
  min-height: 14rem;
  background: rgba(255, 255, 255, 0.94);
  padding: 1.1rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.testimonial-grid p {
  margin-bottom: 0;
}

.testimonial-grid strong {
  color: var(--ink);
  font-family: var(--font-oswald), Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 650;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(22rem, 1fr);
  gap: 2rem;
  align-items: start;
}

.quote-section .button {
  width: fit-content;
  margin-top: 0.4rem;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1rem;
}

.quote-form label {
  display: grid;
  gap: 0.45rem;
  color: #4c3c20;
  font-size: 0.82rem;
  font-weight: 900;
}

.quote-form label.full,
.quote-form button {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(212, 155, 42, 0.26);
  border-radius: 0.4rem;
  background: #fffdf8;
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 155, 42, 0.15);
}

.location-section,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(22rem, 1fr);
  gap: 2rem;
  align-items: center;
}

.address-card,
.contact-card {
  display: grid;
  gap: 0.6rem;
  max-width: 32rem;
  padding: 1rem;
}

.address-card strong {
  font-family: var(--font-oswald), Arial, sans-serif;
  font-size: clamp(1.15rem, 1.7vw, 1.38rem);
  font-weight: 650;
}

.address-card a,
.contact-card a {
  width: fit-content;
  border-bottom: 2px solid var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 25rem;
  border: 1px solid rgba(212, 155, 42, 0.3);
  border-radius: 0.55rem;
  background:
    radial-gradient(circle at 55% 48%, rgba(212, 155, 42, 0.22), transparent 8rem),
    linear-gradient(135deg, #151515, #050505);
  box-shadow: 0 2rem 5rem rgba(35, 24, 5, 0.14);
}

.map-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  animation: mapGlow 5s ease-in-out infinite;
}

.map-road {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.18);
  box-shadow: 0 0 22px rgba(212, 155, 42, 0.16);
}

.road-one {
  top: 42%;
  left: -12%;
  width: 128%;
  height: 0.5rem;
  transform: rotate(-17deg);
}

.road-two {
  top: 13%;
  left: 48%;
  width: 0.46rem;
  height: 88%;
  transform: rotate(17deg);
}

.road-three {
  top: 66%;
  left: 6%;
  width: 84%;
  height: 0.36rem;
  transform: rotate(8deg);
}

.map-pin {
  position: absolute;
  top: 43%;
  left: 54%;
  width: 3.4rem;
  height: 3.4rem;
  transform: translate(-50%, -50%);
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: rgba(212, 155, 42, 0.14);
  animation: pinPulse 2.2s ease-out infinite;
}

.map-pin span {
  position: absolute;
  inset: 0.72rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(212, 155, 42, 0.7);
}

.map-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(212, 155, 42, 0.34);
  border-radius: 0.4rem;
  background: rgba(8, 8, 7, 0.78);
  padding: 1rem;
  color: var(--white);
  backdrop-filter: blur(12px);
}

.map-label strong {
  color: var(--gold);
  font-family: var(--font-oswald), Arial, sans-serif;
  font-size: clamp(1.12rem, 1.6vw, 1.34rem);
  font-weight: 650;
}

.contact {
  padding-block: clamp(4.5rem, 8vw, 7rem) 2rem;
}

.contact-card {
  justify-self: end;
}

.contact-icons {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.35rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: #1f9d55;
  color: var(--white);
  font-family: var(--font-oswald), Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 1rem 2.5rem rgba(15, 87, 46, 0.34);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 1.4rem 3rem rgba(15, 87, 46, 0.42);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(12rem, 0.5fr));
  gap: 2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(212, 155, 42, 0.24);
  padding-block: 2rem;
}

.site-footer h3 {
  margin-bottom: 0.9rem;
  font-family: var(--font-oswald), Arial, sans-serif;
}

.site-footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin-bottom: 0.55rem;
  color: #4d412b;
  font-size: 0.92rem;
  font-weight: 780;
}

.site-footer a:not(.brand):hover {
  color: #9f6d12;
}

.footer-brand {
  margin-bottom: 1rem;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pinPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 155, 42, 0.55);
  }

  70% {
    box-shadow: 0 0 0 1.3rem rgba(212, 155, 42, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 155, 42, 0);
  }
}

@keyframes mapGlow {
  0%,
  100% {
    opacity: 0.65;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: end;
    margin: -7rem auto 2rem;
  }

  .outcomes,
  .service-grid,
  .about-section,
  .projects-section,
  .process-band,
  .clients-section,
  .quote-section,
  .service-hero,
  .service-detail-grid,
  .service-proof,
  .faq-grid,
  .service-cta,
  .location-section,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .client-logo-grid,
  .testimonial-grid,
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card {
    justify-self: stretch;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: clamp(2.45rem, 12vw, 3.75rem);
    line-height: 1.02;
  }

  .hero-content h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .hero {
    min-height: 40rem;
  }

  .hero-content {
    padding: 3rem 0 5rem;
  }

  .service-hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 8, 7, 0.94), rgba(8, 8, 7, 0.74)),
      linear-gradient(180deg, rgba(8, 8, 7, 0.1), rgba(8, 8, 7, 0.9));
  }

  .process-grid,
  .project-grid,
  .client-logo-grid,
  .testimonial-grid,
  .featured-work-card {
    grid-template-columns: 1fr;
  }

  .recent-projects-slider {
    padding: 0.85rem 0.85rem 2.15rem;
  }

  .slider-track {
    min-height: 26rem;
  }

  .featured-work-card img {
    height: 10rem;
  }

  .about-metrics article,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form label.full,
  .quote-form button {
    grid-column: auto;
  }

  .map-label {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-cta {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-slide,
  .slider-dots span {
    animation: none;
  }

  .project-slide {
    opacity: 0;
    transform: none;
  }

  .project-slide:first-child {
    opacity: 1;
  }

  .slider-dots span:first-child {
    width: 1.35rem;
    background: var(--gold);
  }
}

@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;
  }
}
