@import url('https://fonts.googleapis.com/css2?family=Abel&family=EB+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Inter:wght@400;600;700&display=swap');

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

:root {
  --gold: rgba(245, 200, 0, 0.90);
  --dark: rgba(26, 26, 26, 0.90);
  --mid: rgba(26, 26, 26, 0.60);
  --light-gray: #f5f5f3;
  --white: #fff;
  --nav-height: 120px;
  --nav-bg: #9E8F9A;
  --nav-link: rgba(245, 200, 0, 0.90);
  --nav-text-hover: #fff;
  --purple: #73317C;
  --active-purple: #520359;
  --section-h2-color: #4A4A4A;
  --body-font: "EB Garamond", Georgia, serif;
  --ui-font: "Inter", -apple-system, Roboto, Helvetica, sans-serif;
  --title-font: "Abel", Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  color: var(--dark);
  background: var(--white);
  font-size: 18px;
  line-height: 1.75;
}

/* ── NAV ── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--nav-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  z-index: 100;
}

nav.site-nav .nav-links {
  display: flex;
  gap: 0;
}

nav.site-nav a {
  font-family: var(--title-font);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nav-link);
  text-decoration: none;
  padding: 14px 19px;
  transition: color 0.2s;
}

nav.site-nav a:hover { color: var(--nav-text-hover); }

nav.site-nav a.active { color: var(--active-purple); }

nav.site-nav .site-name {
  font-family: var(--title-font);
  font-size: 57px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: capitalize;
  white-space: normal;
  line-height: 1.0;
  max-width: 200px;
  color: var(--white);
  padding: 0;
}
/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/cover-big-no-text.jpg');
  background-size: cover;
  background-position: center 45%;
  filter: brightness(0.78);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 6vh;
}

.hero h1 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 1.1;
  margin-bottom: 1.8rem;
  white-space: nowrap;
}

.hero .tagline {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: none;
  margin-bottom: 0.3rem;
  opacity: 0.9;
}

.hero-links {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border: none;
  background: none;
  height: auto;
  padding: 0;
}

.hero-links a {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d4922a;
  text-decoration: none;
  transition: color 0.2s, letter-spacing 0.2s;
  border: none;
  background: none;
  padding: 0;
}

.hero-links a:hover {
  color: var(--gold-light);
  letter-spacing: 0.28em;
}

/* ── PAGE LAYOUT ── */
.page-content {
  padding-top: calc(var(--nav-height) + 1rem);
  max-width: 900px;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.page-header {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 2.5rem;
}

.page-header h1 {
  font-family: var(--body-font);
  font-size: 32px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  color: var(--dark);
  line-height: 1.3;
}

/* ── SECTION IMAGES ── */
.section-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  margin: 2rem 0;
  display: block;
}

/* ── TYPOGRAPHY ── */
h2 {
  font-family: var(--ui-font);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 3rem 0 1rem;
  color: var(--section-h2-color);
}

h3 {
  font-family: var(--ui-font);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--section-h2-color);
  margin: 2rem 0 0.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 18px;
  line-height: 1.75;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--dark); }

/* ── ARTICLE LISTS ── */
ul.article-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}

ul.article-list li {
  padding: 0.4rem 0;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  font-family: var(--body-font);
}

ul.article-list li em { font-style: normal; }

ul.article-list li::before {
  content: "•";
  position: absolute;
  left: -1.2rem;
  color: var(--dark);
}

ul.article-list li:last-child { border-bottom: none; }

ul.article-list a {
  font-weight: 700;
  color: var(--purple);
}

ul.article-list .article-desc {
  display: inline;
  font-size: 18px;
  color: var(--dark);
  font-weight: 400;
  font-style: normal;
}

ul.article-list .article-date {
  font-family: var(--body-font);
  font-size: 18px;
  color: var(--dark);
  font-weight: 400;
  font-style: normal;
}

/* ── PUBLICATION THUMBNAILS ── */
.pub-thumb {
  float: right;
  width: 131px;
  margin: 0 0 1rem 1.5rem;
  display: block;
}

/* ── ABOUT PAGE ── */
.about-photo-wrap {
  float: left;
  width: 475px;
  margin: 0 2.5rem 1.5rem 0;
}

.about-photo-wrap img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.about-caption {
  font-family: Georgia, serif;
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.4rem;
}

.contact-links {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin: 2rem 0;
}

.contact-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  margin: 0 1rem;
}

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

/* ── PROLOGUE HERO IMAGE ── */
.prologue-hero-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  margin: 1.5rem 0 2.5rem;
}

/* ── BOOK ORDER SECTION ── */
.order-section {
  margin-bottom: 2rem;
}

.order-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.order-label {
  font-family: Georgia, serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
  min-width: 130px;
  text-align: right;
}

.order-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.order-buttons a {
  font-family: Georgia, serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--dark);
  padding: 0.5rem 1.1rem;
  transition: background 0.2s;
}

.order-buttons a:hover { background: var(--nav-bg); color: var(--white); }

