:root {
  --ink: #171512;
  --muted: #6d655d;
  --gold: #eeba61;
  --gold-soft: #f4d28d;
  --sand: #fbf6ed;
  --mist: #eef1ec;
  --sage: #cfd8cf;
  --dark: #1d1c19;
  --line: rgba(23, 21, 18, 0.12);
  --shadow: 0 25px 70px rgba(28, 24, 16, 0.12);
  --radius: 28px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  background: var(--sand);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1180px, 92vw);
  margin: auto;
}
.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 20;
  transition: 0.35s;
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 246, 237, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(238, 186, 97, 0.28);
  border-radius: 999px;
  padding: 0 20px 0 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  
}
.logo img {
  height: 58px;
  width: auto;
}
.menu {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.menu a {
  position: relative;
}
.menu a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: #ba8330;
  transition: 0.3s;
}
.menu a:hover:after,
.menu a.active:after {
  width: 100%;
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 22px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  border: 1px solid var(--ink);
  transition: 0.3s;
}
.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--gold);
  border-color: var(--gold);
  color: #171512;
}
.btn.light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn.outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.hamb {
  display: none;
  border: 0;
  background: transparent;
  font-size: 26px;
}
.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: 120px 0 54px;
  background: #111;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 1.1s ease;
  transform: scale(1.04);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(17, 15, 12, 0.82),
      rgba(17, 15, 12, 0.4) 48%,
      rgba(17, 15, 12, 0.2)
    ),
    linear-gradient(0deg, rgba(17, 15, 12, 0.84), rgba(17, 15, 12, 0) 55%);
  z-index: 1;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 48px;
  align-items: end;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}
.eyebrow:before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}
.hero h1,
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(46px, 7vw, 64px);
  line-height: 0.93;
  color: #fff;
  margin: 18px 0;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-card {
  background: rgba(251, 246, 237, 0.86);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.hero-card h3 {
  font-family: var(--display);
  font-size: 34px;
  margin: 0 0 8px;
}
.hero-card .ticks {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.tick {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
}
.tick i {
  color: var(--gold);
}
.slider-dots {
  position: absolute;
  z-index: 3;
  right: 5vw;
  bottom: 36px;
  display: flex;
  gap: 10px;
}
.slider-dots button {
  width: 36px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}
.slider-dots button.active {
  background: var(--gold);
}
section {
  position: relative;
  padding: 98px 0;
}
.alt {
  background: var(--mist);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 44px);
  line-height: 1;
  margin: 8px 0 0;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.section-head p {
  max-width: 560px;
  color: var(--muted);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.04);
  transition: 0.45s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(238, 186, 97, 0.42);
}
.service-card .num,
.project-meta,
.small {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
}
.card h3 {
  font-family: var(--display);
  font-size: 31px;
  line-height: 1.08;
  margin: 14px 0 10px;
}
.card p {
  color: var(--muted);
  margin: 0;
}
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.image-frame {
  border-radius: 34px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
  position: relative;
}
.image-frame img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.image-frame:after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.stat {
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}
.stat strong {
  font-family: var(--display);
  font-size: 38px;
  display: block;
}
.project-card {
  padding: 0;
  overflow: hidden;
}
.project-card img {
  height: 310px;
  width: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.project-card:hover img {
  transform: scale(1.06);
}
.project-card .content {
  padding: 24px;
}
.project-slider {
  overflow: hidden;
}
.marquee {
  display: flex;
  gap: 24px;
  animation: slide 32s linear infinite;
  width: max-content;
}
.marquee:hover {
  animation-play-state: paused;
}
@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}
.process {
  counter-reset: step;
}
.process .card {
  position: relative;
}
.process .card:before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  right: 24px;
  top: 18px;
  font-family: var(--display);
  font-size: 48px;
  color: rgba(238, 186, 97, 0.28);
}
.page-hero {
  min-height: 58vh;
  padding: 150px 0 70px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #111;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 18, 15, 0.82),
    rgba(20, 18, 15, 0.28)
  );
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.breadcrumbs {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}
.detail-img {
  height: 460px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.detail-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.faq {
  display: grid;
  gap: 14px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 22px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
}
.contact-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
}
.form {
  display: grid;
  gap: 14px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fbfaf7;
  font: inherit;
}
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 34px;
}
.footer img {
  height: 92px;
}
.footer h4 {
  color: #fff;
  margin: 0 0 16px;
}
.footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.72);
}
.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 42px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.8s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.35);
}
@media (max-width: 991px) {
  .menu,
  .nav-cta {
    display: none;
  }
  .hamb {
    display: block;
  }
  .menu.open {
    display: flex;
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 88px;
    flex-direction: column;
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
  }
  .nav {
    height: 70px;
  }
  .logo img {
    height: 50px;
  }
  .hero {
    min-height: auto;
    padding: 135px 0 44px;
  }
  .hero-grid,
  .split,
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 48px;
  }
  .hero-card {
    display: none;
  }
  .section-head {
    display: block;
  }
  section {
    padding: 70px 0;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .image-frame {
    min-height: 360px;
  }
  .project-card img {
    height: 240px;
  }
  .page-hero {
    min-height: 46vh;
  }
  .footer {
    text-align: center;
  }
  .footer img {
    margin: auto;
  }
  .detail-img {
    height: 320px;
  }
}

