:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --surface-2: #1B1B1B;
  --border: #2A2A2A;
  --gold: #F5C518;
  --gold-dim: #C9A314;
  --text: #F5F5F0;
  --text-muted: #A6A6A0;
  --radius: 14px;
  --font-body: "Fira Sans", system-ui, sans-serif;
  --font-head: "Fira Code", "Fira Sans", monospace;
  --max-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.15rem; margin-bottom: 8px; }

p { margin: 0 0 16px; color: var(--text-muted); }

.eyebrow {
  font-family: var(--font-head);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.center { text-align: center; }
.section-sub { max-width: 620px; }
.center.section-sub { margin-left: auto; margin-right: auto; }

.accent { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 150ms ease;
  min-height: 44px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #14110a; }
.btn-primary:hover { background: var(--gold-dim); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #14110a; }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.brand-logo.small { width: 52px; height: 52px; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}
.brand-name small {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
}
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 200ms ease;
}
.main-nav a:hover { color: var(--gold); }
.header-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 24px 18px;
  border-top: 1px solid var(--border);
}
.mobile-nav a {
  padding: 12px 4px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-top: 12px; }

/* Hero */
.hero {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(245,197,24,0.14), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(245,197,24,0.08), transparent 50%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 40px);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 800px; }
.hero-sub { font-size: 1.1rem; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* Strip */
.strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  padding: 22px 24px;
}
.strip-item { display: flex; flex-direction: column; gap: 2px; min-width: 180px; }
.strip-label {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.strip-value { font-weight: 600; }

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

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-visual { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; }

/* Services */
.services { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(245,197,24,0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 24px; height: 24px; }
.card p { margin-bottom: 0; }

/* Our Work */
.our-work { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 48px;
}
.project-block {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.project-block-reverse { grid-template-columns: 1fr 1.4fr; }
.project-block-reverse .project-gallery { order: 2; }
.project-block-reverse .project-copy { order: 1; }

.project-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.project-gallery-single { display: block; }

.work-photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.work-photo-main { grid-row: 1 / 3; }
.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}
.work-photo-main img { aspect-ratio: 4 / 5; }
.work-photo-wide img { aspect-ratio: 4 / 3; }

.project-location {
  font-family: var(--font-head);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.project-copy h3 { font-size: 1.4rem; }
.project-copy p:last-child { margin-bottom: 0; }

/* Our Team */
.our-team { }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.team-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16 / 10; }

/* Process */
.process-steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #14110a;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 16px;
}
.process-step p { margin-bottom: 0; }

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.why-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 28px; }
.why-list li { display: flex; gap: 20px; align-items: flex-start; }
.why-num {
  font-family: var(--font-head);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  flex-shrink: 0;
}
.why-list p { margin-bottom: 0; }

/* Contact */
.contact { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.contact-list { list-style: none; margin: 24px 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact-label { display: block; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-list a { font-weight: 600; transition: color 200ms ease; }
.contact-list a:hover { color: var(--gold); }
.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  transition: border-color 200ms ease, color 200ms ease;
}
.fb-link svg { width: 20px; height: 20px; }
.fb-link:hover { border-color: var(--gold); color: var(--gold); }
.contact-map {
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* CTA band */
.cta-band {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(245,197,24,0.06), transparent);
}
.cta-band-inner { max-width: 560px; margin: 0 auto; }
.cta-band .btn { margin-top: 10px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding-top: 50px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; max-width: 360px; }
.footer-brand p { margin: 4px 0 0; font-size: 0.88rem; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-self: center; }
.footer-links a { color: var(--text-muted); font-size: 0.92rem; transition: color 200ms ease; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
.footer-bottom p { margin: 0; font-size: 0.82rem; text-align: center; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

/* Responsive */
@media (max-width: 960px) {
  .about-grid, .why-grid, .contact-grid, .team-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; max-width: 420px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .project-gallery { grid-template-columns: 1fr 1fr; }
  .team-photo { order: -1; }
}

@media (max-width: 760px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
  }
  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: transform 200ms ease, opacity 200ms ease;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav.open { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .project-block, .project-block-reverse { grid-template-columns: 1fr; }
  .project-block-reverse .project-gallery, .project-block-reverse .project-copy { order: initial; }
  .project-gallery { grid-template-columns: 1fr; }
  .work-photo-main { grid-row: auto; }
  .strip-inner { flex-direction: column; }
  .section { padding: 64px 0; }
  .hero { padding: 90px 0 60px; }
}
