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

:root {
  --void: #0b0a07;
  --earth: #1c1a12;
  --sand: #c9b99a;
  --amber: #d4a55a;
  --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(212,165,90,0.07);
}

.nav-name {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(201,185,154,0.6); text-decoration: none;
  transition: color 0.4s;
}
.nav-name:hover { color: var(--amber); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(201,185,154,0.38); text-decoration: none;
  transition: color 0.4s;
}
.nav-links a:hover, .nav-links a.active { color: var(--amber); }

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

/* ── DIVIDER ── */
.om-divider {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 2rem 3.5rem; background: var(--earth);
}
.om-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,165,90,0.18), transparent);
}
.om-symbol { font-size: 0.85rem; color: rgba(212,165,90,0.22); user-select: none; }

/* ── 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(212,165,90,0.06);
}
.footer-name {
  font-family: 'Cinzel', serif; font-size: 0.7rem; font-weight: 300;
  letter-spacing: 0.4em; text-transform: uppercase; color: rgba(201,185,154,0.28);
}
.footer-links { display: flex; gap: 1.8rem; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Cinzel', serif; font-size: 0.5rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(201,185,154,0.2); text-decoration: none; transition: color 0.4s;
}
.footer-links a:hover { color: rgba(212,165,90,0.55); }
.footer-copy {
  font-family: 'Cinzel', serif; font-size: 0.46rem;
  letter-spacing: 0.18em; color: rgba(201,185,154,0.13); 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; }
.om-line-reverse { background: linear-gradient(90deg, rgba(212,165,90,0.18), transparent); }
.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(201,185,154,0.6);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  transform-origin: center;
}
.nav-toggle:hover span { background: var(--amber); }
.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.5rem; }
  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(212,165,90,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(212,165,90,0.07); }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
  }
}

/* --------------------------------------------------------------------------
   Home page
   -------------------------------------------------------------------------- */
#ripple-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1; opacity: 0.55;
}
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 90% 80% at 50% 50%, #2a1f0e 0%, #161209 40%, #0b0a07 100%);
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,165,90,0.08) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: breathe 8s ease-in-out infinite; z-index: 2; pointer-events: none;
}
@keyframes breathe {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity:.7; }
  50% { transform: translate(-50%,-50%) scale(1.18); opacity:1; }
}
.grain {
  position: absolute; inset:0; z-index:3; opacity:0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px; pointer-events:none;
}
.hero-center {
  position:relative; z-index:10;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  animation: riseIn 2.5s ease 0.3s both;
}
.circle-wrap { position:relative; width:320px; height:320px; margin-bottom:3.5rem; }
.circle-ring {
  position:absolute; border-radius:50%;
  top:50%; left:50%; transform:translate(-50%,-50%);
  animation: ringBreath 6s ease-in-out infinite;
}
.circle-ring:nth-child(1){width:320px;height:320px;border:1px solid rgba(212,165,90,0.2);animation-delay:0s;}
.circle-ring:nth-child(2){width:260px;height:260px;border:1px solid rgba(212,165,90,0.15);animation-delay:1.5s;}
.circle-ring:nth-child(3){width:200px;height:200px;border:1px solid rgba(212,165,90,0.1);animation-delay:3s;}
@keyframes ringBreath {
  0%,100%{opacity:.4;transform:translate(-50%,-50%) scale(1);}
  50%{opacity:.9;transform:translate(-50%,-50%) scale(1.04);}
}
.pulse-ring {
  position:absolute; border-radius:50%; border:1px solid rgba(212,165,90,0.15);
  top:50%; left:50%; transform:translate(-50%,-50%) scale(1);
  animation:pulseOut 5s ease-out infinite; pointer-events:none;
}
.pulse-ring:nth-child(4){width:320px;height:320px;animation-delay:0s;}
.pulse-ring:nth-child(5){width:320px;height:320px;animation-delay:1.7s;}
.pulse-ring:nth-child(6){width:320px;height:320px;animation-delay:3.4s;}
@keyframes pulseOut {
  0%{transform:translate(-50%,-50%) scale(1);opacity:.5;}
  100%{transform:translate(-50%,-50%) scale(2.4);opacity:0;}
}
.circle-inner {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:160px; height:160px; border-radius:50%;
  background:radial-gradient(circle,rgba(212,165,90,0.12) 0%,transparent 70%);
  display:flex; align-items:center; justify-content:center;
}
.circle-bass {
  font-family:'Cinzel',serif; font-size:0.58rem; font-weight:300;
  letter-spacing:0.45em; text-transform:uppercase; color:rgba(212,165,90,0.55);
}
.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;
}
.hero-sub {
  font-family:'IM Fell English',serif; font-style:italic;
  font-size:clamp(1rem,2vw,1.3rem); line-height:1.65;
  color:rgba(201,185,154,0.55); max-width:480px; margin-bottom:2.8rem;
}
.hero-cta {
  display:inline-flex; align-items:center; gap:1rem;
  font-family:'Cinzel',serif; font-size:0.6rem; font-weight:300;
  letter-spacing:0.35em; text-transform:uppercase; color:var(--amber);
  text-decoration:none; border:1px solid rgba(212,165,90,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(212,165,90,0.1),transparent);
  opacity:0; transition:opacity 0.5s;
}
.hero-cta:hover::before{opacity:1;}
.hero-cta:hover{border-color:rgba(212,165,90,0.5);}
.release-tag {
  position:absolute; bottom:3rem; left:50%; transform:translateX(-50%);
  z-index:10; display:flex; flex-direction:column; align-items:center; gap:0.5rem;
  animation:fadeIn 3s ease 1s both;
}
.release-dot {
  width:6px;height:6px;border-radius:50%;background:var(--amber);
  animation:pulseDot 2.5s ease-in-out infinite;
}
@keyframes pulseDot{0%,100%{opacity:.4;transform:scale(1);}50%{opacity:1;transform:scale(1.4);}}
.release-text{font-family:'Cinzel',serif;font-size:0.55rem;letter-spacing:0.3em;text-transform:uppercase;color:rgba(212,165,90,0.5);}
.release-title{font-family:'IM Fell English',serif;font-style:italic;font-size:0.9rem;color:rgba(201,185,154,0.6);}

