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

:root {
  --void: #0b0a07;
  --earth: #1c1a12;
  --sand: #e8e6e2;
  --gold: #e8c87a;
}

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--sand);
  font-family: 'Crimson Pro', Georgia, serif;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 3.5rem;
  background: rgba(11,10,7,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216,212,204,0.07);
}

.nav-name {
  display: flex;
  align-items: center;
  gap: 0.65em;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(232,230,226,1.0); text-decoration: none;
  transition: color 0.4s;
}
.nav-name:hover, .nav-name.active { color: var(--gold); }

.nav-fermata {
  width: 2.3em;
  height: 2.3em;
  flex-shrink: 0;
  color: inherit;
  opacity: 0.85;
  transition: opacity 0.4s, color 0.4s;
}
.nav-name:hover .nav-fermata, .nav-name.active .nav-fermata { opacity: 1; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(232,230,226,1.0); text-decoration: none;
  transition: color 0.4s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* ── PAGE WRAPPER ── */
.page-body { padding-top: 70px; }

/* ── FOOTER ── */
footer {
  background: var(--void); padding: 2.8rem 3.5rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1.5rem;
  border-top: 1px solid rgba(216,212,204,0.06);
}
.footer-name {
  font-family: 'Cinzel', serif; font-size: 0.7rem; font-weight: 300;
  letter-spacing: 0.4em; text-transform: uppercase; color: rgba(232,230,226,1.0);
  text-decoration: none;
}
a.footer-name:hover { color: var(--gold); }
.wp-block-embed__wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.wp-block-embed__wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.wp-block-embed { clear: both; }
.footer-links { display: flex; gap: 1.8rem; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Cinzel', serif; font-size: 0.68rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(232,230,226,1.0); text-decoration: none; transition: color 0.4s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-family: 'Cinzel', serif; font-size: 0.65rem;
  letter-spacing: 0.18em; color: rgba(232,230,226,1.0); text-transform: uppercase;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.delay-02 { transition-delay: 0.2s; }
.delay-025 { transition-delay: 0.25s; }
.delay-03 { transition-delay: 0.3s; }
.text-left { text-align: left; }
.text-justify { text-align: justify; }
.highlight-red { color: #ff0000; }

/* ── HAMBURGER BUTTON ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(232,230,226,0.80);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  transform-origin: center;
}
.nav-toggle:hover span { background: var(--gold); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { gap: 1.4rem; }
  .nav-links a { font-size: 0.85rem; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { justify-content: center; }
}
@media (max-width: 520px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 5rem 2rem 2rem;
    background: rgba(11,10,7,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(216,212,204,0.12);
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    z-index: 99;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid rgba(216,212,204,0.07); }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: rgba(232,230,226,1.0);
  }
}

/* --------------------------------------------------------------------------
   Home page
   -------------------------------------------------------------------------- */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--void);
}
/* Translucent hero portrait, chosen at random per visit (see app.js).
   Sized so the figure stands about as tall as the name is wide, and
   offset toward the right so the name reads over open space. */
.hero-photo {
  position: absolute; z-index: 0; pointer-events: none;
  top: 50%; left: 50%;
  width: clamp(660px, 87vw, 1140px);
  height: clamp(660px, 87vw, 1140px);
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  opacity: 0.46;
  /* The portraits sit on a near-black field. Screen blending makes those
     dark pixels contribute nothing over the hero's black background, so the
     photo's rectangular edge dissolves completely — no visible square. The
     mask just softens the lit subject toward the frame edges; it reaches full
     transparency well inside the square so no corner can ever show. */
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 58% 66% at 50% 44%, #000 35%, rgba(0,0,0,0.55) 60%, transparent 80%);
          mask-image: radial-gradient(ellipse 58% 66% at 50% 44%, #000 35%, rgba(0,0,0,0.55) 60%, transparent 80%);
  filter: grayscale(14%) contrast(1.03);
}
.hero-photo.is-ready { opacity: 0.46; }
.hero-center {
  position:relative; z-index:10;
  display:flex; flex-direction:column; align-items:center; text-align:center;
}
.hero-name {
  font-family:'Cinzel',serif; font-size:clamp(1.8rem,4vw,3rem); font-weight:300;
  letter-spacing:0.4em; text-transform:uppercase; color:var(--sand);
  margin-bottom:1.4rem; line-height:1.2;
  text-shadow: 0 2px 30px rgba(11,10,7,0.85), 0 0 12px rgba(11,10,7,0.6);
}
.hero-sub {
  font-family:'Fraunces',serif; font-style:italic;
  font-size:clamp(1rem,2vw,1.3rem); line-height:1.65;
  color:rgba(232,230,226,1.0); max-width:480px; margin-bottom:2.8rem;
}
.hero-cta {
  display:inline-flex; align-items:center; gap:1rem;
  font-family:'Cinzel',serif; font-size:0.65rem; font-weight:300;
  letter-spacing:0.35em; text-transform:uppercase; color:var(--gold);
  text-decoration:none; border:1px solid rgba(216,212,204,0.25);
  padding:0.9rem 2.2rem; border-radius:50px;
  transition:background 0.5s,border-color 0.5s; position:relative; overflow:hidden;
}
.hero-cta::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at center,rgba(216,212,204,0.1),transparent);
  opacity:0; transition:opacity 0.5s;
}
.hero-cta:hover::before{opacity:1;}
.hero-cta:hover{border-color:rgba(216,212,204,0.78);}

