/* style.css — Theresa Power Hub | Cinematic Redesign */
/* Color System: 70% Deep Teal | 20% Red Accent | 10% White */

:root {
  --teal:        #005B5B;
  --teal-dark:   #003A3A;
  --teal-deeper: #002828;
  --teal-mid:    #004848;
  --red:         #C41E3A;
  --red-dark:    #8B1529;
  --white:       #FFFFFF;
  --white-dim:   rgba(255,255,255,0.82);
  --white-ghost: rgba(255,255,255,0.45);
  --white-faint: rgba(255,255,255,0.08);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  all 0.45s var(--ease-in-out);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--teal-dark);
  color: var(--white);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

/* Body lock during preload — prevents flash of un-animated content */
body.is-loading { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

p { color: var(--white-dim); font-weight: 300; }
/* ── LOGO SIZING — fixed dimensions regardless of source image size ── */

/* Header logo */
.site-logo-img {
  display: block;
  width: 120px;       /* fixed render width */
  height: 40px;       /* fixed render height */
  max-width: 120px;
  max-height: 40px;
  object-fit: contain; /* preserves aspect ratio, never distorts */
  object-position: left center;
  flex-shrink: 0;
}

/* Footer logo wrapper keeps the link inline */
.footer-logo-link {
  display: inline-block;
  line-height: 0;
}

/* Footer logo — slightly smaller than header */
.footer-logo-img {
  display: block;
  width: 100px;
  height: 34px;
  max-width: 100px;
  max-height: 34px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}
img { display: block; width: 100%; }

/* =============================================
   PRELOADER — CINEMATIC
   ============================================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--teal-deeper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}

.preloader.hidden {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
  visibility: hidden;
}

.preloader-ghost {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22vw, 38vw, 44vw);
  font-weight: 700;
  color: rgba(255,255,255,0.018);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  animation: ghostPulse 3s ease-in-out infinite;
}

@keyframes ghostPulse {
  0%,100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

.preloader-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.preloader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.pl-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.18em;
  display: block;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(38px) skewY(2deg);
  animation: plSlide 0.8s var(--ease-out) forwards;
}

.pl-word.accent {
  color: var(--red);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.pl-word:nth-child(1) { animation-delay: 0.1s; }
.pl-word:nth-child(2) { animation-delay: 0.3s; }
.pl-word:nth-child(3) { animation-delay: 0.5s; }

@keyframes plSlide {
  to { opacity: 1; transform: translateY(0) skewY(0deg); }
}

.pl-bar-wrap {
  width: clamp(120px, 25vw, 200px);
  height: 1.5px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 1.6rem;
  overflow: hidden;
}

.pl-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  animation: plBar 1.9s var(--ease-in-out) 0.7s forwards;
}

@keyframes plBar {
  0%   { width: 0; }
  60%  { width: 70%; }
  100% { width: 100%; }
}

.pl-sub {
  font-size: clamp(0.6rem, 1.8vw, 0.78rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--white-ghost);
  opacity: 0;
  animation: fadeUp 0.7s ease 1.1s forwards;
  margin: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--teal-deeper);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.active { opacity: 1; visibility: visible; }

.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.mobile-menu-close:hover { color: var(--red); transform: rotate(90deg); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  text-align: center;
}

.mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 7vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.06em;
  overflow: hidden;
  display: block;
}

.mobile-link span {
  display: block;
  transition: transform 0.4s var(--ease-out), color 0.3s ease;
}

.mobile-link:hover span { color: var(--red); transform: translateX(8px); }

.mobile-menu-footer {
  position: absolute;
  bottom: 2.5rem;
  text-align: center;
}

.accent-line {
  width: 44px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 0.9rem;
}

.mobile-menu-footer p {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-ghost);
}

/* =============================================
   HEADER / NAV
   ============================================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.6rem 0;
  transition: var(--transition);
  /* Starts transparent over video */
  background: linear-gradient(to bottom, rgba(0,40,40,0.9) 0%, transparent 100%);
}

.main-header.scrolled {
  background: rgba(0,40,40,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--white-faint);
}

/* Nav animate-in on page load */
.main-header .site-nav {
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
}

.site-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 0.18em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-12px);
  animation: navItemIn 0.7s var(--ease-out) 2.4s forwards;
}

.brand-accent {
  color: var(--red);
  font-style: italic;
  font-weight: 400;
}

.desktop-nav {
  display: flex;
  gap: 2.6rem;
  margin-left: auto;
}

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.3s ease;
  opacity: 0;
  transform: translateY(-12px);
  animation: navItemIn 0.6s var(--ease-out) forwards;
}

.nav-link:nth-child(1) { animation-delay: 2.5s; }
.nav-link:nth-child(2) { animation-delay: 2.6s; }
.nav-link:nth-child(3) { animation-delay: 2.7s; }
.nav-link:nth-child(4) { animation-delay: 2.8s; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.35s var(--ease-out);
}

.nav-link:hover { color: var(--white) !important; }
.nav-link:hover::after { width: 100%; }

@keyframes navItemIn {
  to { opacity: 1; transform: translateY(0); }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.hamburger span {
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* =============================================
   HERO — VIDEO, ~65VH
   ============================================= */
/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  background: #002828; /* fallback while video loads */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
 
/* Video wrapper — fills hero exactly */
.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
 
/* Suppress every possible native iOS media control overlay */
.hero-video-wrap video::-webkit-media-controls                        { display:none !important; }
.hero-video-wrap video::-webkit-media-controls-panel                  { display:none !important; }
.hero-video-wrap video::-webkit-media-controls-play-button            { display:none !important; }
.hero-video-wrap video::-webkit-media-controls-start-playback-button  { display:none !important; }
.hero-video-wrap video::-webkit-media-controls-overlay-play-button    { display:none !important; }
 
/* Teal wash above video */
.hero-teal-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(0,40,40,0.45) 0%,
    rgba(0,64,64,0.35) 50%,
    rgba(0,40,40,0.55) 100%
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}
 
/* Desktop: fullscreen */
.hero { height: 100vh; }
 
/* Tablet portrait & mobile: half screen */
@media (max-width: 768px) {
  .hero { height: 50vh; min-height: 280px; }
}
@media (max-width: 480px) {
  .hero { height: 50vh; min-height: 240px; }
}
 
/* Landscape on a phone — give more height so it doesn't look squashed */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { height: 100vh; min-height: 260px; }
}

/* Teal colour-wash — preserves video visibility, adds brand tone */
.hero-teal-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 40, 40, 0.45) 0%,
    rgba(0, 64, 64, 0.35) 50%,
    rgba(0, 40, 40, 0.55) 100%
  );
  mix-blend-mode: multiply;
}

