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

:root {
  --color-bg: #f5f0eb;
  --color-dark: #0f1923;
  --color-text: #1c1c1c;
  --color-text-light: #6b6560;
  --color-accent: #b5532e;
  --color-accent-hover: #d4623a;
  --color-border: #d9d2c9;
  --color-section-alt: #ece6df;
  --color-warm-mid: #e8e0d6;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 920px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-accent-hover);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== Navigation ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 25, 35, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.02em;
}

.nav-logo:hover {
  color: var(--color-accent-hover);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.2s;
}

/* ===== Hero ===== */
.hero {
  background: var(--color-dark);
  color: #fff;
  padding: 100px 0 88px;
}

.hero-label {
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-name em {
  font-style: italic;
  font-weight: 400;
}

.hero-title {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

/* ===== Sections ===== */
.section {
  padding: 96px 0;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

/* ===== About ===== */
.about {
  border-bottom: 1px solid var(--color-border);
}

.about-content {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

.about-photo {
  min-width: 0;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  filter: grayscale(15%);
}

.about-text {
  padding-top: 4px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--color-text);
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ===== Work List ===== */
.written-work {
  background: var(--color-dark);
  color: #fff;
}

.written-work .section-heading {
  color: rgba(255, 255, 255, 0.35);
}

.work-list {
  display: flex;
  flex-direction: column;
}

.work-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.2s ease;
}

.written-work .work-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.work-item:hover {
  color: var(--color-accent-hover);
  padding-left: 12px;
}

.work-item-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  flex: 1;
}

.work-item-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 2px;
}

.work-item-publication {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}

.work-item-date {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
}

/* ===== Audio ===== */
.audio {
  border-bottom: 1px solid var(--color-border);
}

.audio .work-item {
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.audio .work-item:first-child {
  border-top: 1px solid var(--color-border);
}

.audio .work-item:hover {
  color: var(--color-accent);
}

.audio .work-item-publication {
  color: var(--color-text-light);
}

.audio .work-item-date {
  color: var(--color-text-light);
}

/* ===== Events ===== */
.events {
  background: var(--color-section-alt);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.event-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.event-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.event-date-block time {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.event-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.35;
}

.event-venue {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.event-description {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.65;
  margin-bottom: 10px;
}

.event-link {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== Contact ===== */
.contact {
  background: var(--color-dark);
  color: #fff;
  padding: 96px 0;
}

.contact .section-heading {
  color: rgba(255, 255, 255, 0.35);
}

.contact .contact-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  line-height: 1.85;
  max-width: 560px;
}

.contact .contact-text:last-child {
  margin-bottom: 0;
}

.contact .contact-text a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}

.contact .contact-text a:hover {
  border-color: var(--color-accent-hover);
  color: var(--color-accent-hover);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-dark);
  padding: 24px 0;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.04em;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: var(--color-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    padding: 24px 40px;
    gap: 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding: 64px 0 56px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-photo img {
    max-width: 180px;
  }

  .container {
    padding: 0 28px;
  }

  .section {
    padding: 64px 0;
  }

  .contact {
    padding: 64px 0;
  }

  .work-item {
    flex-direction: column;
    gap: 4px;
  }

  .work-item-meta {
    align-items: flex-start;
    flex-direction: row;
    gap: 12px;
  }

  .event-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
