:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --panel: rgba(255,255,255,0.04);
  --panel-2: rgba(255,255,255,0.06);
  --line: rgba(255,255,255,0.1);
  --text: #f5f5f5;
  --muted: rgba(255,255,255,0.72);
  --soft: rgba(255,255,255,0.52);
  --gold: #d8a53a;
  --gold-2: #f5d06b;
  --max: 1180px;
  --radius: 28px;
  --shadow: 0 30px 80px rgba(0,0,0,0.45);
}

* { 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;
  background:
    radial-gradient(circle at top, rgba(216,165,58,0.14), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.06), transparent 18%),
    var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5,5,5,0.8);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  height: 52px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 1rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--soft);
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--muted);
  transition: 180ms ease;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a.active {
  background: #fff;
  color: #111;
}

.hero {
  padding: 92px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
  min-height: 72vh;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.38em;
  font-weight: 700;
}

h1, h2, h3, h4, p { margin: 0; }

.hero h1,
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 860px;
}

.hero p.lead,
.page-hero p.lead {
  margin-top: 22px;
  max-width: 760px;
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--muted);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.button { background: #fff; color: #111; }
.button-secondary { border: 1px solid var(--line); color: #fff; background: transparent; }
.button:hover, .button-secondary:hover { transform: translateY(-1px); }
.button-secondary:hover { background: rgba(255,255,255,0.07); }

.logo-card,
.panel,
.service-card,
.contact-card,
.stat-card,
.quote-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.logo-card {
  padding: 26px;
}

.logo-stage {
  min-height: 410px;
  border-radius: calc(var(--radius) - 8px);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)),
    linear-gradient(180deg, #121212, #060606 65%);
}

.logo-stage img {
  width: min(100%, 520px);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.55));
}

.section {
  padding: 84px 0;
}

.section-dark { background: #070707; }
.section-border { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-heading {
  max-width: 840px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 22px;
  margin-top: 38px;
}

.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.stat-card,
.quote-card,
.panel,
.service-card,
.contact-card {
  padding: 28px;
}

.stat-card {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}

.mini-label {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.panel p,
.service-card p,
.contact-card p,
.quote-card p {
  color: var(--muted);
  line-height: 1.85;
}

.panel h3,
.service-card h3,
.contact-card h3 {
  font-size: 1.65rem;
  line-height: 1.2;
}

.service-card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216,165,58,0.34);
  background: var(--panel-2);
}

.quote-card p.quote {
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
}

.quote-card .source {
  margin-top: 18px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.76rem;
  font-weight: 700;
}

.page-hero {
  padding: 120px 0 86px;
  position: relative;
  overflow: hidden;
}

.page-hero.party {
  background:
    linear-gradient(to right, rgba(0,0,0,0.88), rgba(0,0,0,0.58)),
    url('https://images.unsplash.com/photo-1571266028243-d220c9fdb4a3?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.page-hero.contact-hero {
  background:
    radial-gradient(circle at top left, rgba(216,165,58,0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.06), transparent 18%),
    #050505;
}

.two-up {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  margin-top: 38px;
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.contact-item-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--soft);
}

.contact-item-link {
  margin-top: 8px;
  display: inline-block;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
}

.simple-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.simple-list div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.26);
  border-radius: 18px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 44px;
  background: #050505;
}

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

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

.footer-brand img {
  height: 46px;
  width: auto;
}

.footer-copy {
  color: var(--soft);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  color: var(--muted);
}

.footer-links a:hover { color: #fff; }

@media (max-width: 1040px) {
  .hero-grid,
  .two-up,
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .two-up { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links { align-items: flex-start; }
  .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .hero, .page-hero { padding-top: 84px; }
  .section { padding: 68px 0; }
  .brand img { height: 44px; }
  .brand-title { font-size: 0.88rem; }
  .nav a { padding: 10px 15px; }
}