/* Tagline — clipped reveal animation */
.hero-text-block {
  position: absolute;
  bottom: 12%;
  left: 5%;
  z-index: 5;
}

.hero-line-wrap {
  overflow: hidden;
  line-height: 1.1;
}

.hero-line {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transform: translateY(110%);
  opacity: 0;
}

/* Triggered after preloader hides */
.hero-line.rl-1 {
  animation: lineReveal 1s var(--ease-out) 2.3s forwards;
}

.hero-line.rl-2 {
  animation: lineReveal 1s var(--ease-out) 2.55s forwards;
  color: var(--red);
  font-style: italic;
}

@keyframes lineReveal {
  to { transform: translateY(0); opacity: 1; }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 5;
  opacity: 0;
  animation: fadeUp 0.7s ease 3s forwards;
}

.scroll-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white-ghost);
  writing-mode: vertical-rl;
}

.scroll-bar {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--white-ghost), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-bar::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--red);
  animation: scrollDrop 2s ease-in-out 3.2s infinite;
}

@keyframes scrollDrop {
  0%   { top: -100%; }
  100% { top: 100%; }
}

.hero-bottom-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 35%, transparent 80%);
  z-index: 6;
}

/* =============================================
   PORTRAIT SECTION — FULL WIDTH
   ============================================= */
.portrait-section {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--teal-deeper);
}

.portrait-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.portrait-img {
  width: 100%;
  height: 115%; /* extra height for parallax */
  object-fit: cover;
  object-position: top center;
  will-change: transform;
}

/* Deep teal veil — strong brand color dominance */
.portrait-teal-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(0,28,28,0.72) 0%, rgba(0,45,45,0.35) 45%, rgba(0,55,55,0.55) 100%),
    linear-gradient(to bottom, rgba(0,28,28,0.25) 0%, transparent 40%, rgba(0,28,28,0.65) 100%);
}

.portrait-caption {
  position: absolute;
  bottom: 8%;
  left: 5%;
  z-index: 5;
}

/* Clip-reveal wrapper */
.p-caption-reveal {
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.p-caption-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.9s var(--ease-out), opacity 0.9s ease;
}

.portrait-section.in-view .p-caption-tag {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.1s;
}

.portrait-heading {
  color: var(--white);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
}

.ph-word {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1s var(--ease-out), opacity 0.9s ease;
}

.portrait-section.in-view .ph-word {
  transform: translateY(0);
  opacity: 1;
}

.p-caption-reveal.delay-sm .ph-word {
  transition-delay: 0.2s;
}

.ph-word.italic {
  font-style: italic;
  color: var(--red);
  font-weight: 400;
}

/* Vertical side label */
.portrait-vertical-label {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white-ghost);
  z-index: 5;
  transform-origin: center center;
  opacity: 0;
  transition: opacity 0.8s ease 0.5s;
}

.portrait-section.in-view .portrait-vertical-label { opacity: 1; }

/* =============================================
   DATA-REVEAL SYSTEM — Scroll triggered
   ============================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  padding: 8rem 0;
  background: var(--teal-darker, var(--teal-mid));
  background: #003030;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  left: -8%;
  top: 10%;
  width: 45%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(196,30,58,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.about-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.about-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
  align-self: start;
  padding-top: 1rem;
}

.about-copy {
  padding: 0 1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: 1.1rem;
}

.about-title {
  font-size: clamp(2.6rem, 4.2vw, 3.9rem);
  color: var(--white);
  margin-bottom: 1.6rem;
}

.about-title em {
  color: var(--red);
  font-style: italic;
  font-weight: 400;
}

.about-rule {
  width: 44px;
  height: 2px;
  background: var(--red);
  margin-bottom: 1.8rem;
}

.about-text {
  font-size: 1.02rem;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 0;
  max-width: 480px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 2.1rem;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 2.2rem;
  transition: var(--transition);
  border: 1.5px solid var(--red);
}

.cta-button:hover {
  background: transparent;
  color: var(--white);
  gap: 1.4rem;
}

.about-img-col {
  max-width: 320px;
  width: 100%;
}

.about-img-frame {
  position: relative;
  overflow: hidden;
  height: clamp(260px, 35vw, 400px);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about-img-frame:hover .about-img { transform: scale(1.05); }

.about-img-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
}

/* =============================================
   QUOTE
   ============================================= */
.quote-section {
  padding: 6rem 0;
  background: var(--teal-dark);
  position: relative;
}

.quote-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  line-height: 0.5;
  color: var(--red);
  opacity: 0.3;
  margin-bottom: 1.5rem;
  display: block;
}

.featured-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}