/* Premium 2026 hero redesign using 27.png */
.hero-premium {
  min-height: 100svh;
  align-items: end;
  padding: 142px 0 58px;
  background: #06101a;
  isolation: isolate;
  overflow: hidden;
}
.hero-premium .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-premium .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: heroKenBurns 16s ease-in-out infinite alternate;
  filter: saturate(1.04) contrast(1.05);
}
.hero-premium:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
      circle at 74% 42%,
      rgba(238, 186, 97, 0.16),
      transparent 22%
    ),
    linear-gradient(
      90deg,
      rgba(3, 10, 16, 0.9) 0%,
      rgba(3, 10, 16, 0.72) 34%,
      rgba(3, 10, 16, 0.28) 63%,
      rgba(3, 10, 16, 0.12) 100%
    ),
    linear-gradient(
      0deg,
      rgba(3, 10, 16, 0.88) 0%,
      rgba(3, 10, 16, 0.18) 54%,
      rgba(3, 10, 16, 0.52) 100%
    );
}
.hero-premium:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  z-index: 1;
  background: linear-gradient(0deg, rgba(3, 10, 16, 0.9), transparent);
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.15;
  background-image: radial-gradient(
    circle at 25% 25%,
    rgba(255, 255, 255, 0.45) 0 1px,
    transparent 1px
  );
  background-size: 42px 42px;
  mix-blend-mode: overlay;
}
.hero-glow {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  z-index: 3;
  background: var(--gold);
  box-shadow: 0 0 28px 11px rgba(238, 186, 97, 0.55);
  animation: floatLight 6s ease-in-out infinite alternate;
}
.hero-glow-one {
  left: 55%;
  bottom: 8%;
}
.hero-glow-two {
  right: 14%;
  top: 38%;
  animation-delay: 1.5s;
}
.hero-orbit {
  position: absolute;
  right: 8%;
  bottom: 6%;
  z-index: 2;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(238, 186, 97, 0.28);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-24deg);
  opacity: 0.9;
}
.premium-hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  grid-template-rows: 1fr auto;
  gap: 26px 42px;
  align-items: end;
}
.hero-content {
  align-self: end;
  position: relative;
  padding-left: 0;
}
.hero-content:before {
  content: "";
  position: absolute;
  left: -52px;
  top: 6px;
  width: 1px;
  height: 78%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(238, 186, 97, 0.62),
    rgba(255, 255, 255, 0.18),
    transparent
  );
}
.hero-content:after {
  content: "";
  position: absolute;
  left: -57px;
  top: 31%;
  width: 11px;
  height: 11px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(238, 186, 97, 0.08);
}
.hero-premium .eyebrow {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.22em;
  margin-bottom: 15px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.hero-premium h1 {
  font-size: clamp(54px, 6.4vw, 96px);
  line-height: 0.94;
  max-width: 760px;
  margin: 14px 0 24px;
  color: #fff;
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.52);
}
.hero-premium h1 span {
  color: var(--gold);
  text-shadow: 0 12px 45px rgba(238, 186, 97, 0.28);
}
.hero-premium p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.8;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
.hero-premium .hero-actions {
  align-items: center;
  margin-top: 34px;
  gap: 18px;
}
.hero-primary {
  background: linear-gradient(135deg, #eec56f, #b37b28);
  border-color: rgba(238, 186, 97, 0.7);
  color: #fff;
  padding: 15px 26px;
  box-shadow: 0 20px 55px rgba(238, 186, 97, 0.24);
}
.hero-primary:hover {
  background: #fff;
  color: #171512;
  border-color: #fff;
  transform: translateY(-3px);
}
.showreel-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}
.showreel-link span,
.showreel span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(9, 14, 18, 0.34);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}
.showreel {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  margin-right: 12px;
}
.showreel strong {
  display: block;
  font-size: 16px;
}
.showreel small {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  margin-top: 2px;
}
.hero-stats {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-self: end;
  background: linear-gradient(
    135deg,
    rgba(25, 27, 27, 0.62),
    rgba(8, 10, 11, 0.44)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 24px 22px;
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  position: relative;
  overflow: hidden;
  min-width: min(680px, 100%);
}
.hero-stats:before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-stats:after {
  content: "";
  position: absolute;
  left: 45%;
  right: 45%;
  bottom: -4px;
  height: 8px;
  background: var(--gold);
  filter: blur(12px);
}
.hero-stat {
  padding: 0 18px;
  text-align: center;
  color: #fff;
  position: relative;
  min-height: 106px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-stat:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
}
.hero-stat i {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 13px;
  text-shadow: 0 0 22px rgba(238, 186, 97, 0.4);
}
.hero-stat strong {
  font-size: 15px;
  line-height: 1.15;
}
.hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 6px;
  line-height: 1.2;
}
.hero-scroll {
  position: absolute;
  left: 4.2vw;
  bottom: 58px;
  z-index: 4;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 11px;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0.9;
}
.hero-scroll:after {
  content: "";
  width: 1px;
  height: 82px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2),
    var(--gold),
    rgba(255, 255, 255, 0.2)
  );
  box-shadow: 0 0 18px rgba(238, 186, 97, 0.5);
}
.slider-dots {
  display: none;
}
@keyframes heroKenBurns {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.095) translate3d(-1.2%, 0.7%, 0);
  }
}
@keyframes floatLight {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 0.45;
  }
  to {
    transform: translate3d(18px, -28px, 0);
    opacity: 1;
  }
}
@media (max-width: 1180px) {
  .premium-hero-grid {
    grid-template-columns: 1fr;
  }
  .showreel {
    display: none;
  }
  .hero-stats {
    grid-column: 1;
    max-width: 100%;
    min-width: 0;
  }
  .hero-premium h1 {
    font-size: clamp(50px, 9vw, 84px);
  }
}
@media (max-width: 991px) {
  .hero-premium {
    min-height: 100svh;
    padding: 124px 0 42px;
  }
  .hero-premium .hero-bg img {
    object-position: center;
  }
  .hero-premium:before {
    background: linear-gradient(
        90deg,
        rgba(3, 10, 16, 0.92),
        rgba(3, 10, 16, 0.64)
      ),
      linear-gradient(0deg, rgba(3, 10, 16, 0.9), rgba(3, 10, 16, 0.18));
  }
  .premium-hero-grid {
    display: block;
  }
  .hero-content:before,
  .hero-content:after,
  .hero-orbit,
  .hero-scroll,
  .hero-glow {
    display: none;
  }
  .hero-premium h1 {
    font-size: 48px;
  }
  .hero-premium p {
    font-size: 15px;
  }
  .hero-stats {
    margin-top: 34px;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 22px;
    padding: 18px;
  }
  .hero-stat:nth-child(2):after {
    display: none;
  }
  .showreel-link span {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 560px) {
  .hero-premium {
    padding-top: 112px;
  }
  .hero-premium h1 {
    font-size: 39px;
    line-height: 1;
  }
  .hero-premium .eyebrow {
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-stat {
    min-height: 86px;
  }
  .hero-stat:after {
    display: none !important;
  }
  .hero-stat:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

/* Viewport-safe hero refinements: lighter overlay + premium motion */
.hero-premium {
  height: 100svh;
  min-height: 0;
  padding: 118px 0 34px;
  align-items: end;
}
.hero-premium:before {
  background: radial-gradient(
      circle at 70% 42%,
      rgba(238, 186, 97, 0.1),
      transparent 24%
    ),
    linear-gradient(
      90deg,
      rgba(3, 10, 16, 0.68) 0%,
      rgba(3, 10, 16, 0.45) 34%,
      rgba(3, 10, 16, 0.16) 64%,
      rgba(3, 10, 16, 0.04) 100%
    ),
    linear-gradient(
      0deg,
      rgba(3, 10, 16, 0.58) 0%,
      rgba(3, 10, 16, 0.06) 55%,
      rgba(3, 10, 16, 0.28) 100%
    );
}
.hero-premium:after {
  height: 24%;
  background: linear-gradient(0deg, rgba(3, 10, 16, 0.58), transparent);
}
.hero-premium .hero-bg img {
  animation: heroPremiumMove 18s ease-in-out infinite alternate;
  filter: saturate(1.06) contrast(1.03) brightness(1.03);
}
.premium-hero-grid {
  gap: 18px 38px;
  grid-template-rows: minmax(0, 1fr) auto;
}
.hero-premium h1 {
  font-size: clamp(46px, 5.8vw, 82px);
  line-height: 0.92;
  margin: 10px 0 16px;
  animation: heroTextFloat 6s ease-in-out infinite alternate;
}
.hero-premium p {
  font-size: 15.5px;
  line-height: 1.62;
  max-width: 610px;
  margin: 0;
}
.hero-premium .hero-actions {
  margin-top: 22px;
}
.hero-primary {
  padding: 13px 24px;
}
.showreel-link span,
.showreel span {
  width: 48px;
  height: 48px;
}
.hero-stats {
  padding: 18px 18px;
  border-radius: 22px;
  max-width: 640px;
  background: linear-gradient(
    135deg,
    rgba(25, 27, 27, 0.46),
    rgba(8, 10, 11, 0.3)
  );
  backdrop-filter: blur(14px);
  animation: statsFloat 5.5s ease-in-out infinite alternate;
}
.hero-stat {
  min-height: 84px;
  padding: 0 14px;
}
.hero-stat i {
  font-size: 23px;
  margin-bottom: 8px;
}
.hero-stat strong {
  font-size: 14px;
}
.hero-stat span {
  font-size: 12px;
}
.hero-orbit {
  opacity: 0.45;
}
.hero-noise {
  opacity: 0.08;
}
.hero-scroll {
  bottom: 32px;
}
@keyframes heroPremiumMove {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-0.9%, 0.45%, 0);
  }
}
@keyframes heroTextFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-6px);
  }
}
@keyframes statsFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@media (max-height: 720px) and (min-width: 992px) {
  .site-header {
    inset: 12px 0 auto;
  }
  .nav {
    height: 64px;
  }
  .logo img {
    height: 48px;
  }
  .menu {
    gap: 20px;
    font-size: 12px;
  }
  .nav-cta {
    padding: 10px 18px;
  }
  .hero-premium {
    height: 100svh;
    padding: 86px 0 18px;
  }
  .hero-premium .eyebrow {
    font-size: 10px;
    margin-bottom: 6px;
  }
  .eyebrow:before {
    width: 30px;
  }
  .hero-premium h1 {
    font-size: clamp(34px, 4.8vw, 56px);
    line-height: 0.9;
    margin: 6px 0 10px;
    max-width: 560px;
  }
  .hero-premium p {
    font-size: 12.5px;
    line-height: 1.45;
    max-width: 520px;
  }
  .hero-premium .hero-actions {
    margin-top: 14px;
  }
  .hero-primary {
    padding: 9px 18px;
    font-size: 12px;
  }
  .showreel-link {
    font-size: 13px;
  }
  .showreel-link span {
    width: 38px;
    height: 38px;
  }
  .showreel {
    display: none;
  }
  .hero-stats {
    max-width: 560px;
    padding: 10px 12px;
  }
  .hero-stat {
    min-height: 58px;
  }
  .hero-stat i {
    font-size: 17px;
    margin-bottom: 4px;
  }
  .hero-stat strong {
    font-size: 12px;
  }
  .hero-stat span {
    font-size: 10px;
    margin-top: 2px;
  }
  .hero-scroll,
  .hero-orbit {
    display: none;
  }
  .hero-content:before {
    height: 68%;
    left: -34px;
  }
  .hero-content:after {
    left: -39px;
  }
}
@media (max-height: 520px) and (min-width: 992px) {
  .hero-premium {
    padding: 78px 0 12px;
  }
  .hero-premium h1 {
    font-size: 34px;
  }
  .hero-premium p {
    font-size: 11.5px;
    line-height: 1.35;
    max-width: 480px;
  }
  .hero-stats {
    max-width: 520px;
  }
  .hero-stat {
    min-height: 50px;
  }
  .hero-stat i {
    display: none;
  }
}
@media (max-width: 991px) {
  .hero-premium {
    height: auto;
    min-height: 100svh;
    padding: 118px 0 36px;
  }
  .hero-premium:before {
    background: linear-gradient(
        90deg,
        rgba(3, 10, 16, 0.72),
        rgba(3, 10, 16, 0.42)
      ),
      linear-gradient(0deg, rgba(3, 10, 16, 0.62), rgba(3, 10, 16, 0.08));
  }
  .hero-premium h1 {
    font-size: clamp(40px, 10vw, 56px);
  }
  .hero-stats {
    background: linear-gradient(
      135deg,
      rgba(25, 27, 27, 0.48),
      rgba(8, 10, 11, 0.3)
    );
  }
}
@media (max-width: 560px) {
  .hero-premium {
    padding-top: 104px;
  }
  .hero-premium h1 {
    font-size: 36px;
  }
  .hero-premium p {
    font-size: 14px;
    line-height: 1.55;
  }
  .hero-stats {
    margin-top: 24px;
  }
  .hero-stat {
    min-height: 70px;
  }
}

