:root {
  --gold: #D39A30;
  --gold-light: #E4B254;
  --gold-pale: rgba(211,154,48,0.08);

  --black: #0A0A0A;
  --dark: #121212;
  --dark-card: #181818;
  --dark-elevated: #1F1F1F;

  --warm-white: #F7F4EF;
  --cream: #EDE8E0;
  --cream-dark: #E0D9CF;
  --white: #FFFFFF;

  --text: #332E28;
  --text-muted: #7D7670;
  --text-light: rgba(255,255,255,0.5);

  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

nav.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.35);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.logo img {
  max-width: 250px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(211,154,48,0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(211,154,48,0.06);
}

.logo-mark svg {
  width: 20px;
  height: 20px;
}

.logo-wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 2px;
  line-height: 1;
}

.logo-wordmark small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color .3s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  color: var(--gold) !important;
  border: 1.5px solid rgba(211,154,48,0.35);
  padding: 10px 26px;
  border-radius: 50px;
  transition: all .3s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
  border-color: var(--gold) !important;
}

/* ── Dropdown ── */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 12px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 100;
  display: block;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  transition: all 0.2s;
}

.dropdown-menu li a:hover {
  color: #fff;
  background: rgba(211, 154, 48, 0.1);
}

/* Arrow indicator on parent link */
.dropdown > a::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 2px;
  transition: transform 0.3s;
}

.dropdown:hover > a::after {
  transform: rotate(-135deg);
}

/* Gold accent line on top of dropdown */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* Invisible bridge so dropdown doesn't close between trigger and menu */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

/* ── Mobile dropdown ── */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(211, 154, 48, 0.25);
    border-radius: 0;
    padding: 4px 0 4px 8px;
    margin-top: 8px;
    min-width: 0;
    display: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding: 8px 16px;
    font-size: 0.78rem;
    border-radius: 8px;
  }

  .dropdown > a::after {
    transition: transform 0.3s;
  }

  .dropdown.open > a::after {
    transform: rotate(-135deg);
  }
}

.mob-tog {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mob-tog span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  margin: 5px 0;
  border-radius: 1px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 78px;
  background: var(--black);
  overflow: hidden;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp .9s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem,7vw,4.5rem);
  color: #fff;
  line-height: .92;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: fadeUp .9s ease .1s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
  display: inline;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 440px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 44px;
  animation: fadeUp .9s ease .2s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .9s ease .3s both;
}

.hero-img {
  position: relative;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, rgba(10,10,10,0.3) 30%, transparent 100%);
}

.hero-img-grain {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
  z-index: 1;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  animation: fadeUp .9s ease .45s both;
}

.hero-stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: 1px;
}

.hero-stat span {
  font-size: .72rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

/* ── Ticker Tape ── */
.ticker {
  background: #d39a30;
  border-top: 1px solid rgba(211, 154, 48, 0.15);
  border-bottom: 1px solid rgba(211, 154, 48, 0.15);
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

/* Fade edges */
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--dark), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 40s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.ticker-content span {
  /*font-family: 'Bebas Neue', sans-serif;*/
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  color: rgb(0 0 0);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 12px;
  transition: color 0.3s;
}

.ticker-content span:not(.ticker-dot):hover {
  color: var(--white);
  /*cursor: default;*/
  text-decoration: none;
}

.ticker-content a:hover {
	text-decoration: none;
}

.ticker-dot {
  width: 5px !important;
  height: 5px;
  min-width: 5px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  padding: 0 !important;
  opacity: 0.4;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── BTNS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .82rem;
  text-decoration: none;
  transition: all .35s;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(211,154,48,.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: 0 0;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .82rem;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.15);
  transition: all .35s;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.04);
  color: inherit;
  text-decoration: none;
}

/* ── SECTIONS ── */
section {
  padding: 120px 48px;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

.heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem,4.5vw,3.8rem);
  line-height: .95;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.subdesc {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.75;
  font-weight: 400;
}

.dark {
  background: var(--dark);
  color: #fff;
}

.dark .heading {
  color: #fff;
}

.dark .subdesc {
  color: var(--text-light);
}

/* ── SERVICES (image-heavy cards) ── */
.services {
  background: var(--warm-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 56px;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.04);
  transition: all .45s;
  cursor: pointer;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,.08);
}

.svc-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}

.svc-card:hover .svc-img img {
  transform: scale(1.07);
}

.svc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent 55%);
}

.svc-img .svc-img-label {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 1px;
}

.svc-body {
  padding: 28px 28px 32px;
}

.svc-body p {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: gap .3s;
}

.svc-link:hover {
  gap: 12px;
}

/* ── IMAGE BANNER ── */
.img-banner {
  padding: 0;
  position: relative;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
}

.img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.2), rgba(10,10,10,.7));
  display: flex;
  align-items: flex-end;
  padding: 60px 64px;
}

.img-banner-text {
  color: #fff;
  max-width: 600px;
}

.img-banner-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem,4vw,3.2rem);
  letter-spacing: 1.5px;
  line-height: .95;
  margin-bottom: 12px;
}

.img-banner-text p {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

/* ── WHY US — dark ── */
.why-section {
  overflow: hidden;
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,154,48,.05), transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  margin-top: 56px;
}

