:root {
  --bg: #ffffff;
  --surface: #f7f7f5;
  --surface-2: #111111;
  --text: #121212;
  --muted: #666666;
  --gold: #c9a646;
  --gold-strong: #b48d28;
  --line: rgba(18, 18, 18, 0.09);
  --radius: 22px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #111111, #3a3a3a);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.brand-text strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand-text small {
  display: block;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
}
.nav {
  display: flex;
  gap: 1.4rem;
}
.nav a, .footer-link {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.25s ease;
}
.nav a:hover, .footer-link:hover { color: var(--text); }
.menu-toggle, .mobile-menu { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #e1c264);
  color: #111;
  box-shadow: 0 16px 34px rgba(201, 166, 70, 0.28);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.desktop-cta { white-space: nowrap; }

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #101010;
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg {
  background: url('../assets/page1.jpg') center/cover no-repeat;
  transform: scale(1.03);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9,9,9,0.82) 0%, rgba(9,9,9,0.62) 42%, rgba(201,166,70,0.20) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 6rem 0;
  max-width: 760px;
}
.eyebrow,
.section-tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(201,166,70,0.14);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1,
.section h2,
.info-card h3,
.contact-card h3,
.service-card h3,
.team-card h3 {
  line-height: 1.05;
}
.hero h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
.hero h1 span { color: #f0d78b; display: block; }
.hero-copy {
  max-width: 640px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-badges span {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
}

.section { padding: 6rem 0; }
.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0.7rem 0 1rem;
  letter-spacing: -0.03em;
}
.section p { color: #4e4e4e; }
.heading-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
}
.split-grid,
.values-grid,
.coverage-grid,
.showcase-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}
.split-media img,
.values-media img,
.team-feature img,
.visual-card img,
.coverage-map img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mission-vision {
  background: linear-gradient(180deg, #f5f5f3, #ffffff);
}
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.info-card,
.service-card,
.contact-card,
.team-card,
.text-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card {
  padding: 2rem;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.info-card::after,
.service-card::after,
.contact-card::after {
  content: '';
  position: absolute;
  inset: auto -20px -20px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,166,70,0.18), rgba(201,166,70,0));
}
.info-card h3 {
  margin: 1rem 0 0.8rem;
  font-size: 2rem;
}
.values-section { background: #fff; }
.values-lead { font-size: 1.08rem; font-weight: 700; color: var(--text) !important; }
.values-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}
.value-item span {
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-weight: 700;
}
.services-section {
  background: linear-gradient(180deg, #0f0f0f 0%, #151515 100%);
  color: #fff;
}
.services-section p, .services-section h2 { color: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.service-card {
  position: relative;
  padding: 1.8rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
  overflow: hidden;
}
.service-card h3 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
  color: #fff;
}
.service-card ul,
.contact-card ul {
  padding-left: 1.1rem;
  margin: 0;
}
.service-card li,
.contact-card li {
  margin-bottom: 0.55rem;
}
.service-card li { color: rgba(255,255,255,0.84); }
.showcase-section,
.team-section { background: #fff; }
.showcase-card { min-height: 100%; }
.text-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.client-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}
.client-list span {
  padding: 1rem 1.1rem;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--line);
  font-weight: 600;
}
.coverage-section { background: linear-gradient(180deg, #f7f7f5 0%, #ffffff 100%); }
.coverage-map img { filter: grayscale(10%); }
.team-feature { margin-bottom: 2rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.team-card {
  padding: 1.4rem;
  background: linear-gradient(180deg, #ffffff, #f7f7f5);
}
.team-card h3 { font-size: 1.05rem; margin: 0 0 0.4rem; }
.team-card p { margin: 0; color: var(--gold-strong); font-weight: 700; }
.contact-section { background: #0f0f0f; color: #fff; }
.contact-section .heading-center h2,
.contact-section .heading-center p { color: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.contact-card {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
}
.contact-card .role {
  color: #f0d78b;
  font-weight: 700;
  margin: 0 0 1rem;
}
.contact-card li,
.contact-card a { color: rgba(255,255,255,0.86); }
.contact-card strong { color: #fff; }
.site-footer {
  background: #080808;
  color: rgba(255,255,255,0.82);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-wrap p { margin: 0.35rem 0 0; color: rgba(255,255,255,0.6); }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav, .desktop-cta { display: none; }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 1.2rem;
    cursor: pointer;
  }
  .mobile-menu {
    display: none;
    padding: 0 1rem 1rem;
    border-top: 1px solid var(--line);
    background: #fff;
  }
  .mobile-menu.is-open { display: grid; }
  .mobile-menu a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-weight: 600;
  }
  .split-grid,
  .values-grid,
  .coverage-grid,
  .showcase-grid,
  .mv-grid,
  .services-grid,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-content { padding: 5rem 0; }
}

@media (max-width: 640px) {
  .section { padding: 4.5rem 0; }
  .hero h1 { font-size: 2.5rem; }
  .hero-copy { font-size: 1rem; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .values-list { grid-template-columns: 1fr; }
  .info-card, .service-card, .contact-card, .team-card, .text-card { padding: 1.3rem; }
}
