/* ===========================================
   HENRY WOLFE — AUTHOR SITE
   style.css — v2
   =========================================== */

/* --- Custom Properties --- */
:root {
  --bg: #F5F1EA;
  --bg-alt: #EDE8DF;
  --text: #1F1B16;
  --accent: #5C6B5E;
  --rust: #8B5A3C;
  --gold: #C5A059;
  --nature-green: #354A3E;
  --divider: #D4C9B8;
  --muted: #8A8070;
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans: 'Outfit', system-ui, -apple-system, sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --- Layout Containers --- */
.container-narrow {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-wide {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --- Sections --- */
.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (max-width: 640px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* --- Section Labels --- */
.section-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

/* --- Fade-in on scroll (triggered by JS after fog clears) --- */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   FOG INTRO ANIMATION
   =========================================== */
#fog-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  /* Radial mask: transparent center (quote area), opaque edges */
  -webkit-mask-image: radial-gradient(ellipse 42% 38% at 50% 42%, transparent 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.85) 70%, black 100%);
  mask-image: radial-gradient(ellipse 42% 38% at 50% 42%, transparent 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.85) 70%, black 100%);
  animation: fogBaseOut 2.5s ease-in 6s forwards;
}

.fog-cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform, opacity;
}

/* Left cloud — drifts out left */
.fog-c1 {
  width: 70vw;
  height: 70vh;
  background: radial-gradient(ellipse at 60% 50%, rgba(160,172,182,0.98) 0%, rgba(140,155,168,0.6) 50%, transparent 100%);
  top: -5vh;
  left: -10vw;
  animation: fogLeft 8.5s cubic-bezier(0.25, 0, 0.3, 1) 0.1s forwards;
}

/* Right cloud — drifts out right */
.fog-c2 {
  width: 70vw;
  height: 70vh;
  background: radial-gradient(ellipse at 40% 50%, rgba(150,165,178,0.95) 0%, rgba(140,155,168,0.6) 50%, transparent 100%);
  top: 8vh;
  right: -10vw;
  animation: fogRight 8.5s cubic-bezier(0.25, 0, 0.3, 1) 0.05s forwards;
}

/* Top cloud — drifts up */
.fog-c3 {
  width: 100vw;
  height: 50vh;
  background: radial-gradient(ellipse at 50% 70%, rgba(170,180,190,0.9) 0%, rgba(155,165,175,0.5) 60%, transparent 100%);
  top: -5vh;
  left: -5vw;
  animation: fogUp 7.5s cubic-bezier(0.25, 0, 0.3, 1) 0.2s forwards;
}

/* Bottom cloud — drifts down */
.fog-c4 {
  width: 100vw;
  height: 50vh;
  background: radial-gradient(ellipse at 50% 30%, rgba(165,175,185,0.85) 0%, rgba(155,165,175,0.5) 60%, transparent 100%);
  bottom: -5vh;
  left: -5vw;
  animation: fogDown 7.5s cubic-bezier(0.25, 0, 0.3, 1) 0.15s forwards;
}

/* Corner wisps — fade out in place */
.fog-c5 {
  width: 50vw;
  height: 40vh;
  background: radial-gradient(ellipse at center, rgba(175,185,195,0.8) 0%, transparent 70%);
  top: 5vh;
  left: 25vw;
  animation: fogFade 6.5s ease-in 0.3s forwards;
}

@keyframes fogLeft {
  0% { transform: translateX(0) scale(1); opacity: 1; }
  15% { transform: translateX(-5vw) scale(1.02); opacity: 1; }
  100% { transform: translateX(-110%) scale(1.15); opacity: 0; }
}

@keyframes fogRight {
  0% { transform: translateX(0) scale(1); opacity: 1; }
  15% { transform: translateX(5vw) scale(1.02); opacity: 1; }
  100% { transform: translateX(110%) scale(1.15); opacity: 0; }
}

@keyframes fogUp {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  20% { transform: translateY(-5vh) scale(1.02); opacity: 1; }
  100% { transform: translateY(-90%) scale(1.15); opacity: 0; }
}

@keyframes fogDown {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  20% { transform: translateY(5vh) scale(1.02); opacity: 1; }
  100% { transform: translateY(80%) scale(1.15); opacity: 0; }
}

@keyframes fogFade {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fogBaseOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* ===========================================
   HEADER / NAV
   =========================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.35s ease, border-bottom 0.35s ease, box-shadow 0.35s ease;
  /* Top scrim to ensure nav visibility on light backgrounds */
  background: linear-gradient(to bottom, rgba(31, 27, 22, 0.45) 0%, rgba(31, 27, 22, 0.15) 50%, transparent 100%);
}