/* listen */
.listen-section {
  background:var(--earth); padding:4.5rem 3.5rem;
  display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:2rem 5rem;
  max-width:100%;
}
.listen-heading{font-family:'Fraunces',serif;font-style:italic;font-size:clamp(1.3rem,2.5vw,1.8rem);color:var(--sand);line-height:1.3;margin-top:0.4rem;}
.store-pills{display:flex;gap:0.8rem;flex-wrap:wrap;}
.store-pill{font-family:'Cinzel',serif;font-size:0.7rem;font-weight:300;letter-spacing:0.22em;text-transform:uppercase;color:rgba(232,230,226,1.0);text-decoration:none;border:1px solid rgba(232,230,226,0.42);padding:0.6rem 1.3rem;border-radius:50px;transition:color 0.4s,border-color 0.4s,background 0.4s;}
.store-pill:hover{color:var(--gold);border-color:rgba(216,212,204,0.3);background:rgba(216,212,204,0.05);}

/* about strip */
.about-strip {
  background:var(--void); padding:6rem 3.5rem;
  display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center;
  position:relative; overflow:hidden;
}
.about-visual { display:flex; justify-content:center; align-items:center; }
.about-strip::before{content:'';position:absolute;width:500px;height:500px;border-radius:50%;border:1px solid rgba(216,212,204,0.05);top:50%;right:-150px;transform:translateY(-50%);pointer-events:none;}
.about-strip::after{content:'';position:absolute;width:340px;height:340px;border-radius:50%;border:1px solid rgba(216,212,204,0.04);top:50%;right:-75px;transform:translateY(-50%);pointer-events:none;}

.arch-portrait{position:relative;width:300px;height:400px;display:flex;align-items:center;justify-content:center;}
.arch-portrait-inner{position:relative;width:260px;height:360px;border-radius:130px 130px 18px 18px;overflow:hidden;box-shadow:0 0 0 1px rgba(216,212,204,0.12),0 0 60px rgba(216,212,204,0.06),0 30px 80px rgba(0,0,0,0.6);}
.arch-photo{width:100%;height:100%;object-fit:cover;object-position:center 15%;display:block;filter:sepia(15%) contrast(0.92) brightness(0.82) saturate(0.88);transition:filter 1.2s ease;}
.arch-portrait:hover .arch-photo{filter:sepia(10%) contrast(0.96) brightness(0.92) saturate(0.95);}
.arch-vignette{position:absolute;inset:0;background:radial-gradient(ellipse 100% 60% at 50% 100%,rgba(11,10,7,0.85) 0%,transparent 70%),radial-gradient(ellipse 100% 30% at 50% 0%,rgba(11,10,7,0.5) 0%,transparent 80%),linear-gradient(to bottom,rgba(11,10,7,0.1) 0%,transparent 30%,transparent 65%,rgba(11,10,7,0.4) 100%);pointer-events:none;z-index:2;}
.about-heading{font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.4em;text-transform:uppercase;color:rgba(216,212,204,0.72);margin-bottom:1.8rem;}
.about-quote{font-family:'Fraunces',serif;font-style:italic;font-size:clamp(1.05rem,1.7vw,1.3rem);line-height:1.8;color:rgba(232,230,226,1.0);margin:0 0 1.8rem;padding-left:1.5rem;border-left:1px solid rgba(216,212,204,0.3);max-width:38em;}
.about-body{font-size:clamp(1rem,1.6vw,1.15rem);font-weight:300;line-height:2;color:rgba(232,230,226,1.0);}
.about-body p+p{margin-top:1.1em;}
.about-link{display:inline-block;margin-top:1.8rem;font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.3em;text-transform:uppercase;color:rgba(216,212,204,0.78);text-decoration:none;transition:color 0.4s;}
.about-link:hover{color:var(--gold);}

/* resonances */
.testimonials{background:var(--earth);padding:3.5rem 0 4rem;overflow:hidden;}
.testimonials-header{padding:0 3.5rem;margin-bottom:2.4rem;display:flex;align-items:center;gap:1.5rem;}
.testimonials-line{flex:1;height:1px;background:linear-gradient(90deg,rgba(216,212,204,0.15),transparent);}
.testimonials-label{font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.4em;text-transform:uppercase;color:rgba(216,212,204,0.62);}

/* A settled "constellation" of quotes — irregular columns, staggered
   vertical offsets and varied opacity, so the praise reads like resonances
   that have come to rest. No motion at steady state; each card fades in
   once, the first time the section scrolls into view (see .r-card.visible). */
