:root {
  --bg: #070a14;
  --bg-alt: #0d1324;
  --text: #f4f7ff;
  --muted: #a4b0cb;
  --gold: #2b6cff;
  --gold-light: #72a2ff;
  --border: #223157;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 10, 20, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: contain;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.25rem;
}

.brand-fallback {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  line-height: 40px;
  text-align: center;
}

.brand-name {
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 600;
}

.menu-btn {
  display: none;
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
}

.nav {
  display: flex;
  gap: 1.1rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
}

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

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: #0c1327;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 20, 0.82), rgba(7, 10, 20, 0.52));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.9rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 5.3vw, 4.1rem);
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  margin-bottom: 0.7rem;
}

.hero-text {
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto 1.3rem auto;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 auto 1.35rem;
  max-width: 760px;
}

.hero-metrics article {
  border: 1px solid rgba(114, 162, 255, 0.35);
  background: rgba(7, 10, 20, 0.5);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.hero-metrics strong {
  display: block;
  font-size: 1.1rem;
  color: #c7dcff;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.83rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #f4f7ff;
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
}

.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.section-dark {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

.grid.two-col {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.25fr 1fr;
}

.stats {
  display: grid;
  gap: 1rem;
}

.stats article {
  padding: 1.2rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.01);
}

.stats h3 {
  margin: 0;
  color: var(--gold-light);
  font-size: 2rem;
}

.cards {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.02);
}

.gallery-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.section-intro {
  max-width: 700px;
  color: var(--muted);
}

.gallery-card div {
  padding: 0.9rem 1rem 1rem;
}

.gallery-card h3 {
  margin-bottom: 0.45rem;
}

.gallery-card p {
  margin: 0;
  color: var(--muted);
}

.deliverables {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.deliverables li {
  border-left: 2px solid var(--gold);
  padding-left: 0.8rem;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.timeline article {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.timeline strong {
  color: var(--gold-light);
}

.price-card {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  background: linear-gradient(150deg, rgba(114, 162, 255, 0.14), rgba(0, 0, 0, 0.12));
}

.price-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--muted);
}

.price {
  margin: 0.2rem 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--gold-light);
}

.price-note {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 1.2rem;
  background: #050912;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.4fr 1fr;
}

.copyright {
  text-align: center;
  color: #7f8cae;
  margin: 1.2rem 0 0;
  font-size: 0.88rem;
}

.site-footer a {
  color: var(--gold-light);
}

.contact-preview {
  position: relative;
  overflow: hidden;
}

.contact-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13, 19, 36, 0.93), rgba(13, 19, 36, 0.98)),
    url("assets/brq-contact-card.png") center / cover no-repeat;
  opacity: 0.28;
  pointer-events: none;
}

.contact-preview .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.95rem;
}

.contact-card {
  border: 1px solid var(--border);
  background: rgba(244, 247, 255, 0.04);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.contact-label {
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.35rem;
}

.contact-value {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #edf3ff;
}

.contact-note {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.contact-card-office {
  border-color: rgba(114, 162, 255, 0.5);
  background: rgba(43, 108, 255, 0.11);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 930px) {
  .grid.two-col,
  .footer-grid,
  .cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-btn {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 4vw;
    width: min(320px, 92vw);
    padding: 1rem;
    border: 1px solid var(--border);
    background: #0a1020;
    border-radius: 10px;
    display: none;
    flex-direction: column;
  }

  .nav.open {
    display: flex;
  }

  .timeline article {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}
