/* ============================================================
   PAGE LAYOUTS — VERSION 1.0
   Structural layout rules for individual page templates.
   Component styles (cards, buttons, etc.) live in components.css.
   Global styles live in core.css.
   Each page section is namespaced with the page name (.page-about,
   .page-contact etc.) to prevent cross-page collisions.
   ============================================================ */


/* ============================================================
   ABOUT PAGE — .page-about
   Sections: hero / mission / founder / values / cta
   ============================================================ */

/* ----------------------------------------------------------
   ABOUT HERO
   Full-width image banner (21:9 aspect ratio) with title
   block sitting underneath (not overlaid).
   Source: <section class="relative pt-24 pb-0"> +
           <div class="container ... text-center py-12">
   ---------------------------------------------------------- */
.about-hero {
  position: relative;
  padding-top: 5rem;   /* clears fixed header height */
}

.about-hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}

.about-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Title sits below the image, centred */
.about-hero__title-wrap {
  text-align: center;
  padding: 3rem 1rem;
}

.about-hero__title {
  font-family: 'Raleway', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .about-hero__title { font-size: 3rem; }
}

.about-hero__subtitle {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* ----------------------------------------------------------
   ABOUT MISSION
   Narrow centred text column on mist background.
   Source: <section class="py-20 bg-mist">
           <div class="container ... max-w-4xl">
   ---------------------------------------------------------- */
.about-mission__inner {
  max-width: 56rem;   /* ~max-w-4xl */
  margin: 0 auto;
}

.about-mission__heading {
  margin-bottom: 1.5rem;
}

.about-mission__text {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  line-height: 1.75;
  text-align: center;
}

/* ----------------------------------------------------------
   ABOUT FOUNDER
   Two-column grid: portrait image left, bio text right.
   Source: <section class="py-20 bg-white">
           <div class="grid md:grid-cols-2 gap-12 items-center">
   ---------------------------------------------------------- */
.about-founder__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-founder__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Portrait image — 4:5 aspect, rounded corners */
.about-founder__image-wrap {
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 4 / 5;
}

.about-founder__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bio text column */
.about-founder__heading {
  font-family: 'Raleway', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.about-founder__name {
  font-family: 'Raleway', sans-serif;
  font-size: 1.25rem;
  color: hsl(var(--gold));
  margin-bottom: 1.25rem;
}

.about-founder__subheading {
  font-family: 'Raleway', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.about-founder__para {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.about-founder__para--bold   { font-weight: 600; }
.about-founder__para--italic { font-style: italic; }

/* ----------------------------------------------------------
   ABOUT VALUES
   Dark midnight section, 7 cards in responsive grid.
   Source: <section class="py-20 bg-midnight relative overflow-hidden">
           <div class="grid sm:grid-cols-2 lg:grid-cols-3 gap-6">
   ---------------------------------------------------------- */
.about-values {
  overflow: hidden;   /* clips decorative particle dots if added */
}

/* 1 col → 2 col (sm) → 3 col (lg) */
.about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .about-values__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Individual value card */
.about-values__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.about-values__icon {
  color: hsl(var(--gold));
  margin-bottom: 0.75rem;
  display: block;
}

.about-values__card-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.about-values__card-text {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.6);
}

/* ----------------------------------------------------------
   ABOUT CTA
   Centred heading + subtitle + two buttons on mist bg.
   Source: <section class="py-20 bg-mist"> (last section)
   ---------------------------------------------------------- */
.about-cta__heading {
  margin-bottom: 1rem;
}

.about-cta__subtitle {
  margin-bottom: 2rem;
}

.about-cta__actions {
  margin-top: 0.5rem;
}


/* ============================================================
   EXPLORE PAGE — .page-explore
   ============================================================ */

/* Hero — midnight bg, centred title */
.explore-hero {
  background-color: hsl(var(--midnight));
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.explore-hero__title {
  font-family: 'Raleway', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .explore-hero__title { font-size: 3rem; } }
.explore-hero__subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* Guide banner strip */
.explore-guide-banner { padding: 2rem 0; background-color: hsl(var(--gold) / 0.1); }
.explore-guide-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .explore-guide-banner__inner { flex-direction: row; text-align: left; justify-content: space-between; }
}
.explore-guide-banner__heading { font-family: 'Raleway', sans-serif; font-size: 1.125rem; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 0.25rem; }
.explore-guide-banner__desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); max-width: 28rem; }

/* Leaflet map */
.explore-map-section { padding: 4rem 0; }
.explore-map__wrap { background: #fff; border-radius: 0.75rem; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.explore-map__canvas { width: 100%; aspect-ratio: 16 / 9; }
@media (min-width: 768px) { .explore-map__canvas { aspect-ratio: 21 / 9; } }

/* Guide strip */
.explore-guide-strip { padding: 1.5rem 0; background-color: hsl(var(--gold) / 0.1); }
.explore-guide-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 640px) { .explore-guide-strip__inner { flex-direction: row; text-align: left; } }
.explore-guide-strip__icon { color: hsl(var(--gold)); flex-shrink: 0; }
.explore-guide-strip__text { font-size: 0.875rem; color: hsl(var(--primary)); }

/* Things to do grid */
.explore-things__heading { margin-bottom: 2.5rem; }
.explore-things__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .explore-things__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .explore-things__grid { grid-template-columns: repeat(3, 1fr); } }
.explore-things__card { background: hsl(var(--mist)); border-radius: 0.75rem; padding: 1.5rem; }
.explore-things__card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.explore-things__icon { width: 2.5rem; height: 2.5rem; flex-shrink: 0; }
.explore-things__card-title { font-family: 'Raleway', sans-serif; font-size: 1.125rem; font-weight: 600; color: hsl(var(--primary)); }
.explore-things__list { display: flex; flex-direction: column; gap: 0.5rem; }
.explore-things__item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.explore-things__dot { width: 0.375rem; height: 0.375rem; border-radius: 9999px; background-color: hsl(var(--gold)); flex-shrink: 0; margin-top: 0.375rem; }