/* listen */
.listen-section {
  background:var(--earth); padding:4.5rem 3.5rem;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:2rem;
}
.section-eyebrow{font-family:'Cinzel',serif;font-size:0.55rem;font-weight:300;letter-spacing:0.4em;text-transform:uppercase;color:rgba(212,165,90,0.4);}
.listen-heading{font-family:'IM Fell English',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.55rem;font-weight:300;letter-spacing:0.22em;text-transform:uppercase;color:rgba(201,185,154,0.45);text-decoration:none;border:1px solid rgba(201,185,154,0.12);padding:0.6rem 1.3rem;border-radius:50px;transition:color 0.4s,border-color 0.4s,background 0.4s;}
.store-pill:hover{color:var(--amber);border-color:rgba(212,165,90,0.3);background:rgba(212,165,90,0.05);}

/* about strip */
.about-strip {
  background:var(--void); padding:6rem 3.5rem;
  display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center;
  position:relative; overflow:hidden;
}
.about-strip::before{content:'';position:absolute;width:500px;height:500px;border-radius:50%;border:1px solid rgba(212,165,90,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(212,165,90,0.04);top:50%;right:-75px;transform:translateY(-50%);pointer-events:none;}
.mandala{position:relative;width:260px;height:260px;}
.mandala-ring{position:absolute;border-radius:50%;top:50%;left:50%;transform:translate(-50%,-50%);animation:slowSpin linear infinite;}
.mandala-ring:nth-child(1){width:260px;height:260px;border:1px solid rgba(212,165,90,0.12);animation-duration:120s;}
.mandala-ring:nth-child(2){width:200px;height:200px;border:1px dashed rgba(212,165,90,0.08);animation-duration:90s;animation-direction:reverse;}
.mandala-ring:nth-child(3){width:145px;height:145px;border:1px solid rgba(212,165,90,0.1);animation-duration:60s;}
.mandala-ring:nth-child(4){width:90px;height:90px;border:1px dotted rgba(212,165,90,0.18);animation-duration:45s;animation-direction:reverse;}
.mandala-core{position:absolute;width:32px;height:32px;border-radius:50%;top:50%;left:50%;transform:translate(-50%,-50%);background:radial-gradient(circle,rgba(212,165,90,0.2) 0%,transparent 100%);}
@keyframes slowSpin{from{transform:translate(-50%,-50%) rotate(0deg);}to{transform:translate(-50%,-50%) rotate(360deg);}}
.about-heading{font-family:'Cinzel',serif;font-size:0.65rem;font-weight:300;letter-spacing:0.4em;text-transform:uppercase;color:rgba(212,165,90,0.5);margin-bottom:1.8rem;}
.about-quote{font-family:'IM Fell English',serif;font-style:italic;font-size:clamp(1.05rem,1.7vw,1.3rem);line-height:1.8;color:rgba(201,185,154,0.8);margin:0 0 1.8rem;padding-left:1.5rem;border-left:1px solid rgba(212,165,90,0.3);max-width:38em;}
.about-body{font-size:clamp(1rem,1.6vw,1.15rem);font-weight:200;line-height:2;color:rgba(201,185,154,0.6);}
.about-body p+p{margin-top:1.1em;}
.about-link{display:inline-block;margin-top:1.8rem;font-family:'Cinzel',serif;font-size:0.55rem;font-weight:300;letter-spacing:0.3em;text-transform:uppercase;color:rgba(212,165,90,0.55);text-decoration:none;transition:color 0.4s;}
.about-link:hover{color:var(--amber);}

/* testimonials */
.testimonials{background:var(--earth);padding:5rem 0;overflow:hidden;}
.testimonials-header{padding:0 3.5rem;margin-bottom:3rem;display:flex;align-items:center;gap:1.5rem;}
.testimonials-line{flex:1;height:1px;background:linear-gradient(90deg,rgba(212,165,90,0.15),transparent);}
.testimonials-label{font-family:'Cinzel',serif;font-size:0.55rem;font-weight:300;letter-spacing:0.4em;text-transform:uppercase;color:rgba(212,165,90,0.35);}
.track-wrap{display:flex;gap:2rem;animation:drift 45s linear infinite;width:max-content;}
.track-wrap:hover{animation-play-state:paused;}
@keyframes drift{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
.t-card{width:300px;flex-shrink:0;padding:2rem 2.2rem;border:1px solid rgba(212,165,90,0.08);background:rgba(212,165,90,0.02);position:relative;}
.t-card::before{content:'\201C';position:absolute;top:0.8rem;left:1.5rem;font-family:'IM Fell English',serif;font-size:3rem;color:rgba(212,165,90,0.1);line-height:1;}
.t-text{font-family:'IM Fell English',serif;font-style:italic;font-size:1rem;line-height:1.75;color:rgba(201,185,154,0.55);padding-top:1rem;}

/* 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.55rem;font-weight:300;letter-spacing:0.3em;text-transform:uppercase;color:rgba(212,165,90,0.4);text-decoration:none;transition:color 0.4s;}
.journal-all:hover{color:var(--amber);}
.posts-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr;grid-template-rows:auto auto;gap:1px;background:rgba(212,165,90,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(212,165,90,0.025);}
.post:hover .post-read{color:rgba(212,165,90,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(212,165,90,0.06) 0%,transparent 60%),var(--earth);}
.post-cat{font-family:'Cinzel',serif;font-size:0.5rem;font-weight:300;letter-spacing:0.35em;text-transform:uppercase;color:rgba(212,165,90,0.4);}
.post-title{font-family:'IM Fell English',serif;font-size:1.1rem;line-height:1.45;color:rgba(201,185,154,0.8);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:200;line-height:1.8;color:rgba(201,185,154,0.4);display:none;}
.post.featured .post-excerpt{display:block;}
.post-read{font-family:'Cinzel',serif;font-size:0.5rem;letter-spacing:0.3em;text-transform:uppercase;color:rgba(212,165,90,0.3);margin-top:auto;transition:color 0.4s;}

/* subscribe */
.subscribe-section{background:var(--earth);padding:6rem 3.5rem;display:flex;flex-direction:column;align-items:center;text-align:center;gap:1.2rem;position:relative;overflow:hidden;}
.sub-circle{position:absolute;border-radius:50%;top:50%;left:50%;transform:translate(-50%,-50%);pointer-events:none;}
.sub-circle:nth-child(1){width:700px;height:700px;border:1px solid rgba(212,165,90,0.05);}
.sub-circle:nth-child(2){width:480px;height:480px;border:1px solid rgba(212,165,90,0.04);}
.sub-circle:nth-child(3){width:280px;height:280px;border:1px solid rgba(212,165,90,0.06);}
.sub-eyebrow{font-family:'Cinzel',serif;font-size:0.55rem;font-weight:300;letter-spacing:0.45em;text-transform:uppercase;color:rgba(212,165,90,0.35);position:relative;z-index:2;}
.sub-heading{font-family:'IM Fell English',serif;font-style:italic;font-size:clamp(1.3rem,2.5vw,1.8rem);color:rgba(201,185,154,0.7);max-width:460px;line-height:1.55;position:relative;z-index:2;}
.sub-note{font-family:'Cinzel',serif;font-size:0.5rem;font-weight:300;letter-spacing:0.2em;text-transform:uppercase;color:rgba(212,165,90,0.25);position:relative;z-index:2;}

@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}
@keyframes riseIn{from{opacity:0;transform:translateY(28px);}to{opacity:1;transform:translateY(0);}}

@media(max-width:800px){
  .about-strip{grid-template-columns:1fr;padding:5rem 2rem;gap:3rem;}
  .about-visual{display:none;}
  .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;}
  .subscribe-section{padding:5rem 2rem;}
  .brevo-form{flex-direction:column;}
  .brevo-form input[type="email"]{width:100%;border-right:1px solid rgba(212,165,90,0.15);border-bottom:none;}
  .circle-wrap{width:240px;height:240px;}
  .circle-ring:nth-child(1){width:240px;height:240px;}
  .circle-ring:nth-child(2){width:188px;height:188px;}
  .circle-ring:nth-child(3){width:138px;height:138px;}
}

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

