/* ── Google Fonts loaded in HTML ─────────────────────── */

/* ── PALETTE ARCHIVE: Synthetic Rebellion ────────────────
:root {
  --yellow:   #FFD700;
  --blue:     #39FF14;
  --orange:   #FF10F0;
  --lavender: #9D4EDD;
  --pink:     #FF10F0;
  --teal:     #00D4D4;
  --bg:       #1A1A1A;
  --black:    #F5F5F5;
  --white:    #242424;
}
──────────────────────────────────────────────────────── */

/* ── PALETTE ARCHIVE: Green Treeline ─────────────────────
:root {
  --yellow:   #f95d9b;
  --blue:     #478559;
  --orange:   #f95d9b;
  --lavender: #39a0ca;
  --pink:     #f95d9b;
  --teal:     #39a0ca;
  --bg:       #161748;
  --black:    #EFF0FA;
  --white:    #1E1D5A;
}
──────────────────────────────────────────────────────── */

/* ── Variables: Memphis Original (active) ──────────────── */
:root {
  --yellow:   #F4C300;
  --blue:     #1E5BFF;
  --orange:   #FF5A00;
  --lavender: #B8A6D9;
  --pink:     #FF2E83;
  --teal:     #00B3A6;
  --bg:       #F2F2F2;
  --black:    #111111;
  --white:    #FFFFFF;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Base ──────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  font-family: 'Space Grotesk', sans-serif;
  color: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  color: inherit;
}

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  background: var(--white);
  border-bottom: 2px solid var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--black);
  text-decoration: none;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.25rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--black);
  padding: 0.45rem 0.85rem;
  display: block;
  transition: color 0.12s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

/* ── Page wrapper ──────────────────────────────────────── */
.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  max-width: 1100px;
  margin: 4rem auto 2rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 55vh;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  margin-bottom: 1.25rem;
}

.hero-name {
  font-weight: 700;
  font-size: 5rem;
  line-height: 1.0;
  color: var(--black);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--black);
  opacity: 0.65;
  margin-bottom: 2rem;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--black);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 3px 3px 0 var(--black);
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--black);
}

.btn-back {
  background: var(--white);
  color: var(--black);
  box-shadow: 3px 3px 0 var(--black);
}

.btn-back:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--black);
}

/* ── Hero geometric art ────────────────────────────────── */
.hero-art {
  position: relative;
  height: 420px;
}

/* ── Geo shapes base ───────────────────────────────────── */
.geo {
  position: absolute;
}

.geo-circle {
  border-radius: 50%;
}

.geo-triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Hero shapes */
.hero-circle-lg {
  width: 200px;
  height: 200px;
  background: var(--yellow);
  border: 2px solid var(--black);
  top: 30px;
  left: 40px;
}

.hero-rect {
  width: 140px;
  height: 90px;
  background: var(--blue);
  border: 2px solid var(--black);
  top: 170px;
  left: 150px;
  transform: rotate(-8deg);
}

.hero-circle-sm {
  width: 55px;
  height: 55px;
  background: var(--teal);
  top: 20px;
  right: 40px;
}

.hero-triangle {
  width: 80px;
  height: 70px;
  background: var(--pink);
  bottom: 100px;
  right: 50px;
}

.hero-dot-1 {
  width: 10px;
  height: 10px;
  background: var(--orange);
  bottom: 190px;
  left: 30px;
}

.hero-dot-2 {
  width: 8px;
  height: 8px;
  background: var(--pink);
  top: 10px;
  right: 140px;
}

.hero-dot-3 {
  width: 6px;
  height: 6px;
  background: var(--blue);
  bottom: 80px;
  left: 130px;
}

.hero-dot-4 {
  width: 10px;
  height: 10px;
  background: var(--yellow);
  bottom: 50px;
  right: 20px;
}

.hero-line-1 {
  width: 50px;
  height: 2px;
  background: var(--black);
  bottom: 170px;
  left: 30px;
}

.hero-line-2 {
  width: 35px;
  height: 2px;
  background: var(--black);
  top: 250px;
  right: 30px;
}

/* ── Section cards ─────────────────────────────────────── */
.cards {
  max-width: 1100px;
  margin: 4rem auto 6rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  text-decoration: none;
  display: block;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black);
}

.card-about {
  background: var(--blue);
  color: var(--white);
}

.card-blog {
  background: var(--yellow);
  color: var(--black);
}

.card-projects {
  background: var(--teal);
  color: var(--white);
}

.card h2 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.88;
  margin-bottom: 1.5rem;
}

.card-link {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: inherit;
}

/* ── Coming Soon ───────────────────────────────────────── */
.coming-soon {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.coming-scene {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  padding: 4rem 0;
}

.coming-deco {
  position: absolute;
}

.coming-card {
  background: var(--white);
  padding: 3rem 3.5rem;
  border-radius: 20px;
  border: 2px solid var(--black);
  text-align: center;
  box-shadow: 6px 6px 0 var(--black);
  max-width: 520px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.coming-card .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  border: 2px solid var(--black);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.coming-card h1 {
  font-weight: 700;
  font-size: 2.75rem;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.coming-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  opacity: 0.6;
  margin-bottom: 2rem;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 1.75rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}


/* ── About page ────────────────────────────────────────── */
.about-hero {
  max-width: 1100px;
  margin: 4rem auto 3rem;
  padding: 0 2rem;
}

.about-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--blue);
  color: white;
  border: 2px solid var(--black);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  margin-bottom: 1.5rem;
}

.about-headline {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.about-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.72;
  max-width: 620px;
}

.about-blocks {
  max-width: 1100px;
  margin: 0 auto 6rem;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.about-block {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 4px 4px 0 var(--black);
}

.about-block-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.6rem;
}

.about-block p {
  font-size: 1rem;
  line-height: 1.85;
  opacity: 0.75;
}

.about-block p + p {
  margin-top: 0.85rem;
}

.about-block-highlight {
  background: var(--blue);
  color: white;
}

.about-block-highlight .about-block-label {
  color: rgba(255,255,255,0.65);
}

.about-block-highlight p {
  opacity: 0.9;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 2rem;
  }

  .hero-art {
    display: none;
  }

  .hero-name {
    font-size: 3rem;
  }

  .about-headline {
    font-size: 2.5rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .nav-links a {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }

  .coming-deco {
    display: none;
  }
}