/* Gallery grid */
.explore-gallery__heading { margin-bottom: 2rem; }
.explore-gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .explore-gallery__grid { grid-template-columns: repeat(4, 1fr); } }
.explore-gallery__item { aspect-ratio: 1; overflow: hidden; border-radius: 0.5rem; background-color: hsl(var(--primary) / 0.05); }
.explore-gallery__img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Guide detail */
.explore-guide-detail__inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.explore-guide-detail__icon { color: hsl(var(--gold)); margin: 0 auto 0.75rem; display: block; }
.explore-guide-detail__heading { font-family: 'Raleway', sans-serif; font-size: 1.25rem; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 0.75rem; }
.explore-guide-detail__text { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.75; margin-bottom: 0.75rem; max-width: 40rem; margin-left: auto; margin-right: auto; }


/* ============================================================
   EXPERIENCES ARCHIVE — .page-experiences
   ============================================================ */

/* Full-screen hero */
.exp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.exp-hero__media { position: absolute; inset: 0; }
.exp-hero__img { width: 100%; height: 100%; object-fit: cover; }
.exp-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, hsl(var(--midnight) / 0.4), hsl(var(--midnight) / 0.2), hsl(var(--midnight) / 0.8)); }
.exp-hero__content { position: relative; z-index: 10; text-align: center; padding: 0 1rem; max-width: 56rem; margin: 0 auto; }
.exp-hero__eyebrow { color: hsl(var(--gold)); font-style: italic; font-family: 'Raleway', sans-serif; font-size: 1.125rem; margin-bottom: 1rem; }
.exp-hero__title { font-family: 'Raleway', sans-serif; font-size: 2.25rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; line-height: 1.2; }
@media (min-width: 768px) { .exp-hero__title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .exp-hero__title { font-size: 5rem; } }
.exp-hero__subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.8); max-width: 42rem; margin: 0 auto 2.5rem; }

/* Checklist banner */
.exp-checklist-banner {
  background-color: hsl(var(--gold) / 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .exp-checklist-banner { flex-direction: row; justify-content: space-between; text-align: left; } }
.exp-checklist-banner__heading { font-family: 'Raleway', sans-serif; font-size: 1.125rem; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 0.25rem; }
.exp-checklist-banner__desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); max-width: 28rem; }