.about-photo-wrap{position:relative;display:flex;justify-content:center;}
.about-photo{width:100%;max-width:420px;display:block;opacity:0.88;filter:sepia(15%) contrast(1.05);}
.about-photo-ring{position:absolute;border-radius:50%;border:1px solid rgba(212,165,90,0.1);animation:aboutSlowSpin linear infinite;}
.about-photo-ring:nth-child(2){width:110%;aspect-ratio:1;top:-5%;left:-5%;animation-duration:80s;}
.about-photo-ring:nth-child(3){width:126%;aspect-ratio:1;top:-13%;left:-13%;animation-duration:120s;animation-direction:reverse;border-style:dashed;border-color:rgba(212,165,90,0.06);}
@keyframes aboutSlowSpin{from{transform:rotate(0deg);}to{transform:rotate(360deg);}}

.about-eyebrow{font-family:'Cinzel',serif;font-size:0.6rem;font-weight:300;letter-spacing:0.45em;text-transform:uppercase;color:rgba(212,165,90,0.45);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:'IM Fell English',serif;font-style:italic;font-size:1.2rem;color:rgba(212,165,90,0.5);margin-bottom:2.5rem;}
.about-intro{font-size:clamp(1.05rem,1.8vw,1.25rem);font-weight:200;line-height:2;color:rgba(201,185,154,0.65);}

