:root {
  --bg: #03070a;
  --bg-deep: #050a0f;
  --bg-soft: #0a131c;
  --surface: rgba(10, 19, 28, 0.4);
  --surface-strong: rgba(15, 27, 40, 0.6);
  --surface-light: rgba(255, 255, 255, 0.03);
  --line: rgba(212, 175, 55, 0.15);
  --line-strong: rgba(212, 175, 55, 0.3);
  --text: #f0f4f8;
  --text-soft: #9ba5b5;
  --accent: #d4af37; /* Premium Gold */
  --accent-strong: #f0c451;
  --accent-glow: rgba(212, 175, 55, 0.4);
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --container: min(1200px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background-color: var(--bg);
  overflow-x: hidden;
}

/* Background animated orbs */
body::before, body::after {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
  pointer-events: none;
  animation: float 20s infinite alternate ease-in-out;
}

body::before {
  top: -200px;
  left: -200px;
  background: rgba(212, 175, 55, 0.08);
}

body::after {
  bottom: -200px;
  right: -200px;
  background: rgba(10, 100, 200, 0.08);
  animation-duration: 25s;
  animation-direction: alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.1); }
  100% { transform: translate(-50px, 100px) scale(0.9); }
}

/* Grid overlay */
.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  position: relative;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(3, 7, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.brand img {
  width: 180px;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-menu a {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}

.site-menu a:hover {
  color: var(--text);
}

.site-menu a:not(.button)::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.site-menu a:not(.button):hover::after {
  width: 100%;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent) 0%, #a68420 100%);
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.button:hover::before {
  left: 150%;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.button-secondary,
.button-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-strong);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  background: linear-gradient(to right, #fff, #a9c9cf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading h2, .section-copy h2, .contact-copy h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin: 0 0 24px;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.hero-highlights li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 0 10px var(--accent);
}

/* Glass Cards */
.hero-logo-card,
.hero-info-card,
.service-card,
.feature-card,
.contact-card,
.photo-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-logo-card::before, .service-card::before, .feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-logo-card:hover, .service-card:hover, .feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 20px rgba(212, 175, 55, 0.1);
}

.hero-logo-card:hover::before, .service-card:hover::before, .feature-card:hover::before {
  opacity: 1;
}

.hero-logo-card {
  padding: 16px;
}

.hero-logo-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
}

.hero-info-card {
  padding: 32px;
  margin-top: -60px;
  margin-left: -40px;
  z-index: 2;
  background: rgba(5, 10, 15, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.card-label {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.hero-info-card h2 {
  font-size: 1.8rem;
  margin: 0 0 24px;
}

.info-list div {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-list div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-list span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.info-list strong {
  font-size: 1.1rem;
  color: var(--text);
}

/* Sections */
.section {
  padding: 120px 0;
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-heading p {
  font-size: 1.1rem;
  color: var(--text-soft);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 40px 30px;
  text-align: center;
}

.card-index {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent);
  font-size: 1.5rem;
  font-family: "Outfit", sans-serif;
  margin-bottom: 24px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.brand-panel img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.brand-panel:hover img {
  transform: scale(1.05);
}

.brand-panel div {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(3,7,10,0.95), transparent);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Contact */
.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-card {
  padding: 40px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-item span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 8px;
}

.contact-item p, .contact-item a {
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--accent-strong);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0;
  margin-top: 80px;
  background: rgba(3,7,10,0.8);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-brand img {
  width: 60px;
  border-radius: 8px;
}

.footer-brand p {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-brand small {
  color: var(--text-soft);
}

.footer-link {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

/* Reveal Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform, opacity;
}
[data-reveal="left"] { transform: translateX(60px); }
[data-reveal="right"] { transform: translateX(-60px); }
[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .split-layout, .contact-shell {
    grid-template-columns: 1fr;
  }
  .hero-info-card {
    margin: -40px 20px 0;
  }
  .services-grid, .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .site-menu {
    position: absolute;
    top: 80px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(3,7,10,0.98);
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }
  .site-menu.is-open {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .services-grid, .features-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 120px; }
  .hero-highlights { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; text-align: center; gap: 30px; }
  .footer-brand { flex-direction: column; }
}