/* Featured experience card */
.exp-featured { margin-bottom: 1.5rem; }
.exp-featured__link { display: block; border-radius: 1rem; overflow: hidden; position: relative; }
.exp-featured__media { position: relative; aspect-ratio: 21 / 9; }
@media (min-width: 768px) { .exp-featured__media { aspect-ratio: 3 / 1; } }
.exp-featured__img { width: 100%; height: 100%; object-fit: cover; }
.exp-featured__overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsl(var(--midnight) / 0.9), hsl(var(--midnight) / 0.3), transparent); }
.exp-featured__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 2.5rem; }
.exp-featured__badge { display: inline-block; background: hsl(var(--gold) / 0.9); color: hsl(var(--midnight)); font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 9999px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.exp-featured__title { font-family: 'Raleway', sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .exp-featured__title { font-size: 2.25rem; } }
.exp-featured__desc { color: rgba(255,255,255,0.8); font-size: 0.875rem; max-width: 36rem; margin-bottom: 1rem; }

/* 6-card experience grid */
.exp-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .exp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .exp-grid { grid-template-columns: repeat(3, 1fr); } }
.exp-grid__link { display: block; border-radius: 0.75rem; overflow: hidden; position: relative; }
.exp-grid__media { position: relative; aspect-ratio: 4 / 5; }
.exp-grid__img { width: 100%; height: 100%; object-fit: cover; }
.exp-grid__overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsl(var(--midnight) / 0.9), hsl(var(--midnight) / 0.4), transparent); opacity: 0.8; transition: opacity 0.3s ease; }
.exp-grid__link:hover .exp-grid__overlay { opacity: 1; }
.exp-grid__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem 1.5rem; }
.exp-grid__title { font-family: 'Raleway', sans-serif; font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.exp-grid__desc { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.625; margin-bottom: 1rem; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }


/* ============================================================
   EXPERIENCE SINGLE — .page-experience-single
   ============================================================ */

.exp-single-hero { position: relative; min-height: 70vh; display: flex; align-items: flex-end; overflow: hidden; }
.exp-single-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.exp-single-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsl(var(--midnight) / 0.8), hsl(var(--midnight) / 0.3), transparent); }
.exp-single-hero__content { position: relative; z-index: 10; padding: 6rem 1rem 3rem; max-width: 48rem; margin: 0 auto; text-align: center; width: 100%; }
.exp-single-hero__eyebrow { color: hsl(var(--gold)); font-style: italic; font-size: 1rem; margin-bottom: 0.5rem; }
.exp-single-hero__title { font-family: 'Raleway', sans-serif; font-size: 2.25rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
@media (min-width: 768px) { .exp-single-hero__title { font-size: 3.75rem; } }
.exp-single-hero__subtitle { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* Download strip */
.exp-single-download-strip { padding: 2rem 0; }

/* Content section */
.exp-single-content__inner { max-width: 56rem; margin: 0 auto; }
.exp-single-content__heading { margin-bottom: 1.5rem; }
.exp-single-content__prose { color: hsl(var(--muted-foreground)); line-height: 1.75; margin-bottom: 2rem; }
.exp-single-content__prose p { margin-bottom: 1rem; }

/* Guide box */
.exp-single-guide-box { background-color: hsl(var(--gold) / 0.1); border-radius: 0.75rem; padding: 2rem; text-align: center; margin-bottom: 2rem; }
.exp-single-guide-box__icon { color: hsl(var(--gold)); margin: 0 auto 0.75rem; display: block; }
.exp-single-guide-box__heading { font-family: 'Raleway', sans-serif; font-size: 1.125rem; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 0.5rem; }
.exp-single-guide-box__desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); max-width: 28rem; margin: 0 auto 1.5rem; }

/* Why choose us box */
.exp-single-why-box { background-color: hsl(var(--mist)); border-radius: 0.75rem; padding: 2rem; }
.exp-single-why-box__heading { font-family: 'Raleway', sans-serif; font-size: 1.25rem; font-weight: 600; color: hsl(var(--primary)); margin-bottom: 1rem; }
.exp-single-why-box__text { font-size: 0.9375rem; color: hsl(var(--muted-foreground)); line-height: 1.75; }

/* Included grid */
.exp-single-included__inner { max-width: 56rem; margin: 0 auto; }
.exp-single-included__grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-top: 2rem; }
@media (min-width: 640px) { .exp-single-included__grid { grid-template-columns: repeat(2, 1fr); } }
.exp-single-included__item { display: flex; align-items: center; gap: 0.75rem; background: hsl(var(--mist)); border-radius: 0.5rem; padding: 1rem; }
.exp-single-included__dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: hsl(var(--gold)); flex-shrink: 0; }
.exp-single-included__text { font-size: 0.875rem; color: hsl(var(--foreground)); }

/* Inline CTA strip */
.exp-single-inline-cta { padding: 2.5rem 0; background: #fff; border-bottom: 1px solid hsl(var(--border)); }
.exp-single-inline-cta__inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; }
@media (min-width: 640px) { .exp-single-inline-cta__inner { flex-direction: row; text-align: left; justify-content: center; } }
.exp-single-inline-cta__text { font-family: 'Raleway', sans-serif; font-weight: 600; color: hsl(var(--primary)); }
.exp-single-inline-cta__actions { display: flex; gap: 0.75rem; }

