/* =============================================
   ELDON L. HAM — Site Styles
   Deep Navy + Gold | Cormorant Garamond + Jost
   ============================================= */

:root {
  --navy: #0d1b2e;
  --navy-mid: #162540;
  --navy-light: #1e3358;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --gold-pale: #f5e9c8;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --text: #1a1a2e;
  --text-light: #5a6070;
  --border: rgba(201, 168, 76, 0.25);
  --shadow: 0 4px 30px rgba(13, 27, 46, 0.15);
  --shadow-lg: 0 20px 60px rgba(13, 27, 46, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

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

ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }

.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.35); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-navy {
  background: var(--navy);
  color: var(--gold);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

.text-link {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.text-link:hover { color: var(--gold-light); }

/* ============ SECTION HEADERS ============ */
.section-header { margin-bottom: 3rem; }
.section-header h2 { color: var(--navy); }
.section-header.light h2 { color: var(--white); }
.section-header.centered { text-align: center; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

/* ============ NAV ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 27, 46, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.nav-logo { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active, .footer-nav a:hover, .footer-nav a.active { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  margin-left: 0.5rem;
}
.nav-links .nav-cta.active {color: var(--navy); }
.nav-links .nav-cta:hover { background: var(--gold-light); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 2rem 4rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-bg-pattern::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hero-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.hero-tagline {
  color: rgba(255,255,255,0.85);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.hero-case {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Photo side */
.hero-photo-wrap { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; }

.hero-photo-frame {
  position: relative;
  width: 300px;
  max-width: 100%;
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 1px solid var(--gold);
  z-index: 0;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: contrast(1.05);
}

.hero-credentials {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cred-item {
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  min-width: 90px;
}

.cred-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.cred-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ============ ABOUT ============ */
.about {
  background: var(--off-white);
  padding: 6rem 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p { margin-bottom: 1.25rem; color: var(--text-light); }
.about-text p.lead { color: var(--text); }

.about-highlights { display: flex; flex-direction: column; gap: 1.5rem; }

.highlight-card {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
}

.highlight-card h3 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
}

.highlight-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.highlight-card li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
}
.highlight-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

/* ============ CASES ============ */
.cases {
  background: var(--navy);
  padding: 6rem 2rem;
}

.cases .section-tag { color: var(--gold); }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.case-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.3s ease;
}
.case-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
}

.case-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.case-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.case-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* ============ FEATURED BOOK ============ */
.featured-book { padding: 6rem 2rem; background: var(--white); }

.book-feature {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}

.book-text .section-tag { display: block; margin-bottom: 0.5rem; }
.book-text h2 { color: var(--navy); margin-bottom: 0.5rem; }
.book-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.book-text p { color: var(--text-light); margin-bottom: 2rem; }

.book-cover-placeholder { // unused
  width: 220px;
  height: 310px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.book-cover-placeholder::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--border);
}

.book-cover-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}

.book-cover-placeholder .book-author {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-top: 1.5rem;
}

/* ============ MEDIA ============ */
.media-section { background: var(--navy-mid); padding: 4rem 2rem; }
.media-section .section-header { text-align: center; margin-bottom: 2.5rem; }
.media-section h2 { color: var(--white); }

.media-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.media-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
//.media-logo:hover { color: var(--gold); border-color: var(--border); }

/* ============ CTA ============ */
.cta-section { background: var(--off-white); padding: 6rem 2rem; }

.cta-box {
  background: var(--navy);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-box > * { position: relative; }

.cta-box h2 { color: var(--white); margin-bottom: 1rem; }
.cta-box p { color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 2rem; }

.cta-contact-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.contact-link {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--gold-light); }

/* ============ FOOTER ============ */
.site-footer {
  background: #080f1c;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-brand .logo-name { font-size: 1.2rem; }
.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* ============ INNER PAGES ============ */
.page-hero {
  background: var(--navy);
  padding: 100px 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero > * { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.55); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; }

.page-rule {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem auto;
}

.page-content {
  padding: 5rem 2rem;
  background: var(--off-white);
}

/* Books page */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
  grid-auto-rows: 700px;
}

.book-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  position: relative;
  //max-height: 700px;
  display: flex;
  flex-direction: column;
}

.book-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.book-card-cover {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid var(--gold);
}
.book-card-cover img {
  height: 300px;
}