/* STATS */
.about-stats{background:var(--earth);display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background-color:rgba(212,165,90,0.07);}
.stat{background:var(--earth);padding:2.5rem;display:flex;flex-direction:column;gap:0.5rem;}
.stat-num{font-family:'Cinzel',serif;font-size:2rem;font-weight:300;letter-spacing:0.1em;color:rgba(212,165,90,0.6);}
.stat-label{font-family:'Cinzel',serif;font-size:0.52rem;font-weight:300;letter-spacing:0.3em;text-transform:uppercase;color:rgba(201,185,154,0.35);}

/* 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:200;line-height:2;color:rgba(201,185,154,0.6);margin-bottom:1.4em;}
.about-body-section p:last-child{margin-bottom:0;}
.about-body-section a{color:var(--amber);text-decoration:none;border-bottom:1px solid rgba(212,165,90,0.25);transition:border-color 0.3s;}
.about-body-section a:hover{border-color:var(--amber);}

/* 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.55rem;font-weight:300;letter-spacing:0.45em;text-transform:uppercase;color:rgba(212,165,90,0.4);margin-bottom:3rem;}

.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(212,165,90,0.55);margin-bottom:1.2rem;padding-bottom:0.8rem;border-bottom:1px solid rgba(212,165,90,0.08);}

.press-links{display:flex;flex-direction:column;gap:0.7rem;}
.press-link{font-family:'IM Fell English',serif;font-style:italic;font-size:1.05rem;color:rgba(201,185,154,0.55);text-decoration:none;transition:color 0.4s;border-bottom:none;}
.press-link:hover{color:var(--amber);}
.press-link::before{content:'→ ';color:rgba(212,165,90,0.3);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.52rem;font-weight:300;letter-spacing:0.18em;text-transform:uppercase;color:rgba(201,185,154,0.4);text-decoration:none;border:1px solid rgba(201,185,154,0.1);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(--amber);border-color:rgba(212,165,90,0.3);background:rgba(212,165,90,0.04);}
@media(max-width:800px){
  .about-hero{grid-template-columns:1fr;padding:5rem 1.5rem 3rem;gap:3rem;}
  .about-photo{max-width:260px;margin:0 auto;}
  .about-photo-ring{display:none;}
  .about-body-section{padding:4rem 1.5rem;}
  .about-stats{grid-template-columns:1fr 1fr;}
  .press-section{padding:4rem 1.5rem;}
  .video-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:520px){
  .video-grid{grid-template-columns:1fr;}
  .about-stats{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; animation: contactRingBreath 7s ease-in-out infinite;
}
.c-circle:nth-child(1){width:600px;height:600px;border:1px solid rgba(212,165,90,0.05);animation-delay:0s;}
.c-circle:nth-child(2){width:420px;height:420px;border:1px solid rgba(212,165,90,0.04);animation-delay:2s;}
.c-circle:nth-child(3){width:240px;height:240px;border:1px solid rgba(212,165,90,0.06);animation-delay:4s;}
@keyframes contactRingBreath{0%,100%{opacity:.5;transform:translate(-50%,-50%) scale(1);}50%{opacity:1;transform:translate(-50%,-50%) scale(1.03);}}

.contact-eyebrow{font-family:'Cinzel',serif;font-size:0.55rem;font-weight:300;letter-spacing:0.45em;text-transform:uppercase;color:rgba(212,165,90,0.4);margin-bottom:1.2rem;position:relative;z-index:2;}
.contact-title{font-family:'Cinzel',serif;font-size:clamp(2rem,5vw,3.2rem);font-weight:300;letter-spacing:0.3em;text-transform:uppercase;color:var(--sand);margin-bottom:1rem;position:relative;z-index:2;}
.contact-sub{font-family:'IM Fell English',serif;font-style:italic;font-size:1.15rem;color:rgba(201,185,154,0.5);max-width:440px;line-height:1.6;margin-bottom:3.5rem;position:relative;z-index:2;}

/* 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.52rem;font-weight:300;letter-spacing:0.35em;text-transform:uppercase;color:rgba(212,165,90,0.35);}

.sub-note{font-family:'Cinzel',serif;font-size:0.48rem;letter-spacing:0.2em;text-transform:uppercase;color:rgba(212,165,90,0.22);}

/* Links */
.contact-links {
  position: relative; z-index: 2;
  display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
}
.contact-link {
  font-family: 'Cinzel', serif; font-size: 0.55rem; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(201,185,154,0.35); text-decoration: none;
  border: 1px solid rgba(201,185,154,0.1);
  padding: 0.7rem 1.4rem; border-radius: 50px;
  transition: color 0.4s, border-color 0.4s, background 0.4s;
}
.contact-link:hover{color:var(--amber);border-color:rgba(212,165,90,0.3);background:rgba(212,165,90,0.04);}