/* FAQ */
.exp-single-faq__inner { max-width: 48rem; margin: 0 auto; }
.exp-single-faq__list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.exp-single-faq__item { background: #fff; border: 1px solid hsl(var(--border)); border-radius: 0.5rem; overflow: hidden; }
.exp-single-faq__question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1rem; text-align: left; font-size: 0.875rem; font-weight: 500; color: hsl(var(--primary)); background: none; border: none; cursor: pointer; transition: background-color 0.15s ease; }
.exp-single-faq__question:hover { background-color: hsl(var(--mist) / 0.5); }
.exp-single-faq__chevron { flex-shrink: 0; transition: transform 0.2s ease; }
.exp-single-faq__question[aria-expanded="true"] .exp-single-faq__chevron { transform: rotate(180deg); }
.exp-single-faq__answer { padding: 0 1rem 1rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.625; }

/* Related experiences horizontal scroll */
.exp-single-related__scroll { display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; scrollbar-width: none; }
.exp-single-related__scroll::-webkit-scrollbar { display: none; }
.exp-single-related__card { flex-shrink: 0; width: 16rem; border-radius: 0.75rem; overflow: hidden; display: block; position: relative; scroll-snap-align: start; }
.exp-single-related__media { aspect-ratio: 3 / 4; position: relative; }
.exp-single-related__img { width: 100%; height: 100%; object-fit: cover; }
.exp-single-related__overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsl(var(--midnight) / 0.9), hsl(var(--midnight) / 0.3), transparent); }
.exp-single-related__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; }
.exp-single-related__title { font-family: 'Raleway', sans-serif; font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.exp-single-related__desc { color: rgba(255,255,255,0.7); font-size: 0.75rem; margin-bottom: 0.5rem; }

.exp-single-video__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
}
.exp-single-video__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}



/* ============================================================
   BEYOND THE FALLS — .page-beyond-the-falls
   ============================================================ */

.beyond-hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.beyond-hero__media { position: absolute; inset: 0; }
.beyond-hero__img { width: 100%; height: 100%; object-fit: cover; }
.beyond-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, hsl(var(--midnight) / 0.7), hsl(var(--midnight) / 0.5), hsl(var(--midnight) / 0.8)); }
.beyond-hero__content { position: relative; z-index: 10; text-align: center; padding: 0 1rem; max-width: 56rem; margin: 0 auto; }
.beyond-hero__title { font-family: 'Raleway', sans-serif; font-size: 2.25rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; line-height: 1.2; }
@media (min-width: 768px) { .beyond-hero__title { font-size: 4rem; } }
.beyond-hero__subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.85); max-width: 42rem; margin: 0 auto 2.5rem; line-height: 1.75; }

