/* 72 Microseasons of New York — static rebuild
   Matched against screenshots of the live Squarespace site: black header/
   footer bars, full-bleed hero photo with a light overlay, two-column
   content blocks anchored inside the hero. */

:root {
  --text: #666666;
  --muted: #5a5a5a;
  --bg: #ffffff;
  --black: #000000;
  --overlay: rgba(255, 255, 255, 0.65);
  --max-width: 1400px;
  --content-width: 1000px;
  --font-body: "Poppins", "Century Gothic", "Futura", -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

body {
  line-height: 1.6;
  font-size: 23px;
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 10;
}

a { color: inherit; }

/* Header */
.site-header {
  background: var(--black);
  color: #fff;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-title {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 400;
}

.site-nav {
  display: flex;
  gap: 2rem;
  font-size: 1rem;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  padding-bottom: 2px;
}

.site-nav a.active {
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Eyebrow block (Artist Call deadline banner) */
.eyebrow-block {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem;
}

.eyebrow-block p {
  margin: 0;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Hero: full-bleed photo with overlay, two-column content */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 78vh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4.5rem 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hero-content.single-col {
  grid-template-columns: 1fr;
  max-width: var(--content-width);
}

.hero-content p { margin: 0 0 1.4rem; }
.hero-content p:last-child { margin-bottom: 0; }

.hero-link-line {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0.5rem 2.5rem 4rem;
}

.hero-link-line a {
  text-decoration: underline;
  font-size: 0.85rem;
}

/* Home page: bigger intro text, more faded photo */
body.home {
  --overlay: rgba(255, 255, 255, 0.8);
}

/* Home + Artist Call: same intro/body text size inside the hero */
body.home .hero-content p,
body.artist-call .hero-content p {
  font-size: 1.4rem;
  line-height: 1.55;
}

body.artist-call .hero-content h2 {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}

em { font-style: italic; }

/* Regular content sections below the hero */
.page-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4.5rem;
}

.page-content p { margin: 0 0 1.4rem; }

.page-content h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 2.5rem 0 1.2rem;
}

.link-line {
  text-align: center;
  font-size: 0.95rem;
  margin: 2rem 0;
}

.link-line a { text-decoration: underline; }

.ko-row {
  display: flex;
  gap: 3rem;
  margin: 2.5rem 0;
}

.ko-entry {
  text-align: left;
  flex: 1;
  margin: 0;
}

.ko-dates {
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.ko-japanese { margin-bottom: 0.2rem; }

.ko-translation { color: var(--muted); }

.button-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border: 1.5px solid var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  border-radius: 2px;
}

.btn:hover {
  background: var(--text);
  color: var(--bg);
}

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

.contact-block h3 {
  font-weight: 400;
  font-size: 1.1rem;
  margin: 0.4rem 0;
}

.contact-block h3 a { text-decoration: underline; }

/* Footer */
.site-footer {
  background: var(--black);
  color: #fff;
  padding: 1.75rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer p { margin: 0; font-size: 1rem; }

@media (max-width: 720px) {
  .hero-content { grid-template-columns: 1fr; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .eyebrow-block p { font-size: 1.4rem; }
  .ko-row { flex-direction: column; gap: 1.75rem; }
}