.quote-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.quote-rule {
  width: 30px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

.quote-author {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
}

/* =============================================
   BLOG / JOURNAL
   ============================================= */
.blog-section {
  padding: 7rem 0;
  background: #003030;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 1.2rem;
}

.title-accent {
  width: 56px;
  height: 2px;
  background: var(--red);
  margin: 0 auto;
}

.blog-card {
  background: transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.4rem;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.blog-card:hover .card-image img { transform: scale(1.06); }

.card-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.blog-card:hover .card-bar { transform: scaleX(1); }

.card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.7rem;
  align-items: center;
}

.card-cat {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card-date {
  color: var(--white-ghost);
  font-size: 0.78rem;
}

.card-title {
  font-size: 1.65rem;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.card-excerpt {
  color: var(--white-dim);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.3rem;
  flex: 1;
}

.card-link {
  color: var(--red);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.card-link:hover { gap: 1rem; color: var(--white); }

.blog-footer {
  text-align: center;
  margin-top: 3.5rem;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: var(--transition);
}

.view-all-link:hover { background: var(--red); gap: 1.5rem; }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
  padding: 5.5rem 0;
  background: var(--teal-dark);
}

.nl-wrap {
  padding: 3rem 3.5rem;
  border: 1px solid var(--white-faint);
  border-left: 3px solid var(--red);
  background: rgba(0,0,0,0.12);
}

.nl-title {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.9rem;
}

.nl-title em { color: var(--red); font-style: italic; }

.nl-text {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.75;
}

.nl-group {
  display: flex;
}

.nl-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-right: none;
  color: var(--white);
  padding: 0.95rem 1.4rem;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s ease;
}

.nl-input:focus { border-color: var(--red); }
.nl-input::placeholder { color: var(--white-ghost); }

.nl-btn {
  padding: 0.95rem 1.8rem;
  background: var(--red);
  border: 1.5px solid var(--red);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.nl-btn:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* =============================================
   INSTAGRAM
   ============================================= */
.instagram-section {
  background: var(--teal-deeper);
  padding-top: 5rem;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.insta-veil {
  position: absolute;
  inset: 0;
  background: rgba(196,30,58,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.insta-item:hover .insta-veil   { opacity: 1; }
.insta-item:hover img            { transform: scale(1.1); }

.insta-veil i { font-size: 2rem; color: var(--white); }

.insta-cta {
  text-align: center;
  padding: 3rem 0;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.insta-link:hover { color: var(--red); }

/* =============================================
   FOOTER
   ============================================= */
.main-footer {
  background: var(--teal-deeper);
}

.footer-top-rule {
  width: 100%;
  height: 4px;
  background: var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 4rem 0 2rem;
  align-items: start;
}

.footer-brand h4 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.footer-brand h4 em {
  color: var(--red);
  font-style: italic;
  font-weight: 400;
}

.footer-tagline {
  color: var(--white-ghost);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.4rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--red); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.4rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-faint);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--white-faint);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.38);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.footer-bottom a { color: var(--red); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* =============================================
   BACK TO TOP — PROGRESS RING
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 52px;
  height: 52px;
  background: var(--teal-deeper);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background 0.3s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--red); }
.back-to-top:hover i { transform: translateY(-2px); }

.back-to-top i {
  color: var(--white);
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btt-svg {
  position: absolute;
  inset: 0;
  width: 52px;
  height: 52px;
  transform: rotate(-90deg);
}

#progressRing { transition: stroke-dashoffset 0.1s linear; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .about-layout {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .about-img-col {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  .about-img-frame { height: 280px; }
}

@media (max-width: 991px) {
  .desktop-nav { display: none; }
  .hamburger   { display: flex; }

  .site-brand { font-size: 1.35rem; }

  .hero { height: 58vh; }

  .portrait-section { height: 75vh; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .footer-brand { grid-column: 1 / -1; }

  .footer-social {
    flex-direction: row;
    flex-wrap: wrap;
    align-self: start;
  }

  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero { height: 52vh; }

  .hero-text-block { left: 4%; bottom: 10%; }

  .hero-scroll-hint { display: none; }

  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-number { display: none; }

  .nl-wrap { padding: 2rem 1.5rem; }

  .nl-group { flex-direction: column; }
  .nl-input { border-right: 1px solid rgba(255,255,255,0.14); border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-social { flex-direction: row; }

  .insta-grid { grid-template-columns: repeat(2, 1fr); }

  .back-to-top { bottom: 1.5rem; right: 1.5rem; }
}

@media (max-width: 576px) {
  .hero { height: 48vh; }
  .portrait-section { height: 65vh; }
  .about-section { padding: 5rem 0; }
  .blog-section  { padding: 5rem 0; }
  .site-nav { padding: 0 1.25rem; }
}
/* =================================================================
   ADDITIONS FOR style.css — Theresa Power Hub Expanded
   INSTRUCTIONS: Paste everything below at the END of your style.css
   ================================================================= */

/* ---------------------------------------------------------------
   HERO — FULL SCREEN ON DESKTOP, HALF SCREEN ON MOBILE
   --------------------------------------------------------------- */

/* Override the existing .hero rule */
.hero {
  position: relative;
  height: 100vh;          /* Fullscreen on desktop */
  min-height: 520px;
  overflow: hidden;
}

/* Video fills its container */
.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

/* Remove any old text block from hero (no text on video) */
.hero-text-block { display: none !important; }

/* ---------------------------------------------------------------
   SITE BRAND — UNIFORM FONT THROUGHOUT
   --------------------------------------------------------------- */
.site-brand,
.footer-brand h4,
.preloader-brand .pl-word,
.mobile-link {
  font-family: 'Cormorant Garamond', serif !important;
}

/* ---------------------------------------------------------------
   SECTION SHARED STYLES
   --------------------------------------------------------------- */
.section-intro {
  color: var(--white-dim);
  font-size: 1rem;
  max-width: 560px;
  margin: 0.8rem auto 0;
  line-height: 1.75;
}

/* ---------------------------------------------------------------
   ABOUT SECTION — NEW BLOCK LAYOUT
   --------------------------------------------------------------- */
.about-section {
  padding: 8rem 0;
  background: var(--teal-dark);
}

.about-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--white-faint);
  align-items: start;
}

.about-block:last-of-type { border-bottom: none; }

.about-block-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  padding-top: 0.2rem;
  user-select: none;
}

.about-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}

/* BIO CARD */
.bio-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid var(--white-faint);
  align-items: start;
}

.bio-img-wrap {
  position: relative;
}

.bio-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.bio-img-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
}

.bio-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.bio-role {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 1.2rem;
}

/* ---------------------------------------------------------------
   UNMUTED PERSPECTIVES — FEATURED POST
   --------------------------------------------------------------- */
.unmuted-section { background: var(--teal-deeper); }

.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  margin-bottom: 3rem;
  overflow: hidden;
  border: 1px solid var(--white-faint);
}

.blog-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.blog-featured:hover .blog-featured-img img {
  transform: scale(1.04);
}

.blog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,40,40,0.35) 0%, transparent 70%);
}

.blog-cat-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.85rem;
}

.blog-featured-content {
  padding: 3rem 3rem 3rem 3.5rem;
  background: var(--teal-mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--white);
  margin: 1rem 0 1.2rem;
  line-height: 1.2;
}

.blog-featured-excerpt {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ---------------------------------------------------------------
   ARTICLES SECTION
   --------------------------------------------------------------- */
.articles-section {
  padding: 8rem 0;
  background: var(--teal-dark);
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--white-faint);
  align-items: start;
  transition: background 0.3s ease;
}

.article-row:last-child { border-bottom: none; }

.article-row:hover { background: rgba(255,255,255,0.02); }

.article-img-thumb {
  width: 160px;
  height: 110px;
  overflow: hidden;
  flex-shrink: 0;
}

.article-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.article-row:hover .article-img-thumb img { transform: scale(1.07); }

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--white);
  margin: 0.5rem 0 0.7rem;
  line-height: 1.25;
}

.article-excerpt {
  color: var(--white-dim);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

/* ---------------------------------------------------------------
   INTERVIEWS SECTION
   --------------------------------------------------------------- */
.interviews-section {
  padding: 8rem 0;
  background: var(--teal-deeper);
}

.interview-card {
  background: var(--teal-mid);
  border: 1px solid var(--white-faint);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
}

.interview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,30,58,0.4);
}