.resonance-field{
  column-count:4; column-gap:1.5rem;
  padding:0 3.5rem; max-width:1280px; margin:0 auto;
}
.r-card{
  break-inside:avoid; -webkit-column-break-inside:avoid;
  margin:0 0 1.5rem; padding:1.5rem 1.7rem;
  border:1px solid rgba(216,212,204,0.08);
  background:rgba(216,212,204,0.02);
  position:relative;
  opacity:0; transform:translateY(14px);
  transition:opacity 1.1s ease, transform 1.1s ease;
}
.r-card.visible{opacity:1;transform:translateY(0);}
.r-card::before{content:'\201C';position:absolute;top:0.6rem;left:1.3rem;font-family:'Fraunces',serif;font-size:2.8rem;color:rgba(216,212,204,0.20);line-height:1;}
.r-card .t-text{font-family:'Fraunces',serif;font-style:italic;font-size:1rem;line-height:1.75;color:rgba(232,230,226,1.0);padding-top:0.9rem;border:0;margin:0;}
/* varied weight so the field feels uneven, like overlapping resonances */
.r-pos-1{margin-top:0.8rem;opacity:0;}
.r-pos-3{margin-top:1.2rem;}
.r-pos-4 .t-text,.r-pos-7 .t-text{font-size:1.1rem;}
.r-pos-5{margin-top:0.5rem;}
.r-pos-6 .t-text,.r-pos-9 .t-text,.r-pos-10 .t-text{color:rgba(232,230,226,0.82);}
.r-pos-8{margin-top:0.9rem;}
.r-pos-10 .t-text{font-size:1.12rem;}
/* stagger the fade-in so the field assembles rather than snapping in */
.r-card.visible{transition-delay:0s;}
.r-pos-2.visible{transition-delay:0.12s;}
.r-pos-3.visible{transition-delay:0.22s;}
.r-pos-4.visible{transition-delay:0.30s;}
.r-pos-5.visible{transition-delay:0.18s;}
.r-pos-6.visible{transition-delay:0.40s;}
.r-pos-7.visible{transition-delay:0.34s;}
.r-pos-8.visible{transition-delay:0.48s;}
.r-pos-9.visible{transition-delay:0.44s;}
.r-pos-10.visible{transition-delay:0.54s;}
@media(max-width:1080px){.resonance-field{column-count:3;}}
@media(max-width:820px){.resonance-field{column-count:2;}}
@media(max-width:560px){.resonance-field{column-count:1;padding:0 2rem;}.r-card{margin-top:0 !important;}}
@media(prefers-reduced-motion:reduce){
  .r-card{transition:none;opacity:1;transform:none;}
  .r-card.visible{transition-delay:0s;}
}

/* journal preview */
.journal-section{background:var(--void);padding:7rem 3.5rem;}
.journal-header{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:4rem;}
.journal-title{font-family:'Cinzel',serif;font-size:clamp(1.4rem,3vw,2rem);font-weight:300;letter-spacing:0.3em;text-transform:uppercase;color:var(--sand);}
.journal-all{font-family:'Cinzel',serif;font-size:0.68rem;font-weight:300;letter-spacing:0.3em;text-transform:uppercase;color:rgba(216,212,204,0.68);text-decoration:none;transition:color 0.4s;}
.journal-all:hover{color:var(--gold);}
.posts-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr;grid-template-rows:auto auto;gap:1px;background:rgba(216,212,204,0.06);}
.post{background:var(--void);padding:2.5rem;text-decoration:none;display:flex;flex-direction:column;gap:0.9rem;transition:background 0.5s;}
.post:hover{background:rgba(216,212,204,0.025);}
.post:hover .post-read{color:rgba(216,212,204,0.7);}
.post.featured{grid-row:span 2;justify-content:flex-end;padding:3rem;min-height:450px;background:linear-gradient(to top,rgba(11,10,7,0.97) 0%,rgba(11,10,7,0.6) 50%,rgba(11,10,7,0.2) 100%),radial-gradient(ellipse at 40% 30%,rgba(216,212,204,0.06) 0%,transparent 60%),var(--earth);}
.post-cat{font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.35em;text-transform:uppercase;color:rgba(216,212,204,0.65);}
.post-title{font-family:'Fraunces',serif;font-size:1.1rem;line-height:1.45;color:rgba(232,230,226,1.0);transition:color 0.4s;}
.post:hover .post-title{color:var(--sand);}
.post.featured .post-title{font-size:1.5rem;line-height:1.4;}
.post-excerpt{font-size:0.9rem;font-weight:300;line-height:1.8;color:rgba(232,230,226,1.0);display:none;}
.post.featured .post-excerpt{display:block;}
.post-read{font-family:'Cinzel',serif;font-size:0.65rem;letter-spacing:0.3em;text-transform:uppercase;color:rgba(216,212,204,0.80);margin-top:auto;transition:color 0.4s;}

/* subscribe */
.sub-note{font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.2em;text-transform:uppercase;color:rgba(216,212,204,0.72);position:relative;z-index:2;}