.why-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 36px 26px;
  border: 1px solid rgba(255,255,255,.04);
  transition: all .35s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .35s;
}

.why-card:hover {
  background: var(--dark-elevated);
  border-color: rgba(211,154,48,.1);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: rgba(211,154,48,.07);
  border: 1px solid rgba(211,154,48,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.why-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.why-card p {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── GALLERY ── */
.gallery-section {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 280px;
  gap: 14px;
  margin-top: 56px;
}

.g-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.g-item.tall {
  grid-row: span 2;
}

.g-item.wide {
  grid-column: span 2;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}

.g-item:hover img {
  transform: scale(1.06);
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  opacity: 0;
  transition: opacity .4s;
}

.g-item:hover .g-overlay {
  opacity: 1;
}

.g-tag {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.g-overlay h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 1px;
}

.g-overlay p {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ── PROCESS / IMAGE + TEXT SPLIT ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  grid-template-areas: "image content";
}

.split-section .split-img {
    grid-area: image;
}

.split-section .split-content {
    grid-area: content;
}

.split-section.split-right {
    grid-template-areas: "content image";
}

@media (max-width: 991px) {
    .split-section,
    .split-section.split-right {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "content";
    }
}
.split-img {
  overflow: hidden;
  position: relative;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}

.split-content.dark-bg {
  background: var(--dark);
  color: var(--text-light);
  /*color: #fff;*/
}

.split-content.dark-bg .subdesc {
  color: var(--text-light);
}

.process-steps {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.p-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.p-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: rgba(211,154,48,.2);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.p-step h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
  color: inherit;
}

.p-step p {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── FEATURED — dark ── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 56px;
}

.feat-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 38px 30px;
  border: 1px solid rgba(255,255,255,.04);
  transition: all .35s;
  position: relative;
  overflow: hidden;
}

.feat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity .35s;
}

.feat-card:hover {
  background: var(--dark-elevated);
  border-color: rgba(211,154,48,.08);
}

.feat-card:hover::after {
  opacity: 1;
}

.feat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: rgba(211,154,48,.1);
  line-height: 1;
  margin-bottom: 18px;
}

.feat-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.feat-card p {
  font-size: .84rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--warm-white);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-top: 56px;
}

.t-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px;
  border: 1px solid rgba(0,0,0,.04);
  transition: all .35s;
  position: relative;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
}

.t-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  color: rgba(211,154,48,.1);
  line-height: 1;
  height: 36px;
  margin-bottom: 10px;
}

.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.t-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.t-card blockquote {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
}

.t-info strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
}

.t-info span {
  font-size: .75rem;
  color: var(--text-muted);
}

/* ── CTA — dark ── */
.cta-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,154,48,.04), transparent 60%);
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-inner .heading {
  color: #fff;
}

.cta-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: .88rem;
  margin-top: 10px;
}

.cta-detail svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.cta-details-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 28px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
}

.contact-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.contact-form .form-sub {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text);
  letter-spacing: .8px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: .88rem;
  transition: all .25s;
  background: var(--warm-white);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(211,154,48,.08);
}

.form-group textarea {
  resize: vertical;
  /*min-height: 90px;*/
  height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .35s;
  margin-top: 8px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(211,154,48,.25);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: var(--text-light);
  padding: 80px 48px 36px;
  border-top: 1px solid rgba(255,255,255,.04);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand p {
  font-size: .82rem;
  line-height: 1.75;
  margin-top: 16px;
  color: var(--text-light);
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul a {
  color: var(--text-light);
  text-decoration: none;
  font-size: .82rem;
  transition: color .25s;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .82rem;
}

.footer-contact svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: .75rem;
  color: rgba(255,255,255,.25);
}

.footer-bottom img {
  max-height: 30px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  color: var(--text-light);
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(211,154,48,.06);
}

.footer-socials svg {
  width: 14px;
  height: 14px;
}

/* ── ANIM ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}

.lb-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all .3s;
}

.lb-close:hover {
  background: rgba(255,255,255,.15);
}

.lb-close svg {
  width: 20px;
  height: 20px;
}

.lb-cap {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-img {
    height: 50vh;
    order: -1;
  }

  .hero-text {
    padding: 60px 40px;
  }

  .services-grid,
  .featured-grid,
  .test-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
    grid-auto-rows: 240px;
  }

  .g-item.tall {
    grid-row: span 1;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-img {
    height: 50vh;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: repeat(2,1fr);
  }


}

@media (max-width: 768px) {
  section {
    padding: 80px 24px;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .mob-tog {
    display: block;
  }

  .hero-text {
    padding: 48px 24px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .services-grid,
  .featured-grid,
  .test-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .g-item.wide {
    grid-column: span 1;
  }

  .split-content {
    padding: 48px 24px;
  }

  .img-banner {
    height: 40vh;
    min-height: 260px;
  }

  .img-banner-overlay {
    padding: 36px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

    .nav-links {
    display: none;
  }

  .mob-tog {
    display: block;
  }

  /* Mobile menu open state */
  .nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  /* Hamburger → X animation */
  .mob-tog.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mob-tog.active span:nth-child(2) {
    opacity: 0;
  }
  .mob-tog.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}