
:root {
  --paper: #f5f0e7;
  --paper-deep: #ebe2d3;
  --ink: #211f1d;
  --muted: #6f6962;
  --wine: #6f2032;
  --wine-dark: #4e1422;
  --brass: #9a733c;
  --line: rgba(33, 31, 29, .15);
  --card: rgba(255,255,255,.47);
  --shadow: 0 18px 48px rgba(50, 38, 30, .09);
  --radius: 20px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
a:hover { color: var(--wine); }
button, a { -webkit-tap-highlight-color: transparent; }

.site-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 40px)); margin: 0 auto; }

.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--ink); color: white; padding: 8px 12px; z-index: 100;
}
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(245, 240, 231, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 72px; display: flex; align-items: center; justify-content: space-between;
  gap: 28px;
}
.brand {
  font-family: var(--serif); font-size: 1.23rem; text-decoration: none; letter-spacing: .01em;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 24px; align-items: center; font-size: .93rem; }
.nav-links a { text-decoration: none; color: #393531; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--wine); }
.nav-x {
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px;
}
.menu-button {
  display: none; border: 1px solid var(--line); border-radius: 10px;
  background: transparent; padding: 9px 11px; color: var(--ink);
}

.hero {
  min-height: 72vh; display: grid; grid-template-columns: 1.02fr .98fr;
  align-items: center; gap: clamp(32px, 6vw, 82px); padding: 82px 0 76px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase;
  letter-spacing: .16em; font-size: .72rem; font-weight: 700; color: var(--wine);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--wine); }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.06; margin-top: 0; }
.hero h1 { font-size: clamp(3.4rem, 8vw, 7.2rem); margin: 20px 0 18px; letter-spacing: -.045em; }
.hero .tagline {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.35rem, 2.7vw, 2rem);
  color: #49423c; max-width: 700px;
}
.hero p { max-width: 660px; font-size: 1.08rem; color: var(--muted); }
.hero-art {
  position: relative; min-height: 520px; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow);
}
.hero-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-art::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,12,10,.42), transparent 48%);
}
.hero-caption {
  position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 18px;
  color: rgba(255,255,255,.93); font-size: .81rem; letter-spacing: .035em;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none;
  border-radius: 999px; padding: 12px 18px; border: 1px solid var(--ink);
  font-weight: 650; font-size: .92rem; transition: .18s ease;
}
.button.primary { background: var(--ink); color: white; }
.button.primary:hover { background: var(--wine); border-color: var(--wine); color: white; transform: translateY(-1px); }
.button.secondary:hover { border-color: var(--wine); color: var(--wine); transform: translateY(-1px); }

.section { padding: 84px 0; border-top: 1px solid var(--line); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 32px; }
.section-heading h2 { font-size: clamp(2.25rem, 4.3vw, 4rem); margin: 0; }
.section-heading p { max-width: 520px; color: var(--muted); margin: 0; }

.profile-card {
  display: grid; grid-template-columns: .7fr 1.3fr; gap: 44px;
  background: var(--wine); color: #fff7ed; border-radius: 28px; padding: clamp(28px, 5vw, 58px);
  box-shadow: var(--shadow);
}
.profile-card h2 { font-size: clamp(2.35rem, 5vw, 4.2rem); margin-bottom: 8px; }
.profile-card .label { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; opacity: .72; }
.profile-card p { color: rgba(255,247,237,.84); font-size: 1.04rem; }
.profile-card strong { color: white; }
.profile-points { display: grid; gap: 16px; align-content: center; }
.profile-point {
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.16);
}
.profile-point:last-child { border-bottom: 0; }

.feature {
  display: grid; grid-template-columns: 1.12fr .88fr; border: 1px solid var(--line);
  border-radius: 26px; overflow: hidden; background: var(--card); box-shadow: var(--shadow);
}
.feature-image { min-height: 430px; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy { padding: clamp(28px, 5vw, 54px); align-self: center; }
.feature-copy h3 { font-size: clamp(2rem, 4vw, 3.4rem); margin: 12px 0 20px; }
.feature-copy p { color: var(--muted); }
.meta { color: var(--wine); text-transform: uppercase; letter-spacing: .13em; font-weight: 700; font-size: .72rem; }
.read-link { display: inline-block; margin-top: 10px; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card); display: flex; flex-direction: column;
}
.card h3 { font-size: 1.65rem; margin: 20px 0 10px; }
.card p { color: var(--muted); }
.card .card-link { margin-top: auto; font-weight: 700; font-size: .93rem; }