/* Compact mailing list strip */
.mailing-strip{background:var(--earth);padding:1.6rem 3.5rem;display:flex;align-items:center;justify-content:center;gap:2rem;flex-wrap:wrap;}
.mailing-strip-label{font-family:'Fraunces',serif;font-style:italic;font-size:1.3rem;font-weight:300;letter-spacing:0.01em;text-transform:none;color:rgba(232,230,226,1.0);white-space:nowrap;}
.mailing-strip .brevo-form{margin:0;}

@media(max-width:800px){
  .about-strip{grid-template-columns:1fr;padding:5rem 2rem;gap:3rem;}
  .about-visual{display:flex;justify-content:center;align-items:center;}
  .arch-portrait{width:220px;height:300px;}
  .arch-portrait-inner{width:190px;height:265px;border-radius:95px 95px 14px 14px;}
  .posts-grid{grid-template-columns:1fr;}
  .post.featured{min-height:280px;}
  .listen-section{flex-direction:column;align-items:flex-start;padding:4rem 2rem;}
  .journal-section{padding:5rem 2rem;}
  .mailing-strip{padding:1.4rem 2rem;gap:1.2rem;flex-direction:column;align-items:center;}
  .brevo-form{flex-direction:column;}
  .hero-photo{left:50%;width:clamp(480px,100vw,780px);height:clamp(480px,100vw,780px);opacity:0.32;}
}

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */
/* HERO */
.about-hero{background:var(--earth);padding:7rem 3.5rem 5rem;position:relative;overflow:hidden;}
.about-hero-inner{display:grid;grid-template-columns:1fr 1.1fr;gap:5rem;align-items:center;max-width:1000px;margin:0 auto;}
.about-hero::before{content:'';position:absolute;width:700px;height:700px;border-radius:50%;border:1px solid rgba(216,212,204,0.04);top:50%;right:-200px;transform:translateY(-50%);}


.about-eyebrow{font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.45em;text-transform:uppercase;color:rgba(216,212,204,0.70);margin-bottom:1.5rem;}
.about-name{font-family:'Cinzel',serif;font-size:clamp(2rem,4vw,3.2rem);font-weight:300;letter-spacing:0.3em;text-transform:uppercase;color:var(--sand);line-height:1.1;margin-bottom:0.5rem;}
.about-role{font-family:'Fraunces',serif;font-style:italic;font-size:1.2rem;color:rgba(216,212,204,0.75);margin-bottom:2.5rem;}
.about-intro{font-size:clamp(1.05rem,1.8vw,1.25rem);font-weight:300;line-height:2;color:rgba(232,230,226,1.0);}

/* BIO BODY */
.about-body-section{background:var(--void);padding:5rem 3.5rem;max-width:800px;margin:0 auto;}
.about-body-section p{font-size:clamp(1rem,1.6vw,1.18rem);font-weight:300;line-height:2;color:rgba(232,230,226,1.0);margin-bottom:1.4em;}
.about-body-section p:last-child{margin-bottom:0;}
.about-body-section a{color:var(--gold);text-decoration:none;border-bottom:1px solid rgba(216,212,204,0.25);transition:border-color 0.3s;}
.about-body-section a:hover{border-color:var(--gold);}

/* PRESS */
.press-section{background:var(--earth);padding:5rem 3.5rem;}
.press-section-inner{max-width:800px;margin:0 auto;}
.press-eyebrow{font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.45em;text-transform:uppercase;color:rgba(216,212,204,0.68);margin-bottom:3rem;}
.about-design-eyebrow{font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.45em;text-transform:uppercase;color:rgba(216,212,204,0.68);margin-bottom:1.2rem;}

.press-block{margin-bottom:3.5rem;}
.press-block:last-child{margin-bottom:0;}
.press-pub{font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.35em;text-transform:uppercase;color:rgba(216,212,204,0.80);margin-bottom:1.2rem;padding-bottom:0.8rem;border-bottom:1px solid rgba(216,212,204,0.08);}

.press-links{display:flex;flex-direction:column;gap:0.7rem;}
.press-link{font-family:'Fraunces',serif;font-style:italic;font-size:1.05rem;color:rgba(232,230,226,1.0);text-decoration:none;transition:color 0.4s;border-bottom:none;}
.press-link:hover{color:var(--gold);}
.press-link::before{content:'→ ';color:rgba(216,212,204,0.60);font-style:normal;font-size:0.85rem;}