/* Impact — eyebrow + flow */
.beyond-impact__eyebrow { font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: hsl(var(--gold)); margin-bottom: 0.75rem; }
.beyond-impact__eyebrow--light { color: hsl(var(--gold)); }
.beyond-impact__flow { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; margin-top: 3rem; }
.beyond-impact__step { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.beyond-impact__icon-wrap { width: 5rem; height: 5rem; border-radius: 9999px; background: hsl(var(--gold) / 0.1); border: 2px solid hsl(var(--gold) / 0.3); display: flex; align-items: center; justify-content: center; color: hsl(var(--gold)); }
.beyond-impact__label { font-size: 0.875rem; font-weight: 600; color: hsl(var(--foreground)); text-align: center; }
.beyond-impact__arrow { color: hsl(var(--gold) / 0.5); display: none; }
@media (min-width: 768px) { .beyond-impact__arrow { display: block; } }

/* Education two-column */
.beyond-education__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .beyond-education__grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; } }
.beyond-education__heading { font-family: 'Raleway', sans-serif; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 1.5rem; }
.beyond-education__intro { font-size: 1.125rem; color: hsl(var(--muted-foreground)); line-height: 1.75; margin-bottom: 2rem; }
.beyond-education__card { background: #fff; border-radius: 1rem; padding: 1.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid hsl(var(--border)); margin-bottom: 2rem; }
.beyond-education__card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.beyond-education__name { font-family: 'Raleway', sans-serif; font-weight: 700; color: hsl(var(--foreground)); }
.beyond-education__dream { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.beyond-education__quote { font-size: 0.875rem; color: hsl(var(--muted-foreground)); font-style: italic; line-height: 1.625; }
.beyond-education__timeline { display: flex; flex-direction: column; gap: 0; }
.beyond-education__milestone { display: flex; gap: 1rem; align-items: flex-start; }
.beyond-education__milestone-dot { width: 0.75rem; height: 0.75rem; border-radius: 9999px; background: hsl(var(--gold)); margin-top: 0.375rem; flex-shrink: 0; }
.beyond-education__milestone-dot--active { box-shadow: 0 0 0 4px hsl(var(--gold) / 0.2); }
.beyond-education__milestone-label { font-size: 0.7rem; font-weight: 600; color: hsl(var(--gold)); text-transform: uppercase; letter-spacing: 0.05em; }
.beyond-education__milestone-event { font-size: 0.875rem; color: hsl(var(--foreground)); margin-bottom: 2rem; }
.beyond-education__image-wrap { position: relative; }
.beyond-education__img { width: 100%; border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); aspect-ratio: 4 / 5; object-fit: cover; }
.beyond-education__badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background: hsl(var(--gold)); color: hsl(var(--midnight)); padding: 0.75rem 1.5rem; border-radius: 0.75rem; box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.beyond-education__badge-number { font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 1.5rem; line-height: 1; }
.beyond-education__badge-label { font-size: 0.75rem; font-weight: 600; }

/* Enterprise two-column reversed */
.beyond-enterprise__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .beyond-enterprise__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.beyond-enterprise__image-wrap { position: relative; order: 1; }
@media (min-width: 1024px) { .beyond-enterprise__image-wrap { order: 0; } }
.beyond-enterprise__img { width: 100%; border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); aspect-ratio: 4 / 5; object-fit: cover; }
.beyond-enterprise__badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: hsl(var(--midnight)); color: #fff; padding: 0.75rem 1.5rem; border-radius: 0.75rem; box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.beyond-enterprise__badge-number { font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 1.5rem; line-height: 1; }
.beyond-enterprise__badge-label { font-size: 0.75rem; font-weight: 600; }
.beyond-enterprise__content { order: 0; }
@media (min-width: 1024px) { .beyond-enterprise__content { order: 1; } }
.beyond-enterprise__heading { font-family: 'Raleway', sans-serif; font-size: 2rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 1.5rem; }
.beyond-enterprise__intro { font-size: 1.125rem; color: hsl(var(--muted-foreground)); line-height: 1.75; margin-bottom: 2rem; }
.beyond-enterprise__card { background: hsl(var(--mist)); border-radius: 1rem; padding: 1.5rem; border: 1px solid hsl(var(--border)); margin-bottom: 1.5rem; }
.beyond-enterprise__name { font-family: 'Raleway', sans-serif; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 0.25rem; }
.beyond-enterprise__location { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 1rem; }
.beyond-enterprise__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.beyond-enterprise__stat { background: #fff; border-radius: 0.75rem; padding: 1rem; text-align: center; }
.beyond-enterprise__stat-label { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.25rem; }
.beyond-enterprise__stat-value { font-family: 'Raleway', sans-serif; font-weight: 700; color: hsl(var(--foreground)); }
.beyond-enterprise__stat--after .beyond-enterprise__stat-value { color: hsl(var(--gold)); }
.beyond-enterprise__list { display: flex; flex-direction: column; gap: 0.75rem; }
.beyond-enterprise__item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: hsl(var(--foreground)); }
.beyond-enterprise__item::before { content: ''; width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: hsl(var(--gold)); flex-shrink: 0; }