#site-header.scrolled {
  background: var(--bg);
  border-bottom: 1px solid var(--divider);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

#site-header.scrolled {
  background-color: var(--bg);
  border-bottom: 1px solid var(--divider);
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  user-select: none;
}

#site-header.scrolled .wordmark {
  text-shadow: none;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-link {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  transition: opacity 0.2s, color 0.2s, text-shadow 0.2s;
  white-space: nowrap;
  position: relative;
}

#site-header.scrolled .nav-link {
  text-shadow: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  opacity: 1;
  color: var(--gold);
}

.nav-link.active::after {
  width: 100%;
}

/* --- Burger Menu Button --- */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 201;
  position: relative;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.open .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open .burger-line:nth-child(2) {
  opacity: 0;
}
.burger.open .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Menu Overlay --- */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(31,27,22,0.4);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* --- Mobile Slide-out Menu --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--bg);
  z-index: 200;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu .mobile-nav-link {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--divider);
  display: block;
  transition: color 0.2s;
}
.mobile-menu .mobile-nav-link:first-child {
  border-top: 1px solid var(--divider);
}
.mobile-menu .mobile-nav-link:hover {
  color: var(--accent);
}
.mobile-menu .mobile-nav-link.active {
  color: var(--accent);
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
}

@media (max-width: 500px) {
  .wordmark {
    font-size: 0.65rem;
  }
}

/* ===========================================
   HERO
   =========================================== */
#hero {
  padding-top: 0;
}

.hero-image-wrap {
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero-image-wrap {
    height: 52vh;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) brightness(0.92);
}

/* Quote centered over the hero image */
.hero-overlay-quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.overlay-quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.95);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45), 0 1px 4px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin-bottom: 0.9rem;
}

.overlay-quote-attr {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.7);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* Below-image tagline */
.hero-below {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 1rem;
  text-align: center;
}

.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.hero-tagline-attr {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-indicator {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0 2.5rem;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--divider), transparent);
}

/* ===========================================
   FOR WHOM
   =========================================== */
#for-whom {
  border-top: 1px solid var(--divider);
}

#for-whom .section-label {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  text-align: center;
  color: var(--rust);
  margin-bottom: 2.5rem;
}

.for-whom-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.for-whom-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text);
}

.for-whom-arrow {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
}


/* ===========================================
   PULL QUOTE
   =========================================== */
.section-pull {
  padding: 5rem 1.5rem;
  background-color: var(--bg-alt);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.pull-quote-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.pull-rule {
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--divider);
}

.pull-quote-text {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  letter-spacing: 0.01em;
}

/* ===========================================
   BOOK 3D SHOWCASE
   =========================================== */
.section-showcase {
  padding: 5rem 1.5rem;
  background-color: var(--bg-alt);
}

.showcase-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-img {
  max-width: 460px;
  width: 100%;
  height: auto;
  filter: saturate(0.9);
  transition: transform 0.4s ease;
}

.showcase-img:hover {
  transform: scale(1.02) translateY(-4px);
}

@media (max-width: 640px) {
  .showcase-img {
    max-width: 85vw;
  }
}

/* ===========================================
   NEWSLETTER
   =========================================== */
#subscribe {
  padding: 6rem 1.5rem;
  background-color: var(--nature-green);
  color: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.1);
}

#subscribe .section-label {
  color: var(--gold);
}

#subscribe .newsletter-heading {
  color: var(--bg);
}

#subscribe .email-input {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--bg);
}

#subscribe .email-input::placeholder {
  color: rgba(245, 241, 234, 0.4);
}

#subscribe .btn-subscribe {
  background-color: var(--gold);
  color: #1F1B16;
}

#subscribe .btn-subscribe:hover {
  background-color: #D4AF37;
}

#subscribe .form-disclosure {
  color: rgba(245, 241, 234, 0.6);
}

#subscribe .subscribe-success {
  color: var(--gold);
}
#books {
  border-top: 1px solid var(--divider);
}

.book-card {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 720px) {
  .book-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.book-cover-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (max-width: 720px) {
  .book-cover-col {
    align-items: center;
  }
}

.cover-link {
  display: block;
  width: 100%;
  max-width: 300px;
}

.book-cover {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: saturate(0.9);
  transition: transform 0.3s ease;
}

.book-cover:hover {
  transform: scale(1.02);
}

.available-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.book-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.book-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
  margin-top: 0;
}