.book-card-cover span {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.2rem;
  text-align: center;
  padding: 1rem;
  line-height: 1.3;
}

.book-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}
.book-card-body h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 0.4rem; }
.book-card-body .book-pub {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.book-card-body p { font-size: 0.88rem; color: var(--text-light); }

.book-card-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  //font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.book-description-wrapper {
  position: relative;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
}

.book-description-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, var(--white));
  pointer-events: none;       /* lets clicks/scrolls pass through */
  opacity: 0;
  transition: opacity 0.2s;
}

.book-description-wrapper.has-overflow::after {
  opacity: 1;                          /* show only when content overflows */
}

.book-description-wrapper.scrolled-to-bottom::after {
  opacity: 0;
}

.book-description {
  height: 100%;           /* fill the wrapper completely */
  overflow-y: auto;
  //position: relative;
}

/* Articles page */
.articles-list { max-width: 780px; margin: 0 auto; }
.article-item {
  position: relative;
  display: block;
  background: var(--white);
  padding: 1.1rem 2rem;
  border-left: 3px solid transparent;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.article-item:hover { border-left-color: var(--gold); transform: translateX(4px); }
.article-item .article-pub {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.article-item h3 { font-size: 1.45rem; color: var(--navy); }
.article-item .article-date { font-size: 0.8rem; color: var(--text-light); margin-top: 0.3rem; }
.article-link-icon {
    font-size: 0.75em;
    opacity: 0.5;
    vertical-align: super;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}

/* News page */
.news-timeline { max-width: 780px; margin: 0 auto; }
.news-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.news-year {
  grid-column: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 600;
  position: relative;
  top: -10px;
}
.news-body {grid-column: 2;}
.news-body h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.news-body p { font-size: 0.88rem; color: var(--text-light); }

/* Philosophy page */
.philosophy-content {
  max-width: 700px;
  margin: 0 auto;
}
.philosophy-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}
.philosophy-content p { color: var(--text-light); margin-bottom: 1.25rem; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info h3 { font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 1.25rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.contact-detail-icon { color: var(--gold); font-size: 1.1rem; padding-top: 0.15rem; }
.contact-detail-text .label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.contact-detail-text a, .contact-detail-text span {
  font-size: 0.95rem;
  color: var(--navy);
}
.contact-detail-text a:hover { color: var(--gold); }

.contact-form { background: var(--white); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--off-white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* Contact form status messages */

.form-status {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    display: none;
}

.form-status.form-success,
.form-status.form-error {
    display: block;
}

.form-status.form-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-status.form-error {
    background: #fbe9e7;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* History page */
.history-content { max-width: 900px; margin: 0 auto; }
.history-section { margin-bottom: 3.5rem; }
.history-section h3 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.history-section p { color: var(--text-light); margin-bottom: 0.75rem; font-size: 0.9rem; }

/* Publishing page */
.publishing-content { max-width: 780px; margin: 0 auto; }
.publishing-content p { color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.8; }
.publishing-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.pub-service {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 1.5rem;
  border-top: 2px solid var(--gold);
}
.pub-service h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.pub-service p { font-size: 0.85rem; color: var(--text-light); }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-text { animation: fadeUp .8s ease forwards; }
.hero-photo-wrap { animation: fadeUp .8s 0.2s ease both; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; padding: 2rem 0; }
  .hero-rule { margin: 1.5rem auto; }
  .hero-actions { justify-content: center; }
  .hero-photo-frame { width: 280px; }
  .about-grid { grid-template-columns: 1fr; }
  .book-feature { grid-template-columns: 1fr; text-align: center; }
  .book-cover-placeholder { margin: 0 auto; } // unused
  .contact-grid { grid-template-columns: 1fr; }
  .publishing-services { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 60px 1fr; gap: 1rem; }
  .cta-box { padding: 3rem 2rem; }
}

@media (max-width: 938px) {
  .nav-links { 
    display: none; 
    flex-direction: column; 
    position: absolute; 
    top: 72px; left: 0; right: 0; 
    background: var(--navy); 
    padding: 1rem;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    //padding: 0.75rem 1rem;
    display: block;
    width: 100%;
    text-align: center;
  }
  .nav-toggle { display: block; }
  .cases-grid { grid-template-columns: 1fr; }
}
