:root {
  --navy: #061a33;
  --navy-2: #0a2748;
  --ink: #071b34;
  --paper: #f5f2ea;
  --line: rgba(7, 27, 52, 0.16);
  --muted: #68778a;
  --white: #fffdf8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2 { font-family: "Fraunces", Georgia, serif; font-weight: 400; line-height: 1.08; }

.site-header {
  height: 90px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand img {
  width: 255px;
  height: 66px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.site-header nav { display: flex; align-items: center; gap: 30px; font-size: .88rem; }
.site-header nav a { opacity: .78; transition: opacity .2s; }
.site-header nav a:hover { opacity: 1; }
.site-header .nav-contact { opacity: 1; border: 1px solid rgba(255,255,255,.55); border-radius: 10px; padding: 10px 18px; }
.menu-toggle { display: none; border: 1px solid rgba(255,255,255,.45); border-radius: 10px; background: transparent; color: inherit; padding: 8px 12px; }

.article-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 145px) clamp(24px, 8vw, 132px) clamp(72px, 9vw, 122px);
  background: var(--navy);
  color: var(--white);
}
.article-hero::after {
  content: "FP";
  position: absolute;
  right: -0.04em;
  bottom: -0.27em;
  color: transparent;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(15rem, 32vw, 34rem);
  line-height: .8;
  -webkit-text-stroke: 1px rgba(255,255,255,.045);
  pointer-events: none;
}
.article-hero-inner { position: relative; z-index: 1; max-width: 1120px; }
.breadcrumb {
  display: inline-block;
  margin-bottom: 52px;
  color: rgba(255,255,255,.58);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.article-category {
  margin: 0 0 24px;
  color: #d8ccb8;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.article-hero h1 {
  max-width: 1050px;
  margin: 0 0 30px;
  font-size: clamp(3rem, 6.5vw, 6.6rem);
  letter-spacing: -.045em;
}
.article-deck {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(220px, 310px) minmax(0, 760px);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 125px) 24px;
}
.article-aside { position: sticky; top: 38px; }
.author-frame {
  width: 112px;
  aspect-ratio: 4 / 5;
  margin-bottom: 26px;
  border: 1px solid rgba(7,27,52,.3);
  border-radius: 14px;
  background: rgba(255,255,255,.16);
  overflow: hidden;
}
.author-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(.78) contrast(1.03);
}
.author-label, .article-date {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.author-card h2 {
  margin: 8px 0 15px;
  font-size: 2rem;
}
.author-card p { margin: 0 0 9px; color: #536378; font-size: .86rem; line-height: 1.6; }
.author-link {
  display: inline-block;
  margin-top: 12px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.article-date { display: block; margin-top: 27px; padding-top: 22px; border-top: 1px solid var(--line); }

.article-body { font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; color: #24364a; }
.article-body .lead {
  margin: 0 0 48px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.35;
}
.article-body h2 {
  margin: 70px 0 22px;
  color: var(--ink);
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  letter-spacing: -.025em;
}
.article-body p { margin: 0 0 25px; }
.article-body blockquote {
  margin: 48px 0;
  padding: 24px 0 24px 30px;
  border-left: 2px solid var(--navy);
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.4;
}
.article-note {
  margin-top: 65px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: .82rem;
}
.article-return {
  display: inline-block;
  margin-top: 48px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.article-footer {
  padding: 46px clamp(24px, 7vw, 112px);
  background: #031225;
  color: rgba(255,255,255,.58);
  font-size: .78rem;
}
.article-footer-inner { display: flex; justify-content: space-between; gap: 25px; align-items: center; }
.article-footer img { width: 215px; filter: brightness(0) invert(1); }

@media (max-width: 850px) {
  .site-header { height: 76px; }
  .brand img { width: 205px; height: 54px; }
  .menu-toggle { display: block; z-index: 2; }
  .site-header nav { display: none; position: fixed; inset: 0; z-index: 1; padding: 110px 28px 50px; background: var(--navy); flex-direction: column; align-items: flex-start; font-size: 1.25rem; }
  .site-header nav.open { display: flex; }
  .article-shell { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .author-card { display: grid; grid-template-columns: 95px 1fr; gap: 24px; align-items: start; }
  .author-frame { width: 95px; grid-row: 1 / span 2; margin: 0; }
  .author-copy { min-width: 0; }
  .article-date { grid-column: 2; margin-top: 5px; }
}

@media (max-width: 560px) {
  .article-hero { padding: 65px 22px 72px; }
  .breadcrumb { margin-bottom: 38px; }
  .article-hero h1 { font-size: 3.15rem; }
  .article-shell { padding: 68px 22px; gap: 58px; }
  .author-card { grid-template-columns: 78px 1fr; gap: 19px; }
  .author-frame { width: 78px; }
  .author-card h2 { font-size: 1.65rem; }
  .article-body { font-size: 1.02rem; }
  .article-body h2 { margin-top: 55px; }
  .article-body blockquote { padding-left: 20px; font-size: 1.35rem; }
  .article-footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
