/* ==========================================================================
   Theresa Abell Haynes — author site
   Shared design system (matches thequeenspriest.com)
   ========================================================================== */

:root {
  --bg-page: #f7f5f2;
  --bg-card: #ffffff;
  --bg-header: #1e2326;
  --gold: #c98c42;
  --gold-soft: #9b6a30;
  --ink: #1e1f21;
  --muted: #5e5e5e;
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --max: 1180px;
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }

body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--bg-page);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* -------------------------------------------------------------------------- */
/* Header                                                                      */
/* -------------------------------------------------------------------------- */

.top-banner {
  width: 100%;
  height: clamp(180px, 19vw, 250px);
  margin-bottom: -74px;
  overflow: hidden;
  background: #2a2620;
  line-height: 0;
}

.top-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(1.04) contrast(1.02);
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* With a banner above it, the menu bar overlaps the banner's lower edge. At rest
   it's a light frosted panel with dark text (readable over the pale wall photo);
   once it sticks (or the mobile menu opens) it goes to the solid dark bar with
   light text like the rest of the site. */
.site-header--glass {
  background: linear-gradient(180deg, rgba(250, 248, 244, 0.6), rgba(250, 248, 244, 0.4));
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
          backdrop-filter: blur(12px) saturate(1.15);
  border-bottom-color: rgba(0, 0, 0, 0.1);
  transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}

.site-header--glass:not(.is-stuck) .brand-title { color: #1c1a17; }
.site-header--glass:not(.is-stuck) .brand-top { color: #6b4f33; }
.site-header--glass:not(.is-stuck) .nav { color: #2a2620; }
.site-header--glass:not(.is-stuck) .nav a { color: #2a2620; opacity: 0.92; }
.site-header--glass:not(.is-stuck) .nav a:hover { opacity: 1; }

.site-header--glass:not(.is-stuck) .nav-toggle {
  color: #2a2620;
  border-color: rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.4);
}

.site-header--glass:not(.is-stuck) .brand-title,
.site-header--glass:not(.is-stuck) .brand-top,
.site-header--glass:not(.is-stuck) .nav a,
.site-header--glass:not(.is-stuck) .nav-toggle {
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.site-header--glass.is-stuck {
  background: rgba(30, 35, 38, 0.96);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; flex-direction: column; gap: 4px; }

.brand-top {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #cbb99a;
}

.brand-title {
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #d7d7d7;
  font-size: 1rem;
}

.nav a { opacity: 0.85; transition: opacity 0.15s ease; }
.nav a:hover { opacity: 1; }

.nav .pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 140, 66, 0.35);
  color: #f2d6b1;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 1;
}

.nav-toggle { display: none; }

/* -------------------------------------------------------------------------- */
/* Buttons                                                                     */
/* -------------------------------------------------------------------------- */

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease,
    box-shadow 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
  min-height: 46px;
  white-space: nowrap;
}

.btn-primary {
  border: 1px solid #b57a3a;
  background: linear-gradient(135deg, #d7a56b, #b97532);
  color: #15110d;
  box-shadow: 0 10px 24px rgba(185, 117, 50, 0.22);
}

.btn-secondary {
  border: 1px solid #c9b79a;
  background: #fffaf3;
  color: #3f3122;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
  background: #f5ecdf;
  border-color: #b7966d;
  color: #2f2419;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Order CTA — vibrant, drawn from the book cover's sunset */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  min-height: 50px;
  white-space: nowrap;
  cursor: pointer;
  color: #fff;
  border: 1px solid #b5551a;
  background: linear-gradient(135deg, #f2a333, #d1651b 55%, #c0521a);
  box-shadow: 0 12px 28px rgba(200, 92, 26, 0.38);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-order:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 16px 34px rgba(200, 92, 26, 0.46);
}

/* -------------------------------------------------------------------------- */
/* Typographic helpers                                                         */
/* -------------------------------------------------------------------------- */

.eyebrow,
.mini-title {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b4f33;
  margin-bottom: 10px;
}

.section-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #222;
}

.section-subtle {
  color: #555;
  font-size: 1rem;
  max-width: 66ch;
  margin-bottom: 24px;
}

.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 140, 66, 0.55), transparent);
  margin: 84px 0 46px;
}

section.block { padding: 56px 0; }