/* ── BOOK PAGE ── */
.book-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.book-grid img {
  width: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.buy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
  align-items: center;
}

.buy-links a {
  font-family: Georgia, serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--dark);
  padding: 0.5rem 1.1rem;
  transition: background 0.2s;
}

.buy-links a:hover { background: var(--gold); color: var(--white); }

blockquote {
  border-left: 2px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--mid);
}

blockquote cite {
  display: block;
  font-style: normal;
  font-family: var(--body-font);
  font-size: 14px;
  color: #999;
  margin-top: 0.5rem;
}

/* ── SECTION FLOAT RIGHT (Journalism) ── */
.section-float-right {
  float: right;
  width: 380px;
  margin: 0 0 1.5rem 2.5rem;
}

.section-float-right img {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* ── JOURNALISM SECTION DIVIDERS ── */
.section-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin: 3rem 0;
}

.section-intro {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-style: normal;
}

.section-pullquote {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--dark);
  margin: 1.5rem 0;
}

/* ── NEWS POSTS ── */
.news-post {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.news-post:last-child { border-bottom: none; }

.news-post h2 a {
  text-decoration: none;
  color: var(--dark);
}

.news-post h2 a:hover { color: var(--gold); }

.news-post .post-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 1rem;
}

.news-post img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin: 1.5rem 0;
}

/* ── PROLOGUE BUTTONS ── */
.prologue-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
}

.prologue-btn {
  font-family: Georgia, serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--dark);
  padding: 0.8rem 2.5rem;
  display: inline-block;
  transition: background 0.2s;
  min-width: 240px;
  text-align: center;
}

.prologue-btn:hover { background: var(--nav-bg); color: var(--white); }

/* ── PROLOGUE PAGE ── */
.prologue-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark);
  margin: 2rem 0;
}

.prologue-dateline {
  font-family: Georgia, serif;
  font-size: 0.9rem;
  font-style: italic;
  color: #999;
  margin-bottom: 1.5rem;
  letter-spacing: 0;
}

.newsletter-form {
  background: var(--light-gray);
  padding: 2.5rem;
  margin: 2rem 0;
  text-align: center;
}

.newsletter-form h3 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--dark);
  margin-bottom: 1rem;
}

.newsletter-form p {
  font-size: 1rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
}

.newsletter-form a.btn {
  display: inline-block;
  font-family: Georgia, serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--dark);
  padding: 0.8rem 2rem;
  transition: background 0.2s;
}

.newsletter-form a.btn:hover { background: var(--gold); }

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 3rem 2rem;
  font-family: Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0;
  color: #bbb;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 4rem;
}

/* ── BACK TO TOP ── */
.back-to-top {
  display: block;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #999;
  margin: 3rem 0 1rem;
}

.back-to-top:hover { color: var(--gold); }

/* ── JOURNALISM CATEGORY GRID ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}

.category-item {
  text-decoration: none;
  color: var(--dark);
  display: block;
}

.category-item:hover .category-label { color: var(--dark); }

.category-label {
  font-family: var(--body-font);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 26.4px;
}

.category-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* ── JUMP LINKS (Journalism page) ── */
.jump-links {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.jump-links a {
  font-family: Georgia, serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--nav-bg);
  border: none;
  padding: 0;
}

.jump-links a:hover { color: var(--dark); }

/* ── RESPONSIVE ── */
/* ── HAMBURGER BUTTON ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--nav-link);
  transition: all 0.2s;
}

@media (max-width: 700px) {
  nav.site-nav {
    padding: 0.75rem 1rem;
    height: auto;
    min-height: 70px;
    flex-wrap: wrap;
    align-items: center;
  }
  nav.site-nav .site-name { font-size: 32px; letter-spacing: 2px; }
  .nav-toggle { display: flex; }
  nav.site-nav .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 0 0.75rem;
    gap: 0;
  }
  nav.site-nav .nav-links.open { display: flex; }
  nav.site-nav .nav-links a { font-size: 15px; padding: 10px 4px; letter-spacing: 1px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  nav.site-nav .nav-links a:last-child { border-bottom: none; }
  .about-photo-wrap { float: none; width: 100%; margin: 0 0 1.5rem 0; }
  .about-photo-wrap img { max-width: 100%; width: 100%; }
  .section-float-right { float: none; width: 100%; margin: 0 0 1.5rem 0; }
  .book-grid { grid-template-columns: 1fr; }
  .page-content { padding-left: 1.2rem; padding-right: 1.2rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem; }
}

/* ── JOURNALISM PAGE OVERRIDES ── */
body.journalism-page h2 {
  font-family: "EB Garamond", Georgia, serif;
  color: var(--purple);
}
body.journalism-page h3 {
  font-family: "Inter", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8860b;
  margin: 2rem 0 0.4rem;
}
body.journalism-page h3 + .pub-thumb { margin-top: 0; }
body.journalism-page h3 ~ ul.article-list { padding-left: 2.5rem; }