.video-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0.8rem;margin-top:1rem;}
.video-pill{font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.18em;text-transform:uppercase;color:rgba(232,230,226,1.0);text-decoration:none;border:1px solid rgba(232,230,226,0.30);padding:0.7rem 1rem;text-align:center;border-radius:2px;transition:color 0.4s,border-color 0.4s,background 0.4s;}
.video-pill:hover{color:var(--gold);border-color:rgba(216,212,204,0.3);background:rgba(216,212,204,0.04);}
@media(max-width:800px){
  .about-hero-inner{grid-template-columns:1fr;gap:3rem;}
.about-hero{padding:5rem 1.5rem 3rem;}
  .about-body-section{padding:4rem 1.5rem;}
  .press-section{padding:4rem 1.5rem;}
  .video-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:520px){
  .video-grid{grid-template-columns:1fr;}
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.contact-page {
  min-height: 80vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 8rem 3.5rem 5rem;
  text-align: center;
  position: relative; overflow: hidden;
  background: var(--void);
}
.c-circle {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; opacity: 0.75;
}
.c-circle:nth-child(1){width:600px;height:600px;border:1px solid rgba(216,212,204,0.05);}
.c-circle:nth-child(2){width:420px;height:420px;border:1px solid rgba(216,212,204,0.04);}
.c-circle:nth-child(3){width:240px;height:240px;border:1px solid rgba(216,212,204,0.06);}

/* Brevo subscribe block */
.subscribe-block {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  margin-bottom: 4rem;
}
.sub-label{font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.35em;text-transform:uppercase;color:rgba(216,212,204,0.62);}

.sub-note{font-family:'Cinzel',serif;font-size:0.65rem;letter-spacing:0.2em;text-transform:uppercase;color:rgba(216,212,204,0.68);}

/* Links */

@media(max-width:600px){
  .contact-page{padding:6rem 1.5rem 4rem;}
  .brevo-form{flex-direction:column;}
}

/* --------------------------------------------------------------------------
   Journal pages (split from original journal.html)
   -------------------------------------------------------------------------- */

.journal-hero{background:var(--earth);padding:6rem 3.5rem 4rem;text-align:center;position:relative;overflow:hidden;}
.journal-hero::before{content:'';position:absolute;width:600px;height:600px;border-radius:50%;border:1px solid rgba(216,212,204,0.05);top:50%;left:50%;transform:translate(-50%,-50%);pointer-events:none;}
.journal-hero::after{content:'';position:absolute;width:380px;height:380px;border-radius:50%;border:1px solid rgba(216,212,204,0.04);top:50%;left:50%;transform:translate(-50%,-50%);pointer-events:none;}
.journal-eyebrow{font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.45em;text-transform:uppercase;color:rgba(216,212,204,0.68);margin-bottom:1rem;position:relative;z-index:2;}
.journal-hero-title{font-family:'Cinzel',serif;font-size:clamp(2rem,5vw,3.5rem);font-weight:300;letter-spacing:0.3em;text-transform:uppercase;color:var(--sand);position:relative;z-index:2;}
.journal-hero-sub{font-family:'Fraunces',serif;font-style:italic;font-size:1.1rem;color:rgba(232,230,226,1.0);margin-top:1rem;position:relative;z-index:2;}
.filter-bar{background:var(--void);padding:1.8rem 3.5rem;display:flex;gap:0.8rem;flex-wrap:wrap;align-items:center;justify-content:center;border-bottom:1px solid rgba(216,212,204,0.07);}
.filter-label{font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.3em;text-transform:uppercase;color:rgba(216,212,204,0.78);margin-right:0.3rem;}
.filter-btn{font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.2em;text-transform:uppercase;color:rgba(232,230,226,1.0);background:none;border:1px solid rgba(232,230,226,0.40);padding:0.4rem 1rem;border-radius:50px;cursor:pointer;transition:color 0.3s,border-color 0.3s,background 0.3s;}
.filter-btn:hover{color:var(--gold);border-color:rgba(216,212,204,0.3);background:rgba(216,212,204,0.05);}
.filter-btn.active{color:var(--gold);border-color:rgba(232,200,122,0.45);background:rgba(232,200,122,0.08);}
.entries{padding:4rem 3.5rem;max-width:860px;margin:0 auto;}
.entry{padding:3.5rem 0;border-bottom:1px solid rgba(216,212,204,0.07);}
.entry:last-child{border-bottom:none;}
.entry-meta{display:flex;gap:1.5rem;align-items:center;margin-bottom:1.2rem;}
.entry-cat{font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.35em;text-transform:uppercase;color:rgba(216,212,204,0.78);}
.entry-date{font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.2em;text-transform:uppercase;color:rgba(232,230,226,1.0);}
.entry-title{font-family:'Fraunces',serif;font-size:clamp(1.4rem,2.5vw,1.9rem);font-weight:400;line-height:1.3;color:var(--sand);margin-bottom:1.6rem;}
.entry-body{font-size:clamp(1rem,1.6vw,1.15rem);font-weight:300;line-height:1.95;max-width:68ch;color:rgba(232,230,226,1.0);}
.entry-body p{margin-bottom:1.2em;}
.entry-body p:last-child{margin-bottom:0;}
.entry-body h1,.entry-body h2,.entry-body h3,.entry-body h4,.entry-body h5,.entry-body h6{font-family:'Cinzel',serif;font-size:0.7rem;font-weight:300;letter-spacing:0.25em;text-transform:uppercase;color:rgba(216,212,204,0.80);margin:2em 0 0.8em;}
.entry-body ul,.entry-body ol{padding-left:1.5rem;margin-bottom:1.2em;}
.entry-body li{margin-bottom:0.5em;}
.entry-body a{color:var(--gold);text-decoration:none;border-bottom:1px solid rgba(216,212,204,0.25);transition:border-color 0.3s;}
.entry-body a:hover{border-color:var(--gold);}
.entry-body strong{color:rgba(232,230,226,1.0);font-weight:400;}
.entry-body hr{border:none;border-top:1px solid rgba(216,212,204,0.1);margin:2em 0;}
.entry-body blockquote{font-family:'Fraunces',serif;font-style:italic;font-size:1.15rem;line-height:1.65;color:rgba(232,230,226,1.0);padding-left:1.5rem;border-left:1px solid rgba(216,212,204,0.3);margin:1.5em 0;}
.entry-body img{max-width:100%;height:auto;margin:1.5rem 0;opacity:0.85;display:block;}
.entry-body img.alignleft{float:left;max-width:280px;margin:0.5rem 1.5rem 1rem 0;}
.entry-body img.alignright{float:right;max-width:280px;margin:0.5rem 0 1rem 1.5rem;}
.entry-body img.aligncenter{margin-left:auto;margin-right:auto;}
.entry-body p img{display:inline;vertical-align:middle;max-width:180px;height:auto;margin:0.3rem 0.5rem;}
.entry-body::after{content:"";display:table;clear:both;}
.entry-body figure{margin:1.5rem 0;}
.entry-body figcaption{font-family:'Cinzel',serif;font-size:0.65rem;letter-spacing:0.2em;text-transform:uppercase;color:rgba(232,230,226,1.0);margin-top:0.5rem;}
.back-top{display:block;text-align:center;padding:3rem;font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.3em;text-transform:uppercase;color:rgba(216,212,204,0.78);text-decoration:none;transition:color 0.4s;}
.back-top:hover{color:var(--gold);}
@media(max-width:768px){
  .journal-hero{padding:5rem 1.5rem 3rem;}
  .filter-bar{padding:1.5rem;}
  .entries{padding:3rem 1.5rem;}
}
.store-link-clean{display:inline-block;margin:1rem 0;font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.25em;text-transform:uppercase;color:var(--gold);text-decoration:none;border:1px solid rgba(216,212,204,0.25);padding:0.7rem 1.5rem;border-radius:50px;transition:background 0.4s,border-color 0.4s;border-bottom:1px solid rgba(216,212,204,0.25)!important;}
.store-link-clean:hover{background:rgba(216,212,204,0.08);border-color:rgba(216,212,204,0.5)!important;}
.copy-link{display:inline-flex;align-items:center;margin-left:0.8rem;opacity:0;transition:opacity 0.3s;cursor:pointer;background:none;border:none;padding:0;vertical-align:middle;}
.entry:hover .copy-link{opacity:1;}
.copy-link svg{width:14px;height:14px;stroke:rgba(216,212,204,0.4);fill:none;stroke-width:2;transition:stroke 0.3s;}
.copy-link:hover svg{stroke:var(--gold);}
.copy-toast{position:fixed;bottom:2rem;left:50%;transform:translateX(-50%);background:rgba(28,26,20,0.95);color:var(--gold);font-family:'Cinzel',serif;font-size:0.65rem;letter-spacing:0.25em;text-transform:uppercase;padding:0.7rem 1.5rem;border:1px solid rgba(216,212,204,0.2);opacity:0;transition:opacity 0.3s;pointer-events:none;z-index:999;}
.copy-toast.show{opacity:1;}

.journal-list-link{display:inline-block;margin-top:1.2rem;font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.25em;text-transform:uppercase;color:var(--gold);text-decoration:none;border:1px solid rgba(216,212,204,0.25);padding:0.65rem 1.35rem;border-radius:50px;transition:background 0.4s,border-color 0.4s;}
.journal-list-link:hover{background:rgba(216,212,204,0.08);border-color:rgba(216,212,204,0.5);}
.article-back{display:inline-block;margin-bottom:2rem;font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.25em;text-transform:uppercase;color:rgba(216,212,204,0.72);text-decoration:none;}
.article-back:hover{color:var(--gold);}

/* --------------------------------------------------------------------------
   Mailing list visibility and Connect page updates
   -------------------------------------------------------------------------- */
.footer-signup {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: min(100%, 310px);
}
.footer-signup-label,
.sub-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(216,212,204,0.80);
}
.footer-signup-note {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,230,226,1.0);
}
.footer-brevo-form {
  margin-top: 0;
}
.footer-brevo-form input[type="email"] {
  min-width: min(200px, 60vw);
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
}
.footer-brevo-form button {
  padding: 0.65rem 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}

