:root {
  --bg: #0f0f0d;
  --bg-soft: #171612;
  --bg-card: rgba(255, 255, 255, 0.06);
  --text: #f8f4ee;
  --muted: #c7bfb2;
  --muted-2: #8f877b;
  --gold: #d6a85f;
  --gold-2: #f1d192;
  --gold-dark: #8a642d;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 168, 95, 0.12), transparent 28rem),
    radial-gradient(circle at 100% 18%, rgba(241, 209, 146, 0.08), transparent 22rem),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(214, 168, 95, 0.36); color: var(--white); }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--gold);
  color: #17110a;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 999;
}
.skip-link:focus { left: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(13, 13, 11, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.12em;
  font-size: 0.84rem;
  font-weight: 750;
}
.brand img { width: 50px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.94rem;
}
.main-nav a {
  position: relative;
  padding: 8px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }
.header-cta {
  border: 1px solid rgba(214, 168, 95, 0.48);
  color: var(--gold-2);
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}
.header-cta:hover { background: rgba(214, 168, 95, 0.1); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  padding: 11px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 132px 0 84px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,15,13,0.94) 0%, rgba(15,15,13,0.82) 42%, rgba(15,15,13,0.42) 100%),
    url("assets/hero-consulting.jpg") center right / cover no-repeat;
  opacity: 0.98;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  gap: 60px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold-2);
  font-weight: 800;
}
.eyebrow.gold { color: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
h1 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  max-width: 860px;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
  margin-bottom: 22px;
}
h3 {
  letter-spacing: -0.025em;
  line-height: 1.18;
}
.hero-text {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.45vw, 1.25rem);
  max-width: 670px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #17110a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 42px rgba(214, 168, 95, 0.22);
}
.btn-ghost {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255,255,255,0.04);
}
.btn-ghost:hover { border-color: rgba(214, 168, 95, 0.5); background: rgba(214,168,95,0.08); }
.btn-light {
  color: #17110a;
  background: var(--white);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-row span {
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
}
.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  border: 1px solid rgba(214, 168, 95, 0.26);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 168, 95, 0.16), transparent 24rem),
    rgba(10, 10, 9, 0.78);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 46px 36px;
  backdrop-filter: blur(12px);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  pointer-events: none;
}
.hero-logo {
  width: min(380px, 100%);
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.32));
}
.hero-card-footer {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 32px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.hero-card-footer p {
  margin: 0 0 4px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 900;
}
.hero-card-footer strong { color: var(--white); font-size: 1rem; }

.metrics {
  position: relative;
  margin-top: -42px;
  z-index: 5;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.metric {
  padding: 26px;
  background: rgba(23, 22, 18, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 70px rgba(0,0,0,0.24);
}
.metric span { color: var(--gold); font-weight: 900; letter-spacing: 0.12em; font-size: 0.78rem; }
.metric strong { display: block; margin: 10px 0 8px; font-size: 1.1rem; }
.metric p { margin: 0; color: var(--muted); }

.section-pad { padding: 116px 0; }
.two-col {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 76px;
  align-items: start;
}
.section-heading h2 { margin-bottom: 0; }
.intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
}
.intro-copy p:last-child { margin-bottom: 0; }

.image-band { padding: 0 0 92px; }
.band-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: stretch;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.band-image { min-height: 480px; }
.band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.band-content {
  padding: clamp(34px, 5vw, 70px);
  align-self: center;
}
.band-content p { color: var(--muted); }
.text-link {
  display: inline-flex;
  color: var(--gold-2);
  font-weight: 900;
  margin-top: 10px;
}
.text-link::after { content: "→"; margin-left: 8px; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }

.services { background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent); }
.section-title {
  max-width: 780px;
  margin-bottom: 50px;
}
.section-title.compact { max-width: 720px; }
.section-title p { color: var(--muted); font-size: 1.05rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    var(--bg-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 168, 95, 0.38);
  background:
    linear-gradient(150deg, rgba(214,168,95,0.12), rgba(255,255,255,0.025)),
    var(--bg-soft);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(214, 168, 95, 0.12);
  color: var(--gold-2);
  border: 1px solid rgba(214, 168, 95, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  margin-bottom: 28px;
}
.service-card h3 { font-size: 1.16rem; margin-bottom: 12px; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.premium-panel {
  padding: 86px 0;
  background:
    linear-gradient(135deg, rgba(14,14,12,0.72), rgba(14,14,12,0.92)),
    url("assets/corporate-towers.png") center / cover no-repeat;
  border-block: 1px solid rgba(255,255,255,0.08);
}
.panel-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.panel-inner h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: steps;
}
.step {
  position: relative;
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.045);
}
.step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #17110a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
  margin-bottom: 28px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); margin-bottom: 0; }