.book-subtitle {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.book-description {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.book-description p {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.75;
}

.book-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--text);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 1rem 2rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

.btn-primary:hover {
  background-color: var(--rust);
}

.btn-icon {
  flex-shrink: 0;
}

.btn-secondary {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s, border-bottom-color 0.2s;
}

.btn-secondary:hover {
  color: var(--text);
  border-bottom-color: var(--divider);
}

/* ===========================================
   ABOUT (homepage snippet)
   =========================================== */
#about {
  border-top: 1px solid var(--divider);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.about-text p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-more-link {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--divider);
  padding-bottom: 1px;
  transition: color 0.2s, border-bottom-color 0.2s;
}

.about-more-link:hover {
  color: var(--rust);
  border-bottom-color: var(--rust);
}

/* ===========================================
   NEWSLETTER
   =========================================== */
#subscribe {
  border-top: 1px solid var(--divider);
}

.newsletter-heading {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  align-items: stretch;
}

@media (max-width: 500px) {
  .form-row {
    flex-direction: column;
    gap: 1rem;
  }
}

.email-input {
  flex: 1;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--divider);
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--text);
  padding: 0.6rem 0;
  outline: none;
  transition: border-bottom-color 0.2s;
}

.email-input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.email-input:focus {
  border-bottom-color: var(--accent);
}

.btn-subscribe {
  background-color: var(--text);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.7rem 1.5rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  margin-left: 1.25rem;
  white-space: nowrap;
  transition: background-color 0.25s ease;
}

.btn-subscribe:hover {
  background-color: var(--rust);
}

.btn-subscribe:disabled {
  opacity: 0.6;
  cursor: default;
}

@media (max-width: 500px) {
  .btn-subscribe {
    margin-left: 0;
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
  }
}

.form-disclosure {
  font-family: var(--sans);
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.subscribe-success {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  line-height: 1.6;
  padding: 1rem 0;
}

.subscribe-success[hidden] {
  display: none;
}

/* ===========================================
   FOOTER
   =========================================== */
#footer {
  padding-bottom: 3rem;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: var(--divider);
  margin-bottom: 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.footer-inner p {
  font-family: var(--sans);
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.footer-link {
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-bottom-color 0.2s;
}

.footer-link:hover {
  color: var(--text);
  border-bottom-color: var(--divider);
}

.footer-muted {
  color: var(--muted);
}

/* ===========================================
   ABOUT PAGE SPECIFIC STYLES
   =========================================== */
.about-page-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--divider);
}

.about-page-eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.about-page-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}

.about-page-title em {
  font-style: italic;
  color: var(--muted);
}

.about-page-body {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.about-page-body .bio-block {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 4rem;
}

.about-page-body .bio-block p {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
}

.about-divider {
  width: 40px;
  height: 1px;
  background-color: var(--divider);
  margin: 3rem 0;
}

.about-craft-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.about-craft-block {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 3rem;
}

.about-craft-block p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.78;
}

.about-contact {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--divider);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.about-contact:hover {
  color: var(--rust);
}

.about-closing-quote {
  margin-top: 4rem;
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--divider);
}

.about-closing-quote p {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.65;
}

/* ===========================================
   READ A PART PAGE
   =========================================== */
.read-page-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--divider);
}

.read-page-eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.read-page-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
}

.read-page-title em {
  font-style: italic;
  color: var(--muted);
}

.read-page-body {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.read-page-body .excerpt-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.read-page-body .excerpt-block p {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text);
}

.excerpt-divider {
  width: 60px;
  height: 1px;
  background-color: var(--divider);
  margin: 3rem auto;
}

.read-page-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--divider);
}

.btn-continue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--text);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.25s ease;
}

.btn-continue:hover {
  background-color: var(--rust);
}

/* ===========================================
   COOKIE BANNER
   =========================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--nature-green);
  color: var(--bg);
  z-index: 1000;
  padding: 1.5rem 2rem;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  overflow: hidden;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 960px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.cookie-text {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(245, 241, 234, 0.9);
  max-width: 600px;
}

.cookie-btn {
  background-color: var(--gold);
  color: var(--text);
  border: none;
  padding: 0.8rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background-color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.cookie-btn:hover {
  background-color: #D4AF37;
  transform: translateY(-2px);
}

.cookie-vine {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 180px;
  height: 180px;
  color: rgba(197, 160, 89, 0.15);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 720px) {
  .cookie-banner {
    padding: 1.5rem;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .cookie-vine {
    right: -40px;
    width: 140px;
    height: 140px;
  }
}