/* Final hero cleanup: no showreel, no arc, no scroll text, no horizontal overflow */
html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
}
* {
  box-sizing: border-box;
}
.hero-premium,
.hero-premium * {
  max-width: 100%;
}
.hero-premium {
  overflow: hidden !important;
}
.hero-orbit,
.hero-scroll,
.showreel {
  display: none !important;
}
.showreel-link {
  display: none !important;
}
.premium-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}
.hero-actions {
  flex-wrap: wrap;
}
.hero-stats {
  min-width: 0 !important;
  width: min(640px, 100%);
  justify-self: end;
}
@media (max-width: 1180px) {
  .hero-stats {
    justify-self: start;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .hero-premium {
    height: auto;
    min-height: 100svh;
  }
  .hero-premium .hero-bg img {
    object-position: center;
  }
}

/* Remove animated yellow floating dots completely */
.hero-glow,
.hero-glow-one,
.hero-glow-two {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  animation: none !important;
}
.hero-premium {
  overflow-x: hidden !important;
}

/* Home page redesign after hero */
.home-about-section {
  padding: 105px 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(238, 186, 97, 0.12), transparent 32%),
    var(--sand);
  overflow: hidden;
}
.home-about-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 62px;
  align-items: center;
}
.home-about-image {
  min-height: 560px;
  border-radius: 44px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 34px 95px rgba(28, 24, 16, 0.18);
  isolation: isolate;
}
.home-about-image:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  z-index: 2;
  pointer-events: none;
}
.home-about-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 14, 12, 0.28), transparent 48%);
  z-index: 1;
}
.home-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: aboutImageDrift 14s ease-in-out infinite alternate;
}
.home-about-content h2,
.why-orbit-copy h2,
.vmg-head h2 {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 12px 0 22px;
  font-weight: 600;
}
.home-about-content p,
.why-orbit-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  margin: 0 0 18px;
}
.about-more-btn {
  margin-top: 14px;
}
.why-orbit-section {
  padding: 110px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(238, 241, 236, 0.96), rgba(251, 246, 237, 0.88)),
    var(--mist);
}
.why-orbit-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.why-orbit-copy {
  max-width: 480px;
}
.why-orbit-copy .btn {
  margin-top: 12px;
  background: linear-gradient(135deg, #eec56f, #b37b28);
  border-color: rgba(238, 186, 97, 0.5);
  color: #fff;
}
.orbit-stage {
  height: 590px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: visible;
}
.orbit-ring {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 1px dashed rgba(179, 123, 40, 0.34);
  box-shadow: inset 0 0 65px rgba(238, 186, 97, 0.08), 0 0 0 38px rgba(255, 255, 255, 0.22);
  animation: orbitPulse 5s ease-in-out infinite alternate;
}
.orbit-core {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(29, 28, 25, 0.92);
  color: #fff;
  border: 1px solid rgba(238, 186, 97, 0.34);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 28px 65px rgba(28, 24, 16, 0.22);
  position: relative;
  z-index: 3;
  animation: coreFloat 4.8s ease-in-out infinite alternate;
}
.orbit-core img {
  height: 62px;
  margin-bottom: -14px;
}
.orbit-core span {
  font-family: var(--display);
  font-size: 28px;
  line-height: 0.94;
}
.orbit-card {
  position: absolute;
  width: 230px;
  min-height: 128px;
  border-radius: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 21, 18, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 55px rgba(28, 24, 16, 0.12);
  z-index: 4;
  animation: orbitCardFloat 5.5s ease-in-out infinite alternate;
}
.orbit-card i {
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 10px;
}
.orbit-card strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 5px;
}
.orbit-card span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}
.orbit-card-1 { transform: rotate(0deg) translateX(260px) rotate(0deg); animation: orbit1 18s linear infinite; }
.orbit-card-2 { transform: rotate(72deg) translateX(260px) rotate(-72deg); animation: orbit2 18s linear infinite; }
.orbit-card-3 { transform: rotate(144deg) translateX(260px) rotate(-144deg); animation: orbit3 18s linear infinite; }
.orbit-card-4 { transform: rotate(216deg) translateX(260px) rotate(-216deg); animation: orbit4 18s linear infinite; }
.orbit-card-5 { transform: rotate(288deg) translateX(260px) rotate(-288deg); animation: orbit5 18s linear infinite; }
.orbit-stage:hover .orbit-card { animation-play-state: paused; }
/* Mission / Vision / Goals - premium animated wave cards */
.vmg-section {
  position: relative;
  padding: 112px 0 118px;
  background:
    radial-gradient(circle at 82% 12%, rgba(207, 216, 207, 0.62), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(238, 186, 97, 0.15), transparent 30%),
    linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
  overflow: hidden;
}
.vmg-section:before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 47%;
  height: 190px;
  background: linear-gradient(90deg, transparent, rgba(238, 186, 97, 0.16), rgba(86, 104, 80, 0.12), transparent);
  border-radius: 50%;
  transform: rotate(-3deg);
  filter: blur(2px);
  pointer-events: none;
}
.vmg-head {
  position: relative;
  z-index: 2;
  margin-bottom: 72px;
}
.vmg-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}
.home-shape-card {
  position: relative;
  min-height: 430px;
  animation: vmgWave 5.8s ease-in-out infinite;
  will-change: transform;
}
.wave-card-one {
  animation-delay: 0s;
}
.wave-card-two {
  animation-delay: -1.9s;
}
.wave-card-three {
  animation-delay: -3.8s;
}
.home-card-body {
  min-height: 430px;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 21, 18, 0.1);
  border-radius: 34px;
  padding: 38px 32px 34px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(28, 24, 16, 0.1);
  backdrop-filter: blur(18px);
}
.home-card-body:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(238, 186, 97, 0.16), transparent 42%),
    radial-gradient(circle at 90% 8%, rgba(86, 104, 80, 0.12), transparent 32%);
  pointer-events: none;
}
.home-card-body:after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.home-card-body i {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: #1d1c19;
  color: var(--gold);
  font-size: 25px;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 16px 35px rgba(28, 24, 16, 0.14);
}
.home-card-body h3 {
  font-family: var(--display);
  font-size: 35px;
  line-height: 1;
  margin: 0 0 18px;
  position: relative;
}
.home-card-body p,
.home-card-body li {
  color: var(--muted);
  line-height: 1.75;
  position: relative;
}
.home-card-body ul {
  margin: 0;
  padding-left: 20px;
}
.featured-home-card .home-card-body {
  background: linear-gradient(145deg, #22201c 0%, #11100e 100%);
  color: #fff;
  border-color: rgba(238, 186, 97, 0.28);
  box-shadow: 0 34px 82px rgba(28, 24, 16, 0.24);
}
.featured-home-card .home-card-body p {
  color: rgba(255, 255, 255, 0.74);
}
.featured-home-card .home-card-body i {
  background: var(--gold);
  color: #1d1c19;
}
@keyframes vmgWave {
  0%, 100% { transform: translateY(0) rotate(-0.6deg); }
  50% { transform: translateY(-28px) rotate(0.6deg); }
}

@keyframes vmgWaveMobile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes aboutImageDrift {
  from { transform: scale(1.08) translate3d(0,0,0); }
  to { transform: scale(1.14) translate3d(-1.4%, 0.8%, 0); }
}
@keyframes orbitPulse {
  from { transform: scale(1); opacity: 0.76; }
  to { transform: scale(1.04); opacity: 1; }
}
@keyframes coreFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-9px); }
}
@keyframes orbit1 { from { transform: rotate(0deg) translateX(260px) rotate(0deg); } to { transform: rotate(360deg) translateX(260px) rotate(-360deg); } }
@keyframes orbit2 { from { transform: rotate(72deg) translateX(260px) rotate(-72deg); } to { transform: rotate(432deg) translateX(260px) rotate(-432deg); } }
@keyframes orbit3 { from { transform: rotate(144deg) translateX(260px) rotate(-144deg); } to { transform: rotate(504deg) translateX(260px) rotate(-504deg); } }
@keyframes orbit4 { from { transform: rotate(216deg) translateX(260px) rotate(-216deg); } to { transform: rotate(576deg) translateX(260px) rotate(-576deg); } }
@keyframes orbit5 { from { transform: rotate(288deg) translateX(260px) rotate(-288deg); } to { transform: rotate(648deg) translateX(260px) rotate(-648deg); } }
@media (max-width: 1100px) {
  .why-orbit-wrap,
  .home-about-wrap,
  .vmg-grid {
    grid-template-columns: 1fr;
  }
  .why-orbit-copy {
    max-width: 760px;
  }
  .orbit-stage {
    height: 620px;
  }
  .home-shape-card {
    min-height: 380px;
  }
  .home-card-body {
    min-height: 380px;
  }
}
@media (max-width: 680px) {
  .home-about-section,
  .why-orbit-section,
  .vmg-section {
    padding: 72px 0;
  }
  .home-about-image {
    min-height: 360px;
    border-radius: 30px;
  }
  .home-about-content h2,
  .why-orbit-copy h2,
  .vmg-head h2 {
    font-size: 40px;
  }
  .orbit-stage {
    height: auto;
    display: grid;
    gap: 16px;
    place-items: stretch;
  }
  .orbit-ring,
  .orbit-core {
    display: none;
  }
  .orbit-card,
  .orbit-card-1,
  .orbit-card-2,
  .orbit-card-3,
  .orbit-card-4,
  .orbit-card-5 {
    position: relative;
    width: 100%;
    min-height: 0;
    transform: none !important;
    animation: none !important;
  }
  .home-shape-card {
    min-height: 360px;
    animation: vmgWaveMobile 5.8s ease-in-out infinite;
  }
  .home-card-body {
    min-height: 360px;
    padding: 32px 24px 28px;
  }
  .home-card-body h3 {
    font-size: 36px;
  }
}

