:root {
  --black: #101010;
  --charcoal: #1b1b1b;
  --gold: #c69c3d;
  --light: #f6f3ec;
  --white: #ffffff;
  --gray: #e7e2d8;
  --text: #2b2b2b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(16,16,16,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: var(--white);
  text-decoration: none;
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand small {
  color: var(--gold);
  font-size: .7rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: .92rem;
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 8px 14px;
  color: var(--gold) !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 0;
  font-size: 1.8rem;
}

.hero {
  min-height: 86vh;
  display: grid;
  place-items: center;
  position: relative;
  background:
    linear-gradient(120deg, rgba(0,0,0,.86), rgba(0,0,0,.48)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: var(--white);
}

.hero-content {
  position: relative;
  max-width: 1050px;
  padding: 80px 24px;
}

.eyebrow, .section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.7rem);
  line-height: .98;
  max-width: 980px;
  margin: 12px 0 22px;
}

.hero-text {
  font-size: 1.15rem;
  max-width: 760px;
  color: #ece8df;
}

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

.btn {
  display: inline-block;
  padding: 13px 20px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 2px;
  border: 1px solid var(--gold);
  cursor: pointer;
}

.btn.primary {
  background: var(--gold);
  color: var(--black);
}

.btn.secondary {
  color: var(--white);
}

.trust-strip {
  max-width: 1180px;
  margin: -45px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
}

.trust-strip div {
  padding: 26px;
  border-right: 1px solid var(--gray);
}

.trust-strip strong, .trust-strip span {
  display: block;
}

.trust-strip span {
  color: #6f6f6f;
  font-size: .92rem;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 95px 24px;
}

.two-col, .split-callout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  margin: 8px 0 24px;
  color: var(--black);
}

h3 {
  margin-bottom: 8px;
  color: var(--black);
}

.info-card {
  margin-top: 28px;
  background: var(--white);
  padding: 24px;
  display: grid;
  gap: 4px;
  border-left: 5px solid var(--gold);
}

.info-card strong {
  color: var(--black);
}

.info-card span {
  margin-bottom: 10px;
}

.dark {
  max-width: none;
  background: var(--charcoal);
  color: #e8e8e8;
  padding-left: calc((100% - 1180px)/2 + 24px);
  padding-right: calc((100% - 1180px)/2 + 24px);
}

.dark h2, .dark h3 { color: var(--white); }

.service-grid, .team-grid, .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.service-grid article, .team-card, .portfolio-grid article {
  background: var(--white);
  padding: 28px;
  box-shadow: 0 8px 26px rgba(0,0,0,.06);
}

.dark .service-grid article {
  background: #252525;
}

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

.avatar {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 14px;
}

.role {
  color: var(--gold);
  font-weight: 800;
  margin-top: 0;
}

.gray {
  max-width: none;
  background: var(--gray);
  padding-left: calc((100% - 1180px)/2 + 24px);
  padding-right: calc((100% - 1180px)/2 + 24px);
}

.portfolio-grid article span {
  color: var(--gold);
  font-weight: 900;
  font-size: 1.6rem;
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.contact-section {
  background: var(--black);
  color: var(--white);
  padding: 90px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card, .contact-form {
  max-width: 560px;
}

.contact-card {
  justify-self: end;
}

.contact-card h2 {
  color: var(--white);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-methods a {
  color: var(--gold);
}

.contact-form {
  background: var(--white);
  color: var(--black);
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  font-weight: 700;
}

input, textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #ccc;
  font: inherit;
}

footer {
  background: #070707;
  color: #aaa;
  padding: 28px 24px;
  text-align: center;
  font-size: .9rem;
}

@media (max-width: 850px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 18px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.active { display: flex; }
  .trust-strip, .service-grid, .team-grid, .portfolio-grid, .two-col, .split-callout, .contact-section {
    grid-template-columns: 1fr;
  }
  .trust-strip {
    margin-top: 0;
  }
  .contact-card {
    justify-self: start;
  }
}


.gallery-intro {
  max-width: 760px;
}

.gallery-grid, .capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.gallery-item {
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(16,16,16,.78), rgba(16,16,16,.35)),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=900&q=80") center/cover;
  display: flex;
  align-items: end;
  padding: 22px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gallery-item:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(16,16,16,.78), rgba(16,16,16,.35)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=900&q=80") center/cover;
}

.gallery-item:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(16,16,16,.78), rgba(16,16,16,.35)),
    url("https://images.unsplash.com/photo-1597047084897-51e81819a499?auto=format&fit=crop&w=900&q=80") center/cover;
}

.capability {
  border-top: 1px solid var(--gray);
}

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

.capability-grid article {
  background: var(--white);
  padding: 28px;
  box-shadow: 0 8px 26px rgba(0,0,0,.06);
}

@media (max-width: 850px) {
  .gallery-grid, .capability-grid {
    grid-template-columns: 1fr;
  }
}
