/* ============================================
   ginny.world — stylesheet
   Fonts: Archivo (display, heavy) + Inter (body)
   ============================================ */

/* BASE RESET */

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

:root {
  --c-bg:          #F5F4EF;
  --c-fg:          #111111;
  --c-muted:       #76726A;
  --c-border:      #DDD9D0;
  --c-dark:        #111111;
  --c-dark-fg:     #F5F4EF;
  --c-dark-muted:  rgba(245, 244, 239, 0.5);
  --c-hero-photo:  #C8C4BC;

  --f-display:     'Archivo', sans-serif;
  --f-body:        'Inter', sans-serif;

  --nav-h:         72px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--c-bg);
  color: var(--c-fg);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
}

.container-narrow {
  max-width: 700px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background-color: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}

.nav-logo {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-fg);
}

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

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-muted);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--c-fg);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem;
}

.hero-text h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(3.25rem, 6vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.tagline {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--c-muted);
  font-weight: 400;
  line-height: 1.85;
}

.hero-image {
  background-color: var(--c-hero-photo);
  background-image: url('images/ginny.jpg');
  background-size: cover;
  background-position: center 20%;
  min-height: 100vh;
  /* Foto: Dennis Branko. Zet het bestand neer als images/ginny.jpg */
}

/* ============================================
   STATS
   ============================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 2.75rem 2.5rem;
  border-right: 1px solid var(--c-border);
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2rem, 3vw, 3.25rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--c-muted);
  line-height: 1.4;
  max-width: 140px;
}

/* ============================================
   SOCIALS & REACH
   ============================================ */

.socials-heading {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  padding: 2.5rem 2.5rem 0;
}

a.stat {
  text-decoration: none;
  color: var(--c-fg);
  transition: background-color 0.2s ease, color 0.2s ease;
}

a.stat:hover {
  background-color: var(--c-fg);
  color: var(--c-bg);
}

a.stat:hover .stat-label {
  color: rgba(245, 244, 239, 0.7);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 6rem 0;
}

.section-dark {
  background-color: var(--c-dark);
  color: var(--c-dark-fg);
}

.section-contact {
  text-align: center;
}

.section-heading {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.section-dark .section-heading {
  color: var(--c-dark-fg);
}

/* ============================================
   UNIVERSES
   ============================================ */

.universes-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 540px;
  margin-top: -2.5rem;
  margin-bottom: 3rem;
}

.universe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: var(--c-border);
  border: 1px solid var(--c-border);
}

.universe {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 2.75rem 2.5rem 3rem;
  background-color: var(--c-bg);
  text-decoration: none;
  color: var(--c-fg);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.universe:hover {
  background-color: var(--c-fg);
  color: var(--c-bg);
}

.universe-num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: var(--c-muted);
}

.universe:hover .universe-num {
  color: var(--c-bg);
}

.universe-name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.universe-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--c-muted);
  max-width: 320px;
  margin-top: 0.35rem;
}

.universe:hover .universe-desc {
  color: rgba(245, 244, 239, 0.7);
}

/* ============================================
   WORK
   ============================================ */

.work-category {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--c-border);
}

.work-category:first-of-type {
  padding-top: 0;
}

.work-category:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.category-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 2rem;
}

.category-intro {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 620px;
  margin-bottom: 2rem;
}

.category-intro strong {
  color: var(--c-fg);
  font-weight: 500;
}

.category-note {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--c-muted);
  font-style: italic;
}

/* Work items list */

.work-items {
  list-style: none;
}

.work-items li {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1rem 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--c-border);
  align-items: baseline;
}

.work-items li:last-child {
  border-bottom: 1px solid var(--c-border);
}

.item-title {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.item-link {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--c-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.item-link:hover {
  color: var(--c-fg);
}

.item-desc {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.item-desc strong {
  color: var(--c-fg);
  font-weight: 500;
}

/* Tags (speaking) */

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.tags span {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background-color: var(--c-fg);
  color: var(--c-bg);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================
   ABOUT
   ============================================ */

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-body p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--c-dark-muted);
}

/* ============================================
   CONTACT
   ============================================ */

.contact-intro {
  font-size: 0.9375rem;
  color: var(--c-muted);
  margin-bottom: 1.75rem;
}

.contact-link {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--c-fg);
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.1em;
  transition: opacity 0.2s ease;
}

.contact-link:hover {
  opacity: 0.45;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  border-top: 1px solid var(--c-border);
  padding: 1.75rem 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--c-muted);
}

.footer a {
  text-decoration: none;
  color: var(--c-muted);
  transition: color 0.15s;
}

.footer a:hover {
  color: var(--c-fg);
}

/* ============================================
   RESPONSIVE — tablet
   ============================================ */

@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .nav {
    padding: 0 2rem;
  }

  .work-items li {
    grid-template-columns: 240px 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0 1.5rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  /* Hero stacks on mobile: photo first, text below */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    min-height: 115vw;
    background-position: center top;
    order: -1;
  }

  .hero-text {
    padding: 3.5rem 1.5rem 4rem;
    order: 1;
  }

  /* Stats: 2 columns */
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: none;
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-top: 1px solid var(--c-border);
  }

  .stat:nth-child(3) {
    border-right: 1px solid var(--c-border);
  }

  /* Sections */
  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  /* Work items: single column */
  .work-items li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  /* Universes: single column */
  .universe-grid {
    grid-template-columns: 1fr;
  }

  .universes-intro {
    margin-top: -1.5rem;
  }

  /* Footer */
  .footer .container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ============================================
   RESPONSIVE — mobile
   ============================================ */

@media (max-width: 480px) {
  :root {
    --nav-h: 60px;
  }

  .nav-links {
    display: none;
  }

  .nav {
    padding: 0 1.25rem;
  }

  .hero-text {
    padding: 3rem 1.25rem;
  }

  .stat {
    padding: 2rem 1.25rem;
  }

  .container {
    padding: 0 1.25rem;
  }
}