/* Village 3-col image cards */
.beyond-village__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .beyond-village__grid { grid-template-columns: repeat(3, 1fr); } }
.beyond-village__card { position: relative; border-radius: 1rem; overflow: hidden; aspect-ratio: 3 / 4; cursor: pointer; }
.beyond-village__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.beyond-village__card:hover .beyond-village__img { transform: scale(1.08); }
.beyond-village__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3), transparent); }
.beyond-village__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.beyond-village__title { font-family: 'Raleway', sans-serif; font-size: 1.125rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.beyond-village__desc { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.625; }

/* Ecosystem vertical timeline */
.beyond-ecosystem__timeline { display: flex; flex-direction: column; gap: 0; max-width: 36rem; margin: 0 auto; }
.beyond-ecosystem__node { display: flex; gap: 1.5rem; align-items: flex-start; }
.beyond-ecosystem__icon-col { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.beyond-ecosystem__icon-wrap { width: 3.5rem; height: 3.5rem; border-radius: 9999px; background: hsl(var(--gold) / 0.15); border: 2px solid hsl(var(--gold) / 0.3); display: flex; align-items: center; justify-content: center; color: hsl(var(--gold)); }
.beyond-ecosystem__connector { width: 1px; height: 4rem; background: hsl(var(--gold) / 0.2); }
.beyond-ecosystem__text { padding-bottom: 2rem; }
.beyond-ecosystem__node-title { font-family: 'Raleway', sans-serif; font-size: 1.25rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 0.5rem; margin-top: 0.5rem; }
.beyond-ecosystem__node-desc { font-size: 0.9375rem; color: hsl(var(--muted-foreground)); line-height: 1.625; }
.beyond-ecosystem__callout { margin-top: 2rem; text-align: center; }
.beyond-ecosystem__callout-heading { font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 1.125rem; color: hsl(var(--foreground)); }
.beyond-ecosystem__callout-sub { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }

/* Transparency allocation cards */
.beyond-transparency__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 640px) { .beyond-transparency__grid { grid-template-columns: repeat(3, 1fr); } }
.beyond-transparency__card { background: hsl(var(--mist)); border-radius: 1rem; padding: 2rem; text-align: center; border: 1px solid hsl(var(--border)); }
.beyond-transparency__circle { width: 4rem; height: 4rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 1.125rem; color: #fff; }
.beyond-transparency__circle--gold    { background: hsl(var(--gold)); }
.beyond-transparency__circle--earth   { background: hsl(25 58% 36%); }
.beyond-transparency__circle--midnight { background: hsl(var(--midnight)); }
.beyond-transparency__label { font-family: 'Raleway', sans-serif; font-size: 1.125rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 0.5rem; }
.beyond-transparency__desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.625; }
.beyond-transparency__footnote { font-size: 0.875rem; color: hsl(var(--muted-foreground)); max-width: 32rem; margin: 3rem auto 0; text-align: center; }

/* CTA with image bg */
.beyond-cta { position: relative; padding: 6rem 0; overflow: hidden; }
.beyond-cta__media { position: absolute; inset: 0; }
.beyond-cta__img { width: 100%; height: 100%; object-fit: cover; }
.beyond-cta__overlay { position: absolute; inset: 0; background: linear-gradient(to right, hsl(var(--midnight) / 0.85), hsl(var(--midnight) / 0.7)); }
.beyond-cta__content { position: relative; z-index: 10; text-align: center; max-width: 48rem; margin: 0 auto; padding: 0 1rem; }
.beyond-cta__title { font-family: 'Raleway', sans-serif; font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .beyond-cta__title { font-size: 3rem; } }
.beyond-cta__subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; line-height: 1.75; }


/* ============================================================
   BLOG ARCHIVE — .page-blog
   ============================================================ */