@media(max-width:600px){
  .contact-page{padding:6rem 1.5rem 4rem;}
  .brevo-form{flex-direction:column;}
  .brevo-form input[type="email"]{width:100%;border-right:1px solid rgba(212,165,90,0.15);border-bottom:none;}
}

/* --------------------------------------------------------------------------
   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(212,165,90,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(212,165,90,0.04);top:50%;left:50%;transform:translate(-50%,-50%);pointer-events:none;}
.journal-eyebrow{font-family:'Cinzel',serif;font-size:0.55rem;font-weight:300;letter-spacing:0.45em;text-transform:uppercase;color:rgba(212,165,90,0.4);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:'IM Fell English',serif;font-style:italic;font-size:1.1rem;color:rgba(201,185,154,0.45);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;border-bottom:1px solid rgba(212,165,90,0.07);}
.filter-label{font-family:'Cinzel',serif;font-size:0.5rem;font-weight:300;letter-spacing:0.3em;text-transform:uppercase;color:rgba(212,165,90,0.3);margin-right:0.3rem;}
.filter-btn{font-family:'Cinzel',serif;font-size:0.5rem;font-weight:300;letter-spacing:0.2em;text-transform:uppercase;color:rgba(201,185,154,0.35);background:none;border:1px solid rgba(201,185,154,0.1);padding:0.4rem 1rem;border-radius:50px;cursor:pointer;transition:color 0.3s,border-color 0.3s,background 0.3s;}
.filter-btn:hover,.filter-btn.active{color:var(--amber);border-color:rgba(212,165,90,0.3);background:rgba(212,165,90,0.05);}
.entries{padding:4rem 3.5rem;max-width:860px;margin:0 auto;}
.entry{padding:3.5rem 0;border-bottom:1px solid rgba(212,165,90,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.5rem;font-weight:300;letter-spacing:0.35em;text-transform:uppercase;color:rgba(212,165,90,0.5);}
.entry-date{font-family:'Cinzel',serif;font-size:0.48rem;font-weight:300;letter-spacing:0.2em;text-transform:uppercase;color:rgba(201,185,154,0.25);}
.entry-title{font-family:'IM Fell English',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:200;line-height:1.95;color:rgba(201,185,154,0.6);}
.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(212,165,90,0.5);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(--amber);text-decoration:none;border-bottom:1px solid rgba(212,165,90,0.25);transition:border-color 0.3s;}
.entry-body a:hover{border-color:var(--amber);}
.entry-body strong{color:rgba(201,185,154,0.85);font-weight:400;}
.entry-body hr{border:none;border-top:1px solid rgba(212,165,90,0.1);margin:2em 0;}
.entry-body blockquote{font-family:'IM Fell English',serif;font-style:italic;font-size:1.15rem;line-height:1.65;color:rgba(201,185,154,0.75);padding-left:1.5rem;border-left:1px solid rgba(212,165,90,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.5rem;letter-spacing:0.2em;text-transform:uppercase;color:rgba(201,185,154,0.25);margin-top:0.5rem;}
.back-top{display:block;text-align:center;padding:3rem;font-family:'Cinzel',serif;font-size:0.52rem;font-weight:300;letter-spacing:0.3em;text-transform:uppercase;color:rgba(212,165,90,0.3);text-decoration:none;transition:color 0.4s;}
.back-top:hover{color:var(--amber);}
@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.6rem;font-weight:300;letter-spacing:0.25em;text-transform:uppercase;color:var(--amber);text-decoration:none;border:1px solid rgba(212,165,90,0.25);padding:0.7rem 1.5rem;border-radius:50px;transition:background 0.4s,border-color 0.4s;border-bottom:1px solid rgba(212,165,90,0.25)!important;}
.store-link-clean:hover{background:rgba(212,165,90,0.08);border-color:rgba(212,165,90,0.5)!important;}
.yt-btn{display:inline-flex;align-items:center;gap:0.6rem;font-family:'Cinzel',serif;font-size:0.6rem;font-weight:300;letter-spacing:0.25em;text-transform:uppercase;color:var(--amber);text-decoration:none;border:1px solid rgba(212,165,90,0.25);padding:0.7rem 1.5rem;border-radius:50px;transition:background 0.4s,border-color 0.4s;margin:0.5rem 0;}
.yt-btn:hover{background:rgba(212,165,90,0.08);border-color:rgba(212,165,90,0.5);}

.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(212,165,90,0.4);fill:none;stroke-width:2;transition:stroke 0.3s;}
.copy-link:hover svg{stroke:var(--amber);}
.copy-toast{position:fixed;bottom:2rem;left:50%;transform:translateX(-50%);background:rgba(28,26,20,0.95);color:var(--amber);font-family:'Cinzel',serif;font-size:0.55rem;letter-spacing:0.25em;text-transform:uppercase;padding:0.7rem 1.5rem;border:1px solid rgba(212,165,90,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.55rem;font-weight:300;letter-spacing:0.25em;text-transform:uppercase;color:var(--amber);text-decoration:none;border:1px solid rgba(212,165,90,0.25);padding:0.65rem 1.35rem;border-radius:50px;transition:background 0.4s,border-color 0.4s;}
.journal-list-link:hover{background:rgba(212,165,90,0.08);border-color:rgba(212,165,90,0.5);}
.article-back{display:inline-block;margin-bottom:2rem;font-family:'Cinzel',serif;font-size:0.52rem;font-weight:300;letter-spacing:0.25em;text-transform:uppercase;color:rgba(212,165,90,0.45);text-decoration:none;}
.article-back:hover{color:var(--amber);}

/* --------------------------------------------------------------------------
   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,
.signup-kicker,
.sub-label {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(212,165,90,0.42);
}
.footer-signup-note {
  font-family: 'Cinzel', serif;
  font-size: 0.45rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,185,154,0.18);
}
.footer-brevo-form {
  margin-top: 0;
}
.footer-brevo-form input[type="email"] {
  width: 190px;
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
}
.footer-brevo-form button {
  padding: 0.65rem 1rem;
  font-size: 0.48rem;
  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(212,165,90,0.09);
  background: rgba(11,10,7,0.35);
  text-align: center;
}
.connect-mailing {
  margin-top: 1rem;
}
.connect-contact {
  margin-bottom: 1rem;
}
.connect-section-title {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: rgba(201,185,154,0.78);
  margin: 0.9rem 0 0.7rem;
}
.connect-section-copy {
  font-size: 1.05rem;
  font-weight: 200;
  line-height: 1.75;
  color: rgba(201,185,154,0.5);
  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(212,165,90,0.18), transparent);
}

.journal-index-signup {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.2rem 3.5rem 1rem;
  text-align: center;
}
.journal-index-signup h2 {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 400;
  color: rgba(201,185,154,0.72);
  line-height: 1.45;
  margin: 0.85rem auto 0.7rem;
  max-width: 560px;
}
.journal-index-signup p {
  color: rgba(201,185,154,0.45);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 auto 1.4rem;
  max-width: 500px;
}
.journal-index-brevo-form,
.journal-brevo-form {
  justify-content: center;
}

@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;
  }
  .journal-index-signup {
    padding: 2.6rem 1.5rem 0.5rem;
  }
  .footer-brevo-form input[type="email"] {
    width: 100%;
  }
}

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

/* 1. Hero circle — shrink further on small phones so it doesn't clip */
@media (max-width: 400px) {
  .circle-wrap { width: 200px; height: 200px; }
  .circle-ring:nth-child(1) { width: 200px; height: 200px; }
  .circle-ring:nth-child(2) { width: 158px; height: 158px; }
  .circle-ring:nth-child(3) { width: 118px; height: 118px; }
  .pulse-ring:nth-child(4),
  .pulse-ring:nth-child(5),
  .pulse-ring:nth-child(6) { width: 200px; height: 200px; }
  .circle-inner { width: 120px; height: 120px; }
}

