/* =============================================================
   ARTUR POGHOSYAN — DESSERT DESIGNER
   Editorial fashion-magazine stylesheet
   Palette: Navy · Cream · Black · Gold (hairline accents only)
   ============================================================= */

:root {
  --navy:        #0A1628;
  --navy-deep:   #060E1B;
  --navy-soft:   #16243C;
  --cream:       #F7F3EC;
  --cream-warm:  #EFE8DA;
  --black:       #0A0A0A;
  --gold:        #B8945A;
  --gold-soft:   #D4B176;
  --rule:        rgba(247, 243, 236, 0.18);
  --rule-strong: rgba(247, 243, 236, 0.45);
  --rule-dark:   rgba(10, 22, 40, 0.18);

  --f-display:   'Italiana', 'Cormorant Garamond', serif;
  --f-body:      'Cormorant Garamond', Georgia, serif;
  --f-label:     'Jost', 'Helvetica Neue', sans-serif;

  --maxw: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* Subtle film grain — adds atmosphere without weight */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.4) 0.5px, transparent 1px),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,0.3) 0.5px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2) 0.5px, transparent 1px);
  background-size: 3px 3px, 5px 5px, 7px 7px;
  mix-blend-mode: overlay;
}

/* =============================================================
   MASTHEAD / NAV
   ============================================================= */
.masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--rule);
}

.logo-mark {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: 0.18em;
  color: var(--cream);
}
.logo-mark::after {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
  transform: translateY(-2px);
}

.masthead nav {
  display: flex;
  gap: 38px;
  font-family: var(--f-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.masthead nav a {
  position: relative;
  padding-bottom: 4px;
  color: var(--cream);
  transition: color 0.3s ease;
}
.masthead nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.masthead nav a:hover { color: var(--gold-soft); }
.masthead nav a:hover::after { width: 100%; }

/* =============================================================
   HERO — magazine-cover composition
   ============================================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 32px 80px;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(184, 148, 90, 0.08), transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(184, 148, 90, 0.06), transparent 50%),
    var(--navy);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.hero.is-visible { opacity: 1; transform: none; }

/* Decorative gold corner brackets */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 60px; height: 60px;
  border: 1px solid var(--gold);
  opacity: 0.45;
}
.hero::before { top: 100px; left: 48px; border-right: none; border-bottom: none; }
.hero::after  { bottom: 48px; right: 48px; border-left: none; border-top: none; }

.hero-issue {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 60px;
  animation: fadeUp 1.2s ease 0.3s both;
}
.hero-issue-divider {
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 50px;
}
.hero-name-line {
  display: block;
  animation: fadeUp 1.4s ease 0.5s both;
}
.hero-name-line:nth-child(2) {
  font-style: italic;
  color: var(--cream-warm);
  animation-delay: 0.7s;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  animation: fadeUp 1.2s ease 0.95s both;
}
.hero-rule {
  width: 80px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.hero-role {
  font-family: var(--f-label);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream);
}

.hero-tagline {
  max-width: 620px;
  font-family: var(--f-body);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(247, 243, 236, 0.78);
  animation: fadeUp 1.2s ease 1.15s both;
}
.hero-tagline em {
  color: var(--gold-soft);
  font-style: italic;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.6;
  animation: fadeUp 1.2s ease 1.4s both;
  transition: opacity 0.3s ease;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* =============================================================
   CHAPTER SECTIONS — shared
   ============================================================= */
.chapter {
  padding: 140px 48px;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.chapter.is-visible { opacity: 1; transform: none; }

/* Inverted (cream background) sections — break up the navy */
.chapter--inverted {
  max-width: none;
  margin: 0;
  padding: 140px 48px;
  background: var(--cream);
  color: var(--navy);
}
.chapter--inverted .chapter-num,
.chapter--inverted .chapter-title { color: var(--navy); }
.chapter--inverted .chapter-num::before { background: var(--gold); }

.chapter-head {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.chapter--inverted .chapter-head { border-bottom-color: var(--rule-dark); }

.chapter-num {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  position: relative;
  padding-left: 36px;
}
.chapter-num::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--gold);
}

.chapter-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.005em;
  color: var(--cream);
}

.chapter-lede {
  max-width: 620px;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 64px;
  opacity: 0.85;
}

/* =============================================================
   I. MANIFESTO
   ============================================================= */
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  align-items: start;
}
.manifesto-lede {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}
.manifesto-lede em {
  font-style: italic;
  color: var(--gold-soft);
}
.manifesto-body p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 22px;
  color: rgba(247, 243, 236, 0.82);
}
.manifesto-body strong {
  color: var(--cream);
  font-weight: 500;
  font-style: italic;
}