.interview-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.interview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.interview-card:hover .interview-img img { transform: scale(1.06); }

.interview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,40,40,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.interview-card:hover .interview-overlay { opacity: 1; }

.interview-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.interview-content {
  padding: 2rem;
}

.interview-tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--red);
}

.interview-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--white);
  margin: 0.7rem 0 0.9rem;
  line-height: 1.3;
  font-style: italic;
}

.interview-excerpt {
  color: var(--white-dim);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.interview-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--white-faint);
}

.interview-name {
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--white);
}

.interview-date {
  font-size: 0.75rem;
  color: var(--white-ghost);
}

/* ---------------------------------------------------------------
   VOICES SECTION
   --------------------------------------------------------------- */
.voices-section {
  padding: 8rem 0;
  background: var(--teal-dark);
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.voice-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--white-faint);
  border-top: 3px solid var(--red);
  background: rgba(0,0,0,0.1);
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.voice-card:hover {
  background: rgba(196,30,58,0.04);
  border-color: rgba(196,30,58,0.5);
  border-top-color: var(--red);
}

.voice-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--red);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.voice-text {
  color: var(--white-dim);
  font-size: 0.93rem;
  line-height: 1.85;
  margin-bottom: 1.8rem;
  font-style: italic;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.voice-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--red);
}

.voice-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-name {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

.voice-location {
  display: block;
  color: var(--white-ghost);
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.voices-cta {
  text-align: center;
  padding: 3rem 0 0;
  border-top: 1px solid var(--white-faint);
}

.voices-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* ---------------------------------------------------------------
   CONTACT SECTION
   --------------------------------------------------------------- */
.contact-section {
  padding: 8rem 0;
  background: var(--teal-deeper);
}

.contact-layout {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-icon {
  color: var(--red);
  font-size: 1.1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white-ghost);
  margin-bottom: 0.3rem;
}

.contact-value {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

a.contact-value:hover { color: var(--red); }

.contact-social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-social-row a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-faint);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.contact-social-row a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* MAP */
.contact-map-wrap { position: relative; }

.contact-map {
  height: 420px;
  overflow: hidden;
  border: 1px solid var(--white-faint);
  filter: grayscale(0.6) brightness(0.75);
  transition: filter 0.4s ease;
}

.contact-map:hover { filter: grayscale(0.2) brightness(0.9); }

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* CONTACT FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-form-field label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white-ghost);
}

.contact-form-field input,
.contact-form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s ease;
  resize: none;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: var(--red);
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: var(--white-ghost);
}

/* ---------------------------------------------------------------
   CTA BUTTON (reusable)
   --------------------------------------------------------------- */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  background: transparent;
  border: 1.5px solid var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: var(--transition);
  cursor: pointer;
}

.cta-button:hover {
  background: var(--red);
  color: var(--white);
  gap: 1.2rem;
}

/* ---------------------------------------------------------------
   RESPONSIVE — NEW SECTIONS
   --------------------------------------------------------------- */

/* HERO: half screen on mobile */
@media (max-width: 768px) {
  .hero {
    height: 50vh !important;
    min-height: 280px;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 50vh !important;
    min-height: 240px;
  }
}

@media (max-width: 991px) {
  .bio-card {
    grid-template-columns: 1fr;
  }
  .bio-img { height: 300px; }

  .blog-featured {
    grid-template-columns: 1fr;
  }
  .blog-featured-img { min-height: 260px; }
  .blog-featured-content { padding: 2rem; }

  .voices-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-map { height: 320px; }
}