.split-showcase { padding-top: 0; }
.showcase-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}
.showcase-copy p { color: var(--muted); }
.check-list {
  padding: 0;
  list-style: none;
  margin: 30px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
}
.check-list li::before {
  content: "✓";
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(214, 168, 95, 0.14);
  color: var(--gold-2);
  font-weight: 900;
}
.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  min-height: 520px;
  box-shadow: var(--shadow);
}
.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 58%);
}
.floating-note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  padding: 20px;
  border-radius: 20px;
  background: rgba(17,17,15,0.76);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(14px);
}
.floating-note strong { display: block; color: var(--gold-2); }
.floating-note span { color: var(--muted); }

.contact {
  background:
    radial-gradient(circle at 18% 38%, rgba(214,168,95,0.12), transparent 22rem),
    linear-gradient(180deg, transparent, rgba(255,255,255,0.025));
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact-info p { color: var(--muted); font-size: 1.05rem; }
.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}
.contact-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.contact-card:hover { transform: translateY(-3px); border-color: rgba(214,168,95,0.35); }
.contact-card span { display: block; color: var(--muted-2); font-size: 0.86rem; margin-bottom: 5px; }
.contact-card strong { color: var(--white); }
.contact-form {
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(150deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    #151410;
  border: 1px solid rgba(214, 168, 95, 0.18);
  box-shadow: var(--shadow);
}
.form-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.form-head img { width: 58px; }
.form-head h3 { margin: 0 0 3px; font-size: 1.35rem; }
.form-head p { margin: 0; color: var(--muted); }
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 17px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.055);
  color: var(--white);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form select option { color: #151410; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(214,168,95,0.7);
  box-shadow: 0 0 0 4px rgba(214,168,95,0.12);
}
.contact-form textarea { resize: vertical; }
.form-button { width: 100%; cursor: pointer; margin-top: 6px; }
.form-note { margin: 15px 0 0; color: var(--muted-2); font-size: 0.84rem; }

.site-footer {
  padding: 70px 0 28px;
  background: #090908;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 48px;
  padding-bottom: 44px;
}
.footer-logo { width: 240px; margin-bottom: 18px; }
.footer-grid p { color: var(--muted); max-width: 460px; }
.footer-grid h3 { color: var(--gold-2); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.12em; }
.footer-grid a,
.footer-grid span {
  display: block;
  color: var(--muted);
  margin: 9px 0;
}
.footer-grid a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.9rem;
}
.footer-bottom a:hover { color: var(--gold-2); }

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

@media (max-width: 1060px) {
  .header-cta { display: none; }
  .hero-grid,
  .two-col,
  .band-grid,
  .showcase-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-card { min-height: 430px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .panel-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 780px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header-inner { min-height: 72px; }
  .brand span { font-size: 0.72rem; letter-spacing: 0.08em; }
  .brand img { width: 42px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(13, 13, 11, 0.95);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 12px; border-radius: 14px; }
  .main-nav a:hover { background: rgba(255,255,255,0.06); }
  .hero { padding-top: 112px; min-height: auto; }
  .hero-bg { background-position: center; }
  h1 { font-size: clamp(2.5rem, 12vw, 3.9rem); }
  h2 { font-size: clamp(1.9rem, 8vw, 2.95rem); }
  .hero-grid { gap: 34px; }
  .hero-card { min-height: 360px; padding: 32px 22px; }
  .hero-card-footer { left: 24px; right: 24px; bottom: 24px; }
  .metrics { margin-top: 0; padding: 20px 0 0; }
  .metrics-grid, .services-grid, .timeline, .footer-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 78px 0; }
  .band-image { min-height: 310px; }
  .service-card { min-height: auto; }
  .showcase-card, .showcase-card img { min-height: 380px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
