@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300&display=swap');

:root {
  --black: #090909;
  --dark: #0f0f0f;
  --card: #141414;
  --gold: #C9A84C;
  --gold-light: #dfc06e;
  --gold-dim: rgba(201,168,76,0.15);
  --gold-border: rgba(201,168,76,0.25);
  --white: #ffffff;
  --muted: rgba(255,255,255,0.55);
  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(9,9,9,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: #000 !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: #000 !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── MAIN WRAPPER ── */
main {
  padding-top: var(--nav-height);
}

/* ── SECTION UTILS ── */
section {
  padding: 96px 48px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 48px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 44px;
}

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

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  border: 1px solid var(--gold-border);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--gold-border);
}

.hero-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── PILLARS ── */
.pillars {
  background: var(--dark);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.pillar-card {
  background: var(--card);
  padding: 48px 36px;
  border: 1px solid var(--gold-border);
  transition: border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.pillar-card:hover {
  border-color: rgba(201,168,76,0.5);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.6;
}

.pillar-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.pillar-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pillar-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.pillar-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gold-border);
  font-size: 12px;
}

.pillar-stat-val {
  font-weight: 700;
  color: var(--gold);
}

.pillar-stat-key {
  font-weight: 400;
  color: var(--muted);
}

/* ── SERVICES PREVIEW ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 56px;
  border: 1px solid var(--gold-border);
}

.service-card {
  background: var(--dark);
  padding: 32px 28px;
  border-right: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  transition: background 0.2s;
}

.service-card:hover {
  background: var(--card);
}

.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ── DIVIDER ── */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

/* ── PORTFOLIO GRID ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.portfolio-item {
  background: var(--card);
  padding: 40px 32px;
  border: 1px solid var(--gold-border);
  position: relative;
  transition: border-color 0.2s;
}

.portfolio-item:hover {
  border-color: rgba(201,168,76,0.5);
}

.portfolio-item.featured {
  grid-column: span 2;
}

.portfolio-item.tall {
  grid-row: span 2;
}

.portfolio-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.7;
}

.portfolio-event-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.portfolio-event-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 20px;
}

.portfolio-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.portfolio-metric {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.portfolio-metric-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.portfolio-metric-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 80px 48px;
  text-align: center;
}

.cta-band .section-title {
  font-size: 52px;
  margin-bottom: 16px;
}

.cta-band .section-sub {
  margin: 0 auto 40px;
  text-align: center;
}

/* ── SERVICES PAGE ── */
.services-hero {
  padding: 120px 48px 80px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
}

.services-section-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.services-section-label {
  position: sticky;
  top: 100px;
}

.services-section-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.services-section-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.svc-card {
  background: var(--card);
  padding: 36px 28px;
  border: 1px solid var(--gold-border);
  transition: background 0.2s, border-color 0.2s;
}

.svc-card:hover {
  background: #1a1a1a;
  border-color: rgba(201,168,76,0.4);
}

.svc-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.svc-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-card-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.svc-card-desc {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.svc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-features li {
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-features li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── PORTFOLIO PAGE ── */
.portfolio-hero {
  padding: 120px 48px 80px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
}

.portfolio-filter {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--gold-border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.portfolio-full-item {
  background: var(--card);
  border: 1px solid var(--gold-border);
  padding: 44px 36px;
  position: relative;
  transition: border-color 0.2s;
}

.portfolio-full-item:hover {
  border-color: rgba(201,168,76,0.4);
}

.portfolio-full-item.wide {
  grid-column: span 2;
}

.pf-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.7;
}

.pf-name {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}

.pf-year {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}

.pf-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}

.pf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pf-chip {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
}

/* ── CONTACT PAGE ── */
.contact-hero {
  padding: 120px 48px 80px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 500;
}

.contact-info-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-value a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--gold-border);
  padding: 48px;
}

.contact-form h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-form p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--gold-border);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 14px 16px;
  border-radius: 2px;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option {
  background: #1a1a1a;
}

.form-submit {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold-light);
}

.form-success {
  display: none;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold-border);
  padding: 24px;
  text-align: center;
  margin-top: 20px;
}

.form-success.visible {
  display: block;
}

.form-success p {
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--gold-border);
  padding: 60px 48px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-brand-name span {
  color: var(--gold);
}

.footer-brand-tagline {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
}

.footer-nav h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--gold-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}

.footer-copy a {
  color: var(--gold);
  text-decoration: none;
  opacity: 0.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(9,9,9,0.98);
    padding: 32px 24px;
    border-bottom: 1px solid var(--gold-border);
    gap: 24px;
  }
  .nav-links.open a { font-size: 14px; }
  .nav-hamburger { display: flex; }

  section { padding: 64px 24px; }
  .hero { padding: 0 24px; }
  .hero-title { font-size: 40px; }
  .hero-stats { flex-wrap: wrap; gap: 28px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.featured { grid-column: span 1; }

  .services-hero, .portfolio-hero, .contact-hero { padding: 100px 24px 56px; }
  .services-section-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-section-label { position: static; }
  .services-cards { grid-template-columns: 1fr 1fr; }

  .portfolio-full-grid { grid-template-columns: 1fr; }
  .portfolio-full-item.wide { grid-column: span 1; }

  .contact-layout { grid-template-columns: 1fr; }
  .cta-band .section-title { font-size: 36px; }

  footer { padding: 48px 24px 32px; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 32px; }
  .section-title { font-size: 28px; }
  .services-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .cta-band { padding: 60px 24px; }
}