/* Requested home-page refinements */
.home-about-image {
  height: 560px !important;
  min-height: 560px !important;
}
.home-about-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transform-origin: center;
  animation: aboutImagePremiumMove 16s ease-in-out infinite alternate !important;
}
.home-about-image:before {
  animation: aboutFrameFloat 5.5s ease-in-out infinite alternate;
}
@keyframes aboutImagePremiumMove {
  0% { transform: scale(1.04) translate3d(-10px, 0, 0); }
  100% { transform: scale(1.12) translate3d(12px, -8px, 0); }
}
@keyframes aboutFrameFloat {
  0% { transform: translate3d(0, 0, 0); opacity: .72; }
  100% { transform: translate3d(8px, -8px, 0); opacity: .95; }
}

.orbit-core.logo-only {
  width: 170px !important;
  height: 170px !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  display: grid !important;
  place-items: center !important;
  animation: coreFloat 4.8s ease-in-out infinite alternate !important;
}
.orbit-core.logo-only img {
  height: 118px !important;
  width: auto !important;
  margin: 0 !important;
  filter: drop-shadow(0 18px 26px rgba(31, 25, 13, .16));
}
.orbit-core.logo-only span { display: none !important; }

.service-card {
  padding: 0 0 28px !important;
  overflow: hidden;
}
.service-card .service-thumb {
  height: 210px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 22px 22px;
  margin-bottom: 24px;
  background: #ddd;
}
.service-card .service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .75s ease;
}
.service-card:hover .service-thumb img {
  transform: scale(1.08);
}
.service-card .num,
.service-card h3,
.service-card p {
  margin-left: 28px;
  margin-right: 28px;
}
.service-card .num { display: inline-block; }
@media (max-width: 680px) {
  .home-about-image {
    height: 420px !important;
    min-height: 420px !important;
  }
  .service-card .service-thumb { height: 190px; }
  .orbit-core.logo-only { display: none !important; }
}


.footer-grid img{
  width: 5.5rem;
  height: 5rem;
}

/* Premium FAQ before footer */
.faq-premium-section{
  position:relative;
  overflow:hidden;
  padding:64px 0 72px;
  background:linear-gradient(180deg,#ffffff 0%,#fffaf2 100%);
}
.faq-premium-wrap{
  position:relative;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  align-items:stretch;
  gap:28px;
  max-width:1120px;
  margin:0 auto;
}
.faq-visual,
.faq-content{
  min-height:520px;
  border-radius:28px;
  overflow:hidden;
}
.faq-visual{
  position:relative;
  border:1px solid rgba(203,168,102,.24);
  box-shadow:0 22px 58px rgba(38,32,22,.10);
}
.faq-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .85s ease;
}
.faq-visual:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.06),rgba(0,0,0,.26));
  pointer-events:none;
}
.faq-visual:hover img{transform:scale(1.055)}
.faq-content{
  position:relative;
  padding:34px;
  background:#fff;
  border:1px solid rgba(203,168,102,.22);
  box-shadow:0 22px 58px rgba(38,32,22,.08);
  display:flex;
  flex-direction:column;
  justify-content:center;
}



