:root {
  --coral: #d4654a;
  --coral-soft: #e89479;
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --line: #e5e1da;
  --paper: #fbf8f3;
  --paper-warm: #f3eee4;
  --navy: #1f3a5f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.display {
  font-family: "Fraunces", serif;
}
em,
.em {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
  margin-top: 8rem;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}
.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--coral);
}
.nav-cta {
  padding: 10px 22px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.nav-cta:hover {
  background: var(--coral);
  transform: translateY(-1px);
}

@media (max-width: 880px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
}

/* BREADCRUMB */
.breadcrumb {
  padding: 32px 0 0;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--coral);
}
.breadcrumb .sep {
  margin: 0 10px;
  color: var(--line);
}

/* HERO / ARTICLE HEADER */
.article-header {
  padding: 48px 0 56px;
}
.article-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--coral);
  border-radius: 100px;
}
.article-headline {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 5.6vw, 64px);
  line-height: 1.05;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.article-headline em {
  color: var(--coral);
  font-weight: 400;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.article-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.article-meta-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-meta-value {
  color: var(--ink);
  font-weight: 600;
}

/* HERO IMAGE BLOCK */
.hero-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper-warm);
  margin-bottom: 64px;
}
.hero-image-wrap {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-image-decor {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--coral);
  border-left: 2px solid var(--coral);
  pointer-events: none;
}
.hero-image-decor-2 {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid var(--coral);
  border-right: 2px solid var(--coral);
  pointer-events: none;
}
.hero-caption-block {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-caption-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-caption-name {
  font-family: "Fraunces", serif;
  font-size: 38px;
  line-height: 1.1;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.hero-caption-role {
  font-size: 16px;
  color: var(--ink-soft);
  font-style: italic;
  font-family: "Fraunces", serif;
  margin-bottom: 28px;
}
.hero-caption-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-tag {
  font-size: 12px;
  padding: 6px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

@media (max-width: 880px) {
  .hero-block {
    grid-template-columns: 1fr;
  }
  .hero-image-wrap {
    min-height: 380px;
  }
  .hero-caption-block {
    padding: 40px 32px;
  }
  .hero-caption-name {
    font-size: 30px;
  }
}

/* ARTICLE BODY */
.article-body {
  padding: 0 0 80px;
}
.article-body p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.lead-para {
  font-size: 22px !important;
  line-height: 1.55 !important;
  color: var(--ink) !important;
  font-weight: 500;
}
.lead-para .strong {
  color: var(--ink);
  font-weight: 700;
}
.dateline {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--coral);
  font-weight: 500;
}

/* PULL QUOTE */
.pullquote {
  margin: 56px 0;
  padding: 48px 56px;
  background: var(--paper-warm);
  border-left: 4px solid var(--coral);
  position: relative;
}
.pullquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 32px;
  font-family: "Fraunces", serif;
  font-size: 120px;
  line-height: 1;
  color: var(--coral);
  opacity: 0.25;
  font-weight: 700;
}
.pullquote-text {
  font-family: "Fraunces", serif;
  font-size: 26px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.pullquote-attrib {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pullquote-bar {
  width: 32px;
  height: 2px;
  background: var(--coral);
}
.pullquote-name {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.pullquote-role {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 2px;
}

.pullquote-alt {
  background: var(--ink);
  border-left-color: var(--coral);
}
.pullquote-alt::before {
  color: var(--coral);
  opacity: 0.4;
}
.pullquote-alt .pullquote-text {
  color: var(--paper);
}
.pullquote-alt .pullquote-name {
  color: var(--paper);
}
.pullquote-alt .pullquote-role {
  color: var(--coral-soft);
}

@media (max-width: 720px) {
  .pullquote {
    padding: 36px 28px;
    margin: 40px 0;
  }
  .pullquote-text {
    font-size: 21px;
  }
  .pullquote::before {
    font-size: 80px;
    top: -10px;
    left: 16px;
  }
}

/* DIVIDER */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 56px 0 32px;
}
.section-divider-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.section-divider-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
}

/* ABOUT SECTION */
.about-section {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
  margin-top: 32px;
}
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.about-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 16px;
}
.about-title {
  font-family: "Fraunces", serif;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.about-title em {
  color: var(--coral-soft);
  font-style: italic;
}
.about-body p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(251, 248, 243, 0.82);
  margin-bottom: 20px;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(251, 248, 243, 0.15);
}
.pillar-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--coral);
  margin-bottom: 8px;
}
.pillar-name {
  font-family: "Fraunces", serif;
  font-size: 18px;
  color: var(--paper);
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 880px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-pillars {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* MEDIA CONTACT */
.media-contact {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.media-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 12px;
}
.media-title {
  font-family: "Fraunces", serif;
  font-size: 28px;
  color: var(--ink);
  font-weight: 500;
}
.media-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}
.media-details strong {
  color: var(--ink);
  font-weight: 600;
}
.media-details a {
  color: var(--coral);
  text-decoration: none;
}
.media-details a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
.footer {
  background: var(--paper-warm);
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid var(--line);
}
.footer p {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.footer-end {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--coral);
  margin-bottom: 4px;
  font-size: 16px;
}

/* PRINT */
@media print {
  .nav,
  .footer {
    display: none;
  }
  .hero-block {
    background: white;
  }
  .about-section {
    background: white;
    color: black;
  }
  .about-body p,
  .about-title {
    color: black;
  }
}
