@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Space+Mono:wght@400;700&display=swap');

/* ─────────────────────────────
   RESET
───────────────────────────── */

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

:root {
  --white: #ffffff;
  --black: #000000;
  --grey-100: #f7f7f7;
  --grey-200: #e5e5e5;
  --grey-400: #8a8a8a;
  --grey-600: #555555;

  --serif: 'Amatic SC', cursive;
  --mono: 'Space Mono', monospace;
  --sans: 'Space Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─────────────────────────────
   GLOBAL
───────────────────────────── */

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

a {
  color: inherit;
}

/* ─────────────────────────────
   NAVIGATION
───────────────────────────── */

nav,
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-200);
}

.nav,
.header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}

.logo,
.logo a,
.nav-logo {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--black);
}

.nav-links,
#menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a,
#menu a {
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-600);
  transition: opacity 0.3s ease;
}

.nav-links a:hover,
#menu a:hover {
  opacity: 0.5;
}

/* ─────────────────────────────
   HERO
───────────────────────────── */

.hero {
  width: 100%;
  min-height: 100vh;
  background-image: url('../images/exist-since-1991.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 85% center;
  background-color: transparent;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  text-align: center;
  font-family: var(--serif);
}

.hero-image {
  width: 100%;
  max-width: 1500px;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-banner {
  width: 100%;
  height: 40vh;
  min-height: 250px;
  background-image: url('../images/exist-since-1991.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ─────────────────────────────
   HOME
───────────────────────────── */

.recent-section {
  padding: 5rem 0 8rem;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--black);
  padding-bottom: 1rem;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.post-card {
  border-bottom: 1px solid var(--grey-200);
  padding-bottom: 2rem;
}

.post-card a {
  text-decoration: none;
  display: block;
}

.post-title {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.post-date {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 1rem;
}

.post-summary {
  font-family: var(--mono);
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--grey-600);
}

/* ─────────────────────────────
   SINGLE POST
───────────────────────────── */

.single-header {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.single-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  margin-bottom: 2rem;
}

.single-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-400);
}

.single-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem 8rem;
  font-family: var(--mono);
  font-size: 0.95rem;
  line-height: 2;
}

.single-content p {
  margin-bottom: 2rem;
}

.single-content h2,
.single-content h3 {
  font-family: var(--serif);
  line-height: 1.1;
  margin: 4rem 0 1.5rem;
}

.single-content h2 {
  font-size: 3rem;
}

.single-content h3 {
  font-size: 2rem;
}

.single-content blockquote {
  border-left: 2px solid var(--black);
  padding-left: 2rem;
  margin: 3rem 0;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.4;
}

.single-content img {
  width: 100%;
  margin: 3rem 0;
  display: block;
  filter: grayscale(100%);
}

.single-content a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ─────────────────────────────
   ARCHIVE
───────────────────────────── */

.page-archives {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 2rem;
}

.post-list {
  list-style: none;
}

.post-item {
  border-bottom: 1px solid var(--grey-200);
}

.post-link {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  text-decoration: none;
  padding: 1.5rem 0;
}

.post-info .post-title {
  font-size: 1.8rem;
}

/* ─────────────────────────────
   ABOUT STRIP
───────────────────────────── */

.about-strip {
  background: #0a0a0a;
  color: #f0f0f0;
  padding: 8rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
}

.about-name {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

.about-tagline {
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

.about-statement p {
  margin-bottom: 1.5rem;
  font-family: var(--mono);
  font-size: 0.9rem;
  line-height: 2;
}

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

.contact-item {
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  transition: opacity 0.3s ease;
}

.contact-item:hover {
  opacity: 0.5;
}

.contact-item .label {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
}

.contact-item .value {
  font-family: var(--mono);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* ─────────────────────────────
   FOOTER
───────────────────────────── */

footer {
  border-top: 1px solid var(--grey-200);
  padding: 2rem 0;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
}

.footer-copy {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--grey-400);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-400);
}

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */

@media (max-width: 1000px) {
  .post-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 700px) {

  .container,
  .footer-inner,
  .single-content,
  .single-header,
  .page-archives {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .hero {
    min-height: 70vh;
  }

  .post-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-heading {
    font-size: 3rem;
  }

  .single-title {
    font-size: 3rem;
  }

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

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .post-link {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-links,
  #menu {
    gap: 1rem;
  }

  .nav-links a,
  #menu a {
    font-size: 0.65rem;
  }
}h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
}

/* Removed duplicate hero size definitions – handled above */
.hero-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}