@media (max-width: 768px) {
  .about-block {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about-block-number { font-size: 2.5rem; }

  .article-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .article-img-thumb {
    width: 100%;
    height: 200px;
  }

  .voices-grid {
    grid-template-columns: 1fr;
  }

  .form-row-group {
    grid-template-columns: 1fr;
  }

  .desktop-nav { display: none; }
  .hamburger   { display: flex; }
}

@media (max-width: 576px) {
  .blog-featured-img { min-height: 200px; }

  .contact-section { padding: 5rem 0; }
  .about-section   { padding: 5rem 0; }
  .articles-section { padding: 5rem 0; }
  .interviews-section { padding: 5rem 0; }
  .voices-section { padding: 5rem 0; }
}



    /* ================================================
       BLOG POST PAGE — SELF-CONTAINED STYLES
       These extend style.css without modifying it.
       ================================================ */

    :root {
      --teal:        #005B5B;
      --teal-dark:   #003A3A;
      --teal-deeper: #002828;
      --teal-mid:    #004848;
      --red:         #C41E3A;
      --red-dark:    #8B1529;
      --white:       #FFFFFF;
      --white-dim:   rgba(255,255,255,0.82);
      --white-ghost: rgba(255,255,255,0.45);
      --white-faint: rgba(255,255,255,0.08);
      --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
      --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
      --transition:  all 0.45s var(--ease-in-out);
      --post-width:  720px;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--teal-dark);
      color: var(--white);
      line-height: 1.7;
      font-weight: 300;
      overflow-x: hidden;
    }
    img { display: block; width: 100%; }
    a { color: var(--red); text-decoration: none; transition: color 0.3s ease; }
    a:hover { color: #e63a58; }

    /* ── HEADER (mirrors main site) ── */
    .main-header {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      z-index: 1000;
      padding: 1.4rem 0;
      background: rgba(0,40,40,0.97);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--white-faint);
      transition: padding 0.4s ease;
    }
    .site-nav {
      display: flex;
      align-items: center;
      padding: 0 2.5rem;
    }
    .site-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem;
      font-weight: 700;
      color: var(--white) !important;
      letter-spacing: 0.18em;
      text-decoration: none;
    }
    .brand-accent { color: var(--red); font-style: italic; font-weight: 400; }
    .desktop-nav { display: flex; gap: 2.2rem; margin-left: auto; }
    .nav-link {
      color: rgba(255,255,255,0.75) !important;
      font-size: 0.72rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      text-decoration: none;
      padding: 0.3rem 0;
      position: relative;
      transition: color 0.3s ease;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background: var(--red);
      transition: width 0.35s var(--ease-out);
    }
    .nav-link:hover { color: var(--white) !important; }
    .nav-link:hover::after { width: 100%; }
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 26px; height: 18px;
      background: none; border: none;
      cursor: pointer; padding: 0;
      margin-left: auto;
    }
    .hamburger span {
      width: 100%; height: 1.5px;
      background: var(--white);
      transition: var(--transition);
    }

    /* ── MOBILE MENU ── */
    .mobile-menu {
      position: fixed; inset: 0;
      background: var(--teal-deeper);
      z-index: 2000;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      opacity: 0; visibility: hidden;
      transition: var(--transition);
    }
    .mobile-menu.active { opacity: 1; visibility: visible; }
    .mobile-menu-close {
      position: absolute; top: 28px; right: 28px;
      background: none; border: none;
      color: var(--white); font-size: 2rem;
      cursor: pointer; transition: var(--transition);
    }
    .mobile-menu-close:hover { color: var(--red); transform: rotate(90deg); }
    .mobile-nav { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
    .mobile-link {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 6vw, 3rem);
      font-weight: 600; color: var(--white);
      text-decoration: none; letter-spacing: 0.06em;
    }
    .mobile-link span { display: block; transition: transform 0.4s var(--ease-out), color 0.3s ease; }
    .mobile-link:hover span { color: var(--red); transform: translateX(8px); }
    .mobile-menu-footer { position: absolute; bottom: 2.5rem; text-align: center; }
    .accent-line { width: 44px; height: 2px; background: var(--red); margin: 0 auto 0.9rem; }
    .mobile-menu-footer p { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--white-ghost); }


    /* ── POST HERO ── */
    .post-hero {
      position: relative;
      height: 75vh;
      min-height: 480px;
      overflow: hidden;
      margin-top: 0;
    }
    .post-hero-img {
      position: absolute;
      inset: 0;
    }
    .post-hero-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
    }
    .post-hero-veil {
      position: absolute; inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,30,30,0.25) 0%,
        rgba(0,30,30,0.55) 55%,
        rgba(0,28,28,0.92) 100%
      );
    }
    .post-hero-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 0 0 4rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .post-hero-content .post-cat-badge {
      display: inline-block;
      background: var(--red);
      color: var(--white);
      font-size: 0.62rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      padding: 0.38rem 1rem;
      margin-bottom: 1.4rem;
    }
    .post-hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 5.5vw, 4.2rem);
      font-weight: 600;
      color: var(--white);
      line-height: 1.1;
      max-width: 820px;
      padding: 0 1.5rem;
      margin-bottom: 1.6rem;
    }
    .post-hero-meta {
      display: flex;
      align-items: center;
      gap: 2rem;
      font-size: 0.75rem;
      color: var(--white-ghost);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      flex-wrap: wrap;
      justify-content: center;
    }
    .post-hero-meta span { display: flex; align-items: center; gap: 0.5rem; }
    .post-hero-meta i { color: var(--red); font-size: 0.7rem; }

    /* ── READING PROGRESS BAR ── */
    .reading-progress {
      position: fixed;
      top: 0; left: 0;
      width: 0%;
      height: 3px;
      background: linear-gradient(90deg, var(--red-dark), var(--red), #e63a58);
      z-index: 9999;
      transition: width 0.1s linear;
    }

    /* ── ARTICLE LAYOUT ── */
    .article-wrap {
      display: grid;
      grid-template-columns: 1fr var(--post-width) 260px;
      grid-template-areas: ". body sidebar";
      gap: 0 4rem;
      max-width: 1280px;
      margin: 0 auto;
      padding: 5rem 2rem 8rem;
      align-items: start;
    }

    /* ── POST BODY ── */
    .post-body {
      grid-area: body;
    }

    /* Drop cap on first paragraph */
    .post-body .drop-cap::first-letter {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      font-weight: 700;
      color: var(--red);
      float: left;
      line-height: 0.75;
      margin: 0.05em 0.12em 0 0;
    }

    /* Body paragraphs */
    .post-body p {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--white-dim);
      margin-bottom: 1.8rem;
      font-weight: 300;
    }

    /* Headings inside post */
    .post-body h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.7rem, 3vw, 2.3rem);
      font-weight: 600;
      color: var(--white);
      margin: 3.5rem 0 1.2rem;
      line-height: 1.15;
    }
    .post-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.25rem, 2.2vw, 1.6rem);
      font-weight: 500;
      color: var(--white);
      margin: 2.5rem 0 1rem;
      font-style: italic;
    }

    /* Divider rule */
    .post-body .post-rule {
      width: 60px;
      height: 2px;
      background: var(--red);
      margin: 3rem 0;
      border: none;
    }

    /* Inline links */
    .post-body a {
      color: var(--red);
      border-bottom: 1px solid rgba(196,30,58,0.3);
      transition: border-color 0.3s ease, color 0.3s ease;
    }
    .post-body a:hover {
      color: #e63a58;
      border-bottom-color: #e63a58;
    }

    /* ── PULL QUOTE ── */
    .pull-quote {
      border-left: 4px solid var(--red);
      margin: 3rem 0;
      padding: 1.5rem 0 1.5rem 2.5rem;
      position: relative;
    }
    .pull-quote::before {
      content: '"';
      font-family: 'Cormorant Garamond', serif;
      font-size: 6rem;
      color: var(--red);
      opacity: 0.18;
      position: absolute;
      top: -1.5rem; left: 0.5rem;
      line-height: 1;
    }
    .pull-quote p {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.4rem, 2.5vw, 1.85rem) !important;
      font-style: italic;
      font-weight: 400;
      color: var(--white) !important;
      line-height: 1.5 !important;
      margin-bottom: 0.8rem !important;
    }
    .pull-quote cite {
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--red);
      font-style: normal;
    }

    /* ── INLINE IMAGE ── */
    .post-image {
      margin: 3rem 0;
    }
    .post-image img {
      width: 100%;
      height: auto;
      display: block;
    }
    .post-image figcaption {
      font-size: 0.75rem;
      color: var(--white-ghost);
      margin-top: 0.75rem;
      font-style: italic;
      text-align: center;
      letter-spacing: 0.04em;
    }

    /* Wide image — bleeds beyond body column */
    .post-image.wide {
      margin-left: -80px;
      margin-right: -80px;
    }

    /* Image grid inside post */
    .post-image-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin: 3rem 0;
    }
    .post-image-grid img {
      height: 260px;
      object-fit: cover;
    }
    .post-image-grid figcaption {
      grid-column: 1 / -1;
      font-size: 0.75rem;
      color: var(--white-ghost);
      margin-top: 0.5rem;
      font-style: italic;
      text-align: center;
    }

    /* ── STYLED LISTS ── */
    .post-body ul.post-list,
    .post-body ol.post-list {
      margin: 1.5rem 0 2rem 0;
      padding: 0;
      list-style: none;
    }
    .post-body ul.post-list li,
    .post-body ol.post-list li {
      position: relative;
      padding: 0.6rem 0 0.6rem 2rem;
      color: var(--white-dim);
      font-size: 1rem;
      line-height: 1.75;
      border-bottom: 1px solid var(--white-faint);
    }
    .post-body ul.post-list li:last-child,
    .post-body ol.post-list li:last-child { border-bottom: none; }

    /* Bullet: red dash */
    .post-body ul.post-list li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--red);
      font-weight: 600;
    }

    /* Ordered: teal numbers */
    .post-body ol.post-list { counter-reset: post-counter; }
    .post-body ol.post-list li { counter-increment: post-counter; }
    .post-body ol.post-list li::before {
      content: counter(post-counter, decimal-leading-zero);
      position: absolute;
      left: 0;
      color: var(--red);
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 700;
    }

    /* ── HIGHLIGHT BOX ── */
    .highlight-box {
      background: rgba(196,30,58,0.07);
      border: 1px solid rgba(196,30,58,0.25);
      border-left: 4px solid var(--red);
      padding: 2rem 2.5rem;
      margin: 3rem 0;
    }
    .highlight-box p {
      margin-bottom: 0 !important;
      font-style: italic;
      color: var(--white-dim);
    }

    /* ── TAGS ── */
    .post-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin: 3.5rem 0 0;
      padding-top: 2.5rem;
      border-top: 1px solid var(--white-faint);
    }
    .post-tag {
      display: inline-block;
      padding: 0.35rem 0.9rem;
      border: 1px solid rgba(255,255,255,0.15);
      color: var(--white-ghost);
      font-size: 0.68rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      text-decoration: none;
      transition: var(--transition);
    }
    .post-tag:hover {
      border-color: var(--red);
      color: var(--red);
      background: rgba(196,30,58,0.06);
    }

    /* ── SHARE ROW ── */
    .post-share {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--white-faint);
      flex-wrap: wrap;
    }
    .post-share-label {
      font-size: 0.68rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--white-ghost);
    }
    .share-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1.2rem;
      border: 1px solid var(--white-faint);
      color: var(--white-dim);
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      cursor: pointer;
      background: none;
      text-decoration: none;
      transition: var(--transition);
    }
    .share-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }

    /* ── AUTHOR BOX ── */
    .author-box {
      margin-top: 4rem;
      padding: 2.5rem;
      background: var(--teal-mid);
      border: 1px solid var(--white-faint);
      border-top: 3px solid var(--red);
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 1.8rem;
      align-items: start;
    }
    .author-avatar {
      width: 80px; height: 80px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid var(--red);
      flex-shrink: 0;
    }
    .author-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .author-label {
      font-size: 0.62rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: var(--red);
      margin-bottom: 0.3rem;
    }
    .author-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      color: var(--white);
      font-weight: 600;
      margin-bottom: 0.7rem;
    }
    .author-bio {
      color: var(--white-dim);
      font-size: 0.88rem;
      line-height: 1.75;
      margin-bottom: 1rem;
    }
    .author-links { display: flex; gap: 0.6rem; }
    .author-link {
      width: 34px; height: 34px;
      border: 1px solid var(--white-faint);
      border-radius: 50%;
      color: var(--white-dim);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem;
      text-decoration: none;
      transition: var(--transition);
    }
    .author-link:hover { background: var(--red); border-color: var(--red); color: var(--white); }

    /* ── SIDEBAR ── */
    .post-sidebar {
      grid-area: sidebar;
      position: sticky;
      top: 100px;
    }
    .sidebar-block {
      margin-bottom: 3rem;
    }
    .sidebar-label {
      font-size: 0.62rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      color: var(--red);
      margin-bottom: 1.2rem;
      display: block;
    }

    /* Table of Contents */
    .toc-list {
      list-style: none;
      padding: 0; margin: 0;
      border-left: 2px solid var(--white-faint);
    }
    .toc-list li { padding: 0; }
    .toc-list a {
      display: block;
      padding: 0.55rem 0 0.55rem 1.2rem;
      font-size: 0.82rem;
      color: var(--white-ghost);
      text-decoration: none;
      border-bottom: none;
      transition: color 0.3s ease, border-color 0.3s ease;
      line-height: 1.4;
      position: relative;
    }
    .toc-list a::before {
      content: '';
      position: absolute;
      left: -2px; top: 0; bottom: 0;
      width: 2px;
      background: var(--red);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .toc-list a:hover, .toc-list a.active {
      color: var(--white);
    }
    .toc-list a:hover::before, .toc-list a.active::before { opacity: 1; }

    /* Related Posts */
    .related-post {
      display: grid;
      grid-template-columns: 70px 1fr;
      gap: 1rem;
      margin-bottom: 1.4rem;
      padding-bottom: 1.4rem;
      border-bottom: 1px solid var(--white-faint);
      text-decoration: none;
      transition: opacity 0.3s ease;
    }
    .related-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .related-post:hover { opacity: 0.78; }
    .related-post-img {
      width: 70px; height: 70px;
      overflow: hidden; flex-shrink: 0;
    }
    .related-post-img img { width: 100%; height: 100%; object-fit: cover; }
    .related-post-cat {
      font-size: 0.6rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--red);
      margin-bottom: 0.25rem;
    }
    .related-post-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      color: var(--white-dim);
      font-weight: 500;
      line-height: 1.3;
    }

    /* Newsletter sidebar */
    .sidebar-nl {
      background: var(--teal-mid);
      padding: 1.8rem;
      border: 1px solid var(--white-faint);
      border-top: 3px solid var(--red);
    }
    .sidebar-nl h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--white);
      margin-bottom: 0.6rem;
    }
    .sidebar-nl h4 em { color: var(--red); font-style: italic; }
    .sidebar-nl p { font-size: 0.82rem; color: var(--white-dim); line-height: 1.6; margin-bottom: 1rem; }
    .sidebar-nl input {
      width: 100%;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--white);
      padding: 0.7rem 1rem;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.82rem;
      outline: none;
      border-radius: 0;
      margin-bottom: 0.6rem;
      transition: border-color 0.3s ease;
    }
    .sidebar-nl input:focus { border-color: var(--red); }
    .sidebar-nl input::placeholder { color: var(--white-ghost); }
    .sidebar-nl button {
      width: 100%;
      padding: 0.75rem;
      background: var(--red);
      border: none;
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .sidebar-nl button:hover { background: var(--red-dark); }

    /* ── RELATED POSTS SECTION (bottom) ── */
    .related-section {
      background: var(--teal-deeper);
      padding: 6rem 0;
      border-top: 1px solid var(--white-faint);
    }
    .related-section .section-label {
      font-size: 0.62rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.25em;
      color: var(--red);
      display: block;
      margin-bottom: 0.6rem;
    }
    .related-section h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      color: var(--white);
      margin-bottom: 3rem;
    }

    /* Blog cards (mirrors main site) */
    .blog-card {
      background: var(--teal-mid);
      border: 1px solid var(--white-faint);
      overflow: hidden;
      transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
    }
    .blog-card:hover { transform: translateY(-4px); border-color: rgba(196,30,58,0.3); }
    .card-image { position: relative; height: 220px; overflow: hidden; }
    .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
    .blog-card:hover .card-image img { transform: scale(1.05); }
    .card-bar { position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--red); transition: width 0.5s var(--ease-out); }
    .blog-card:hover .card-bar { width: 100%; }
    .card-content { padding: 1.8rem; }
    .card-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem; }
    .card-cat {
      font-size: 0.6rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.2em;
      color: var(--red);
    }
    .card-date { font-size: 0.72rem; color: var(--white-ghost); margin-left: auto; }
    .card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      color: var(--white);
      margin-bottom: 0.7rem;
      line-height: 1.25;
    }
    .card-excerpt { color: var(--white-dim); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.2rem; }
    .card-link {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: var(--white); font-size: 0.72rem; font-weight: 500;
      text-transform: uppercase; letter-spacing: 0.15em;
      text-decoration: none; transition: gap 0.3s ease, color 0.3s ease;
    }
    .card-link:hover { color: var(--red); gap: 0.9rem; }

    /* ── FOOTER ── */
    .main-footer { background: var(--teal-deeper); }
    .footer-top-rule { width: 100%; height: 4px; background: var(--red); }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: clamp(2rem, 5vw, 5rem);
      padding: 4rem 0 2rem;
      align-items: start;
    }
    .footer-brand h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; color: var(--white);
      margin-bottom: 0.8rem; line-height: 1.1;
    }
    .footer-brand h4 em { color: var(--red); font-style: italic; font-weight: 400; }
    .footer-tagline { color: var(--white-ghost); font-style: italic; font-size: 0.9rem; line-height: 1.7; }
    .footer-links { display: flex; flex-direction: column; gap: 0.85rem; padding-top: 0.4rem; }
    .footer-links a {
      color: rgba(255,255,255,0.65); text-decoration: none;
      font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em;
      transition: color 0.3s ease;
    }
    .footer-links a:hover { color: var(--red); }
    .footer-social { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.4rem; }
    .footer-social a {
      width: 40px; height: 40px;
      border: 1px solid var(--white-faint); border-radius: 50%;
      color: var(--white); display: flex; align-items: center; justify-content: center;
      font-size: 0.95rem; text-decoration: none; transition: var(--transition);
    }
    .footer-social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
    .footer-bottom { padding: 1.5rem 0 2.5rem; border-top: 1px solid var(--white-faint); text-align: center; }
    .footer-bottom p { color: rgba(255,255,255,0.38); font-size: 0.78rem; letter-spacing: 0.06em; }
    .footer-bottom a { color: var(--red); text-decoration: none; }

    /* ── BACK TO TOP ── */
    .back-to-top {
      position: fixed; bottom: 2.5rem; right: 2.5rem;
      width: 52px; height: 52px;
      background: var(--teal-deeper);
      border: none; border-radius: 50%;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      z-index: 800; opacity: 0; visibility: hidden; transform: translateY(14px);
      transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background 0.3s ease;
      box-shadow: 0 4px 24px rgba(0,0,0,0.45);
    }
    .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:hover { background: var(--red); }
    .back-to-top i { color: var(--white); font-size: 0.8rem; position: relative; z-index: 1; }
    .btt-svg { position: absolute; inset: 0; width: 52px; height: 52px; transform: rotate(-90deg); }
    #progressRing { transition: stroke-dashoffset 0.1s linear; }

    /* ── REVEAL ANIMATION ── */
    [data-reveal] {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }
    [data-reveal].revealed { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1180px) {
      .article-wrap {
        grid-template-columns: 1fr var(--post-width);
        grid-template-areas: "body sidebar";
        gap: 0 3rem;
      }
    }
    @media (max-width: 991px) {
      .article-wrap {
        grid-template-columns: 1fr;
        grid-template-areas: "body";
        max-width: 720px;
      }
      .post-sidebar { display: none; }
      .post-image.wide { margin-left: 0; margin-right: 0; }
      .desktop-nav { display: none; }
      .hamburger { display: flex; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-social { flex-direction: row; flex-wrap: wrap; }
    }
    @media (max-width: 768px) {
      .post-hero { height: 60vh; min-height: 360px; }
      .post-hero-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
      .article-wrap { padding: 3rem 1.5rem 5rem; }
      .author-box { grid-template-columns: 1fr; }
      .post-image-grid { grid-template-columns: 1fr; }
      .post-image-grid img { height: 220px; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-social { flex-direction: row; }
    }
    @media (max-width: 576px) {
      .post-hero { height: 55vh; }
      .post-hero-meta { gap: 1rem; font-size: 0.68rem; }
      .pull-quote { padding-left: 1.5rem; }
    }
/* =================================================================
   HOMEPAGE SECTIONS FIXES — ADD TO END OF style.css
   ================================================================= */

/* ── INTERVIEW SECTION ON HOMEPAGE ── */
.interview-feature {
  padding: 6rem 0;
  background: var(--teal-deeper);
  position: relative;
}

.interview-feature-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--teal-mid);
  border: 1px solid var(--white-faint);
  overflow: hidden;
  max-width: 1100px;
  margin: 3rem auto 0;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
}

