/* ==========================================================================
   Essence of Freedom — Global Stylesheet
   ========================================================================== */

:root {
  --color-brown: #BE8D5F;
  --color-pink: #CD6464;
  --color-bg: #F7EEE1;
  --color-maroon: #722410;
  --color-white: #FFFFFF;
  --color-text: #3A2A22;
  --color-text-soft: #6B534A;
  --color-cream: #FBF6EE;

  --font-display: 'Maharlika', Georgia, 'Times New Roman', serif;
  --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1180px;
  --header-height: 84px;

  --radius-md: 8px;
  --radius-lg: 18px;

  --shadow-soft: 0 12px 30px rgba(114, 36, 16, 0.10);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
input, textarea { font: inherit; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-maroon);
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

p { color: var(--color-text-soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--color-brown);
  margin-bottom: 0.75rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  scroll-margin-top: var(--header-height);
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head p { margin-top: 14px; font-size: 1.05rem; }

.section-alt {
  background: var(--color-cream);
}

.section-dark {
  background: var(--color-maroon);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-cream);
}
.section-dark .section-head p,
.section-dark > .container > p,
.section-dark p.lead {
  color: rgba(251, 246, 238, 0.8);
}
.section-dark .btn-primary {
  background: var(--color-cream);
  color: var(--color-maroon);
}
.section-dark .btn-primary:hover {
  background: var(--color-brown);
  color: var(--color-white);
}
.section-dark .btn-outline {
  border-color: rgba(251, 246, 238, 0.6);
  color: var(--color-cream);
}
.section-dark .btn-outline:hover {
  background: var(--color-cream);
  color: var(--color-maroon);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}
.btn-lg {
  padding: 18px 42px;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--color-maroon);
  color: var(--color-white);
}
.btn-primary:hover {
  filter: brightness(1.18);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: transparent;
  color: var(--color-maroon);
  border: 1.5px solid var(--color-brown);
}
.btn-outline:hover {
  background: var(--color-brown);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-text {
  color: var(--color-pink);
  font-weight: 600;
  border-bottom: 1.5px solid transparent;
}
.btn-text:hover { border-bottom-color: var(--color-pink); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-maroon);
  border-bottom: 1px solid rgba(251, 246, 238, 0.14);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-cream);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.site-nav a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-cream);
  position: relative;
  padding: 4px 0;
}
.site-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--color-pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-nav .nav-cta {
  background: var(--color-cream);
  color: var(--color-maroon);
}
.site-nav .nav-cta:hover {
  background: var(--color-brown);
  color: var(--color-white);
}
.site-nav a:not(.btn):hover::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: flex; }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--color-maroon);
    padding: 12px 24px 40px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    visibility: hidden;
  }
  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .site-nav a:not(.btn) {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(190, 141, 95, 0.2);
    font-size: 1.05rem;
  }
  .site-nav .nav-cta {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Image placeholders
   ========================================================================== */

.img-ph {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 220px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--color-brown), var(--color-maroon));
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 12px 30px rgba(0, 0, 0, 0.18);
}
.img-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-ph .ph-label {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.img-ph .ph-label small {
  display: block;
  margin-top: 6px;
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.8;
}
.img-ph.is-broken img { display: none; }
.img-ph.is-broken .ph-label { display: flex; }

/* ==========================================================================
   Hero (home)
   ========================================================================== */

.hero {
  padding: 64px 0 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-grid > * { min-width: 0; }
.hero-copy p.lead {
  font-size: 1.15rem;
  margin-top: 20px;
  color: rgba(251, 246, 238, 0.8);
}
.hero-copy .subhead {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-brown);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-top: 16px;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 34px;
  max-width: 440px;
}
.hero-ctas .btn {
  width: 100%;
  white-space: normal;
  line-height: 1.35;
  text-align: center;
}
.hero-image .img-ph { aspect-ratio: 4 / 5; min-height: 380px; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
}

/* ==========================================================================
   About
   ========================================================================== */

.about-intro {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.about-intro h2 { margin-bottom: 18px; }

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
}
.founder-grid > * { min-width: 0; }
.founder-image .img-ph { aspect-ratio: 4 / 5; min-height: 340px; }
.founder-copy h3 { margin-bottom: 4px; }
.founder-copy .role {
  display: block;
  color: var(--color-brown);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.founder-copy p { margin-top: 16px; }
.founder-copy .read-more { display: inline-block; margin-top: 18px; }

.founder-quote {
  margin-top: 40px;
  padding: 32px 36px;
  background: var(--color-bg);
  border-left: 4px solid var(--color-brown);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-maroon);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .founder-grid { grid-template-columns: 1fr; }
}

.gallery-head {
  text-align: center;
  margin: 88px 0 32px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-grid > * { min-width: 0; }
.gallery-grid .img-ph { aspect-ratio: 3 / 4; min-height: 200px; }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Pathways
   ========================================================================== */

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.pathways-grid > * { min-width: 0; }

.pathway-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.pathway-card .img-ph { border-radius: 0; aspect-ratio: 16 / 10; min-height: 160px; }
.pathway-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pathway-card-body h3 { margin-bottom: 10px; font-size: 1.2rem; color: var(--color-maroon); }
.pathway-card-body p { flex: 1; font-size: 0.94rem; }
.pathway-card-body .btn {
  margin-top: 18px;
  align-self: flex-start;
  padding: 11px 24px;
  font-size: 0.88rem;
}
.pathway-card-body .btn-primary {
  background: var(--color-maroon);
  color: var(--color-white);
}
.pathway-card-body .btn-primary:hover {
  filter: brightness(1.18);
}

@media (max-width: 760px) {
  .pathways-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.testimonial-grid > * { min-width: 0; }
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.testimonial-card p.quote {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--color-text);
  line-height: 1.55;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}
.testimonial-card .attribution {
  color: var(--color-maroon);
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial-card .service-tag {
  flex-shrink: 0;
  background: rgba(205, 100, 100, 0.14);
  color: var(--color-pink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.testimonial-media {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.testimonial-media > * { min-width: 0; }
.testimonial-media .testimonial-card { display: flex; flex-direction: column; justify-content: center; }
.testimonial-media .img-ph { min-height: 260px; aspect-ratio: 3 / 4; }

@media (max-width: 860px) {
  .testimonial-media { grid-template-columns: 1fr; }
  .testimonial-media .img-ph { order: -1; aspect-ratio: 16 / 9; }
}

@media (max-width: 760px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Closing CTA
   ========================================================================== */

.closing-cta {
  background: linear-gradient(135deg, var(--color-maroon), var(--color-brown));
  text-align: center;
  padding: 100px 0;
}
.closing-cta h2 { color: var(--color-white); }
.closing-cta .btn-primary {
  margin-top: 30px;
  background: var(--color-white);
  color: var(--color-maroon);
}
.closing-cta .btn-primary:hover {
  background: var(--color-bg);
  color: var(--color-maroon);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-maroon);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 30px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-white);
  max-width: 320px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-nav a { font-size: 0.92rem; }
.footer-nav a:hover { color: var(--color-white); }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}
.footer-social a:hover { color: var(--color-white); }
.footer-social svg { flex-shrink: 0; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */

.page-hero {
  padding: 60px 0 20px;
  text-align: center;
}
.page-hero .eyebrow { display: block; }
.page-hero h1 { max-width: 780px; margin: 0 auto; }
.page-hero .subhead {
  font-family: var(--font-display);
  color: var(--color-brown);
  font-size: 1.3rem;
  margin-top: 10px;
}
.page-hero p.lead {
  max-width: 640px;
  margin: 20px auto 0;
  font-size: 1.05rem;
  color: rgba(251, 246, 238, 0.8);
}
.page-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 22px;
  margin-top: 30px;
}
.page-hero-image {
  margin-top: 48px;
}
.page-hero-image .img-ph { aspect-ratio: 21 / 9; min-height: 260px; border-radius: var(--radius-lg); }

/* ==========================================================================
   Breathwork page
   ========================================================================== */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.pillars-grid > * { min-width: 0; }

@media (max-width: 700px) {
  .pillars-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
}
.pillar-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.pillar-card .pillar-word {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-brown);
}
.pillar-card .pillar-eng {
  display: block;
  font-weight: 600;
  color: var(--color-maroon);
  margin-top: 4px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.affirmation {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-cream);
  margin-top: 48px;
  line-height: 1.7;
}
.guide-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
}
.guide-grid > * { min-width: 0; }
.guide-image .img-ph { aspect-ratio: 4 / 5; min-height: 320px; }
.guide-copy .role {
  display: block;
  color: var(--color-brown);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.guide-copy p { margin-top: 16px; }

@media (max-width: 860px) {
  .guide-grid { grid-template-columns: 1fr; }
}

/* ---- Marquee banner ---- */
.marquee-banner {
  background: var(--color-maroon);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-group span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-bg);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 28px;
  white-space: nowrap;
}
.marquee-group span::after {
  content: '·';
  margin-left: 56px;
  color: var(--color-brown);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 32px 0 48px;
}
.tag-pill {
  background: var(--color-white);
  border: 1px solid rgba(190, 141, 95, 0.4);
  color: var(--color-maroon);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.audience-grid > * { min-width: 0; }
.audience-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-soft);
}
.audience-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-maroon);
  font-size: 1rem;
  margin-bottom: 8px;
}
.audience-card p { font-size: 0.92rem; margin: 0; }
.audience-card.coming-soon {
  background: rgba(251, 246, 238, 0.08);
  border: 1.5px dashed rgba(251, 246, 238, 0.4);
  box-shadow: none;
}
.audience-card.coming-soon h4,
.audience-card.coming-soon p {
  color: var(--color-cream);
}
.audience-card.coming-soon p { opacity: 0.8; }
.audience-card .badge-soon {
  display: inline-block;
  background: var(--color-brown);
  color: var(--color-white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

@media (max-width: 860px) {
  .audience-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .audience-grid { grid-template-columns: 1fr; }
}

.steps-banner {
  margin-bottom: 44px;
}
.steps-banner .img-ph { aspect-ratio: 21 / 8; min-height: 220px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}
.steps-grid > * { min-width: 0; }
.step-card {
  text-align: center;
}
.step-card .step-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-brown);
  display: block;
  margin-bottom: 10px;
}
.step-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--color-maroon);
  margin-bottom: 8px;
}
.step-card p { font-size: 0.9rem; }

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 12px;
}
.tiers-grid > * { min-width: 0; }
.tier-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
}
.tier-card h3 { margin-bottom: 14px; }
.tier-note {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--color-text-soft);
  font-style: italic;
}
.tier-cta { text-align: center; margin-top: 36px; }

