/* Font Faces */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/inter-v20-latin-300.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/inter-v20-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/inter-v20-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/inter-v20-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2");
}

/* Global Resets & Typography */
body {
  font-family: "Inter", sans-serif;
  color: #1b022f;
  line-height: 1.6;
  text-align: left; /* Default text alignment, can be overridden by specific sections */
}

:root {
  /* From appointments.html, services.html */
  --color-1: #becedb; /* Muted Blue */
  --color-2: #e7ded5; /* Sand */
  --color-3: #e4b48a; /* Peach */
  --text-main: #333333; /* From services.html */
  --white: #ffffff; /* From services.html */
  --text: #333; /* From appointments.html (duplicate of --text-main) */
}

/* Base Layout & Typography (consolidated from various files) */
.section-layout-body {
  /* From index.html, about.html, articles/unexpected-loss.html */
  display: block;
  max-width: 1100px; /* Using widest max-width */
  margin: 0 auto; /* Center content */
  padding: 20px; /* Default padding */
  color: rgb(27, 2, 47); /* From articles/unexpected-loss.html */
  font-weight: 500; /* From articles/unexpected-loss.html */
  line-height: 1.6; /* From articles/unexpected-loss.html */
  text-align: left; /* From articles/unexpected-loss.html */
}

.section-layout-body p,
.modality-list-layout li {
  /* Consolidated from index.html, about.html, articles/unexpected-loss.html */
  font-size: 18px;
  margin: 0 0 15px 0; /* Updated from articles/unexpected-loss.html */
  padding: 0;
  text-align: justify; /* From articles/unexpected-loss.html */
  hyphens: auto; /* From articles/unexpected-loss.html */
}

.section-layout-body p:last-child,
.modality-list-layout li:last-child,
.grief-narrative-layout p:last-child, /* From index.html */
.approaches-summary-layout p:last-child /* From index.html */ {
  margin-bottom: 0;
}

/* Headings (consolidated) */
h1,
h2,
h3,
.text-subtitle-emphasis,
.text-heading-primary,
.page-title,
.article-title,
.warning-note strong,
.section-title {
  font-weight: 700;
  color: #1b022f; /* From about.html, articles/unexpected-loss.html */
  letter-spacing: -1px; /* From about.html, articles/unexpected-loss.html */
  text-transform: lowercase; /* From about.html, articles.html, articles/unexpected-loss.html */
  text-align: left; /* From about.html, articles/unexpected-loss.html */
}

h1 {
  /* From about.html, articles/unexpected-loss.html */
  font-size: 1.8rem;
  margin-bottom: 30px; /* From articles/unexpected-loss.html */
  line-height: 1.1;
}

.text-hero-large {
  /* From index.html */
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1;
}
.text-hero-sub {
  /* From index.html */
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1;
}

.page-title {
  /* From articles.html */
  position: absolute;
  bottom: -30px;
  right: 30px;
  margin: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 20px 40px;
  border-radius: 4px;
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: lowercase;
  letter-spacing: -1px;
  line-height: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05); /* From articles-2.html */
}

.article-title {
  /* From articles.html */
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  text-transform: lowercase;
}