.blog-hero { background-color: hsl(var(--midnight)); padding: 8rem 0 5rem; text-align: center; position: relative; overflow: hidden; }
.blog-hero__title { font-family: 'Raleway', sans-serif; font-size: 2.25rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
@media (min-width: 768px) { .blog-hero__title { font-size: 3rem; } }
.blog-hero__subtitle { color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 42rem; margin: 0 auto; }

/* Featured post */
.blog-featured { margin-bottom: 3rem; }
.blog-featured__link { display: block; background: #fff; border-radius: 0.75rem; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.05); transition: box-shadow 0.2s ease; }
.blog-featured__link:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.blog-featured__grid { display: grid; }
@media (min-width: 768px) { .blog-featured__grid { grid-template-columns: 1fr 1fr; } }
.blog-featured__media { aspect-ratio: 16 / 10; overflow: hidden; background: hsl(var(--primary) / 0.05); display: flex; align-items: center; justify-content: center; }
.blog-featured__img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured__img-placeholder { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.blog-featured__body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.blog-featured__cat { font-size: 0.7rem; font-weight: 700; color: hsl(var(--gold)); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; display: block; }
.blog-featured__title { font-family: 'Raleway', sans-serif; font-size: 1.5rem; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 0.75rem; line-height: 1.3; }
.blog-featured__excerpt { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.625; margin-bottom: 1rem; }
.blog-featured__meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { height: 100%; }
.blog-card__link { display: block; background: #fff; border-radius: 0.75rem; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.05); height: 100%; transition: box-shadow 0.2s ease; }
.blog-card__link:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.blog-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: hsl(var(--primary) / 0.05); display: flex; align-items: center; justify-content: center; }
.blog-card__img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__img-placeholder { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }
.blog-card__body { padding: 1.5rem; }
.blog-card__cat { font-size: 0.7rem; font-weight: 700; color: hsl(var(--gold)); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.5rem; }
.blog-card__title { font-family: 'Raleway', sans-serif; font-size: 1.125rem; font-weight: 600; color: hsl(var(--primary)); margin-bottom: 0.5rem; line-height: 1.3; transition: color 0.15s ease; }
.blog-card__link:hover .blog-card__title { color: hsl(var(--gold)); }
.blog-card__excerpt { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.625; margin-bottom: 1rem; }
.blog-card__read-more { display: inline-flex; }
.blog-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.blog-pagination .page-numbers { padding: 0.5rem 1rem; border-radius: 0.375rem; font-size: 0.875rem; color: hsl(var(--primary)); border: 1px solid hsl(var(--border)); transition: all 0.15s ease; }
.blog-pagination .page-numbers:hover, .blog-pagination .page-numbers.current { background: hsl(var(--primary)); color: #fff; border-color: hsl(var(--primary)); }


/* ============================================================
   SINGLE BLOG POST — .single-post
   ============================================================ */

.post-header { background-color: hsl(var(--midnight)); padding: 8rem 0 5rem; position: relative; overflow: hidden; }
.post-header__inner { max-width: 48rem; margin: 0 auto; }
.post-header__back { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 1.5rem; transition: color 0.15s ease; }
.post-header__back:hover { color: hsl(var(--gold)); }
.post-header__cat { font-size: 0.7rem; font-weight: 700; color: hsl(var(--gold)); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.75rem; }
.post-header__title { font-family: 'Raleway', sans-serif; font-size: 1.875rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; line-height: 1.25; }
@media (min-width: 768px) { .post-header__title { font-size: 3rem; } }
.post-header__meta { display: flex; align-items: center; gap: 1.25rem; }
.post-header__date, .post-header__readtime { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.6); font-size: 0.875rem; }

/* Article */
.post-article__inner { max-width: 48rem; margin: 0 auto; }
.post-article__hero-img { margin-bottom: 2.5rem; border-radius: 0.75rem; overflow: hidden; }
.post-article__img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.post-article__img-placeholder { width: 100%; aspect-ratio: 16 / 9; background: hsl(var(--primary) / 0.05); border: 1px dashed hsl(var(--primary) / 0.2); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; color: hsl(var(--muted-foreground)); border-radius: 0.75rem; margin-bottom: 2.5rem; }
.post-article__lead { font-size: 1.125rem; color: hsl(var(--primary) / 0.9); font-weight: 500; line-height: 1.75; margin-bottom: 2.5rem; }
.post-article__content { color: hsl(var(--muted-foreground)); line-height: 1.8; }
.post-article__content h2 { font-family: 'Raleway', sans-serif; font-size: 1.5rem; font-weight: 700; color: hsl(var(--primary)); margin: 2rem 0 1rem; }
.post-article__content p { margin-bottom: 1.25rem; }
.post-article__content ul { margin-bottom: 1.25rem; padding-left: 1.25rem; }
.post-article__content ul li { margin-bottom: 0.5rem; display: flex; align-items: flex-start; gap: 0.75rem; list-style: none; padding-left: 0; }
.post-article__content ul li::before { content: ''; width: 0.375rem; height: 0.375rem; border-radius: 9999px; background: hsl(var(--gold)); flex-shrink: 0; margin-top: 0.625rem; }

/* Guide box */
.post-article__guide-box { margin: 3rem 0; border-radius: 1rem; overflow: hidden; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid hsl(var(--gold) / 0.2); }
.post-article__guide-grid { display: grid; }
@media (min-width: 768px) { .post-article__guide-grid { grid-template-columns: auto 1fr; } }
.post-article__guide-cover { background: hsl(var(--midnight) / 0.95); min-height: 15rem; display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.75rem; gap: 0.5rem; padding: 2rem; }
.post-article__guide-text { padding: 2rem; }
.post-article__guide-eyebrow { font-size: 0.7rem; font-weight: 700; color: hsl(var(--gold)); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.5rem; }
.post-article__guide-heading { font-family: 'Raleway', sans-serif; font-size: 1.25rem; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 0.75rem; }
.post-article__guide-desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 1rem; }
.post-article__guide-list { list-style: none; padding: 0; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.post-article__guide-list li { font-size: 0.875rem; color: hsl(var(--primary) / 0.8); display: flex; align-items: flex-start; gap: 0.5rem; }
.post-article__guide-list li::before { content: '✓'; color: hsl(var(--gold)); flex-shrink: 0; font-weight: 700; }

/* CTA block */
.post-article__cta-block { background: hsl(var(--midnight)); border-radius: 0.75rem; padding: 2.5rem; text-align: center; margin-top: 2rem; }
.post-article__cta-title { font-family: 'Raleway', sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.post-article__cta-desc { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; }

/* Related posts */
.post-related__heading { margin-bottom: 2rem; }
.post-related__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .post-related__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .post-related__grid { grid-template-columns: repeat(3, 1fr); } }
.post-related__card { background: hsl(var(--mist)); border-radius: 0.75rem; overflow: hidden; height: 100%; }
.post-related__link { display: block; padding: 1.5rem; height: 100%; }
.post-related__cat { font-size: 0.7rem; font-weight: 700; color: hsl(var(--gold)); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.5rem; }
.post-related__title { font-family: 'Raleway', sans-serif; font-size: 1.125rem; font-weight: 600; color: hsl(var(--primary)); margin-bottom: 0.5rem; transition: color 0.15s ease; }
.post-related__link:hover .post-related__title { color: hsl(var(--gold)); }
.post-related__excerpt { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.625; margin-bottom: 1rem; }


/* ============================================================
   CONTACT PAGE — .page-contact
   ============================================================ */

.contact-hero { background-color: hsl(var(--midnight)); padding: 8rem 0 5rem; text-align: center; position: relative; overflow: hidden; }
.contact-hero__title { font-family: 'Raleway', sans-serif; font-size: 2.25rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
@media (min-width: 768px) { .contact-hero__title { font-size: 3rem; } }
.contact-hero__subtitle { color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 42rem; margin: 0 auto; }

.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.contact-details__heading { font-family: 'Raleway', sans-serif; font-size: 1.5rem; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 1.5rem; }
.contact-details__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-details__link { display: flex; align-items: center; gap: 0.75rem; color: hsl(var(--muted-foreground)); font-size: 0.9375rem; transition: color 0.15s ease; }
.contact-details__link:hover { color: hsl(var(--gold)); }
.contact-details__icon { color: hsl(var(--gold)); flex-shrink: 0; }
.contact-details__cta { margin-top: 1rem; }

.contact-form-card { background: #fff; border-radius: 0.75rem; padding: 2rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.contact-form-card__heading { font-family: 'Raleway', sans-serif; font-size: 1.5rem; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 1.5rem; }
.contact-form-card__success { background: hsl(143 85% 96%); border: 1px solid hsl(145 92% 91%); color: hsl(140 100% 27%); padding: 1rem; border-radius: 0.5rem; margin-bottom: 1.5rem; font-size: 0.875rem; }
.contact-form-card__error { background: hsl(359 100% 97%); border: 1px solid hsl(359 100% 94%); color: hsl(360 100% 45%); padding: 1rem; border-radius: 0.5rem; margin-bottom: 1.5rem; font-size: 0.875rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form__field { display: flex; flex-direction: column; gap: 0.375rem; }
.contact-form__label { font-size: 0.875rem; font-weight: 500; color: hsl(var(--foreground)); }
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid hsl(var(--input));
  border-radius: calc(var(--radius) - 2px);
  font-family: inherit;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}
.contact-form__textarea { resize: vertical; min-height: 8rem; }
.contact-form__submit { width: 100%; margin-top: 0.5rem; }


/* ============================================================
   PROTECTIONS PAGE — .page-protections
   ============================================================ */

.protections-hero { background-color: hsl(var(--midnight)); padding: 8rem 0 5rem; text-align: center; position: relative; overflow: hidden; }
.protections-hero__title { font-family: 'Raleway', sans-serif; font-size: 2.25rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
@media (min-width: 768px) { .protections-hero__title { font-size: 3rem; } }
.protections-hero__subtitle { color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 42rem; margin: 0 auto; }

.protections-cards__list { display: flex; flex-direction: column; gap: 1.5rem; max-width: 56rem; margin: 0 auto; }
.protections-card { background: #fff; border-radius: 0.75rem; padding: 2rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.protections-card__icon-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.protections-card__icon { color: hsl(var(--gold)); flex-shrink: 0; }
.protections-card__title { font-family: 'Raleway', sans-serif; font-size: 1.5rem; font-weight: 700; color: hsl(var(--primary)); }
.protections-card__text { font-size: 0.9375rem; color: hsl(var(--muted-foreground)); line-height: 1.75; margin-bottom: 0.75rem; }
.protections-card__text--sm { font-size: 0.875rem; }

.post-article__hero-img img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover;
}