@media (max-width: 860px) {
  .tiers-grid { grid-template-columns: 1fr; }
}

.session-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.session-card .included {
  text-align: left;
  max-width: 420px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.session-card .included li {
  padding-left: 26px;
  position: relative;
  color: var(--color-text-soft);
}
.session-card .included li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-pink);
  font-weight: 700;
}
.session-card .investment {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-maroon);
}
.session-card .btn { margin-top: 20px; }
.session-card .btn-primary {
  background: var(--color-maroon);
  color: var(--color-white);
}
.session-card .btn-primary:hover {
  filter: brightness(1.18);
}

.follow-ig {
  text-align: center;
  margin-top: 24px;
}
.follow-ig a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-maroon);
  font-weight: 600;
  font-size: 1.15rem;
  border-bottom: 1.5px solid transparent;
}
.follow-ig a:hover { border-bottom-color: var(--color-maroon); }

@media (max-width: 420px) {
  .follow-ig a { flex-direction: column; gap: 6px; text-align: center; }
}

.closing-banner {
  line-height: 0;
}
.closing-banner .img-ph {
  border-radius: 0;
  aspect-ratio: 21 / 8;
  min-height: 220px;
}

/* ==========================================================================
   Blog page
   ========================================================================== */

.blog-meta {
  text-align: center;
  color: rgba(251, 246, 238, 0.8);
  font-size: 0.9rem;
  margin-top: 10px;
}
.blog-meta .cat {
  display: inline-block;
  margin-left: 14px;
  padding: 4px 14px;
  background: var(--color-cream);
  border-radius: 999px;
  font-weight: 600;
  color: var(--color-maroon);
}