/* -------------------------------------------------------------------------- */
/* Hero                                                                        */
/* -------------------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  padding: 84px 0 56px;
}

/* Backdrop — Thomas Abell's carved graffiti ("THOMAS" + the A-bell) ghosted
   behind the name so it's readable behind the letters but stays legible. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("images/abell-carving.jpg");
  background-repeat: no-repeat;
  background-position: 74% 52%;
  background-size: auto 96%;
  opacity: 0.22;
  filter: sepia(0.3) saturate(1.3) contrast(1.06) brightness(1.02);
  -webkit-mask-image: radial-gradient(48% 62% at 74% 52%, #000 26%, rgba(0, 0, 0, 0.34) 62%, transparent 85%);
          mask-image: radial-gradient(48% 62% at 74% 52%, #000 26%, rgba(0, 0, 0, 0.34) 62%, transparent 85%);
  pointer-events: none;
}

/* soft paper wash + a light halo right behind the name so the text lifts off
   the carving */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(40% 42% at 74% 50%, rgba(247, 245, 242, 0.42), transparent 76%),
    linear-gradient(180deg, rgba(247, 245, 242, 0.26) 0%, rgba(247, 245, 242, 0) 48%, rgba(247, 245, 242, 0.58) 100%);
  pointer-events: none;
}

.hero > .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 540px);
  gap: 56px;
  align-items: center;
  justify-content: center;
}

.hero-portrait {
  position: relative;
  width: 100%;
  max-width: 340px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
  background: #111;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 45%, rgba(212, 163, 96, 0.32) 0%, rgba(212, 163, 96, 0.09) 36%, transparent 68%);
  filter: blur(22px);
  z-index: 0;
}

.hero-portrait img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy { text-align: left; }

.hero-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
  max-width: 32ch;
}

.hero-role {
  color: #5a4632;
  font-size: 0.98rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero-lede {
  color: #4a4a4a;
  font-size: 1.1rem;
  max-width: 56ch;
  margin-bottom: 22px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* -------------------------------------------------------------------------- */
/* The Queen's Priest                                                          */
/* -------------------------------------------------------------------------- */

.section-white { background: #ffffff; }

.book-detail {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 56px;
  align-items: start;
  max-width: 960px;
  margin-inline: auto;
}

.book-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.book-cover { display: block; }

.book-cover img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 24px 55px rgba(30, 22, 12, 0.24);
}

.book-aside .btn-order { width: 100%; }

.book-copy .book-sub {
  color: #7a6b55;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.book-copy p { color: #4a4a4a; margin-bottom: 14px; }

.book-copy .book-hook {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #241c13;
  margin-bottom: 16px;
}

.book-copy .book-premise {
  font-weight: 500;
  color: #37332c;
  margin-bottom: 22px;
}

.book-copy .book-close {
  font-style: italic;
  color: #5a5146;
  margin-top: 22px;
}

/* Essays */
.essay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.essay-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.essay-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

.essay-card .thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #ece7df;
  display: block;
}

.essay-card .essay-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }

.essay-card .essay-date {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a7860;
  margin-bottom: 8px;
}

.essay-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: #241c13;
}

.essay-card p { color: #575048; font-size: 0.92rem; margin-bottom: 14px; }

.essay-card .read-more {
  margin-top: auto;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}

/* Substack band */
.band {
  margin-top: 30px;
  border-radius: var(--radius);
  padding: 28px;
  background: linear-gradient(135deg, #fffdf9, #f4ede3);
  border: 1px solid #e4d8c8;
  box-shadow: var(--shadow);
}

.band-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 32px;
  align-items: center;
}

.band-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(30, 22, 12, 0.18);
}

.band h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #2a2017;
}