.connect-section {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  margin: 0 auto;
  padding: 2.6rem;
  border: 1px solid rgba(216,212,204,0.09);
  background: rgba(11,10,7,0.35);
  text-align: center;
}
.connect-mailing {
  margin-top: 1rem;
}
.connect-contact {
  margin-bottom: 1rem;
}
.connect-patreon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.patreon-logo-wrap {
  margin-bottom: 0.5rem;
}
.patreon-logo {
  display: block;
  opacity: 0.88;
  transition: opacity 0.3s;
}
.patreon-logo-wrap:hover .patreon-logo {
  opacity: 1;
}
.connect-patreon-btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,230,226,1.0);
  text-decoration: none;
  border: 1px solid rgba(232,230,226,0.42);
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  transition: color 0.4s, border-color 0.4s, background 0.4s;
}
.connect-patreon-btn:hover {
  color: var(--gold);
  border-color: rgba(216,212,204,0.3);
  background: rgba(216,212,204,0.05);
}
.connect-section-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: rgba(232,230,226,1.0);
  margin: 0.9rem 0 0.7rem;
}
.connect-section-copy {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(232,230,226,1.0);
  max-width: 460px;
  margin: 0 auto 1.7rem;
}
.connect-subscribe-block {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
.connect-divider {
  position: relative;
  z-index: 2;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.connect-divider span {
  width: 1px;
  height: 4.5rem;
  background: linear-gradient(180deg, transparent, rgba(216,212,204,0.18), transparent);
}

@media (max-width: 900px) {
  footer {
    align-items: flex-start;
  }
  .footer-signup {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .connect-section {
    padding: 2rem 1.4rem;
  }
  .connect-divider {
    height: 5.5rem;
  }
  .footer-brevo-form input[type="email"] {
    width: 100%;
  }
}

/* ── Mobile fixes ─────────────────────────────────────────────────────────── */

/* Footer email input — prevent overflow on very narrow screens */
@media (max-width: 380px) {
  .footer-signup { min-width: 0; }
}

/* ── Entry download link ─────────────────────────────────────────────────── */
.entry-download-link {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(216,212,204,0.1);
}
.entry-download-link a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
.entry-download-link a:hover {
  color: var(--sand);
}

/* ── About page pullquote ────────────────────────────────────────────────── */
.about-pullquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(232,230,226,1.0);
  border-left: 1px solid rgba(216,212,204,0.35);
  margin: 2.5rem 0 1rem;
  padding: 0.5rem 0 0.5rem 2rem;
  max-width: 560px;
}

/* ── Brevo signup feedback states ───────────────────────────────────────────── */
.brevo-feedback {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.6;
  margin-top: 1rem;
}
.brevo-feedback--success,
.brevo-feedback--already {
  color: rgba(216,212,204,0.7);
}
.brevo-feedback--invalid,
.brevo-feedback--error {
  color: rgba(201,100,100,0.75);
}

/* Disable button while submitting */
.brevo-form button:disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

/* ── Contact form ────────────────────────────────────────────────────────── */
.contact-honeypot {
  display: none !important;
  visibility: hidden;
}
.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 480px;
  margin-top: 1.8rem;
}
.contact-field { display: flex; flex-direction: column; }
.contact-input,
.contact-textarea {
  background: rgba(216,212,204,0.08);
  border: 1px solid rgba(216,212,204,0.45);
  border-radius: 6px;
  color: var(--sand);
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  font-weight: 300;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}
.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(232,230,226,0.6);
}
.contact-input:focus,
.contact-textarea:focus {
  border-color: rgba(216,212,204,0.75);
}
.contact-textarea { min-height: 120px; }
.contact-submit {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(216,212,204,0.10);
  border: 1px solid rgba(216,212,204,0.55);
  border-radius: 999px;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  align-self: flex-start;
  margin-top: 0.4rem;
}
.contact-submit:hover {
  border-color: rgba(216,212,204,0.82);
  color: var(--sand);
}
.contact-submit:disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}
.contact-feedback {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  min-height: 1.2em;
}
.contact-feedback--success { color: rgba(216,212,204,0.7); }
.contact-feedback--error   { color: rgba(201,100,100,0.75); }