.text-heading-primary {
  /* From index.html - used as h1 and h2 */
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.text-heading-lowercase {
  /* From index.html */
  padding-top: 0;
}

h2 {
  /* From about.html */
  font-size: 1.5rem;
  margin: 40px 0 10px 0;
}

.section-title {
  /* From services.html */
  font-family: "Inter", sans-serif;
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.text-author-meta {
  display: block;
  font-weight: 400;
  opacity: 0.6;
  font-size: 0.75em;
  margin-top: 10px;
  text-transform: none; /* From about.html - important for consistency */
}

.text-subtitle-emphasis {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 24px;
  display: block;
}

/* Layouts (consolidated) */
.hero-h1-layout {
  /* From index.html */
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 40px;
}

.hero-portrait-frame {
  /* From index.html */
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  overflow: visible;
}

.hero-portrait-frame img {
  /* From index.html */
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.glass-overlay-layout {
  /* From index.html */
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: -40px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.glass-pill-element {
  /* From index.html */
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 10px 20px;
  box-shadow: 0 8px 32px rgba(27, 2, 47, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: fit-content;
}

.h1-title-layout {
  /* From index.html */
  padding-top: 50px;
  text-align: center;
  display: flex;
  align-items: center;
}

.specialisation-feature-layout {
  /* From index.html */
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}

.specialisation-image-frame img {
  /* From index.html */
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.specialisation-info-layout {
  /* From index.html */
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.grief-questions-layout {
  /* From index.html */
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.grief-question-card {
  /* From index.html */
  width: 100%;
  max-width: 320px;
  min-height: 120px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 2px;
  overflow: hidden;
}

.card-inner-text {
  /* From index.html */
  margin: auto;
  line-height: 1.2 !important;
}

.card-inner-text span {
  /* From index.html */
  white-space: nowrap;
}

.bg-blue {
  /* From index.html */
  background-color: #becedb;
}
.bg-sand {
  /* From index.html */
  background-color: #e7ded5;
}
.bg-peach {
  /* From index.html */
  background-color: #e4b48a;
}

.grief-narrative-layout {
  /* From index.html */
  margin-top: 40px;
  max-width: 850px;
  text-align: left;
}

.approaches-divider {
  /* From index.html */
  border: 0;
  border-top: 1px solid rgba(27, 2, 47, 0.1);
  margin: 40px 0;
}

.approaches-summary-layout {
  /* From index.html */
  margin-bottom: 24px;
}

.approaches-layout {
  /* From index.html */
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.approaches-portrait-frame img {
  /* From index.html */
  width: 180px;
  border-radius: 4px;
}

.approaches-grid-layout {
  /* From index.html */
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.approach-item-detail strong {
  /* From index.html */
  display: block;
  margin-bottom: 4px;
  text-transform: lowercase;
  font-size: 16px;
}

.approach-item-detail small {
  /* From index.html */
  opacity: 0.7;
  font-size: 14px;
  display: block;
}

.personal-history-layout {
  /* From about.html */
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.profile-image-frame {
  /* From about.html */
  width: 100%;
  max-width: 400px;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.therapeutic-mood-layout {
  /* From about.html */
  display: flex;
  justify-content: center;
  margin: 48px 0;
}

.mood-image-element {
  /* From about.html */
  width: 100%;
  max-width: 680px;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

.modality-list-layout {
  /* From about.html */
  padding-left: 20px;
  margin: 10px 0 20px 0;
}

/* Articles List (consolidated from articles-2.html and articles.html) */
.articles-list {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif; /* From articles-2.html */
  text-align: left;
}

.article-container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-wrapper {
  /* From articles-2.html */
  position: relative;
  width: 100%;
  height: 250px;
  margin-bottom: 60px;
  overflow: visible;
}

.hero-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.warning-note {
  /* From articles-2.html, articles/unexpected-loss.html */
  background-color: #fff9f0;
  border-left: 4px solid #e6b15c;
  padding: 20px 30px;
  margin: 40px 0 60px 0; /* From articles-2.html */
  border-radius: 4px;
  max-width: 700px; /* From articles-2.html */
}

.warning-note p {
  /* From articles-2.html */
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #5c4a33;
  font-weight: 500;
}

.warning-note strong {
  /* From articles-2.html */
  text-transform: lowercase;
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.article-card {
  /* From articles-2.html */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.article-link {
  /* From articles-2.html */
  text-decoration: none;
  color: inherit;
  width: 100%;
  display: block;
}

.article-category {
  /* From articles-2.html */
  display: block;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #999999;
  margin-bottom: 12px;
  font-weight: 600;
}

.article-excerpt {
  /* From articles-2.html */
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 20px;
  max-width: 700px;
}

.read-more {
  /* From articles-2.html */
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 2px solid #1a1a1a;
}

.pagination-container {
  /* From articles-2.html, articles/unexpected-loss.html */
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eeeeee;
}

.older-btn {
  /* From articles-2.html, articles/unexpected-loss.html */
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: lowercase;
  transition: opacity 0.2s ease;
}

.older-btn:hover {
  /* From articles-2.html, articles/unexpected-loss.html */
  opacity: 0.6;
}

/* Services Page Styles (from services.html) */
.price-visibility-helper {
  /* Renamed from .price in main.css to avoid conflict */
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.price-ready {
  /* From services.html */
  opacity: 1;
}

.services-section {
  /* From services.html */
  padding: 80px 20px;
  background-color: var(--white);
  font-family: "Inter", sans-serif;
  text-align: center;
}

.services-layout {
  /* From services.html */
  max-width: 1100px;
  margin: 0 auto;
}

.header-group {
  /* From services.html */
  margin-bottom: 50px;
}

.divider {
  /* From services.html */
  width: 60px;
  height: 3px;
  background-color: var(--color-3);
  margin: 0 auto 50px;
}

.services-grid {
  /* From services.html */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  /* From services.html */
  padding: 50px 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  box-sizing: border-box;
  text-align: justify;
}

.card-1 {
  background-color: var(--color-1);
} /* From services.html */
.card-2 {
  background-color: var(--color-2);
} /* From services.html */
.card-3 {
  background-color: var(--color-3);
} /* From services.html */

.service-card h3 {
  /* From services.html */
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-main);
  text-align: justify;
  font-weight: 700;
}

.narrative-block h3 {
  font-size: 1.8rem;
}

.narrative-block h5 {
    font-size: 1.2rem;
}

.service-card p {
  /* From services.html */
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
  min-height: 90px;
  text-align: justify;
}

.pricing-box {
  /* From services.html */
  background-color: var(--white);
  padding: 20px 15px;
  width: 100%;
  max-width: 220px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-top: auto;
}

.service-price {
  /* Renamed from .price in services.html to avoid conflict */
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: "Inter", sans-serif;
}

.duration {
  /* From services.html */
  font-size: 0.85rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.service-card:hover {
  /* From services.html */
  transform: translateY(-5px);
}

#schedule-button {
  /* From services.html */
  background-color: #1b022f;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease;
  margin-top: 30px;
}

#schedule-button:hover {
  /* From services.html */
  background-color: #2d0a4d;
}

/* Article Detail Page Styles (from articles/unexpected-loss.html) */
.themes-box {
  /* From articles/unexpected-loss.html */
  background-color: #fff9f0;
  border-left: 4px solid #e6b15c;
  padding: 20px 30px;
  margin: 0 0 40px 0;
  border-radius: 4px;
}

.themes-box h3 {
  /* From articles/unexpected-loss.html */
  margin: 0 0 10px 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999999;
  font-weight: 700;
}

.themes-box ul {
  /* From articles/unexpected-loss.html */
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.themes-box li {
  /* From articles/unexpected-loss.html */
  font-size: 15px;
  color: #5c4a33;
  font-weight: 500;
  text-transform: lowercase;
  display: flex;
  align-items: center;
}

.themes-box li::before {
  /* From articles/unexpected-loss.html */
  content: "•";
  color: #e6b15c;
  margin-right: 8px;
  font-weight: bold;
}

.pressure-quote-layout {
  /* From articles/unexpected-loss.html */
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
  margin-bottom: 32px;
}

.quote-image-frame {
  /* From articles/unexpected-loss.html */
  width: 100%;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.support-note {
  /* From articles/unexpected-loss.html */
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eeeeee;
  font-size: 16px;
}

/* Appointments Page Styles */
.booking-section {
  /* From appointments.html */
  font-family: "Inter", sans-serif;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  min-height: 850px;
}

.session-selector {
  /* From appointments.html */
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.type-btn {
  /* From appointments.html */
  padding: 12px 24px;
  border: 2px solid var(--color-1);
  background: transparent;
  color: var(--text);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.type-btn:hover {
  /* From appointments.html */
  background: var(--color-1);
}
.type-btn.active {
  /* From appointments.html */
  background: var(--color-3);
  border-color: var(--color-3);
  color: white;
}

.iframe-container {
  /* From appointments.html */
  width: 100%;
  min-height: 750px;
  position: relative;
  background: #fff;
}

.booking-frame {
  /* From appointments.html */
  width: 100%;
  height: 800px;
  border: none;
  display: none;
}

.booking-frame.active {
  /* From appointments.html */
  display: block;
}

.loader {
  /* From appointments.html */
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  border: 4px solid var(--color-1);
  border-top: 4px solid var(--color-3);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  /* From appointments.html */
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Approaches Page Styles */
.section-layout-body-custom,
.section-layout-body-custom p,
.section-layout-body-custom h1,
.section-layout-body-custom h2,
.section-layout-body-custom div,
.section-layout-body-custom span,
.section-layout-body-custom footer {
  /* From approaches.html */
  font-family: "Inter", sans-serif !important;
  color: rgb(27, 2, 47);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.section-layout-body-custom {
  /* From approaches.html */
  display: block;
  text-align: left;
  padding: 20px;
  line-height: 1.5;
}

.approach-section {
  /* From approaches.html */
  padding: 60px 0;
  border-bottom: 1px solid rgba(27, 2, 47, 0.05);
}

.section-layout-row-custom {
  /* From approaches.html */
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.text-hero-sub-custom {
  /* From approaches.html */
  font-size: 40px;
  letter-spacing: -2px;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: lowercase;
}

.text-hero-sub-custom strong {
  /* From approaches.html */
  font-weight: 600;
}

.approach-title {
  /* From approaches.html */
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1.5px;
  text-transform: lowercase;
  line-height: 1.2;
  margin-bottom: 15px;
}

.approach-text {
  /* From approaches.html */
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(27, 2, 47, 0.9);
}

.approach-text p + p {
  /* From approaches.html */
  margin-top: 1.5em;
}

.image-container-custom img {
  /* From approaches.html */
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

.image-reduced img {
  /* From approaches.html */
  width: 55% !important;
  margin-right: auto;
  padding-left: 50px;
}

.legal-disclaimer-footer {
  /* From approaches.html */
  border-top: 1px solid rgba(27, 2, 47, 0.1);
  margin-top: 80px;
  padding: 40px 0 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.legal-text {
  /* From approaches.html */
  font-size: 14px;
  line-height: 1.6;
  color: rgba(27, 2, 47, 0.6);
  max-width: 800px;
  font-weight: 400;
}

/* Privacy Page Styles */
.page-main-layout {
  /* From privacy.html */
  width: 100%;
}
.page-content-layout {
  /* From privacy.html */
  display: block;
}
.row-flex-layout {
  /* From privacy.html */
  display: flex;
  flex-direction: row;
}
.column-spacer-layout {
  /* From privacy.html */
  flex: 0 0 16.66%;
}
.column-main-layout {
  /* From privacy.html */
  flex: 0 0 66.66%;
}

.content-group-layout {
  /* From privacy.html */
  margin-bottom: 25px;
}
.section-divider-layout {
  /* From privacy.html */
  border: 0;
  border-top: 1px solid rgba(27, 2, 47, 0.1);
  margin: 30px 0;
}

.text-base-style {
  /* From privacy.html */
  font-family: "Inter", sans-serif;
  color: rgb(27, 2, 47);
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.6;
  text-align: justify; /* Defaulting base text to justified */
}

.title-hero-style {
  /* From privacy.html */
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
}

.text-subtle-style {
  /* From privacy.html */
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
  text-align: left;
}

.text-featured-style {
  /* From privacy.html */
  font-size: 20px;
  font-weight: 400;
  text-align: left;
}

.title-section-style {
  /* From privacy.html */
  font-size: 32px;
  font-weight: 500;
  margin-top: 20px;
  text-align: left;
}

.text-body-style {
  /* From privacy.html */
  font-size: 16px;
  font-weight: 400;
}

.list-content-style ul {
  /* From privacy.html */
  padding-left: 1.5rem;
}
.list-content-style li {
  /* From privacy.html */
  margin-bottom: 8px;
}
.link-action-style {
  /* From privacy.html */
  cursor: pointer;
  text-decoration: underline;
  color: inherit;
}

/* Media Queries (consolidated and updated) */
@media (min-width: 768px) {
  .section-layout-body {
    /* From index.html, about.html, articles/unexpected-loss.html */
    padding: 40px;
    max-width: 1080px;
    margin: 64px auto;
  }
  .section-layout-body.one-col-page-layout {
    max-width: 780px;
  }
  .hero-h1-layout {
    /* From index.html */
    flex-direction: row;
    margin-bottom: 80px;
  }
  .hero-portrait-frame {
    /* From index.html */
    margin: 0;
  }
  .glass-overlay-layout {
    /* From index.html */
    position: absolute;
    left: 180px;
    bottom: 40px;
    margin-top: 0;
    align-items: flex-start;
    z-index: 20;
  }
  .text-hero-large {
    /* From index.html */
    font-size: 80px;
  }
  .text-hero-sub {
    /* From index.html */
    font-size: 40px;
  }
  .h1-title-layout {
    /* From index.html */
    padding-left: 180px;
    padding-top: 0;
    text-align: left;
    flex: 1;
  }
  .text-heading-primary {
    /* From index.html */
    font-size: 32px;
    margin-bottom: 10px;
  }
  .specialisation-feature-layout {
    /* From index.html */
    flex-direction: row-reverse;
    align-items: stretch;
    gap: 60px;
  }
  .specialisation-image-frame {
    /* From index.html */
    flex: 0 0 45%;
  }
  .specialisation-info-layout {
    /* From index.html */
    flex: 1;
  }
  .grief-questions-layout {
    /* From index.html */
    flex-direction: row;
    justify-content: flex-start;
  }
  .grief-question-card {
    /* From index.html */
    width: 165px;
    min-height: 120px;
  }
  .approaches-layout {
    /* From index.html */
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
  .approaches-grid-layout {
    /* From index.html */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  h1 {
    /* From about.html, articles/unexpected-loss.html */
    font-size: 2.6rem;
  }
  h2 {
    /* From about.html */
    font-size: 1.8rem;
  }
  .personal-history-layout {
    /* From about.html */
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
  }
  .image-side-frame {
    /* From about.html, but articles/unexpected-loss.html has 300px */
    flex: 0 0 320px;
  }
  .text-side-content {
    /* From about.html, articles/unexpected-loss.html */
    flex: 1;
  }

  /* Approaches Desktop Enhancements */
  .section-layout-body-custom {
    /* From approaches.html */
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
  }

  .approach-section {
    /* From approaches.html */
    padding: 100px 0;
  }

  .section-layout-row-custom {
    /* From approaches.html */
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .col-6-desktop-custom {
    /* From approaches.html */
    flex: 0 0 45%;
  }

  .text-hero-sub-custom {
    /* From approaches.html */
    font-size: 64px;
    letter-spacing: -4px;
  }

  .approach-title {
    /* From approaches.html */
    font-size: 48px;
    letter-spacing: -2px;
  }

  .ericksonian-title {
    /* From approaches.html */
    order: 2;
  }

  .ericksonian-text {
    /* From approaches.html */
    order: 1;
  }

  .pressure-quote-layout {
    /* From articles/unexpected-loss.html */
    flex-direction: row;
    gap: 56px;
    align-items: center;
  }

  .image-side-frame {
    /* From articles/unexpected-loss.html */
    flex: 0 0 300px;
  }
  .text-side-content {
    /* From articles/unexpected-loss.html */
    flex: 1;
  }
}

@media (max-width: 768px) {
  /* From articles-2.html, services.html */
  .hero-wrapper {
    /* From articles-2.html */
    height: 200px;
    margin-bottom: 50px;
  }
  .page-title {
    /* From articles-2.html */
    font-size: 32px;
    padding: 15px 25px;
    right: 15px;
    bottom: -20px;
  }
  .article-title {
    /* From articles-2.html */
    font-size: 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  } /* From services.html */
  .service-card {
    padding: 40px 20px;
  } /* From services.html */
}

/* --- FOOTER LAYOUT --- */
footer#websitefooter-4212c176 {
  background-color: #f8f9fa; /* Subtle off-white to distinguish from main body */
  padding: 60px 20px;
  border-top: 1px solid rgba(27, 2, 47, 0.05);
  font-family: "Inter", sans-serif;
  color: rgb(93, 86, 102);
}

/* Container alignment */
.sc-HPrSa.fQqDBx {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#row-994db6c5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

/* Brand Name */
#text-e05eda0d p {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: lowercase;
}

/* --- FOOTER MENU --- */
#menu-6d5c0b7d {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
}

#menu-6d5c0b7d a {
  text-decoration: none;
  color: rgb(93, 86, 102);
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s ease;
  text-transform: lowercase;
}

#menu-6d5c0b7d a:hover {
  opacity: 0.6;
}

/* Hide mobile side-menu in footer if desktop menu is visible */
#side-menu-6d5c0b7d {
  display: none;
}

/* --- BOTTOM LEGAL TEXT --- */
.sc-fIvmdO.hgLHSC {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(27, 2, 47, 0.05);
  text-align: center;
}

#text-55a1a06a p {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 8px;
  opacity: 0.8;
  text-transform: lowercase;
}

/* --- DESKTOP REFINEMENTS --- */
@media (min-width: 768px) {
  #row-994db6c5 {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  #menu-6d5c0b7d {
    gap: 32px;
  }

  .sc-fIvmdO.hgLHSC {
    text-align: left;
  }
}

/* --- TOP NAVIGATION --- */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(27, 2, 47, 0.05);
  padding: 15px 0;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-weight: 700;
  font-size: 18px;
  color: #1b022f;
  text-decoration: none;
  text-transform: lowercase;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-item {
  text-decoration: none;
  color: rgb(93, 86, 102);
  font-size: 14px;
  font-weight: 500;
  text-transform: lowercase;
  transition: color 0.2s ease;
}

.nav-item:hover {
  color: #1b022f;
}

/* Contact Button Style */
.nav-cta {
  background: #1b022f;
  color: white !important;
  padding: 8px 16px;
  border-radius: 4px;
}

.nav-cta:hover {
  opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
  }
  .nav-item {
    font-size: 13px;
  }
}

/* Container for the articles */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column for that clean, vertical list */
  max-width: 800px; /* Constrain width for better readability */
  margin: 3rem auto;
  gap: 4rem; /* Wide gap between articles */
}

/* Individual Article Entry */
.article-card {
  display: flex;
  flex-direction: column;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(27, 2, 47, 0.1); /* Subtle divider instead of box */
  transition: opacity 0.3s ease;
}

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

.article-card:hover {
  /* Subtle lift rather than a heavy shadow */
  opacity: 0.8;
}

.article-card h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem; /* Slightly larger for the headline */
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #1b022f;
  text-transform: lowercase; /* Matches your brand style */
}

.article-card h2 a {
  text-decoration: none;
  color: inherit;
}

.article-card p {
  color: #5d5666;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 65ch; /* Limit line length for comfortable reading */
}

/* The "Read More" link as seen on the reference site */
.read-more {
  font-size: 0.9rem;
  color: #1b022f;
  text-decoration-color: rgba(27, 2, 47, 0.3);
  text-underline-offset: 4px;
  text-transform: lowercase;
  font-weight: 700;
  text-decoration: none;
}

.read-more:hover {
  text-decoration-color: #1b022f;
}

.pagination-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(27, 2, 47, 0.05);
}

.pagination-nav .nav-item {
  color: #1b022f;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.pagination-nav .nav-item:hover {
  color: #e4b48a;
}

.pagination-nav .nav-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.page-indicator {
  font-size: 0.85rem;
  color: #5d5666;
  font-style: italic;
}

.read-mode {
  max-width: 720px; /* Optimal width for reading long-form text */
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.read-mode-wrapper p {
  font-size: 1.15rem; /* Slightly larger for comfort */
  line-height: 1.8;
  margin-bottom: 1.8rem;
  color: #1b022f;
}

.read-mode h1,
.read-mode h2,
.read-mode h3 {
  color: #1b022f;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

/* 1. Desktop Reset (Ensure it looks normal on big screens) */
@media (min-width: 768px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1100; /* Higher than the nav-links z-index of 999 or 1000 */
    background: none;
    border: 1px solid rgba(27, 2, 47, 0.1);
    padding: 8px 12px;
    cursor: pointer;
    position: relative; /* Ensures z-index is respected */
  }

  /* Optional: Morph the icon into an 'X' when open */
  .menu-toggle[aria-expanded="true"] .line-1 {
    transform: translateY(6px) rotate(45deg);
    transform-origin: center;
  }

  .menu-toggle[aria-expanded="true"] .line-2 {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .line-3 {
    transform: translateY(-6px) rotate(-45deg);
    transform-origin: center;
  }

  .icon-menu line {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
  }

  .nav-item {
    text-decoration: none;
    color: #1b022f;
    text-transform: lowercase;
  }
}

/* 2. Mobile Styles (Hidden by default) */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    /* Ensure it covers the full height without overlapping the top edge */
    height: 100vh;
    width: 280px; /* Specific width is usually better than 80% */
    background: #fdfaf6;
    z-index: 999;

    /* Flexbox helps center the links vertically and horizontally */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;

    /* Hide by default */
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -10px 0 30px rgba(27, 2, 47, 0.1);

    /* Allow scrolling within the menu if links are too many */
    overflow-y: auto;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem; /* Reduced gap to prevent bottom overflow */
    align-items: flex-start;
  }

  .nav-item {
    font-size: 1.15rem; /* Reduced from 1.5rem for a more clinical feel */
    text-decoration: none;
    color: #1b022f;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.5rem 0;
  }

  /* Ensure the CTA button doesn't look weird in the list */
  .nav-item.nav-cta {
    background: #e4b48a;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    margin-top: 1rem;
    display: inline-block;
  }
}

/* Endnotes / References Section */
.endnotes-section {
  border-top: 1px solid rgba(27, 2, 47, 0.1);
  margin-top: 4rem;
  padding-top: 2rem;
}

.endnotes-section h3 {
  font-size: 1.1rem;
  color: #1b022f;
  margin-bottom: 1.5rem;
  text-transform: lowercase;
}

.endnotes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.endnotes-list li {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #5d5666;
  margin-bottom: 1.2rem;
  /* This creates the academic hanging indent */
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}

.endnotes-list li a {
  color: #1b022f;
  text-decoration: underline;
  text-decoration-color: rgba(27, 2, 47, 0.2);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.endnotes-list li a:hover {
  text-decoration-color: #1b022f;
}

/* Scoped blockquote styling for articles */
.section-layout-body blockquote {
  margin: 2.5rem 1.5rem;
  padding: 0.5rem 0 0.5rem 1.5rem;
  /* Using your specific gold colour for the accent bar */
  border-left: 4px solid #E6B15C; 
  background: transparent;
  position: relative;
}

/* Styling the text inside the blockquote */
.section-layout-body blockquote p {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  font-style: italic;
  margin: 0;
}

/* Ensure the side-content layout handles spacing correctly */
.text-side-content blockquote {
  margin-left: 0;
  margin-right: 0;
  padding-left: 1.25rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .section-layout-body blockquote {
    margin: 2rem 0.75rem;
    padding-left: 1rem;
  }
}