.faq-content h2{
  font-size:clamp(27px,3vw,28px);
  line-height:1.08;
  margin:10px 0 10px;
  color:#201f17;
    font-family: var(--display);
}
.faq-lead{
  max-width:620px;
  margin:0 0 22px;
  color:#6a6254;
  line-height:1.6;
  font-size:14.5px;
}
.faq-accordion{display:grid;gap:11px}
.faq-item{
  border-radius:16px;
  overflow:hidden;
  background:#fffdf8;
  border:1px solid rgba(96,78,47,.14);
  box-shadow:0 9px 25px rgba(39,33,22,.052);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.faq-item:hover{
  transform:translateX(4px);
  box-shadow:0 15px 34px rgba(39,33,22,.085);
  border-color:rgba(203,168,102,.45);
  background:#fff;
}
.faq-item.active{
  border-color:rgba(203,168,102,.58);
  box-shadow:0 16px 38px rgba(39,33,22,.095);
  background:#fff;
}
.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border:0;
  background:transparent;
  padding:16px 18px;
  cursor:pointer;
  text-align:left;
  font:inherit;
  color:#242117;
}
.faq-question span{font-size:15px;font-weight:700;line-height:1.35;letter-spacing:-.01em}
.faq-question i{
  width:29px;height:29px;flex:0 0 29px;
  display:grid;place-items:center;
  border-radius:50%;
  color:#fff;
  background:#31402a;
  font-size:12px;
  transition:transform .32s ease, background .32s ease;
}
.faq-item.active .faq-question i{transform:rotate(45deg);background:#cba866}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .42s cubic-bezier(.22,1,.36,1)}
.faq-answer p{margin:0;padding:0 18px 16px;color:#675f52;line-height:1.58;font-size:14px}
.faq-item.active .faq-answer{max-height:145px}
@media (max-width: 900px){
  .faq-premium-section{padding:50px 0 56px}
  .faq-premium-wrap{grid-template-columns:1fr;gap:18px}
  .faq-visual,.faq-content{min-height:auto;border-radius:23px}
  .faq-visual{height:300px}
  .faq-content{padding:22px;justify-content:flex-start}
  .faq-question{padding:15px}
  .faq-question span{font-size:14.4px}
  .faq-question i{width:28px;height:28px;flex-basis:28px}
  .faq-answer p{padding:0 15px 15px;font-size:13.8px}
}

/* Requested hero alignment refinement: move the left hero copy slightly lower so the CTA ends closer to the stats box baseline. */
@media (min-width: 992px) {
  .hero-premium .hero-content {
    transform: translateY(48px);
  }
}

@media (max-width: 991px) {
  .hero-premium .hero-content {
    transform: none;
  }
}

/* About page requested refinements */
.about-intro-image {
  height: 560px;
  min-height: 560px;
  isolation: isolate;
}
.about-intro-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: aboutPageImageMotion 14s ease-in-out infinite alternate;
}
.about-intro-image:after {
  z-index: 2;
  animation: aboutPageFrameMotion 5.5s ease-in-out infinite alternate;
}
.about-intro-image:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 18, 14, 0.22), transparent 48%);
  z-index: 1;
  pointer-events: none;
}
@keyframes aboutPageImageMotion {
  0% { transform: scale(1.06) translate3d(-10px, 0, 0); }
  100% { transform: scale(1.14) translate3d(14px, -10px, 0); }
}
@keyframes aboutPageFrameMotion {
  0% { transform: translate3d(0, 0, 0); opacity: .72; }
  100% { transform: translate3d(8px, -8px, 0); opacity: .96; }
}
.about-approach-section {
  overflow: hidden;
  padding: 105px 0;
}
.about-approach-wrap {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
}
.about-approach-copy h2 {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 56px);
  line-height: .98;
  letter-spacing: -.03em;
  margin: 12px 0 24px;
  font-weight: 600;
}
.about-approach-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.86;
  margin: 0 0 18px;
}
.about-moving-cards {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
  mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
}
.about-card-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: aboutCardsMove 28s linear infinite;
}
.about-moving-cards:hover .about-card-track {
  animation-play-state: paused;
}
.about-bring-card {
  width: 270px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
  padding: 28px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(23, 21, 18, .1);
  box-shadow: 0 20px 55px rgba(28, 24, 16, .09);
  backdrop-filter: blur(16px);
  transition: .4s ease;
}
.about-bring-card:hover {
  transform: translateY(-8px);
  border-color: rgba(238, 186, 97, .48);
  box-shadow: var(--shadow);
}
.about-bring-card span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .06em;
}
.about-bring-card h3 {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.08;
  margin: 26px 0 0;
  font-weight: 600;
}
@keyframes aboutCardsMove {
  to { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .about-intro-split,
  .about-approach-wrap {
    grid-template-columns: 1fr;
  }
  .about-intro-image {
    height: 390px;
    min-height: 390px;
  }
  .about-moving-cards {
    mask-image: none;
  }
  .about-bring-card {
    width: 245px;
    min-height: 210px;
  }
}
@media (max-width: 560px) {
  .about-intro-section,
  .about-approach-section {
    padding: 72px 0;
  }
  .about-intro-image {
    height: 340px;
    min-height: 340px;
    border-radius: 28px;
  }
  .about-approach-copy h2 {
    font-size: 40px;
  }
}

/* Our Approach final refinement: fixed 2x2 floating cards on the right */
.about-floating-panel {
  position: relative;
  width: 100%;
}
.about-floating-head {
  margin-bottom: 22px;
}
.about-floating-head span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.about-floating-head span:before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}
.about-floating-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.about-floating-grid .about-bring-card {
  width: auto;
  min-height: 212px;
  height: 100%;
  border-radius: 28px;
  border: 1px solid #f1bf61;
  padding: 26px;
  animation: approachFloat 5.8s ease-in-out infinite;
  will-change: transform;
}
.about-floating-grid .about-bring-card h3 {
  font-size: clamp(22px, 2vw, 25px);
  line-height: 1.12;
}
.about-floating-grid .float-two {
  animation-delay: .75s;
}
.about-floating-grid .float-three {
  animation-delay: 1.25s;
}
.about-floating-grid .float-four {
  animation-delay: .35s;
}
@keyframes approachFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -14px, 0) rotate(.35deg); }
}
.about-floating-grid .about-bring-card:hover {
  animation-play-state: paused;
  transform: translateY(-10px) !important;
}
@media (max-width: 900px) {
  .about-floating-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-floating-grid .about-bring-card {
    min-height: 190px;
  }
}
@media (max-width: 620px) {
  .about-floating-grid {
    grid-template-columns: 1fr;
  }
  .about-floating-grid .about-bring-card {
    min-height: 170px;
  }
}



.map-section{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 60px;

}


/* Enhanced service inner detail section */
.service-depth {
  overflow: hidden;
}
.service-depth-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: stretch;
}
.service-depth-intro {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 20px 55px rgba(28,24,16,.06);
  position: relative;
  overflow: hidden;
}
/* .service-depth-intro:after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(238,186,97,.18);
} */
.service-depth-intro h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  margin: 14px 0 16px;
  letter-spacing: -.025em;
}
.service-depth-intro p {
  color: var(--muted);
  margin: 0;
}
.service-mini-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  position: relative;
  z-index: 1;
}
.service-mini-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}
.service-mini-list i {
  color: var(--gold);
}
.service-depth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.service-depth-card {
  background: #fff;
  border: 1px solid rgba(23,21,18,.1);
  border-radius: 26px;
  padding: 24px;
  min-height: 205px;
  box-shadow: 0 18px 45px rgba(28,24,16,.055);
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}
.service-depth-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(28,24,16,.12);
  border-color: rgba(238,186,97,.45);
}
.service-depth-card .count {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
}
.service-depth-card h3 {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.05;
  margin: 18px 0 10px;
}
.service-depth-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .service-depth-wrap { grid-template-columns: 1fr; }
  .service-depth-grid { grid-template-columns: 1fr; }
  .service-depth-card { min-height: auto; }
}