/* ── About page inline photo ─────────────────────────────────────────────── */
.about-inline-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: right center;
  filter: sepia(8%) contrast(1.03);
  opacity: 0.88;
}
.about-inline-photo--right {
  float: right;
  margin: 0.2rem 0 1.2rem 2rem;
  shape-outside: margin-box;
}
@media (max-width: 520px) {
  .about-inline-photo {
    width: 130px;
    height: 130px;
    margin-left: 1.2rem;
  }
}

/* ── Brevo hosted mailing-list forms ─────────────────────────────────────── */
.brevo-hosted-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  width: 100%;
}
.brevo-hosted-form input[type="email"] {
  background: rgba(232,230,226,0.10);
  border: 1px solid rgba(216,212,204,0.45);
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  color: var(--sand);
  font-family: 'Crimson Pro', serif;
  font-size: 0.95rem;
  font-weight: 300;
  min-width: min(280px, 72vw);
  flex: 1 1 auto;
  outline: none;
  text-align: center;
  transition: border-color 0.4s, background 0.4s;
  box-sizing: border-box;
}
.brevo-hosted-form input[type="email"]::placeholder {
  color: rgba(232,230,226,0.6);
}
.brevo-hosted-form input[type="email"]:focus {
  border-color: rgba(216,212,204,0.75);
  background: rgba(232,230,226,0.15);
}
.brevo-hosted-form button {
  background: rgba(216,212,204,0.22);
  border: 1px solid rgba(216,212,204,0.55);
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  flex-shrink: 0;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.4s, border-color 0.4s;
}
.brevo-hosted-form button:hover {
  background: rgba(216,212,204,0.38);
  border-color: rgba(216,212,204,0.82);
}
.input--hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.brevo-submit-target {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Albums page
   -------------------------------------------------------------------------- */

.albums-hero {
  background: var(--earth);
  padding: 6rem 3.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.albums-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(216,212,204,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.albums-hero::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(216,212,204,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.albums-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: rgba(216,212,204,0.68);
  margin-bottom: 1rem;
  position: relative; z-index: 2;
}
.albums-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem,5vw,3.5rem);
  font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sand);
  position: relative; z-index: 2;
}
.albums-hero-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(232,230,226,1.0);
  margin-top: 1rem;
  position: relative; z-index: 2;
}

