:root {
  --bg: #050505;
  --panel: #0b0b0b;
  --panel-soft: #111111;
  --white: #ffffff;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --line: #2b2b2b;
  --line-light: #484848;
  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: #000;
  font-weight: 700;
}
.skip-link:focus { left: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 3, 3, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 0.92rem;
  font-weight: 700;
}
.main-nav a:not(.nav-button):hover,
.main-nav a:not(.nav-button):focus-visible { color: #cfcfcf; }
.nav-button {
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--white);
  color: #000;
}
.nav-button:hover,
.nav-button:focus-visible { background: #dcdcdc; }
.menu-button {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line-light);
  background: var(--panel);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
}

.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.68), rgba(0,0,0,0.46), rgba(0,0,0,0.68)),
    url("../assets/banner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.48));
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 78px 0;
}
.hero-panel {
  width: min(100%, 760px);
  padding: 34px 38px 30px;
  text-align: center;
  background: rgba(5, 5, 5, 0.62);
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 24px 70px rgba(0,0,0,0.38);
  backdrop-filter: blur(2px);
}
.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: #d4d4d4;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.hero h1 {
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  text-transform: uppercase;
}
.hero-slogan {
  margin: 8px auto 0;
  max-width: 650px;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 800;
  line-height: 1.25;
}
.hero-text {
  max-width: 650px;
  margin: 18px auto 0;
  color: #d3d3d3;
  font-size: 1rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid transparent;
  font-weight: 900;
}
.button-primary {
  background: var(--white);
  color: #000;
  border-color: var(--white);
}
.button-primary:hover,
.button-primary:focus-visible { background: #dcdcdc; }
.button-secondary {
  background: rgba(0,0,0,0.45);
  border-color: #6a6a6a;
  color: var(--white);
}
.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(0,0,0,0.72);
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.hero-features > div {
  min-width: 0;
  padding: 13px 12px;
  text-align: left;
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.22);
}
.hero-features strong,
.hero-features span { display: block; }
.hero-features strong { font-size: 0.92rem; }
.hero-features span {
  margin-top: 2px;
  color: #bcbcbc;
  font-size: 0.78rem;
  line-height: 1.4;
}
.invite-note {
  margin: 14px auto 0;
  color: #b7b7b7;
  font-size: 0.82rem;
}

.section { padding: 82px 0; }
.section h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
.section-copy p:not(.section-label) {
  max-width: 720px;
  margin: 17px 0 0;
  color: var(--muted);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 70px;
}
.identity-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.identity-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 50%;
}
.identity-card div { display: flex; flex-direction: column; }
.identity-name { font-size: 1.45rem; font-weight: 900; }
.identity-tagline { color: #bdbdbd; }

.section-dark {
  background: #0a0a0a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-intro {
  max-width: 760px;
  margin: 16px 0 0;
  color: #bdbdbd;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.card {
  min-height: 245px;
  padding: 22px;
  background: #0f0f0f;
  border: 1px solid #343434;
}
.card-number {
  display: block;
  margin-bottom: 45px;
  color: #9f9f9f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.card p { margin: 0; color: #bdbdbd; font-size: 0.94rem; }

.community-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.community-grid > div:first-child p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
}
.community-points { display: grid; gap: 12px; }
.community-points > div {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.community-points strong,
.community-points span { display: block; }
.community-points span { margin-top: 3px; color: var(--muted); }

.final-section {
  background: #000;
  border-top: 1px solid var(--line);
}
.final-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.final-callout p:not(.section-label) {
  margin: 14px 0 0;
  color: var(--muted);
}
.final-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}
.button-light { background: var(--white); color: #000; }
.button-light:hover,
.button-light:focus-visible { background: #dcdcdc; }
.text-link { color: #d7d7d7; font-weight: 900; }

.site-footer {
  padding: 28px 0;
  background: #000;
  border-top: 1px solid #171717;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}
.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}
.footer-inner p {
  margin: 0;
  color: #777;
  font-size: 0.82rem;
  text-align: right;
}

@media (max-width: 960px) {
  .menu-button { display: inline-grid; place-items: center; }
  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    background: #050505;
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; }
  .nav-button { margin-top: 8px; text-align: center; }
  .about-grid,
  .community-grid { grid-template-columns: 1fr; gap: 36px; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .final-callout { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max-width)); }
  .header-inner { min-height: 68px; }
  .brand img { width: 40px; height: 40px; }
  .main-nav { top: 68px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 54px 0; }
  .hero-panel { padding: 27px 18px 24px; }
  .hero h1 { font-size: clamp(2.8rem, 17vw, 4.3rem); }
  .hero-slogan { font-size: 1.2rem; }
  .hero-features { grid-template-columns: 1fr; }
  .hero-features > div { text-align: center; }
  .button { width: 100%; }
  .section { padding: 64px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .card-number { margin-bottom: 24px; }
  .identity-card { align-items: flex-start; }
  .identity-card img { width: 78px; height: 78px; }
  .final-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .text-link { text-align: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner p { text-align: left; }
}


/* Design commissions and pricing */
.services-section {
  background: #050505;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.service-list span {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 16px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.service-info-box {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 26px;
  padding: 26px;
  background: #0d0d0d;
  border: 1px solid var(--line-light);
}

.service-info-box h3 {
  margin: 0;
  font-size: 1.35rem;
}

.service-info-box p:not(.section-label) {
  margin: 0;
  color: var(--muted);
}

.service-info-box .button {
  white-space: nowrap;
}

.pricing-section {
  background: #0a0a0a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.price-card {
  padding: 22px;
  background: #101010;
  border: 1px solid #343434;
}

.price-card h3 {
  margin: 0 0 18px;
  font-size: 1.22rem;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid #292929;
}

.price-card li:first-child {
  border-top: 0;
}

.price-card li span {
  color: #c8c8c8;
}

.price-card li strong {
  color: var(--white);
  font-size: 1.02rem;
}

.price-card-wide {
  grid-column: span 2;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

@media (max-width: 960px) {
  .service-list,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-info-box {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-info-box .button {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  .service-list,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card-wide {
    grid-column: auto;
  }

  .service-info-box .button {
    width: 100%;
  }
}