/* Project inner page redesign */
.project-showcase {
  padding: 92px 0 70px;
  background:
    radial-gradient(circle at 80% 8%, rgba(238, 186, 97, 0.13), transparent 34%),
    #fbf5eb;
  overflow: hidden;
}
.project-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 58px;
  align-items: center;
}
.project-copy h2,
.project-story-panel h2 {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.95;
  margin: 18px 0 24px;
  color: var(--ink);
}
.project-lead {
  font-size: 17px;
  line-height: 1.85;
  color: #24211d;
}
.project-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.project-feature-list li {
  position: relative;
  padding: 15px 16px 15px 42px;
  border: 1px solid rgba(30, 27, 24, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 35px rgba(30, 27, 24, 0.05);
  color: #403b34;
  font-weight: 600;
}
.project-feature-list li:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  top: 22px;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(238, 186, 97, 0.16);
}
.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.project-actions .btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(30, 27, 24, 0.15);
}
.project-visual-card {
  position: relative;
  height: 540px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(21, 20, 18, 0.16);
  transform: rotate(1deg);
}
.project-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1s ease;
}
.project-visual-card:hover img {
  transform: scale(1.08);
}
.project-visual-card:after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 26px;
  pointer-events: none;
}
.project-status-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  min-width: 230px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(20, 18, 15, 0.84);
  color: #fff;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
}
.project-status-card strong {
  display: block;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
}
.project-status-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}
.project-info-strip {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.project-info-main,
.project-info-pill {
  background: #fff;
  border: 1px solid rgba(30, 27, 24, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(30, 27, 24, 0.06);
}
.project-info-main {
  padding: 24px;
}
.project-info-main span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}
.project-info-main h3 {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.02;
  margin: 8px 0 0;
}
.project-info-pill {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 135px;
  color: #3f3931;
  font-weight: 700;
}
.project-info-pill span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}
.project-story-section {
  padding: 82px 0 92px;
  background: linear-gradient(180deg, #eef4ef, #f8f5ee);
  overflow: hidden;
}
.project-story-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: stretch;
}
.project-story-panel {
  padding: 42px;
  border-radius: 34px;
  background: #171512;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.project-story-panel:before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(238, 186, 97, 0.18);
  right: -110px;
  top: -90px;
}
.project-story-panel h2 {
  color: #fff;
  font-size: clamp(36px, 4vw, 56px);
  position: relative;
}
.project-story-panel p {
  color: rgba(255,255,255,0.72);
  position: relative;
}
.project-step-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  position: relative;
}
.project-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}
.project-step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #171512;
  font-weight: 900;
}
.project-step p {
  margin: 0;
  color: #fff;
  font-weight: 700;
}
.project-gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}
.project-gallery-card {
  margin: 0;
  position: relative;
  min-height: 245px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 65px rgba(30, 27, 24, 0.12);
  background: #fff;
}
.project-gallery-card:first-child {
  grid-row: span 2;
}
.project-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.project-gallery-card:hover img {
  transform: scale(1.07);
}
.project-gallery-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .project-showcase-grid,
  .project-story-grid,
  .project-info-strip {
    grid-template-columns: 1fr;
  }
  .project-visual-card {
    height: 420px;
    transform: none;
  }
  .project-gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .project-gallery-card:first-child {
    grid-row: auto;
  }
}
@media (max-width: 640px) {
  .project-showcase,
  .project-story-section {
    padding: 58px 0;
  }
  .project-feature-list {
    grid-template-columns: 1fr;
  }
  .project-story-panel {
    padding: 28px;
    border-radius: 26px;
  }
  .project-visual-card {
    height: 330px;
    border-radius: 26px;
  }
  .project-status-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-width: 0;
  }
  .project-info-pill {
    min-height: 105px;
  }
}



.social-medias{
  display: flex;
  gap: 15px;
  font-size: 18px;
  
}

.social-medias .fa-brands:hover{
  color: #eebb61 !important;
}



/* Footer social link click fix */
.social-medias {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 2px;
}
.social-medias a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 !important;
  color: #ffffff !important;
  text-decoration: none;
  pointer-events: auto;
}
.social-medias a i {
  pointer-events: none;
}




/* Final mobile responsiveness refinement */
@media (max-width: 991px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 32px, 720px);
  }

  .hero-premium,
  .page-hero {
    overflow: hidden;
  }

  .hero-content,
  .hero-premium .hero-content {
    max-width: 100%;
  }

  .hero-stats {
    width: 100%;
    max-width: 100%;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding: 14px !important;
  }

  .hero-stat {
    min-height: 92px;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 16px;
    padding: 14px 10px !important;
    text-align: center;
  }

  .hero-stat:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  .hero-stat:after {
    display: none !important;
  }

  .footer,
  .footer-grid,
  .footer-grid > * {
    text-align: center;
  }

  .footer .social-medias {
    justify-content: center !important;
    align-items: center;
    width: 100%;
    margin: 14px auto 0;
  }

  .footer .social-medias a {
    margin: 0 !important;
  }
}

@media (max-width: 640px) {
  section {
    padding: 58px 0;
  }

  .hero-premium {
    min-height: auto !important;
    padding: 110px 0 34px !important;
  }

  .hero-premium h1,
  .hero h1,
  .page-hero h1 {
    font-size: clamp(34px, 10vw, 42px) !important;
    line-height: 1.02 !important;
  }

  .hero-premium p,
  .hero p {
    font-size: 14px !important;
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .hero-actions a {
    width: 100%;
    max-width: 260px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 24px !important;
  }

  .hero-stat {
    min-height: 82px !important;
    padding: 12px 8px !important;
  }

  .hero-stat i {
    font-size: 17px !important;
    margin-bottom: 5px;
  }

  .hero-stat strong {
    font-size: 14px !important;
    line-height: 1.15;
  }

  .hero-stat span {
    font-size: 10px !important;
    line-height: 1.25;
  }

  .project-slider {
    overflow: hidden;
  }

  .project-slider .section-head {
    width: min(100% - 32px, 720px);
    margin-left: auto;
    margin-right: auto;
  }

  .project-slider .marquee {
    gap: 14px !important;
    animation-duration: 46s !important;
  }

  .project-slider .project-card {
    flex: 0 0 min(82vw, 315px);
    width: min(82vw, 315px);
    max-width: 315px;
    border-radius: 20px;
  }

  .project-slider .project-card img {
    height: 158px !important;
  }

  .project-slider .project-card .content {
    padding: 14px 15px 16px !important;
  }

  .project-slider .project-meta {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .project-slider .project-card h3 {
    font-size: 22px;
    margin: 8px 0 6px;
  }

  .project-slider .project-card p {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .footer-grid {
    gap: 24px !important;
  }

  .footer .social-medias {
    justify-content: center !important;
  }

  .copy {
    width: 100%;
    gap: 8px !important;
    font-size: clamp(8px, 2.55vw, 11px) !important;
    line-height: 1.2;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 420px);
  }

  .hero-stats {
    gap: 8px !important;
    padding: 10px !important;
  }

  .hero-stat {
    min-height: 78px !important;
    padding: 10px 6px !important;
  }

  .project-slider .project-card {
    flex-basis: min(86vw, 300px);
    width: min(86vw, 300px);
  }

  .project-slider .project-card img {
    height: 145px !important;
  }
}



.copy{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:15px;
}

.copy-left,
.copy-right{
    font-size:15px;
    line-height:1.5;
}

.copy-right a{
    color:inherit;
    text-decoration:none;
}

.copy-right a:hover{
    color:#d4a64d;
}


@media (max-width:768px){

    .copy{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:10px;
        text-align:center;
        font-size:15px;
    }

    .copy-left,
    .copy-right{
        width:100%;
        font-size:15px;
        text-align:center;
    }

    .copy-right{
        white-space:nowrap;
    }
}

.copy{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}

.copy-right{
    display:flex;
    align-items:center;
    white-space:nowrap;
}

.copy-right a{
    white-space:nowrap;
}

/* === Final copyright alignment fix === */
.copy{
  display:flex !important;
  justify-content:space-between !important;
  align-items:center !important;
  gap:16px !important;
  font-size:15px !important;
  line-height:1.5 !important;
  text-align:left !important;
}

.copy-left,
.copy-right{
  font-size:15px !important;
  line-height:1.5 !important;
  margin:0 !important;
}

.copy-left{
  white-space:nowrap !important;
}

.copy-right{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:4px !important;
  white-space:nowrap !important;
  flex:0 0 auto !important;
  width:auto !important;
  max-width:none !important;
}

.copy-right a{
  display:inline !important;
  white-space:nowrap !important;
  color:inherit;
  text-decoration:none;
}

.copy-right a:hover{
  color:#d4a64d;
}

@media (max-width:768px){
  .copy{
    flex-direction:column !important;
    justify-content:center !important;
    align-items:center !important;
    gap:8px !important;
    text-align:center !important;
    font-size:15px !important;
  }

  .copy-left,
  .copy-right{
    width:auto !important;
    text-align:center !important;
    justify-content:center !important;
    font-size:15px !important;
  }

  .copy-right{
    white-space:nowrap !important;
  }
}



/* === Project image overlay update: index.html + projects.html only === */
.home-project-overlay .project-card,
.projects-status-grid .project-card{
  position:relative;
  overflow:hidden;
  background:#111;
}

.home-project-overlay .project-card .content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:42px 22px 20px;
  color:#fff;
  background:linear-gradient(to top, rgba(8,9,9,.92) 0%, rgba(8,9,9,.62) 58%, rgba(8,9,9,0) 100%);
}

.home-project-overlay .project-card .project-meta,
.home-project-overlay .project-card h3,
.home-project-overlay .project-card p{
  color:#fff;
}

.home-project-overlay .project-card h3{
  margin:7px 0 5px;
}

.home-project-overlay .project-card p{
  margin:0;
  opacity:.88;
}

.projects-status-grid .project-card img{
  display:block;
  width:100%;
  height:340px;
  object-fit:cover;
}

.projects-status-grid .project-card .content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:34px 18px 16px;
  background:linear-gradient(to top, rgba(8,9,9,.9) 0%, rgba(8,9,9,.5) 58%, rgba(8,9,9,0) 100%);
}