/* 3. Testimonial marquee — touch-friendly pause via active state */
.track-wrap:active { animation-play-state: paused; }

/* 4. Footer email input — prevent overflow on very narrow screens */
@media (max-width: 380px) {
  .footer-brevo-form { flex-direction: column; }
  .footer-brevo-form input[type="email"] {
    width: 100%;
    border-right: 1px solid rgba(212,165,90,0.15);
    border-bottom: none;
  }
  .footer-signup { min-width: 0; }
}

/* ── Entry download link ─────────────────────────────────────────────────── */
.entry-download-link {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212,165,90,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(--amber);
  text-decoration: none;
  transition: color 0.3s;
}
.entry-download-link a:hover {
  color: var(--sand);
}

/* ── About page pullquote ────────────────────────────────────────────────── */
.about-pullquote {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(201,185,154,0.6);
  border-left: 1px solid rgba(212,165,90,0.2);
  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.62rem;
  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(212,165,90,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(212,165,90,0.04);
  border: 1px solid rgba(212,165,90,0.15);
  color: var(--sand);
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  font-weight: 200;
  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(201,185,154,0.3);
}
.contact-input:focus,
.contact-textarea:focus {
  border-color: rgba(212,165,90,0.4);
}
.contact-textarea { min-height: 120px; }
.contact-submit {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--amber);
  background: transparent;
  border: 1px solid rgba(212,165,90,0.25);
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  align-self: flex-start;
  margin-top: 0.4rem;
}
.contact-submit:hover {
  border-color: rgba(212,165,90,0.6);
  color: var(--sand);
}
.contact-submit:disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}
.contact-feedback {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  min-height: 1.2em;
}
.contact-feedback--success { color: rgba(212,165,90,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;
}
.about-inline-photo--left {
  float: left;
  margin: 0.2rem 2rem 1.2rem 0;
  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;
  align-items: stretch;
  width: 100%;
}
.brevo-hosted-form input[type="email"] {
  background: rgba(201,185,154,0.05);
  border: 1px solid rgba(212,165,90,0.15);
  border-right: none;
  padding: 0.9rem 1.5rem;
  color: var(--sand);
  font-family: 'Crimson Pro', serif;
  font-size: 0.95rem;
  font-weight: 200;
  width: 260px;
  outline: none;
  transition: border-color 0.4s, background 0.4s;
  box-sizing: border-box;
}
.brevo-hosted-form input[type="email"]::placeholder {
  color: rgba(201,185,154,0.25);
}
.brevo-hosted-form input[type="email"]:focus {
  border-color: rgba(212,165,90,0.3);
  background: rgba(201,185,154,0.07);
}
.brevo-hosted-form button {
  background: rgba(212,165,90,0.12);
  border: 1px solid rgba(212,165,90,0.2);
  padding: 0.9rem 1.8rem;
  color: var(--amber);
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  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(212,165,90,0.2);
  border-color: rgba(212,165,90,0.4);
}
.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;
}
@media (max-width: 600px) {
  .brevo-hosted-form {
    flex-direction: column;
  }
  .brevo-hosted-form input[type="email"] {
    width: 100%;
    border-right: 1px solid rgba(212,165,90,0.15);
    border-bottom: none;
  }
  .brevo-hosted-form button {
    width: 100%;
    text-align: center;
  }
}