.post {
  max-width: 760px;
  margin: 0 auto 80px;
}
.post:last-child { margin-bottom: 0; }
.post + .post {
  border-top: 3px solid var(--color-maroon);
  padding-top: 72px;
}
.post h2 { margin-bottom: 8px; }
.post .post-byline {
  display: block;
  color: var(--color-brown);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.post .post-date {
  display: block;
  color: var(--color-text-soft);
  font-size: 0.82rem;
  margin-bottom: 24px;
}
.post p { margin-top: 16px; }
.post p.quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-maroon);
  padding: 24px 28px;
  background: var(--color-cream);
  border-left: 4px solid var(--color-brown);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.post h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-maroon);
  font-size: 1.02rem;
  margin-top: 28px;
}
.post .post-cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(190, 141, 95, 0.25);
}
.post .collab-note {
  display: block;
  margin-top: 30px;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-text-soft);
}
.post ul.pillars-list li {
  margin-top: 6px;
  color: var(--color-text-soft);
}
.post ul.pillars-list li strong { color: var(--color-maroon); }

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.contact-grid > * { min-width: 0; }
.contact-image .img-ph { aspect-ratio: 4 / 5; min-height: 320px; }

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.contact-card .btn { margin-top: 28px; }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Responsive helpers
   ========================================================================== */

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 40px 0 64px; }
}