.projects-status-grid .project-card .project-meta{
  color:#fff;
  margin:0;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

@media (max-width:768px){
  .home-project-overlay .project-card .content{
    padding:34px 15px 14px !important;
  }

  .projects-status-grid .project-card img{
    height:250px;
  }

  .projects-status-grid .project-card .content{
    padding:30px 15px 14px;
  }
}

/* === Projects page full-image sizing fix === */
.projects-status-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:28px;
}

.projects-status-grid .project-card{
  width:100%;
  aspect-ratio:16 / 9;
}

.projects-status-grid .project-card img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  background:#111;
}

.projects-status-grid .project-card:hover img{
  transform:none;
}

@media (max-width:768px){
  .projects-status-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .projects-status-grid .project-card{
    aspect-ratio:16 / 9;
  }

  .projects-status-grid .project-card img{
    width:100%;
    height:100%;
    object-fit:contain;
  }
}


/* ------------google review-------- */

.google-review-section{
    padding: 80px 60px;
    background: #fff;
}

.google-review-section h2,
.google-review-section [class*="Header__Title"],
.google-review-section [class*="WidgetTitle"],
.google-review-section [class*="header-title"]{
    font-family: "Cormorant Garamond", Georgia, serif !important;
}

.google-review-section .elfsight-app-430d2d07-8cfa-45c2-82a0-441f4c6a0710{
    max-width: 1400px;
    margin: 0 auto;
}


@media (max-width: 991px){
    .google-review-section{
        padding: 60px 30px;
    }
}