/* =============================================================
   II. ATELIER (CAFÉ)
   ============================================================= */
.cafe-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.cafe-eyebrow {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.cafe-headline {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--navy);
}
.cafe-feature p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 18px;
  color: rgba(10, 22, 40, 0.78);
}

.cafe-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 16px;
}
.cafe-img {
  position: relative;
  overflow: hidden;
}
.cafe-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.cafe-img:hover img { transform: scale(1.04); }
.cafe-img--01 { grid-row: 1 / 2; }
.cafe-img--02 { grid-row: 1 / 2; transform: translateY(40px); }
.cafe-img--03 { grid-row: 2 / 3; transform: translateY(40px); }
.cafe-img--04 { grid-row: 2 / 3; transform: translateY(80px); }

.cafe-img figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(10, 22, 40, 0.72);
  padding: 6px 10px;
  backdrop-filter: blur(6px);
}

/* Placeholder treatment — until real images are added */
.placeholder {
  width: 100%; height: 100%;
  background:
    linear-gradient(135deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}
.placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(184, 148, 90, 0.18), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(184, 148, 90, 0.08), transparent 50%);
}
.placeholder::after {
  content: "IMAGE";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(247, 243, 236, 0.25);
}

/* =============================================================
   III. WORKS
   ============================================================= */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.work {
  display: flex;
  flex-direction: column;
}
.work-img {
  aspect-ratio: 3 / 4;
  margin-bottom: 18px;
  overflow: hidden;
  background: var(--navy-soft);
}
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease, filter 0.5s ease;
  filter: saturate(0.92);
}
.work:hover .work-img img {
  transform: scale(1.05);
  filter: saturate(1.05);
}
.placeholder--tall {
  aspect-ratio: 3 / 4;
  margin-bottom: 18px;
}
.work h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
}
.work-meta {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* =============================================================
   IV. WRITING
   ============================================================= */
.essays {
  display: grid;
  gap: 0;
  margin-bottom: 56px;
}
.essay {
  padding: 32px 0;
  border-top: 1px solid var(--rule-dark);
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  gap: 32px;
  align-items: baseline;
  transition: padding 0.3s ease;
}
.essay:last-child { border-bottom: 1px solid var(--rule-dark); }
.essay:hover { padding-left: 12px; }

.essay-date {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.essay-title {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 8px;
}
.essay-title a { transition: color 0.3s ease; }
.essay-title a:hover { color: var(--gold); }
.essay-excerpt {
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(10, 22, 40, 0.7);
}
.essay-source {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: right;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  transition: gap 0.3s ease;
}
.link-arrow:hover { gap: 20px; }

/* =============================================================
   V. RESEARCH
   ============================================================= */
.papers {
  list-style: none;
  margin-bottom: 56px;
}
.paper {
  padding: 28px 0;
  border-top: 1px solid var(--rule);
}
.paper:last-child { border-bottom: 1px solid var(--rule); }

.paper-cite {
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 12px;
}
.paper-cite em {
  font-style: italic;
  color: var(--cream);
}
.paper-venue {
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-left: 8px;
}
.paper-links {
  display: flex;
  gap: 24px;
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.paper-links a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}
.paper-links a:hover { border-bottom-color: var(--gold); }

.research-ids {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.research-ids a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.research-ids a:hover { opacity: 1; color: var(--gold-soft); }

.orcid-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--f-display);
  font-size: 12px;
  font-style: italic;
}

/* =============================================================
   VI. PRESS
   ============================================================= */
.press-list {
  list-style: none;
  display: grid;
  gap: 0;
}
.press-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  align-items: baseline;
  padding: 28px 0;
  border-top: 1px solid var(--rule-dark);
  transition: padding 0.3s ease;
}
.press-item:last-child { border-bottom: 1px solid var(--rule-dark); }
.press-item:hover { padding-left: 12px; }