.band p { color: #4d463f; margin-bottom: 12px; max-width: 56ch; }

.band ul { margin: 0; padding-left: 18px; color: #4d463f; }
.band li + li { margin-top: 6px; }

.band-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* About */
.about {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 48px;
  align-items: start;
}

.about-photo {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  background: #1a1a1a;
  position: sticky;
  top: 96px;
}

.about-copy {
  column-count: 1;
}

.about-copy p { color: #444; margin: 0 0 14px; break-inside: avoid; }
.about-copy p:first-child { font-size: 1.08rem; color: #333; }

.about-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
  transition: color 0.15s ease;
}

.social-link svg { width: 22px; height: 22px; flex: 0 0 auto; }
.social-link:hover { color: var(--ink); }
.social-link--fb svg { color: #1877f2; }

/* -------------------------------------------------------------------------- */
/* Watch — "Go Behind the Scenes" (flows into the section above it)             */
/* -------------------------------------------------------------------------- */

.watch-feature {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 24px;
  margin-top: 30px;
  align-items: stretch;
}

/* Shared thumbnail + play button (used by featured film and the list) */
.video-thumb {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #2a2f33, #14171a);
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play span {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}

.video-play svg { margin-left: 3px; }

/* Featured film */
.watch-hero {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  background: #14171a;
  box-shadow: 0 18px 44px rgba(20, 16, 12, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.watch-hero:hover { transform: translateY(-2px); box-shadow: 0 24px 54px rgba(20, 16, 12, 0.24); }
.watch-hero:hover .video-play span { transform: scale(1.08); background: rgba(255, 255, 255, 0.4); }

.watch-hero .video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 7, 6, 0.9) 0%, rgba(8, 7, 6, 0.35) 46%, rgba(8, 7, 6, 0) 72%);
}

.watch-hero .video-play span { width: 66px; height: 66px; }
.watch-hero .video-play svg { width: 24px; height: 24px; }

.watch-hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 26px 24px;
}

.watch-hero-caption strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: #fff;
}

/* Supporting films */
.watch-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.watch-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 15px;
  align-items: center;
  flex: 1;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
}

.watch-item .video-thumb {
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(20, 16, 12, 0.14);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.watch-item .video-play span { width: 34px; height: 34px; }
.watch-item .video-play svg { width: 13px; height: 13px; }

.watch-item strong {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #241c13;
  transition: color 0.15s ease;
}

.watch-item:hover strong { color: var(--gold-soft); }
.watch-item:hover .video-thumb { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(20, 16, 12, 0.2); }

.modal-panel.video-modal-panel {
  position: relative;
  width: min(860px, 92%, 140vh);
  aspect-ratio: 16 / 9;
  padding: 0;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

@media (min-width: 900px) {
  .modal-panel.video-modal-panel { width: min(1000px, 72vw, 130vh); }
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #f5f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.video-modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.06);
}

#videoPlayer {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

/* -------------------------------------------------------------------------- */
/* Media gallery                                                               */
/* -------------------------------------------------------------------------- */

.media-gallery {
  column-count: 3;
  column-gap: 24px;
}

.media-item {
  break-inside: avoid;
  margin-bottom: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-item img {
  width: 100%;
  height: auto;
  display: block;
  background: #e8e3d9;
}

.media-meta {
  padding: 14px 16px 16px;
}

.media-meta .dims {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a7860;
  margin-bottom: 10px;
}

.media-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-soft);
}

.media-download svg { flex: 0 0 auto; }
.media-download:hover { color: var(--ink); }

/* -------------------------------------------------------------------------- */
/* Footer                                                                      */
/* -------------------------------------------------------------------------- */

.site-footer {
  padding: 40px 0 48px;
  margin-top: 40px;
  color: #6f675d;
  font-size: 0.84rem;
}

.site-footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-links a { opacity: 0.9; }
.footer-links a:hover { opacity: 1; color: var(--gold-soft); }

.footer-social { display: inline-flex; align-items: center; gap: 14px; }
.footer-links .footer-icon { display: inline-flex; align-items: center; }
.footer-links .footer-icon svg { width: 17px; height: 17px; }
.footer-links .footer-icon--fb svg { color: #1877f2; }

/* -------------------------------------------------------------------------- */
/* Contact modal                                                               */
/* -------------------------------------------------------------------------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal[aria-hidden="false"] { display: flex; }

.modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.56); }

.modal-panel {
  position: relative;
  width: min(640px, 100%);
  border-radius: 24px;
  padding: 22px;
  background: #1f2427;
  color: #f2eee8;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.35);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 6px 6px 14px;
}

.modal-head h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.modal-head p { margin-top: 6px; color: #d6cec2; font-size: 0.92rem; }

.icon-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #f2eee8;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 10px; }

.field label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d6c4ac;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #f5f1ea;
  padding: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(201, 140, 66, 0.55);
  box-shadow: 0 0 0 3px rgba(201, 140, 66, 0.12);
}

.field textarea { min-height: 130px; resize: vertical; }

.form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.status {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #e9e2d7;
  display: none;
}

.status.show { display: block; }
.status.ok { border-color: rgba(46, 204, 113, 0.35); }
.status.err { border-color: rgba(231, 76, 60, 0.35); }

/* -------------------------------------------------------------------------- */
/* Article pages                                                               */
/* -------------------------------------------------------------------------- */

.article { padding: 64px 0 40px; }

.article-inner { width: min(720px, calc(100% - 40px)); margin: 0 auto; }

.article-back {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 26px;
}

.article-meta {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a7860;
  margin-bottom: 14px;
}

.article h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  color: #201a12;
  text-wrap: balance;
}

.article-hero {
  width: 100%;
  border-radius: 14px;
  margin: 8px 0 32px;
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 420px;
}

.article-body { font-size: 1.08rem; color: #33302c; }
.article-body p { margin-bottom: 20px; }
.article-body > p:first-of-type::first-letter {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  line-height: 0.8;
  float: left;
  padding: 6px 10px 0 0;
  color: var(--gold-soft);
}

.article-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  letter-spacing: 0.03em;
  margin: 36px 0 14px;
  color: #241c13;
}

.article-body h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b4f33;
  margin: 30px 0 12px;
}

.article-body em { color: #33302c; }

.article-body blockquote {
  margin: 26px 0;
  padding: 4px 0 4px 22px;
  border-left: 4px solid var(--gold);
  font-style: italic;
  color: #4a4238;
}

.article-body hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 140, 66, 0.55), transparent);
  margin: 40px 0;
}

