:root {
  --bg: #08080d;
  --bg-2: #0f111a;
  --text: #f5f2ea;
  --muted: rgba(245, 242, 234, 0.65);
  --gold: #d7b56d;
  --rose: #ff5b99;
  --teal: #37d7c6;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --radius: 20px;
}

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

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(215, 181, 109, 0.25), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(255, 91, 153, 0.2), transparent 60%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.5px;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(215, 181, 109, 0.45);
  top: -120px;
  left: -80px;
  animation: float 18s ease-in-out infinite;
}

.orb-2 {
  width: 520px;
  height: 520px;
  background: rgba(255, 91, 153, 0.35);
  right: -200px;
  top: 200px;
  animation: float 22s ease-in-out infinite reverse;
}

.orb-3 {
  width: 380px;
  height: 380px;
  background: rgba(55, 215, 198, 0.3);
  left: 60%;
  bottom: -180px;
  animation: float 20s ease-in-out infinite;
}

.gridlines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.15;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px 6vw;
  background: rgba(8, 8, 13, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav::after {
  content: "";
  grid-column: 3;
}

.brand {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 72px;
  height: 72px;
  border-radius: 0;
  border: 0;
  display: grid;
  place-items: center;
  background: transparent;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
}

.wordmark span {
  font-weight: 600;
  font-size: 18px;
}

.wordmark small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.links {
  grid-column: 2;
  justify-self: center;
  display: flex;
  gap: 64px;
}

.links a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: color 220ms ease, text-shadow 220ms ease;
}

.nav-link-effect {
  position: relative;
  overflow: hidden;
}

.links a::before {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -8px;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 181, 109, 0.95), transparent);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 320ms ease, opacity 320ms ease;
}

.nav-link-effect::before {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -8px;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 181, 109, 0.95), transparent);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 320ms ease, opacity 320ms ease;
}

.links a::after {
  content: "";
  position: absolute;
  left: -20%;
  top: -2px;
  width: 40%;
  height: calc(100% + 4px);
  background: linear-gradient(90deg, transparent, rgba(215, 181, 109, 0.2), transparent);
  transform: translateX(-160%) skewX(-20deg);
  opacity: 0;
}

.nav-link-effect::after {
  content: "";
  position: absolute;
  left: -20%;
  top: -2px;
  width: 40%;
  height: calc(100% + 4px);
  background: linear-gradient(90deg, transparent, rgba(215, 181, 109, 0.2), transparent);
  transform: translateX(-160%) skewX(-20deg);
  opacity: 0;
}

.links a:hover {
  color: var(--gold);
  text-shadow: 0 0 14px rgba(215, 181, 109, 0.35);
}

.nav-link-effect:hover {
  color: var(--gold);
  text-shadow: 0 0 14px rgba(215, 181, 109, 0.35);
}

.links a:hover::before,
.links a:focus-visible::before {
  transform: scaleX(1);
  opacity: 1;
}

.nav-link-effect:hover::before,
.nav-link-effect:focus-visible::before {
  transform: scaleX(1);
  opacity: 1;
}

.links a:hover::after,
.links a:focus-visible::after {
  opacity: 1;
  animation: nav-sweep 850ms ease;
}

.nav-link-effect:hover::after,
.nav-link-effect:focus-visible::after {
  opacity: 1;
  animation: nav-sweep 850ms ease;
}