/* Keep hidden-iframe Brevo feedback below the form instead of beside it. */
.brevo-form.brevo-hosted {
  flex-direction: column;
  align-items: flex-start;
}
.brevo-form.brevo-hosted .brevo-hosted-form {
  width: auto;
}
@media (max-width: 600px) {
  .brevo-form.brevo-hosted,
  .brevo-form.brevo-hosted .brevo-hosted-form {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   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(212,165,90,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(212,165,90,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.albums-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem; font-weight: 300;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: rgba(212,165,90,0.4);
  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: 'IM Fell English', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(201,185,154,0.45);
  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(212,165,90,0.07);
}
.albums-store-label {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(212,165,90,0.28);
  margin-right: 0.4rem;
}

.albums-section {
  background: var(--void);
  padding: 5rem 3.5rem 7rem;
}
.albums-count {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(212,165,90,0.28);
  margin-bottom: 3.5rem;
  text-align: center;
}
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(212,165,90,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(212,165,90,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-art-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(212,165,90,0.06) 0%, transparent 70%);
}
.album-art-placeholder-inner {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(212,165,90,0.15);
  display: flex; align-items: center; justify-content: center;
}
.album-art-placeholder-inner span {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(212,165,90,0.25);
}
.album-new-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.45rem; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--amber);
  background: rgba(11,10,7,0.88);
  border: 1px solid rgba(212,165,90,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.47rem; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(212,165,90,0.35);
}
.album-title {
  font-family: 'IM Fell English', serif;
  font-size: 1.2rem;
  line-height: 1.35;
  color: rgba(201,185,154,0.85);
  transition: color 0.4s;
}
.album-card:hover .album-title { color: var(--sand); }
.album-type {
  font-family: 'Cinzel', serif;
  font-size: 0.47rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(201,185,154,0.22);
  margin-top: auto;
  padding-top: 1rem;
}
.album-desc {
  font-size: 0.9rem;
  font-weight: 200;
  line-height: 1.75;
  color: rgba(201,185,154,0.42);
  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; }

.albums-cta {
  background: var(--earth);
  padding: 5rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.albums-cta::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(212,165,90,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.albums-cta-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.52rem; font-weight: 300;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(212,165,90,0.35);
  margin-bottom: 1.2rem;
  position: relative; z-index: 2;
}
.albums-cta-heading {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: rgba(201,185,154,0.72);
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  position: relative; z-index: 2;
}
.albums-cta-pills {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative; z-index: 2;
}

@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-cta { padding: 4rem 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; }
}
