/* ==============================================
   CUSTOM PROPERTIES
   ============================================== */
:root {
  --bg:           #1a1612;
  --bg-elevated:  #211d18;
  --bg-card:      #1e1a15;
  --gold:         #c9a84c;
  --gold-light:   #dfc06e;
  --gold-dim:     #7a6428;
  --gold-faint:   rgba(201, 168, 76, 0.12);
  --olive:        #6b7c4a;
  --olive-light:  #8fa060;
  --ivory:        #ede5d5;
  --ivory-dim:    #a89f8e;
  --text:         #cec5b5;
  --text-muted:   #7a7060;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'EB Garamond', Georgia, serif;

  --nav-h:        72px;
  --max-w:        960px;
  --section-gap:  8rem;

  --ease-slow:    cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

/* ==============================================
   NAVIGATION
   ============================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, padding 0.4s ease;
}

.nav.scrolled {
  background: rgba(26, 22, 18, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav__monogram {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav__monogram:hover {
  color: var(--gold-light);
}

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

.nav__links a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__links a:hover::after {
  width: 100%;
}

/* Hamburger — shown only on mobile */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 260px;
  background: var(--bg-elevated);
  z-index: 190;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-slow);
  border-left: 1px solid var(--gold-faint);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
}

.mobile-nav li {
  margin: 1.5rem 0;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* The mask photograph — atmospheric background */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('alina-chernovolova-E9AkPDoxYSk-unsplash.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.65) saturate(0.85) sepia(0.1);
  animation: bgReveal 3s ease both;
}

@keyframes bgReveal {
  from { opacity: 0; }
  to   { opacity: 0.22; }
}

/* Vignette overlay — text emerges from darkness */
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 90% at center,
    rgba(26, 22, 18, 0.3)  0%,
    rgba(26, 22, 18, 0.65) 45%,
    rgba(26, 22, 18, 0.92) 70%,
    #1a1612                100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  animation: heroReveal 2.8s ease 0.2s both;
}

.hero__pronouns {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.75rem;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9vw, 7.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--ivory);
  margin-bottom: 2rem;
  animation: candleGlow 5s ease-in-out 3.5s infinite;
}

/* The ornamental rule between name and descriptor */
.hero__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.hero__rule-line {
  width: 60px;
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.6;
}

.hero__rule-diamond {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero__descriptor {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

/* Scroll indicator — a pulsing vertical line */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-decoration: none;
  animation: scrollPulse 2.8s ease-in-out 3s infinite;
}

.hero__scroll-track {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  margin: 0 auto;
}

/* ==============================================
   SHARED SECTION ELEMENTS
   ============================================== */
.section {
  padding: var(--section-gap) 2rem;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Ornamental divider */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 3.5rem;
  max-width: 180px;
}

.ornament__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  opacity: 0.5;
}

.ornament__gem {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Section label */
.section-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 3rem;
}

/* ==============================================
   BIO
   ============================================== */
.bio.section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.bio__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Photo */
.bio__photo-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.bio__photo-frame::before {
  content: '';
  position: absolute;
  inset: -8px -6px;
  border: 1px solid var(--gold-dim);
  opacity: 0.35;
  pointer-events: none;
}

.bio__photo {
  width: 100%;
  height: auto;
  filter: brightness(0.9) contrast(1.05);
  display: block;
}

/* Bio text */
.bio__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.4rem;
}

.bio__text em {
  color: var(--ivory);
  font-style: italic;
}

.bio__contact-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.bio__contact-link::after {
  content: '';
  display: block;
  height: 1px;
  width: 0;
  background: var(--gold);
  margin-top: 2px;
  transition: width 0.4s ease;
}

.bio__contact-link:hover {
  color: var(--gold-light);
}

.bio__contact-link:hover::after {
  width: 100%;
}

/* ==============================================
   WORKS PREVIEW
   ============================================== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 0;
}

.work-card {
  display: block;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(201, 168, 76, 0.14);
  background: var(--bg-card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.work-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
}

.work-card__type {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 1rem;
}

.work-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ivory);
  margin-bottom: 0.875rem;
}

.work-card__desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.work-card__note {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ivory-dim);
}

/* ==============================================
   BUTTONS
   ============================================== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn--outline {
  display: inline-block;
  padding: 0.9rem 2.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  background: transparent;
}

.btn--outline:hover {
  background: var(--gold-faint);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Two-button CTA row under the works grid */
.works-ctas {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  margin-top: 2rem;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
}

.footer__nav {
  display: flex;
  gap: 2rem;
}

.footer__nav a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==============================================
   SCROLL REVEAL ANIMATIONS
   ============================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.18s; }
.reveal--delay-2 { transition-delay: 0.36s; }

/* ==============================================
   KEYFRAMES
   ============================================== */
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle candlelight shimmer on the hero name */
@keyframes candleGlow {
  0%, 100% { opacity: 0.97; }
  20%       { opacity: 1;    }
  55%       { opacity: 0.95; }
  75%       { opacity: 0.99; }
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.35;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-50%) translateY(7px);
  }
}

/* ==============================================
   INNER PAGE HEADER
   ============================================== */
.page-header {
  padding: calc(var(--nav-h) + 5rem) 2rem 4rem;
  text-align: center;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  animation: heroReveal 1.8s ease 0.1s both;
}

.page-header__sub {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1.5rem;
  animation: heroReveal 1.8s ease 0.3s both;
}

/* ==============================================
   STORY GRID — FICTION PAGE
   ============================================== */
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.story-card {
  border: 1px solid rgba(201, 168, 76, 0.13);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.story-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.story-card__cover-link {
  display: block;
}

.story-card__cover-wrap {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--bg-elevated);
}