.interview-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,30,58,0.3);
}

.interview-feature-card .interview-img {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.interview-feature-card .interview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.interview-feature-card:hover .interview-img img {
  transform: scale(1.05);
}

.interview-body {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.interview-body .post-cat-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.interview-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.interview-body > p {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.interview-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.interview-meta span {
  font-size: 0.75rem;
  color: var(--white-ghost);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.interview-meta span i {
  color: var(--red);
  font-size: 0.65rem;
}

/* ── UNIFIED SECTION SPACING ── */
.about-section,
.blog-section,
.interview-feature,
.voices-section,
.newsletter-section,
.instagram-section,
.contact-section {
  position: relative;
  scroll-margin-top: 80px; /* For anchor links */
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--red);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.title-accent {
  width: 56px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 1.5rem;
}

.section-desc {
  color: var(--white-dim);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── BLOG CARD IMPROVEMENTS ── */
.blog-card {
  background: var(--teal-mid);
  border: 1px solid var(--white-faint);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,30,58,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.blog-card:hover .card-image img {
  transform: scale(1.06);
}

.card-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--red);
  transition: width 0.5s var(--ease-out);
  z-index: 2;
}

.blog-card:hover .card-bar {
  width: 100%;
}

.card-content {
  padding: 1.6rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}

.card-cat {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card-date {
  color: var(--white-ghost);
  font-size: 0.75rem;
}

.card-read {
  color: var(--white-ghost);
  font-size: 0.72rem;
  margin-left: auto;
}

.card-read i {
  color: var(--red);
  font-size: 0.6rem;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  color: var(--white);
  margin-bottom: 0.7rem;
  line-height: 1.3;
  font-weight: 600;
}

.card-excerpt {
  color: var(--white-dim);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  flex: 1;
}

.card-footer-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  color: var(--white-ghost);
}

.card-footer-meta i {
  color: rgba(196,30,58,0.6);
  font-size: 0.65rem;
}

.card-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease, gap 0.3s ease;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
}

.card-link:hover {
  color: var(--red);
  gap: 0.9rem;
}

.card-link i {
  transition: transform 0.3s ease;
}

.card-link:hover i {
  transform: translateX(4px);
}

/* ── FEATURED BADGE ── */
.card-featured-badge,
.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.35rem 0.8rem;
  z-index: 3;
}

/* ── VOICES SECTION ── */
.voices-section {
  padding: 7rem 0;
  background: var(--teal-dark);
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.voice-card {
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--white-faint);
  border-top: 3px solid var(--red);
  background: rgba(0,0,0,0.08);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.voice-card:hover {
  background: rgba(196,30,58,0.04);
  border-color: rgba(196,30,58,0.3);
}

.voice-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--red);
  opacity: 0.25;
  line-height: 0.6;
  margin-bottom: 0.8rem;
}

.voice-text {
  color: var(--white-dim);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--white-faint);
}