.press-outlet {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.press-headline {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--navy);
}
.press-link {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

/* =============================================================
   VII. CONTACT
   ============================================================= */
.chapter--contact { padding-top: 140px; padding-bottom: 80px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.contact-eyebrow {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.contact-line {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 14px;
  color: rgba(247, 243, 236, 0.85);
}
.contact-email {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--gold-soft);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.contact-email:hover { color: var(--cream); }

.socials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.socials a {
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-block;
  position: relative;
  padding-left: 22px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.socials a::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 12px; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.socials a:hover { color: var(--gold-soft); padding-left: 28px; }
.socials a:hover::before { width: 18px; }

/* =============================================================
   FOOTER
   ============================================================= */
.colophon {
  padding: 48px;
  text-align: center;
  border-top: 1px solid var(--rule);
  background: var(--navy-deep);
  position: relative;
  z-index: 2;
}
.colophon-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.6);
  margin-bottom: 12px;
}
.colophon-mark { color: var(--gold); }
.colophon-note {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  color: rgba(247, 243, 236, 0.45);
}

/* =============================================================
   PRESS SECTION — sub-headers + Instagram grid
   ============================================================= */
.press-subhead {
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-dark);
}
.press-subhead--ig {
  margin-top: 80px;
}
.press-sublede {
  font-size: 17px;
  font-style: italic;
  color: rgba(10, 22, 40, 0.65);
  margin-bottom: 36px;
  margin-top: -14px;
}

/* Instagram grid — replaces blank thumbnails with intentional cards */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ig-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-warm);
  border: 1px solid rgba(10, 22, 40, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.ig-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 12px 28px -16px rgba(10, 22, 40, 0.25);
}
.ig-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(184, 148, 90, 0.14), transparent 60%),
    linear-gradient(135deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ig-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.ig-card:hover .ig-thumb img { transform: scale(1.06); }
.ig-thumb::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(184, 148, 90, 0.55);
  pointer-events: none;
  z-index: 2;
}
.ig-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-family: var(--f-label);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(10, 22, 40, 0.78);
  backdrop-filter: blur(6px);
  padding: 5px 9px;
  border: 1px solid var(--gold);
}
.ig-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-family: var(--f-label);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
}
.ig-arrow {
  color: var(--gold);
  font-size: 14px;
  transition: transform 0.3s ease;
}
.ig-card:hover .ig-arrow {
  transform: translate(3px, -3px);
}

/* Contact handle */
.contact-handle {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.3s ease;
}
.contact-handle:hover { color: var(--cream); }

/* =============================================================
   RESPONSIVE — TABLET
   ============================================================= */
@media (max-width: 960px) {
  .masthead { padding: 18px 24px; }
  .masthead nav { gap: 22px; font-size: 10px; letter-spacing: 0.18em; }
  .chapter, .chapter--inverted { padding: 100px 28px; }
  .hero::before, .hero::after { width: 36px; height: 36px; }
  .hero::before { top: 80px; left: 24px; }
  .hero::after  { bottom: 28px; right: 24px; }
  .manifesto-grid, .cafe-grid { grid-template-columns: 1fr; gap: 48px; }
  .cafe-gallery { grid-template-rows: 220px 180px; }
  .cafe-img--02, .cafe-img--03, .cafe-img--04 { transform: none; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .essay { grid-template-columns: 80px 1fr; }
  .essay-source { grid-column: 2; text-align: left; }
  .press-item { grid-template-columns: 1fr; gap: 8px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* =============================================================
   RESPONSIVE — MOBILE
   ============================================================= */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .masthead {
    flex-direction: column;
    gap: 14px;
    padding: 14px 18px;
  }
  .masthead nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 9px;
    letter-spacing: 0.16em;
  }
  .hero { padding: 180px 20px 100px; }
  .hero-issue {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 36px;
  }
  .hero-issue-divider { width: 18px; }
  .hero-tagline { font-size: 17px; }
  .chapter, .chapter--inverted { padding: 80px 20px; }
  .chapter-head { gap: 16px; flex-wrap: wrap; }
  .chapter-num { padding-left: 28px; font-size: 22px; }
  .chapter-num::before { width: 18px; }
  .chapter-lede { font-size: 18px; margin-bottom: 40px; }
  .manifesto-lede { font-size: 28px; }
  .works-grid { grid-template-columns: 1fr; }
  .essay { grid-template-columns: 1fr; gap: 8px; }
  .essay-title { font-size: 22px; }
  .cafe-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(4, 220px); }
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .press-subhead--ig { margin-top: 56px; }
  .colophon-row { flex-direction: column; gap: 6px; }
}