.story-card__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) contrast(1.05);
  transition: transform 0.7s ease, filter 0.4s ease;
}

.story-card:hover .story-card__cover {
  transform: scale(1.04);
  filter: brightness(1) contrast(1.05);
}

.story-card__body {
  padding: 1.75rem;
}

.story-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.story-card__anthology {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.story-card__anthology:hover {
  color: var(--gold-light);
}

.story-card__blurb {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

.story-card__badge {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-light);
  border: 1px solid var(--olive);
  padding: 0.25rem 0.65rem;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}

a.story-card__badge,
a.story-card__badge:hover {
  text-decoration: none;
}

a.story-card__badge:hover {
  color: var(--olive-light);
  border-color: var(--olive-light);
}

/* ==============================================
   MICRO FICTION / STITCHES PAGE
   ============================================== */
.stitches-intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.stitches-header-img {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  display: block;
  opacity: 0.88;
}

.stitches-tagline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ivory-dim);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.stitches-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 2rem;
}

.story-sample {
  max-width: 640px;
  margin: 3.5rem auto;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: var(--bg-card);
  border-left: 3px solid var(--gold-dim);
}

.story-sample__label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 0.75rem;
  display: block;
}

.story-sample__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 1.25rem;
}

.story-sample__text {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text);
}

.story-sample__text p {
  margin-bottom: 0.9rem;
}

.story-sample__text p:last-child {
  margin-bottom: 0;
}

/* ==============================================
   POETRY PAGE
   ============================================== */
.poetry-feature {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 5rem;
}

.poetry-cover-wrap {
  position: relative;
}

.poetry-cover-wrap::before {
  content: '';
  position: absolute;
  inset: -8px -6px;
  border: 1px solid var(--gold-dim);
  opacity: 0.3;
  pointer-events: none;
}

.poetry-cover {
  width: 100%;
  display: block;
  filter: brightness(0.92) contrast(1.04);
}

.poetry-body__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--olive-light);
  display: block;
  margin-bottom: 0.75rem;
}

.poetry-body__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.poetry-body__note {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.poetry-body__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.poetry-excerpt {
  margin: 1.75rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--gold-dim);
  background: rgba(201, 168, 76, 0.04);
}

.poetry-excerpt__lines {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.poetry-excerpt__attr {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
}

.poetry-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
  margin-top: 0.5rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.poetry-link:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

/* Secondary poetry item (no cover) */
.poetry-secondary {
  padding: 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.13);
  background: var(--bg-card);
}

.poetry-secondary__label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--olive-light);
  display: block;
  margin-bottom: 0.75rem;
}

.poetry-secondary__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.poetry-secondary__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.25rem;
}

/* ==============================================
   WIP PAGE
   ============================================== */
.wip-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.wip-card {
  padding: 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: var(--bg-card);
}

.wip-card__genre {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 0.75rem;
}

.wip-card__header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.wip-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.15;
}

.wip-card__wordcount {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-muted);
  white-space: nowrap;
}

.wip-card__pitch {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1rem;
}

.wip-card__pitch + .wip-card__pitch {
  margin-top: -0.25rem;
}

.wip-card__request {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--gold-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.wip-card__request:hover {
  color: var(--gold);
}

/* ==============================================
   CONTACT PAGE
   ============================================== */
.contact-intro {
  max-width: 560px;
  margin: 0 auto 3.5rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}

.contact-email-link {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email-link:hover {
  color: var(--gold-light);
}

.form {
  max-width: 620px;
  margin: 0 auto;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__field {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 0.5rem;
}

.form__input,
.form__textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid rgba(201, 168, 76, 0.18);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--gold);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

.form__textarea {
  resize: vertical;
  min-height: 180px;
  line-height: 1.7;
}

.form__submit {
  width: 100%;
  padding: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold-dim);
  cursor: pointer;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.form__submit:hover {
  background: var(--gold-faint);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ==============================================
   IMPRESSUM PAGE
   ============================================== */
.impressum-content {
  max-width: 540px;
  margin: 0 auto;
}

.impressum-content h2 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  margin-top: 2.5rem;
}

.impressum-content h2:first-child {
  margin-top: 0;
}

.impressum-content p,
.impressum-content address {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  font-style: normal;
  margin-bottom: 0.25rem;
}

.impressum-content a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.impressum-content a:hover {
  color: var(--gold-light);
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 820px) {
  :root {
    --section-gap: 5.5rem;
  }

  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .bio__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bio__photo-col {
    max-width: 240px;
    margin: 0 auto;
  }

  .bio__text-col {
    text-align: left;
  }

  .works-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .story-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

  .poetry-cover-wrap {
    max-width: 220px;
  }

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

  .nav__links {
    gap: 1.5rem;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
  }
}

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

  .section {
    padding: var(--section-gap) 1.25rem;
  }

  .hero__descriptor {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  .page-header {
    padding: calc(var(--nav-h) + 3rem) 1.25rem 2.5rem;
  }

  .wip-card {
    padding: 1.5rem;
  }

  .wip-card__header {
    flex-direction: column;
    gap: 0.35rem;
  }

  .wip-card__wordcount {
    white-space: normal;
  }

  .story-card__body {
    padding: 1.25rem;
  }

  .poetry-secondary {
    padding: 1.5rem;
  }

  .story-sample {
    padding: 1.5rem;
  }

  .works-ctas {
    flex-direction: column;
    align-items: center;
  }
}