.voice-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-mid);
}

.voice-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-avatar-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
}

.voice-name {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.voice-location {
  display: block;
  color: var(--white-ghost);
  font-size: 0.72rem;
  margin-top: 0.1rem;
}

.voices-cta {
  text-align: center;
  padding: 3rem 0 0;
  border-top: 1px solid var(--white-faint);
  margin-top: 1rem;
}

.voices-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* ── RESPONSIVE: VOICES ── */
@media (max-width: 991px) {
  .voices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .interview-feature-card {
    grid-template-columns: 1fr;
  }
  
  .interview-feature-card .interview-img {
    min-height: 280px;
  }
  
  .interview-body {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .voices-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* ── LISTING PAGES (articles, unmuted-perspectives, interviews) ── */
.listing-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  background: var(--teal-deeper);
  border-bottom: 1px solid var(--white-faint);
}

.listing-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.listing-hero .section-label {
  margin-bottom: 0.5rem;
}

.listing-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.listing-hero p {
  color: var(--white-dim);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.listing-section {
  padding: 4rem 0 6rem;
  background: var(--teal-dark);
  min-height: 60vh;
}

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--white-faint);
  color: var(--white-ghost);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--red);
  color: var(--white);
}

.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ── FEATURED POST CARD (Listing) ── */
.featured-post-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  margin-bottom: 3rem;
  background: var(--teal-mid);
  border: 1px solid var(--white-faint);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.featured-post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,30,58,0.3);
}