@keyframes nav-sweep {
  0% {
    transform: translateX(-160%) skewX(-20deg);
  }
  100% {
    transform: translateX(360%) skewX(-20deg);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.btn.primary {
  background: linear-gradient(120deg, rgba(215, 181, 109, 0.95), rgba(255, 91, 153, 0.85));
  color: #0b0b12;
  box-shadow: 0 10px 30px rgba(215, 181, 109, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  position: relative;
  height: 88vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 0 6vw;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
  filter: saturate(1.1) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 8, 13, 0.85), rgba(8, 8, 13, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  display: grid;
  gap: 22px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
}

.hero h1 span {
  color: var(--gold);
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-metrics strong {
  font-size: 20px;
  display: block;
}

.hero-metrics span {
  font-size: 12px;
  color: var(--muted);
}

.section {
  position: relative;
  padding: 90px 6vw;
  z-index: 1;
}

.section-head {
  max-width: 700px;
  margin-bottom: 40px;
}

.section h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 12px 0;
}

.muted {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.card .tag {
  font-size: 12px;
  color: var(--gold);
}

.split {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}

.split-media {
  display: grid;
  place-items: center;
}

.feature-list {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.media-stack {
  display: grid;
  gap: 18px;
}

.capabilities-gallery {
  position: relative;
  width: min(100%, 560px);
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  background: rgba(9, 12, 18, 0.7);
}

.capabilities-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 420ms ease, transform 900ms ease;
}

.capabilities-gallery img.active {
  opacity: 1;
  transform: scale(1);
}

.capabilities-dots {
  width: min(100%, 560px);
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
}

.capabilities-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.capabilities-dot.active {
  transform: scale(1.2);
  background: var(--gold);
  border-color: rgba(215, 181, 109, 0.9);
}

.media-stack img,
.split-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step span {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 22px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.gallery img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transition: transform 200ms ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}

.stats strong {
  display: block;
  font-size: 24px;
}

.services-ring-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 460px;
  justify-self: center;
  align-self: center;
}

.services-ring-wrap::before,
.services-ring-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.services-ring-wrap::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(215, 181, 109, 0.18), rgba(215, 181, 109, 0) 70%);
  filter: blur(18px);
}

.services-ring-wrap::after {
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: ringPulseCenter 4.2s ease-in-out infinite;
}

.services-ring {
  --size: 460px;
  --radius: 214px;
  position: relative;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
  background:
    radial-gradient(circle at 32% 28%, rgba(215, 181, 109, 0.16), transparent 44%),
    radial-gradient(circle at 72% 72%, rgba(55, 215, 198, 0.12), transparent 46%),
    rgba(12, 15, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 60px rgba(215, 181, 109, 0.06);
}

.services-ring::before,
.services-ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.services-ring::before {
  width: calc(var(--size) - 44px);
  height: calc(var(--size) - 44px);
  border: 1px dashed rgba(215, 181, 109, 0.35);
}

.services-ring::after {
  width: calc(var(--size) - 116px);
  height: calc(var(--size) - 116px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-ring-core {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 6px;
  background: radial-gradient(circle, rgba(20, 24, 34, 0.96), rgba(10, 12, 18, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.45),
    inset 0 0 20px rgba(215, 181, 109, 0.14);
}

.services-ring-core img {
  width: 74%;
  height: 74%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  animation: logoAura 4.6s ease-in-out infinite;
}

.services-ring-items {
  position: absolute;
  inset: 0;
  animation: ringRotate 32s linear infinite;
}

.services-ring-item {
  --step: calc(360deg / 8);
  --angle: calc(var(--step) * var(--i));
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  min-height: 30px;
  padding: 0;
  font-size: 13pt;
  letter-spacing: 0.25px;
  line-height: 1.15;
  text-align: center;
  text-wrap: balance;
  color: #f8f3e5;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(calc(-1 * var(--radius)))
    rotate(calc(-1 * var(--angle)));
  display: grid;
  place-items: center;
}

.services-ring-item-label {
  display: block;
  text-shadow:
    0 0 8px rgba(215, 181, 109, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.45);
  animation: itemUpright 32s linear infinite reverse;
}

.services-ring-item-label-inner {
  position: relative;
  display: inline-block;
  transition: color 180ms ease, transform 180ms ease, filter 180ms ease;
}

.services-ring-item-label-inner::before,
.services-ring-item-label-inner::after {
  content: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

.services-ring-item-label-inner::before {
  background: rgba(255, 246, 220, 0.95);
  box-shadow:
    0 -10px 0 rgba(255, 232, 176, 0.92),
    8px -8px 0 rgba(255, 216, 140, 0.9),
    11px 0 0 rgba(255, 248, 228, 0.95),
    8px 8px 0 rgba(255, 224, 156, 0.92),
    0 12px 0 rgba(255, 236, 190, 0.94),
    -8px 8px 0 rgba(255, 214, 132, 0.9),
    -11px 0 0 rgba(255, 244, 210, 0.95),
    -8px -8px 0 rgba(255, 206, 118, 0.9),
    0 -18px 0 rgba(255, 241, 201, 0.9),
    15px -15px 0 rgba(255, 220, 145, 0.86),
    20px 0 0 rgba(255, 246, 220, 0.9),
    15px 15px 0 rgba(255, 228, 165, 0.88),
    0 21px 0 rgba(255, 236, 190, 0.9),
    -15px 15px 0 rgba(255, 214, 132, 0.86),
    -20px 0 0 rgba(255, 246, 220, 0.9),
    -15px -15px 0 rgba(255, 206, 118, 0.86);
  transform: translate(-50%, -50%) scale(0.12);
}

.services-ring-item-label-inner::after {
  width: 2px;
  height: 2px;
  background: rgba(255, 229, 166, 0.85);
  box-shadow:
    0 -7px 0 rgba(255, 237, 194, 0.88),
    6px -6px 0 rgba(255, 221, 148, 0.82),
    9px 0 0 rgba(255, 246, 220, 0.9),
    6px 6px 0 rgba(255, 214, 132, 0.8),
    0 9px 0 rgba(255, 235, 188, 0.86),
    -6px 6px 0 rgba(255, 208, 120, 0.8),
    -9px 0 0 rgba(255, 246, 220, 0.9),
    -6px -6px 0 rgba(255, 202, 112, 0.8);
  transform: translate(-50%, -50%) scale(0.2);
}

.services-ring-item:hover .services-ring-item-label,
.services-ring-item:focus-visible .services-ring-item-label {
  text-shadow:
    0 0 22px rgba(215, 181, 109, 0.85),
    0 8px 22px rgba(0, 0, 0, 0.65);
}

.services-ring-item:hover .services-ring-item-label-inner,
.services-ring-item:focus-visible .services-ring-item-label-inner {
  color: var(--gold);
  transform: scale(1.16);
  filter: brightness(1.16);
}


.services-ring-orbit {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(215, 181, 109, 0.22);
  box-shadow: inset 0 0 30px rgba(215, 181, 109, 0.08);
  animation: ringPulse 3.4s ease-in-out infinite;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes itemUpright {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ringPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}

@keyframes ringPulseCenter {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.02);
    opacity: 1;
  }
}

@keyframes logoAura {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 0 rgba(215, 181, 109, 0));
  }
  50% {
    transform: translateY(-2px) scale(1.04);
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.46)) drop-shadow(0 0 14px rgba(215, 181, 109, 0.45));
  }
}


.contact {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 16px;
}

.contact-card .btn {
  justify-self: start;
  width: auto;
  padding: 10px 10px;
  transition: color 220ms ease, text-shadow 220ms ease, background 200ms ease, border-color 200ms ease;
}

.footer {
  padding: 30px 6vw 50px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 600ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 900px) {
  .nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .links {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 24px;
  }
  .links::-webkit-scrollbar { display: none; }
  .links a { white-space: nowrap; }
  .hero {
    padding-top: 40px;
    height: auto;
  }
  .hero-content {
    padding: 80px 0;
  }
  .stats {
    flex-wrap: wrap;
  }
  .services-ring-wrap {
    min-height: 400px;
  }
  .services-ring {
    --size: 390px;
    --radius: 182px;
  }
  .services-ring-core {
    width: 150px;
    height: 150px;
  }
  .services-ring-item {
    width: 118px;
    min-height: 26px;
    font-size: 12pt;
    padding: 0;
  }
}