.article-scene {
  background: #fffdf9;
  border: 1px solid #e8dcca;
  border-radius: 16px;
  padding: 26px 28px;
  margin: 32px 0;
}

.article-scene h3 { margin-top: 0; }

.article-foot {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-foot p { color: #55503f; margin-bottom: 14px; }

/* -------------------------------------------------------------------------- */
/* Responsive                                                                  */
/* -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .hero-grid,
  .essay-grid,
  .band-grid,
  .about,
  .book-detail {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid > *,
  .band-grid > *,
  .about > *,
  .book-detail > * { min-width: 0; }

  .hero-grid { gap: 32px; justify-items: center; text-align: center; }
  .hero-portrait { max-width: 320px; }
  .hero-copy { text-align: center; }
  .hero-tagline { margin-inline: auto; }

  /* carving sits behind the (now stacked, centered) name */
  .hero::before {
    background-position: 50% 76%;
    background-size: auto 40%;
    -webkit-mask-image: radial-gradient(66% 30% at 50% 76%, #000 26%, transparent 82%);
            mask-image: radial-gradient(66% 30% at 50% 76%, #000 26%, transparent 82%);
  }
  .hero::after {
    background:
      radial-gradient(60% 26% at 50% 76%, rgba(247, 245, 242, 0.5), transparent 76%),
      linear-gradient(180deg, rgba(247, 245, 242, 0.28) 0%, rgba(247, 245, 242, 0) 46%, rgba(247, 245, 242, 0.6) 100%);
  }
  .band-grid { gap: 24px; }
  .band-image { height: 220px; }
  .about { gap: 28px; }
  .about-photo { max-width: 300px; position: static; }
  .media-gallery { column-count: 2; }
  .form-grid { grid-template-columns: 1fr; }

  .watch-feature { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .watch-list { flex-direction: row; }
  .watch-item { grid-template-columns: minmax(0, 1fr); gap: 8px; align-items: start; }
  .watch-item strong { font-size: 1rem; }

  .book-detail { gap: 26px; max-width: 620px; }
  .book-aside {
    position: static;
    align-items: flex-start;
    gap: 20px;
    max-width: 260px;
  }
}

@media (max-width: 700px) {
  .site-header-inner { min-height: auto; padding: 14px 0; flex-wrap: wrap; }

  .nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 12px;
  }

  .nav.open { display: flex; }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
  }

  .hero { padding-top: 44px; }
  .top-banner { height: clamp(92px, 24vw, 132px); }
  .article-body > p:first-of-type::first-letter { font-size: 2.8rem; }

  .media-gallery { column-count: 1; }
  .watch-list { flex-direction: column; }
  .watch-item { grid-template-columns: 130px 1fr; gap: 13px; align-items: center; }
  .hero-name { font-size: clamp(2rem, 9vw, 3rem); letter-spacing: 0.02em; white-space: normal; }
  .hero-role { letter-spacing: 0.1em; font-size: 0.82rem; }
  .brand-title { font-size: 1.2rem; letter-spacing: 0.05em; }
  .brand-top { font-size: 0.62rem; letter-spacing: 0.16em; }
  .section-heading { letter-spacing: 0.02em; }
  .actions .btn-primary, .actions .btn-secondary { flex: 1 1 auto; }
}