.featured-post-img {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.featured-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.featured-post-card:hover .featured-post-img img {
  transform: scale(1.04);
}

.featured-post-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin: 0.8rem 0 1rem;
}

.featured-post-excerpt {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.featured-pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding-left: 1.2rem;
  margin: 0 0 1.5rem;
  line-height: 1.5;
  opacity: 0.8;
}

/* ── ARTICLE ROW (Articles listing) ── */
.articles-list {
  display: flex;
  flex-direction: column;
}

.article-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--white-faint);
  align-items: start;
  transition: background 0.3s ease;
}

.article-row:last-child {
  border-bottom: none;
}

.article-row:hover {
  background: rgba(255,255,255,0.02);
}

.article-img-thumb {
  width: 180px;
  height: 130px;
  overflow: hidden;
  flex-shrink: 0;
}

.article-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.article-row:hover .article-img-thumb img {
  transform: scale(1.06);
}

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--white);
  margin: 0.4rem 0 0.6rem;
  line-height: 1.3;
}

.article-excerpt {
  color: var(--white-dim);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.6rem;
}

/* ── PAGINATION ── */
.pagination-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--white-faint);
}

.pag-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--white-faint);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: var(--transition);
}

.pag-btn:hover {
  border-color: var(--red);
  background: rgba(196,30,58,0.1);
}

.pag-info {
  color: var(--white-ghost);
  font-size: 0.8rem;
}

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
}

.empty-state i {
  font-size: 4rem;
  color: var(--red);
  opacity: 0.3;
  margin-bottom: 1.5rem;
}

.empty-state p {
  color: var(--white-ghost);
  font-size: 1.1rem;
  font-style: italic;
}

/* ── VOICES FORM ── */
.voices-submit-wrap {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid var(--white-faint);
}

.voices-form {
  max-width: 650px;
  margin: 0 auto;
}

.voices-form .form-row-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.contact-form-field {
  margin-bottom: 1.4rem;
}

.contact-form-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white-ghost);
  margin-bottom: 0.6rem;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.85rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: var(--red);
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: var(--white-ghost);
}

.voice-full-story {
  margin: 0.5rem 0 1rem;
}

.voice-full-story summary {
  font-size: 0.8rem;
  color: var(--red);
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.voice-story-body {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.8;
  padding: 1rem;
  background: rgba(0,0,0,0.15);
  border-left: 2px solid var(--red);
}

/* ── RESPONSIVE: LISTING PAGES ── */
@media (max-width: 991px) {
  .featured-post-card {
    grid-template-columns: 1fr;
  }
  
  .featured-post-img {
    min-height: 260px;
  }
  
  .article-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .article-img-thumb {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .listing-hero {
    padding: 6rem 0 3rem;
  }
  
  .listing-hero h1 {
    font-size: 2.4rem;
  }
  
  .voices-form .form-row-group {
    grid-template-columns: 1fr;
  }
  
  .featured-post-body {
    padding: 1.8rem;
  }
}

/* ── REVEAL ANIMATION ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── DARKER TEAL BACKGROUND VARIABLES ── */
:root {
  --teal-darker: #002525;
}

/* ── UTILITY SPACING ── */
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.d-inline-flex { display: inline-flex !important; }
.w-100 { width: 100% !important; }
.justify-content-center { justify-content: center !important; }