.quote-strip {
  background: var(--paper-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 74px 0;
}
.quote-strip blockquote {
  margin: 0 auto; width: min(920px, calc(100% - 40px));
  font-family: var(--serif); font-size: clamp(2rem, 4.8vw, 4.4rem); line-height: 1.12;
  letter-spacing: -.025em;
}
.quote-strip cite { display: block; margin-top: 24px; font-family: var(--sans); font-size: .82rem; color: var(--muted); font-style: normal; }

.page-hero { padding: 100px 0 56px; }
.page-hero h1 { font-size: clamp(3.4rem, 8vw, 6.6rem); letter-spacing: -.045em; margin: 14px 0 20px; }
.page-hero p { max-width: 760px; color: var(--muted); font-size: 1.13rem; }

.listing { display: grid; gap: 20px; padding-bottom: 90px; }
.list-item {
  display: grid; grid-template-columns: 180px 1fr; gap: 32px; padding: 28px 0;
  border-top: 1px solid var(--line);
}
.list-item:first-child { border-top: 0; }
.list-item .date { color: var(--muted); font-size: .83rem; text-transform: uppercase; letter-spacing: .1em; }
.list-item h2 { font-size: clamp(1.75rem, 3vw, 2.7rem); margin: 0 0 10px; }
.list-item p { color: var(--muted); margin: 0 0 12px; }

.article-header { padding: 94px 0 36px; }
.article-header h1 { font-size: clamp(3.1rem, 7vw, 6.3rem); letter-spacing: -.045em; margin: 16px 0 24px; }
.dek { font-family: var(--serif); font-size: clamp(1.3rem, 2.7vw, 1.9rem); color: #514941; max-width: 880px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: .88rem; margin-top: 28px; }
.article-hero { margin: 28px auto 58px; width: min(1180px, calc(100% - 40px)); }
.article-hero img { width: 100%; border-radius: 26px; box-shadow: var(--shadow); }
.article-body { font-family: var(--serif); font-size: clamp(1.12rem, 1.7vw, 1.28rem); line-height: 1.78; }
.article-body p { margin: 0 0 1.25em; }
.article-body a { color: var(--wine); text-underline-offset: 3px; }
.article-body .dialogue { margin-left: 1.4rem; }
.article-body hr { border: 0; height: 1px; background: var(--line); margin: 48px 0; }
.article-body .type { font-family: var(--sans); font-weight: 800; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; color: var(--wine); }
.article-note {
  margin: 52px 0; padding: 24px 26px; border-left: 3px solid var(--brass);
  background: var(--paper-deep); font-family: var(--sans); font-size: .93rem; color: var(--muted);
}
.article-footer-nav {
  margin: 70px 0 100px; padding-top: 30px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}

.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; padding: 10px 0 100px; }
.about-grid h2 { font-size: 2.2rem; }
.about-grid p { color: #4d4741; }
.about-side {
  background: var(--paper-deep); border-radius: 22px; padding: 28px; height: fit-content;
}
.about-side ul { padding-left: 20px; margin: 0; }
.about-side li { margin-bottom: 8px; }

.hello-box {
  margin: 30px 0 110px; background: var(--wine); color: white; border-radius: 28px;
  padding: clamp(34px, 7vw, 76px); text-align: center;
}
.hello-box h2 { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 16px; }
.hello-box p { max-width: 680px; margin: 0 auto 26px; color: rgba(255,255,255,.82); }
.hello-box .button { border-color: white; color: white; }
.hello-box .button:hover { background: white; color: var(--wine); }

.site-footer {
  border-top: 1px solid var(--line); padding: 34px 0 46px; color: var(--muted); font-size: .87rem;
}
.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-row a { color: var(--muted); }
.footer-row a:hover { color: var(--wine); }

@media (max-width: 860px) {
  .hero, .feature, .profile-card, .about-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; min-height: auto; }
  .hero-art { min-height: 430px; }
  .grid-3 { grid-template-columns: 1fr; }
  .profile-card { gap: 16px; }
  .feature-image { min-height: 340px; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 20px;
    flex-direction: column; align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .menu-button { display: inline-flex; }
  .list-item { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 520px) {
  .site-shell, .narrow { width: min(100% - 28px, 1180px); }
  .hero-art { min-height: 360px; border-radius: 20px; }
  .section { padding: 64px 0; }
  .article-hero { width: calc(100% - 28px); }
  .article-header { padding-top: 70px; }
}

.profile-card.with-photo {
  grid-template-columns: 220px .72fr 1.28fr;
  align-items: center;
}
.profile-photo {
  width: 220px;
  aspect-ratio: 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
@media (max-width: 980px) {
  .profile-card.with-photo { grid-template-columns: 180px 1fr; }
  .profile-card.with-photo .profile-points { grid-column: 1 / -1; }
  .profile-photo { width: 180px; }
}
@media (max-width: 640px) {
  .profile-card.with-photo { grid-template-columns: 1fr; }
  .profile-photo { width: min(240px, 100%); }
  .profile-card.with-photo .profile-points { grid-column: auto; }
}