@media (max-width: 767px){
    .google-review-section{
        padding: 50px 20px;
    }
}
/* === Dynamic Projects CMS and project subpage === */
.projects-cms-loading,
.projects-cms-state{
  grid-column:1/-1;
  min-height:220px;
  border:1px dashed rgba(145,106,61,.32);
  border-radius:22px;
  background:#fbf7f1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:30px;
  text-align:center;
  color:#6f665c;
}
.projects-cms-loading i,
.projects-cms-state i{font-size:28px;color:#916a3d}
.projects-cms-state h3{font-family:'Cormorant Garamond',serif;font-size:30px;margin:2px 0 0;color:#241f1a}
.projects-cms-state p,.projects-cms-state small{margin:0;max-width:560px;line-height:1.6}
.projects-cms-state.error{background:#fff7f5;border-color:#e6b9b0}
.cms-project-card .content{padding:54px 22px 20px!important}
.cms-project-card .content h3{margin:7px 0 4px;color:#fff;font-size:27px;line-height:1.08}
.cms-project-card .content p{margin:0;color:rgba(255,255,255,.82);font-size:12px}
.cms-project-link{display:inline-flex;align-items:center;gap:8px;margin-top:12px;color:#fff;font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;opacity:0;transform:translateY(5px);transition:.25s ease}
.cms-project-card:hover .cms-project-link{opacity:1;transform:none}

.project-detail-hero{background:#111}
.project-detail-hero img{object-fit:contain;object-position:center;background:#111}
.project-detail-hero .breadcrumbs a{color:inherit;text-decoration:none}
.project-detail-content-section{padding:100px 0;background:#fbf7f1}
.project-detail-shell{min-height:300px}
.project-detail-loading{min-height:300px;display:flex;align-items:center;justify-content:center;gap:12px;color:#7b6a55;font-weight:700}
.project-detail-loading i{color:#916a3d;font-size:24px}
.project-detail-content{display:grid;grid-template-columns:minmax(0,1.3fr) minmax(280px,.7fr);gap:70px;align-items:start}
.project-detail-copy h2{font-family:'Cormorant Garamond',serif;font-size:clamp(42px,5vw,68px);line-height:1.02;margin:12px 0 25px;color:#211d18}
.project-detail-description{font-size:17px;line-height:1.9;color:#5f574f;white-space:pre-line;margin:0 0 34px;max-width:820px}
.project-detail-copy .btn{display:inline-flex;align-items:center;gap:10px}
.project-detail-info{background:#fff;border:1px solid rgba(145,106,61,.18);border-radius:24px;padding:12px 28px;box-shadow:0 20px 55px rgba(52,40,25,.07)}
.project-detail-info div{display:grid;gap:5px;padding:20px 0;border-bottom:1px solid #eee6da}
.project-detail-info div:last-child{border-bottom:0}
.project-detail-info span{font-size:10px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;color:#9a7546}
.project-detail-info strong{font-family:'Cormorant Garamond',serif;font-size:24px;color:#28221c}
.project-gallery-section{padding:100px 0;background:#fff}
.project-detail-gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:26px}
.project-detail-gallery.single-image{grid-template-columns:minmax(0,900px);justify-content:center}
.project-gallery-item{position:relative;width:100%;aspect-ratio:16/10;border:0;padding:0;border-radius:22px;overflow:hidden;background:#111;cursor:zoom-in;box-shadow:0 18px 45px rgba(30,24,18,.08)}
.project-gallery-item img{display:block;width:100%;height:100%;object-fit:contain;object-position:center;transition:.5s ease}
.project-gallery-item span{position:absolute;right:16px;bottom:16px;width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:rgba(20,18,15,.76);color:#fff;opacity:0;transform:translateY(6px);transition:.25s ease}
.project-gallery-item:hover img{transform:scale(1.015)}
.project-gallery-item:hover span{opacity:1;transform:none}
.project-detail-error-section{padding:110px 0;background:#fbf7f1}
.project-detail-error{min-height:360px;border:1px dashed rgba(145,106,61,.32);border-radius:26px;background:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:35px}
.project-detail-error i{font-size:34px;color:#916a3d}.project-detail-error h2{font-family:'Cormorant Garamond',serif;font-size:46px;margin:15px 0 8px}.project-detail-error p{max-width:620px;color:#6c6359;margin:0 0 24px;line-height:1.7}
.project-lightbox{position:fixed;inset:0;z-index:10050;background:rgba(8,8,8,.94);display:flex;align-items:center;justify-content:center;padding:32px;opacity:0;visibility:hidden;pointer-events:none;transition:.25s ease}
.project-lightbox.active{opacity:1;visibility:visible;pointer-events:auto}
.project-lightbox img{max-width:min(94vw,1500px);max-height:88vh;object-fit:contain}
.project-lightbox-close{position:absolute;right:24px;top:24px;width:46px;height:46px;border-radius:50%;border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.1);color:#fff;font-size:20px;cursor:pointer}
@media(max-width:900px){.project-detail-content{grid-template-columns:1fr;gap:36px}.project-detail-content-section,.project-gallery-section{padding:72px 0}.project-detail-gallery{grid-template-columns:1fr}.cms-project-link{opacity:1;transform:none}}
@media(max-width:600px){.cms-project-card .content{padding:42px 16px 15px!important}.cms-project-card .content h3{font-size:23px}.project-detail-copy h2{font-size:39px}.project-detail-description{font-size:15px;line-height:1.8}.project-detail-info{padding:8px 20px}.project-detail-info strong{font-size:21px}.project-gallery-item{border-radius:16px}.project-lightbox{padding:18px}.project-lightbox-close{right:14px;top:14px}}


/* Existing projects remain display-only; future dashboard projects have detail links. */
.cms-project-card-static,
.static-project-card{
  cursor:default;
}
.cms-project-card-static:hover img,
.static-project-card:hover img{
  transform:none !important;
}
.cms-project-card-linked{
  cursor:pointer;
}


/* === Projects listing: main image + small status overlay only === */
.projects-status-grid .project-card{
  position:relative;
  padding:0;
  overflow:hidden;
  background:#111;
  border-radius:22px;
}
.projects-status-grid .project-card img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  background:#111;
}
.projects-status-grid .project-card .content{display:none!important;}
.project-card-link{display:block;color:inherit;text-decoration:none;border-radius:22px;}
.project-status-badge{
  position:absolute;
  top:14px;
  right:14px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:8px 11px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  background:rgba(12,12,11,.76);
  color:#fff;
  font-size:10px;
  font-weight:800;
  letter-spacing:.11em;
  line-height:1;
  text-transform:uppercase;
  box-shadow:0 8px 24px rgba(0,0,0,.22);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.project-status-badge::before{content:"";width:7px;height:7px;border-radius:50%;background:#e3ad4d;box-shadow:0 0 0 3px rgba(227,173,77,.16);}
.project-status-badge.status-completed::before{background:#70c58c;box-shadow:0 0 0 3px rgba(112,197,140,.16);}
.project-status-badge.status-upcoming::before{background:#8faef2;box-shadow:0 0 0 3px rgba(143,174,242,.16);}
@media(max-width:768px){.project-status-badge{top:10px;right:10px;padding:7px 9px;font-size:9px;}}

/* Backend-rendered careers container */
.career-openings-area{margin-top:34px}
.career-openings-area:has(.career-openings-list:empty){display:none}
.career-openings-area>.eyebrow{display:inline-block;margin-bottom:16px}
.career-openings-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.career-openings-list:empty{display:none}
.career-opening-card{padding:22px;border:1px solid #eadfce;border-radius:20px;background:#fffdf9;box-shadow:0 14px 34px rgba(28,23,17,.06)}
.career-opening-card h3{margin:0 0 8px;font-family:var(--display);font-size:28px;line-height:1.1}
.career-opening-card p{margin:0;color:#756b5f}
@media(max-width:700px){.career-openings-list{grid-template-columns:1fr}}


/* === Careers page balanced two-column redesign === */
.careers-main-section{
  padding:92px 0 100px;
  background:linear-gradient(180deg,#fbf8f2 0%,#fff 100%);
}
.career-page-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);
  gap:28px;
  align-items:stretch;
}
.career-intro-panel,
.career-apply-panel{
  min-height:560px;
  border:1px solid #eadfce;
  border-radius:30px;
  box-shadow:0 22px 60px rgba(42,31,19,.07);
}
.career-intro-panel{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:48px;
  background:#fff;
  position:relative;
  overflow:hidden;
}
.career-intro-panel::after{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  right:-100px;
  bottom:-110px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(203,162,105,.17),rgba(203,162,105,0) 70%);
  pointer-events:none;
}
.career-intro-panel h2{
  max-width:700px;
  margin:14px 0 20px;
  font-family:var(--display);
  font-size:clamp(44px,5vw,47px);
  line-height:.98;
  color:#211d18;
}
.career-intro-text{
  max-width:760px;
  margin:0;
  color:#6f665c;
  font-size:16px;
  line-height:1.85;
}
.career-info-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:34px;
}
.career-info-card{
  display:flex;
  align-items:flex-start;
  gap:14px;
  min-height:145px;
  padding:22px;
  border:1px solid #eee3d3;
  border-radius:20px;
  background:#fffaf3;
}
.career-info-icon{
  flex:0 0 42px;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:13px;
  color:#fff;
  background:linear-gradient(135deg,#cba269,#916a3d);
  box-shadow:0 9px 20px rgba(145,106,61,.22);
}
.career-info-card h3{
  margin:1px 0 7px;
  font-family:var(--display);
  font-size:27px;
  line-height:1.05;
}
.career-info-card p{
  margin:0;
  color:#756b5f;
  font-size:14px;
  line-height:1.65;
}
.career-apply-panel{
  margin:0;
  padding:42px;
  display:flex;
  flex-direction:column;
  background:#fff;
}
.career-form-heading{
  margin-bottom:24px;
}
.career-form-heading h3{
  margin:9px 0 9px;
  font-family:var(--display);
  font-size:42px;
  line-height:1;
  color:#211d18;
}
.career-form-heading p{
  margin:0;
  color:#756b5f;
  font-size:14px;
  line-height:1.65;
}
.alert{
  padding:14px 18px;
  border-radius:18px;
  font-size:0.95rem;
  margin-bottom:18px;
}
.career-alert{
  border:1px solid transparent;
}
.career-alert.success{
  color:#1f4f2a;
  background:#e8f5ea;
  border-color:#b7e1bc;
}
.career-alert.error{
  color:#6d1c1b;
  background:#fee9e6;
  border-color:#f2c0bf;
}
.career-apply-form{
  flex:1;
  grid-template-rows:auto auto auto minmax(150px,1fr) auto;
}
.career-apply-form input,
.career-apply-form textarea{
  border-color:#eadfce;
  background:#fbf8f2;
}
.career-apply-form textarea{
  min-height:150px;
  resize:vertical;
}
.career-apply-form .btn{
  width:100%;
  justify-content:center;
  margin-top:2px;
}
.career-openings-area{
  margin-top:30px;
  padding:38px;
  border:1px solid #eadfce;
  border-radius:30px;
  background:#fff;
  box-shadow:0 20px 55px rgba(42,31,19,.06);
}
.career-openings-heading{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:24px;
}
.career-openings-heading h2{
  margin:8px 0 0;
  font-family:var(--display);
  font-size:42px;
  line-height:1;
  color:#211d18;
}
.career-openings-heading>p{
  max-width:420px;
  margin:0;
  color:#756b5f;
  line-height:1.7;
}
.career-openings-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.career-opening-card{
  padding:26px;
  border:1px solid #eadfce;
  border-radius:22px;
  background:#fffdf9;
  box-shadow:none;
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
.career-opening-card:hover{
  transform:translateY(-4px);
  border-color:rgba(145,106,61,.35);
  box-shadow:0 16px 38px rgba(42,31,19,.08);
}
.career-opening-top,
.career-opening-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.career-opening-status{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:7px 10px;
  border-radius:999px;
  background:#edf8ef;
  color:#347a48;
  font-size:10px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.career-opening-status::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:#51a969;
}
.career-opening-location,
.career-opening-footer>span{
  color:#8a7e70;
  font-size:12px;
  font-weight:600;
}
.career-opening-card h3{
  margin:22px 0 10px;
  font-family:var(--display);
  font-size:34px;
  line-height:1.05;
  color:#211d18;
}
.career-opening-card>p{
  margin:0;
  color:#756b5f;
  line-height:1.75;
}
.career-opening-footer{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid #eee5d9;
}
.career-opening-footer a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#916a3d;
  font-size:12px;
  font-weight:800;
  text-decoration:none;
}
@media(max-width:980px){
  .career-page-grid{grid-template-columns:1fr;}
  .career-intro-panel,.career-apply-panel{min-height:auto;}
  .career-intro-panel{justify-content:flex-start;}
  .career-apply-form{grid-template-rows:none;}
  .career-openings-heading{align-items:flex-start;}
}
@media(max-width:700px){
  .careers-main-section{padding:64px 0 72px;}
  .career-intro-panel,.career-apply-panel,.career-openings-area{padding:26px;border-radius:22px;}
  .career-info-grid,.career-openings-list{grid-template-columns:1fr;}
  .career-info-card{min-height:auto;}
  .career-openings-heading{display:block;}
  .career-openings-heading>p{margin-top:14px;}
  .career-opening-top,.career-opening-footer{align-items:flex-start;flex-direction:column;}
  .career-intro-panel h2{font-size:43px;}
  .career-form-heading h3,.career-openings-heading h2{font-size:36px;}
}