.albums-store-strip {
  background: var(--void);
  padding: 2.2rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(216,212,204,0.07);
}
.albums-store-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(216,212,204,0.6);
  margin-right: 0.4rem;
}

.albums-section {
  background: var(--void);
  padding: 5rem 3.5rem 7rem;
}
.albums-count {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(216,212,204,0.75);
  margin-bottom: 3.5rem;
  text-align: center;
}
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(216,212,204,0.07);
  max-width: 1200px;
  margin: 0 auto;
}
.album-card {
  background: var(--void);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background 0.5s;
  position: relative;
  overflow: hidden;
}
.album-card:hover {
  background: rgba(216,212,204,0.025);
}
.album-art-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--earth);
}
.album-art-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.82;
  filter: sepia(12%) contrast(1.04);
  transition: opacity 0.6s, transform 0.6s;
}
.album-card:hover .album-art-wrap img {
  opacity: 0.95;
  transform: scale(1.03);
}
.album-new-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(11,10,7,0.88);
  border: 1px solid rgba(216,212,204,0.25);
  padding: 0.3rem 0.8rem;
  z-index: 2;
}
.album-info {
  padding: 1.6rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.album-year {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(216,212,204,0.65);
}
.album-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  line-height: 1.35;
  color: rgba(232,230,226,1.0);
  transition: color 0.4s;
}
.album-card:hover .album-title { color: var(--sand); }
.album-type {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(232,230,226,1.0);
  margin-top: auto;
  padding-top: 1rem;
}
.album-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(232,230,226,1.0);
  margin-top: 0.3rem;
}

.album-card.featured { grid-column: span 2; }
.album-card.featured .album-art-wrap { aspect-ratio: 2 / 1; }
.album-card.featured .album-title { font-size: 1.5rem; }
.album-card.featured .album-desc { display: block; }

@media (max-width: 900px) {
  .album-card.featured { grid-column: span 1; }
  .album-card.featured .album-art-wrap { aspect-ratio: 1; }
  .album-card.featured .album-title { font-size: 1.2rem; }
}
@media (max-width: 768px) {
  .albums-hero { padding: 5rem 1.5rem 3rem; }
  .albums-section { padding: 4rem 1.5rem 5rem; }
  .albums-store-strip { padding: 1.8rem 1.5rem; }
  .albums-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
@media (max-width: 520px) {
  .albums-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .albums-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Mobile readability improvements
   -------------------------------------------------------------------------- */

/* Bump Cinzel label/eyebrow font sizes and ease letter-spacing on mobile */
@media (max-width: 768px) {
  .about-heading,
  .about-eyebrow,
  .about-design-eyebrow,
  .press-eyebrow,
  .testimonials-label,
  .sub-label,
  .sub-note,
  .journal-eyebrow,
  .filter-label,
  .filter-btn,
  .entry-cat,
  .entry-date,
  .back-top,
  .article-back,
  .post-cat,
  .post-read,
  .journal-all,
  .albums-eyebrow,
  .albums-store-label,
  .albums-count,
  .album-year,
  .album-type,
  .store-pill,
  .video-pill,
  .footer-copy {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }

  /* Slightly tighten heading letter-spacing for breathing room */
  .nav-name,
  .footer-name {
    letter-spacing: 0.25em;
  }

  /* Bump Cinzel nav/footer weight for crispness */
  .nav-links a,
  .nav-name,
  .footer-links a,
  .footer-name {
    font-weight: 400;
  }

  /* Prose weights — reinforce 300 explicitly on mobile */
  .about-body,
  .about-intro,
  .about-body-section p,
  .entry-body,
  .connect-section-copy {
    font-weight: 300;
  }
}

/* Extra-small screens — push a bit further */
@media (max-width: 420px) {
  .about-heading,
  .about-eyebrow,
  .press-eyebrow,
  .sub-label,
  .journal-eyebrow,
  .filter-label,
  .filter-btn,
  .entry-cat,
  .entry-date,
  .post-cat,
  .post-read,
  .store-pill,
  .video-pill,
}

/* ── Related entries ─────────────────────────────────────────── */
.related-entries {
  margin: 2.5rem auto 0;
  max-width: 680px;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.related-entries-label {
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 0.75rem;
}

.related-entries-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.related-entries-list li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  transition: color 0.2s, border-color 0.2s;
}

.related-entries-list li a:hover {
  color: rgba(255,255,255,0.90);
  border-color: rgba(255,255,255,0.45);
}
