/*
Theme Name: NIMTT Theme
Theme URI: https://nimusictherapytrust.co.uk
Author: Gavin McClafferty
Author URI: https://nimusictherapytrust.co.uk
Description: Custom WordPress theme for Northern Ireland Music Therapy Trust
Version: 1.0.0
Text Domain: nimtt-theme
*/ :root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #eef6f6;
  --text: #16324f;
  --muted: #5f7287;
  --border: #d7e3ea;
  --primary: #c8570e;
  --primary-dark: #0b3c65;
  --accent: #1b9aaa;
  --donate: #4688ff;
  --shadow: 0 14px 34px rgba(15, 76, 129, 0.10);
  --radius: 22px;
  --max: 1180px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Roboto, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.about-value-icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: #fff1e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.about-value-icon .material-symbols-outlined {
  font-size: 34px;
  color: #e67e22;
  font-variation-settings:
    'FILL' 1,
    'wght' 500,
    'GRAD' 0,
    'opsz' 48;
}
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
}
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 30px;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}
.about-pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(230, 126, 34, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.about-pillar-icon .material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  color: #e67e22;

  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'liga';
}
.about-objective-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(230, 126, 34, 0.10);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 30px;
  line-height: 1;
  white-space: nowrap;
  direction: ltr;

  color: #e67e22;

  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'liga';
}
.brand img {
  height: 48px;
  width: auto;
  display: block;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
/* ==========================================
   POLISHED UTILITY BAR
   ========================================== */

.utility-bar {
  position: relative;
  z-index: 100;
  background:
linear-gradient(
100deg,
#b45407 0%,
#cc670c 45%,
#db7614 100%
);
	backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(90, 38, 5, 0.16);
  box-shadow: 0 8px 24px rgba(15, 35, 55, 0.10);
}

.utility-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.035) 0,
      rgba(255,255,255,0.035) 1px,
      transparent 1px,
      transparent 64px
    );
}

.utility-bar-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 6px 0;
  position: relative;
  z-index: 1;
}

.utility-left,
.utility-actions {
  display: flex;
  align-items: center;
}

.utility-left {
  flex: 1 1 auto;
  min-width: 0;
	gap: 12px;
}

.utility-actions {
  flex: 0 0 auto;
	gap: 8px;
}

/* Search */

.utility-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 230px;
  max-width: 100%;
}

.utility-search::before {
  content: "\e8b6";
  font-family: "Material Symbols Outlined";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
  pointer-events: none;
  opacity: 0.72;
}

.utility-search-input {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.30);
  color: #ffffff;
  padding: 0 20px 0 56px;
  font-family: inherit;
  font-size: 0.96rem;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 8px 18px rgba(80, 35, 5, 0.10);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.utility-search-input::placeholder {
  color: rgba(255,255,255,0.78);
}

.utility-search-input:focus {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 0 0 3px rgba(255,255,255,0.14);
}

/* Shared buttons */

.mailinglist-button,
.fundraise-button,
.donate-button-utility,
.utility-icon-link {
  height: 52px;
  border-radius: 14px;
  font-family: inherit;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.mailinglist-button,
.fundraise-button,
.donate-button-utility {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  white-space: nowrap;
  text-decoration: none;
}

.utility-search-input,
.mailinglist-button,
.fundraise-button,
.donate-button-utility,
.utility-icon-link {
  height: 46px;
  border-radius: 12px;
}

.mailinglist-button .material-symbols-outlined,
.fundraise-button .material-symbols-outlined,
.donate-button-utility .material-symbols-outlined,
.utility-icon-link .material-symbols-outlined {
  font-size: 25px;
  line-height: 1;
}

/* Glass secondary */

.mailinglist-button {
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    0 8px 18px rgba(80, 35, 5, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mailinglist-button:hover,
.mailinglist-button:focus {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.36);
  transform: translateY(-2px);
}

/* Fundraise secondary CTA */

.fundraise-button {
  background: #fff1df;
  color: #994400;
  border: 1px solid rgba(255, 215, 175, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 10px 22px rgba(80, 35, 5, 0.16);
}

.fundraise-button:hover,
.fundraise-button:focus {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 14px 28px rgba(80, 35, 5, 0.20);
}

/* Donate primary CTA */

.donate-button,
.donate-button-utility {
  background: #0b3c65;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 26px rgba(8, 45, 76, 0.28);
}

.donate-button-utility {
  box-shadow: 0 14px 30px rgba(8, 45, 76, 0.30);
}

.donate-button:hover,
.donate-button:focus,
.donate-button-utility:hover,
.donate-button-utility:focus {
  background: #082f50;
  transform: translateY(-2px);
}

/* Icon buttons */

.utility-icon-link {
  position: relative;
  width: 46px;
  min-width: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 8px 18px rgba(80, 35, 5, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.utility-icon-link:hover,
.utility-icon-link:focus {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.30);
  transform: translateY(-2px);
}

.utility-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Cart badge */

.utility-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #0b3c65;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(8, 45, 76, 0.28);
}

.mailinglist-button,
.utility-icon-link,
.utility-search-input {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 4px 12px rgba(80,35,5,0.10);
}

/* Responsive */

@media (max-width: 980px) {
  .utility-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .utility-left,
  .utility-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .utility-search {
    width: 240px;
  }
}

@media (max-width: 760px) {
  .utility-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 20px;
  }

  .utility-left,
  .utility-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .utility-search {
    width: 100%;
  }

  .mailinglist-button,
  .fundraise-button,
  .donate-button-utility {
    width: 100%;
  }

  .utility-icon-link {
    width: 100%;
  }
}
/* ==========================================
   BASIC PAGE CANVAS
   ========================================== */

.nimtt-page-canvas {
  background: #f8fafc;
  min-height: 60vh;
}

.nimtt-page-content {
  width: 100%;
}


.nimtt-page-content > *:not(.alignfull) {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0;
}
/* SHARE SECTION */

.event-share {
  margin: 18px 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.event-share-label {
  font-weight: 700;
  color: var(--text);
  margin-right: 4px;
}

.event-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.event-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Brand colours */

.event-share-btn.facebook {
  background: #1877f2;
}

.event-share-btn.x {
  background: #111111;
}

.event-share-btn.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.event-register-box textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #cfd8e3;
  border-radius: 14px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  min-height: 130px;
  margin-top: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.event-register-box textarea:focus {
  outline: none;
  border-color: #d5660f;
  box-shadow: 0 0 0 3px rgba(213, 102, 15, 0.12);
}

.event-register-box .optional-label {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #6b7c93;
}
/* ==========================================
   MAILING LIST MODAL
   ========================================== */

.mailinglist-button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.mailing-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.mailing-modal.is-visible {
  display: block;
}

.mailing-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 30, 0.64);
  backdrop-filter: blur(3px);
}

.mailing-modal-box {
  position: relative;
  z-index: 2;
  width: min(92vw, 560px);
  margin: 9vh auto 0;
  padding: 42px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  text-align: center;
}

.mailing-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mailing-modal-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.mailing-modal-icon .material-symbols-outlined {
  font-size: 38px;
}

.mailing-modal-box h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.mailing-modal-box > p {
  margin: 0 auto 28px;
  max-width: 430px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.mailing-modal-form {
  display: grid;
  gap: 14px;
}

.mailing-input-wrap {
  position: relative;
  display: block;
}

.mailing-input-wrap .material-symbols-outlined {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #8392a4;
  font-size: 23px;
  pointer-events: none;
}

.mailing-input-wrap input {
  width: 100%;
  height: 55px;
  border: 1px solid #d7e3ea;
  border-radius: 14px;
  padding: 0 18px 0 54px;
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--text);
  background: #ffffff;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.mailing-input-wrap input::placeholder {
  color: #8b98a8;
}

.mailing-input-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 87, 14, 0.12);
}

.mailing-submit-button {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 14px;
  background: var(--primary);
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.mailing-submit-button:hover,
.mailing-submit-button:focus {
  background: #b94d0a;
  transform: translateY(-1px);
}

.mailing-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 0 !important;
  color: var(--muted);
  font-size: 0.9rem;
}

.mailing-privacy .material-symbols-outlined {
  font-size: 18px;
}

.mailing-modal-success {
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #eaf8ef;
  border: 1px solid #bde7ca;
  color: #226b3a;
  font-weight: 700;
}

body.mailing-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .mailing-modal-box {
    margin-top: 5vh;
    padding: 34px 22px;
  }
}

/* ==========================================
   MAIN HEADER (sticky)
   ========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  width: 100%;
}
.main-header {
  background: rgba(248, 250, 252, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(15, 76, 129, 0.07);
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  height: 48px;
  width: auto;
  display: block;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px 10px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 400;
}
nav a:hover, nav a:focus {
  background: var(--surface-soft);
}
nav details {
  position: relative;
}
nav summary {
  cursor: pointer;
  list-style: none;
  padding: 10px 6px 10px;
  border-radius: 10px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-weight: 500;
  position: relative;
}

nav summary::-webkit-details-marker {
  display: none;
}

nav summary:hover,
nav summary:focus {
  background: var(--surface-soft);
}

nav a,
nav summary {
  min-height: 46px;
}

nav details[open] > summary {
  background: var(--surface-soft);
}

.caret {
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  opacity: 0.25;
  font-size: 1.4em;
  line-height: 1;
}

nav details[open] > summary .caret {
  transform: translateX(-50%) rotate(180deg);
}
nav .menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow);
  z-index: 50;
}
nav .menu ul {
  display: block;
}
nav .menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}
@media (max-width: 760px) {
  .utility-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 20px;
    min-height: unset;
  }
  .utility-left {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .utility-search {
    width: 100%;
    flex: 1 1 auto;
  }
  .utility-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .mailinglist-button, .fundraise-button, .donate-button-utility {
    width: 100%;
    justify-content: center;
  }
}
/* end header */
.feature-card-link, .content-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.feature-image, .large-content-card .image, .stack-card .image {
  overflow: hidden;
}
.feature-image img, .large-content-card .image img, .stack-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.placeholder-image {
  background: #dfe7ec;
  min-height: 220px;
}
.stack-card {
  min-height: 160px;
  width: 100%;
}
.stack-card .content-card-link {
  height: 100%;
  display: grid;
  grid-template-columns: 160px 1fr;
}

.stack-card .body {
  height: 100%;
}
.stack-card .image {
  width: 100%;
  min-width: 160px;
  min-height: 160px;
  overflow: hidden;
}
.stack-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stack-card .body {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  padding: 22px;
}
.large-content-card .content-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.large-content-card .body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.large-content-card .body p {
  margin-bottom: 24px;
}

.large-content-card .content-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  margin-top: 28px;
  padding-top: 20px;
}
.content-card-link .body {
  display: flex;
  flex-direction: column;
}
@media (max-width: 760px) {
  .stack-card .content-card-link {
    display: flex;
    flex-direction: column;
  }
  .stack-card .image {
    width: 100%;
    min-width: 0;
    flex-basis: auto;
    min-height: 180px;
  }
}
.body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  z-index: 7;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
}
.btn-secondary {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: #fff;
}
.btn-secondary:hover {
  background: #f3f8fc;
}

/* Generic sections */
section {
  padding: 80px 0 80px;
}
.section-title {
  text-align: center;
  margin: 0 0 24px;
}
.section-title h2 {
  margin: 0 0 60px;
  color: var(--text);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}
.section-title p {
  margin: 0 auto 60px;
  color: var(--muted);
  max-width: 70ch;
  font-size: 1.25rem;
  line-height: 1.8;
}
/* What's new / cards */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-4px);
}
.feature-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.feature-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
}

.feature-body h3 {
  margin: 0 0 12px;
  line-height: 1.18;
}

.feature-body p {
  margin: 0 0 22px;
  line-height: 1.6;
}

.tag {
  align-self: flex-end;
  margin-top: auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 34px;
  padding: 0 14px;

  background: var(--primary);
  color: #fff;

  font-size: 0.74rem;
  font-weight: 800;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.24rem;
  line-height: 1.2;
}
.feature-card p {
  margin: 20px 0;
  color: var(--muted);
}
.content-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  margin-top: auto;
  padding-top: 18px;

  font-size: 0.78rem;
  line-height: 1.4;
}

.content-card-date {
  color: #6f7f92;
  font-weight: 600;
}

.content-card-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 32px;
  padding: 0 14px;

  background: var(--primary);
  color: #fff;

  border-radius: 999px;

  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
section.hero-homepage-new {
  padding: 0;
}
/* ==========================================
   HOME THERAPY GOALS
   ========================================== */

.home-therapy-goals {
  padding: 96px 0;
  background: aliceblue;
}

.home-therapy-goals-head {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.brow-span {
  display: inline-block;
  margin-bottom: 12px;
  color: #d95f0e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-therapy-goals-head h2 {
  margin: 0 0 60px;
  color: var(--text);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.home-therapy-goals-head p {
  margin: 0 auto 60px;
  max-width: 80ch;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.8;
}

.home-therapy-goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-therapy-goal-card {
  position: relative;
  overflow: hidden;

  min-height: 250px;
  padding: 32px 28px;

  border-radius: 30px;

  background: #ffffff;
  border: 1px solid rgba(215, 227, 234, 0.9);

  box-shadow: 0 16px 38px rgba(15, 76, 129, 0.07);

  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.home-therapy-goal-card::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;

  width: 130px;
  height: 130px;

  border-radius: 50%;

  background: rgba(230,126,34,0.10);

  transition: transform 0.24s ease;
}

.home-therapy-goal-card:nth-child(even)::before {
  background: rgba(27,154,170,0.11);
}

.home-therapy-goal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230,126,34,0.35);
  box-shadow: 0 24px 56px rgba(15, 76, 129, 0.11);
}

.home-therapy-goal-card:hover::before {
  transform: scale(1.25);
}

.home-therapy-goal-card .material-symbols-outlined {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 62px;
  height: 62px;
  margin-bottom: 28px;

  border-radius: 20px;

  background: #fff3ea;

  color: #d95f0e;
  font-size: 34px;

  font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' 0,
    'opsz' 40;
}

.home-therapy-goal-card:nth-child(even) .material-symbols-outlined {
  background: #e9f7f8;
  color: #1b9aaa;
}

.home-therapy-goal-card h3 {
  position: relative;
  z-index: 2;

  margin: 0 0 12px;

  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.2;
}

.home-therapy-goal-card p {
  position: relative;
  z-index: 2;

  margin: 0;

  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 980px) {
  .home-therapy-goals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .home-therapy-goals {
    padding: 68px 0;
  }

  .home-therapy-goals-grid {
    grid-template-columns: 1fr;
  }

  .home-therapy-goal-card {
    min-height: auto;
  }
}
/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
  padding: 46px 0 34px;
}
.services-title {
  max-width: 780px;
  margin: 0 auto 34px;
}
.quick-services {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.quick-service {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(215, 227, 234, 0.9);
  border-radius: 24px;
  padding: 22px 18px 20px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(15, 76, 129, 0.06);
  backdrop-filter: blur(6px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.quick-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(15, 76, 129, 0.12);
  border-color: rgba(27, 154, 170, 0.22);
}
.quick-service .circle {
  width: 108px;
  height: 108px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 5px solid #ffffff;
  box-shadow: 0 12px 26px rgba(15, 76, 129, 0.14);
}
.quick-service-body {
  display: flex;
  flex-direction: column;
  height: calc(100% - 124px);
}
.quick-service h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.2;
  color: var(--text);
}
.quick-service p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  flex-grow: 1;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.text-link::after {
  content: "→";
  font-size: 0.95em;
  transition: transform 0.2s ease;
}
.text-link:hover {
  opacity: 0.88;
}
.text-link:hover::after {
  transform: translateX(3px);
}
@media (max-width: 1180px) {
  .quick-services {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .quick-services {
    grid-template-columns: 1fr;
  }
  .quick-service {
    max-width: 420px;
    margin: 0 auto;
  }
}
/* ==========================================
   CTA STRIP
   ========================================== */
.cta-strip {
  padding: 34px 0 24px;
}
.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px 38px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(240, 247, 255, 0.92) 100%);
  border: 1px solid rgba(215, 227, 234, 0.95);
  box-shadow: 0 18px 40px rgba(15, 76, 129, 0.08);
}
/* soft decorative atmosphere */
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 25%, rgba(255, 255, 255, 0.85) 0 80px, transparent 81px), radial-gradient(circle at 28% 82%, rgba(255, 255, 255, 0.50) 0 130px, transparent 131px), radial-gradient(circle at 90% 18%, rgba(189, 220, 255, 0.28) 0 140px, transparent 141px), radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.45) 0 120px, transparent 121px);
  z-index: 0;
}
.cta-copy, .cta-actions {
  position: relative;
  z-index: 1;
}
.cta-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.cta-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
  color: var(--text);
  max-width: 18ch;
}
.cta-copy p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cta-actions .btn-primary {
  padding: 15px 22px;
  box-shadow: 0 12px 26px rgba(15, 76, 129, 0.16);
}
/* Mixed content block */
#research {
  background: #FFFFFF;
}
.content-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}
.large-content-card, .stack-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.large-content-card {
  position: relative;
}
.large-content-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.7) 0 60px, transparent 61px), radial-gradient(circle at 70% 60%, rgba(189, 220, 255, 0.35) 0 90px, transparent 91px), radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.4) 0 120px, transparent 121px);
  opacity: 0.8;
}
.content-card-link, .feature-card-link {
  color: inherit;
  text-decoration: none;
}
.large-content-card .content-card-link {
  display: block;
  width: 100%;
  height: 100%;
}
.large-content-card .image {
  height: 360px;
  overflow: hidden;
}
.large-content-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.large-content-card .body {
  padding: 22px;
}
.stack-column {
  display: grid;
  gap: 18px;
}
.stack-card {
  min-height: 180px;
}
.stack-card .content-card-link {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  height: 100%;
}

.stack-card .body {
  padding: 22px;
  min-width: 0;
  width: 100%;
}
.stack-card h3, .large-content-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  line-height: 1.2;
}
.stack-card p, .large-content-card p {
  margin: 0;
  color: var(--muted);
}
.placeholder-image {
  background: #dfe7ec;
  min-height: 220px;
}
@media (max-width: 1080px) {
  .content-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .stack-card .content-card-link {
    grid-template-columns: 1fr;
  }
  .stack-card .image {
    min-height: 200px;
  }
}
/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  margin-top: 2px;
  background: #BE5103;
  color: #fff;
  padding: 56px 0 26px;
}
.footer-top {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 10px;
  align-items: start;
}
.footer-brand {
  max-width: 240px;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
}
.footer-logo {
  width: 170px;
  height: auto;
  display: block;
}
.footer-tagline {
  margin: 0;
  color: #fff;
  line-height: 1.7;
  font-size: 0.96rem;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  font-size: 0.9rem;
}
.footer-column h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.2;
  color: #ffffff;
}
.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-column li {
  margin-bottom: 12px;
}
.footer-column a, .footer-column span {
  color: rgba(255, 255, 255, 1);
  line-height: 1.6;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.footer-column a:hover {
  color: #000;
}
.footer-bottom {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid #f27248;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.footer-meta p {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.75rem;
}
.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.75rem;
}
.footer-policies a {
  color: rgba(255, 255, 255, 0.78);
}
.footer-policies a:hover {
  color: #ffffff;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-socials a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.95rem;
}
.footer-socials a:hover {
  color: #ffffff;
}
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .site-footer {
    padding: 42px 0 22px;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-socials {
    gap: 14px;
  }
}
/* Placeholder imagery */
.img-1 {
  background-image: url('https://images.unsplash.com/photo-1516302752625-fcc3c50ae61f?auto=format&fit=crop&w=1200&q=80');
}
.img-2 {
  background-image: url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=1200&q=80');
}
.img-3 {
  background-image: url('https://images.unsplash.com/photo-1511949860663-92c5c57d48a7?auto=format&fit=crop&w=1200&q=80');
}
.img-4 {
  background-image: url('https://images.unsplash.com/photo-1584515933487-779824d29309?auto=format&fit=crop&w=1200&q=80');
}
.img-5 {
  background-image: url('https://plus.unsplash.com/premium_photo-1666299236956-2063aa25a642?auto=format&fit=crop&w=1200&q=80');
}
.img-6 {
  background-image: url('https://images.unsplash.com/photo-1699679886955-2f01d6ea9258?auto=format&fit=crop&w=1200&q=80');	
}
.img-7 {
  background-image: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1200&q=80');
}
.img-8 {
  background-image: url('https://images.unsplash.com/photo-1617080090911-91409e3496ad?auto=format&fit=crop&w=1200&q=80');
}
.img-9 {
  background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=1200&q=80');
}
.img-10 {
  background-image: url('https://plus.unsplash.com/premium_photo-1661962497315-26927da8fc9c?auto=format&fit=crop&w=1200&q=80');
}
/* ==========================================
   WHO WE ARE PAGE
   ========================================== */

.about-page {
  background: #f8fafc;
  color: var(--text);
}

.about-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-section {
  padding: 82px 0;
}

.about-section-light {
  background: #f8fafc;
}

.about-section-white {
  background: #ffffff;
}

.about-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e67e22;
}

/* HERO */

.about-hero {
  padding: 82px 0 76px;
  background:
    radial-gradient(circle at 86% 18%, rgba(230, 126, 34, 0.12) 0 190px, transparent 191px),
    radial-gradient(circle at 12% 18%, rgba(27, 154, 170, 0.08) 0 150px, transparent 151px),
    linear-gradient(180deg, #f8fafc 0%, #f3f7fa 100%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.about-hero-copy h1 {
  margin: 0 0 22px;
  max-width: 11ch;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--text);
}

.about-hero-copy p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.85;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.about-hero-media {
  position: relative;
  min-height: 530px;
}

.about-hero-image {
  position: absolute;
  overflow: hidden;
  background: #dfe7ec;
  border: 1px solid rgba(215, 227, 234, 0.95);
  box-shadow: 0 18px 44px rgba(15, 76, 129, 0.12);
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-image-large {
  top: 0;
  right: 0;
  width: 78%;
  height: 430px;
  border-radius: 32px;
}

.about-hero-image-small {
  left: 0;
  bottom: 0;
  width: 48%;
  height: 250px;
  border-radius: 26px;
}

/* BUTTONS */

.about-btn-primary,
.about-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.about-btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(200, 87, 14, 0.20);
}

.about-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.about-btn-secondary {
  background: #ffffff;
  color: var(--text);
  border: 1px solid rgba(215, 227, 234, 1);
}

.about-btn-secondary:hover {
  background: #eef6f6;
  transform: translateY(-1px);
}

/* SPLIT */

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.about-split-reverse .about-split-image {
  order: 2;
}

.about-split-reverse .about-split-copy {
  order: 1;
}

.about-split-image {
  overflow: hidden;
  border-radius: 30px;
  background: #dfe7ec;
  border: 1px solid rgba(215, 227, 234, 0.95);
  box-shadow: 0 18px 44px rgba(15, 76, 129, 0.10);
}

.about-split-image img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}

.about-split-copy h2,
.about-section-head h2,
.about-support-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
}

.about-split-copy p,
.about-section-head p,
.about-support-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

/* VISION */

.about-vision-section {
  padding: 76px 0;
  background: #17324f;
  color: #ffffff;
}

.about-vision-card {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 20%, rgba(27, 154, 170, 0.22) 0 180px, transparent 181px),
    linear-gradient(135deg, #17324f 0%, #203f5f 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 48px rgba(15, 76, 129, 0.20);
}

.about-vision-card .about-eyebrow {
  color: #9de7ee;
}

.about-vision-card h2 {
  margin: 0 0 22px;
  max-width: 900px;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: #ffffff;
}

.about-vision-card p {
  margin: 0;
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
}

/* SECTION HEAD */

.about-section-head {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.about-section-head-light h2 {
  color: #ffffff;
}

.about-section-head-light p {
  color: rgba(255, 255, 255, 0.80);
}

/* OBJECTIVES */

.about-objectives-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.about-objective-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 24px;
  padding: 26px 22px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06);
}

.about-objective-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(230, 126, 34, 0.12);
  color: #c8570e;
  font-weight: 500;
  font-size: 1.82rem;
}

.ps-stat {
  text-align: center;
}

.ps-stat-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: rgba(230, 126, 34, 0.10);

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 18px auto; /* centers icon */
}

.ps-stat-icon .material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-size: 31px;
  line-height: 1;
  color: #e67e22;

  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'liga';
}

.about-objective-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  line-height: 1.22;
  color: var(--text);
}

.about-objective-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

/* VALUES */

.about-values-section {
  padding: 82px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(27, 154, 170, 0.16) 0 180px, transparent 181px),
    linear-gradient(180deg, #17324f 0%, #12283f 100%);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.about-value-card {
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.about-value-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #9de7ee;
  font-size: 1.3rem;
  font-weight: 900;
}

.about-value-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.22;
  color: #ffffff;
}

.about-value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

/* SUPPORT LIST */

.about-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.about-support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-support-list div {
  padding: 15px 16px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid rgba(215, 227, 234, 0.95);
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
}

/* PILLARS */

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-pillar {
  padding: 30px 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 227, 234, 0.95);
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06);
  text-align: center;
}

.about-pillar-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(230, 126, 34, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.about-pillar h3 {
  margin: 0 0 12px;
  font-size: 1.24rem;
  line-height: 1.22;
  color: var(--text);
}

.about-pillar p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

/* FINAL CTA */

.about-final-cta {
  padding: 0 0 86px;
  background: #f8fafc;
}

.about-final-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 18%, rgba(230, 126, 34, 0.15) 0 170px, transparent 171px),
    linear-gradient(135deg, #ffffff 0%, #f3f7fa 100%);
  border: 1px solid rgba(215, 227, 234, 0.95);
  box-shadow: 0 18px 44px rgba(15, 76, 129, 0.08);
}

.about-final-cta-card h2 {
  margin: 0 0 14px;
  max-width: 16ch;
  font-size: clamp(2rem, 3.3vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
}

.about-final-cta-card p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.8;
}

.about-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .about-hero-grid,
  .about-split,
  .about-support-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-media {
    min-height: 460px;
  }

  .about-split-reverse .about-split-image,
  .about-split-reverse .about-split-copy {
    order: initial;
  }

  .about-objectives-grid,
  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-final-cta-card {
    grid-template-columns: 1fr;
  }

  .about-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .about-hero {
    padding: 58px 0 54px;
  }

  .about-section,
  .about-values-section,
  .about-vision-section {
    padding: 64px 0;
  }

  .about-hero-copy h1 {
    max-width: none;
  }

  .about-hero-media {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .about-hero-image {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .about-hero-image-large,
  .about-hero-image-small {
    width: 100%;
    height: 300px;
  }

  .about-objectives-grid,
  .about-values-grid,
  .about-pillars,
  .about-support-list {
    grid-template-columns: 1fr;
  }

  .about-vision-card,
  .about-final-cta-card {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .about-split-image img {
    min-height: 320px;
  }
}
/* ==========================================
   MEET THE TEAM PAGE
   ========================================== */
.team-page {
  background: #f6f7f9;
}
.team-section {
  padding: 0 0 10px;
}
.gov {
  background: linear-gradient(180deg, rgba(230, 240, 255, 0.6) 0%, rgba(255, 255, 255, 1) 100%);
}
.team-container, .gov-mid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px;
}
.team-hero {
  position: relative;
  margin-bottom: 54px;
}
.team-intro {
  max-width: 820px;
}
.team-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.team-title {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 15ch;
}
.team-text {
  margin: 0 0 22px;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.06rem;
}
.team-link {
  display: inline-block;
  margin-top: 2px;
  font-weight: 700;
  color: var(--primary);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.team-link:hover {
  opacity: 0.85;
}
/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 24px;
}
.team-card, .team-card-ex {
  min-width: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(215, 227, 234, 0.9);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.06);
  backdrop-filter: blur(6px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
}
.team-card {
  height: 650px;
}
.team-card-ex {
  hieght: 800px;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 76, 129, 0.12);
  border-color: rgba(27, 154, 170, 0.22);
}
.team-card-image {
  background: #eef1f4;
  aspect-ratio: 4 / 4;
  overflow: hidden;
  flex: 0 0 auto;
}
.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.team-card-content {
  flex: 1;
  min-height: 0;
}
.team-name {
  margin: 0 0 6px;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--text);
}
.team-role {
  display: block;
  margin-bottom: 16px;
  font-size: 0.96rem;
  color: var(--primary);
  font-weight: 600;
}
.team-bio, .team-bio-ex {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.98rem;
  display: -webkit-box;
  overflow: hidden;
}
.team-bio {
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.team-card-footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.team-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.team-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 76, 129, 0.06);
  border: 1px solid rgba(15, 76, 129, 0.08);
  transition: all 0.2s ease;
}
.team-social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.2s ease;
}
.team-social:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.team-social:hover img {
  opacity: 1;
  filter: brightness(3);
}
.team-view-profile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.08);
  border: 1px solid rgba(15, 76, 129, 0.10);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.team-view-profile:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
/* CTA */
.team-cta {
  position: relative;
  margin-top: 72px;
  padding: 34px 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(240, 247, 255, 0.9) 100%);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 26px;
  box-shadow: 0 18px 40px rgba(15, 76, 129, 0.08);
  overflow: hidden;
}
.team-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(189, 220, 255, 0.28) 0 140px, transparent 141px), radial-gradient(circle at 72% 78%, rgba(255, 255, 255, 0.45) 0 120px, transparent 121px), radial-gradient(circle at 18% 84%, rgba(255, 255, 255, 0.35) 0 130px, transparent 131px);
}
.team-cta-copy, .team-cta-button {
  position: relative;
  z-index: 1;
}
.team-cta-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.team-cta-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  color: var(--text);
  max-width: 14ch;
}
.team-cta-copy p {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}
.team-cta-button {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(15, 76, 129, 0.16);
  transition: background 0.2s ease, transform 0.2s ease;
}
.team-cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
/* Responsive */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .team-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .team-cta-copy h2, .team-cta-copy p {
    max-width: none;
  }
}
@media (max-width: 680px) {
  .team-section {
    padding: 62px 0 70px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    height: auto;
    max-width: 460px;
    margin: 0 auto;
  }
  .team-card-image {
    aspect-ratio: 4 / 4;
  }
  .team-cta {
    padding: 28px 24px;
  }
}
/* ==========================================
	   OUR HISTORY PAGE
	   ========================================== */
.history-page {
  background: #07164a;
  color: #ffffff;
  min-height: 100vh;
}
.history-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #08134a 0%, #120f63 55%, #1a0f74 100%);
  padding: 20px 0;
}
.history-slide {
  display: none;
  min-height: 100vh;
  position: relative;
}
.history-slide.active {
  display: block;
}
.history-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.history-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
  opacity: 0.55;
  filter: saturate(1.05) contrast(1.05);
}
.history-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(4, 10, 40, 0.30) 0%, rgba(4, 10, 40, 0.35) 32%, rgba(6, 13, 53, 0.88) 58%, rgba(10, 9, 60, 0.96) 100%);
  z-index: 2;
}
.history-container {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 36px 120px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.history-brand {
  position: absolute;
  top: 28px;
  left: 36px;
  z-index: 5;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.history-panel {
  justify-self: end;
  max-width: 520px;
  width: 100%;
}
.history-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ec5ff;
}
.history-title {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.history-title span {
  color: #9a63ff;
}
.history-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.history-copy:last-child {
  margin-bottom: 0;
}
.history-year-highlight {
  display: inline-block;
  margin-top: 26px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffd54d;
  border-bottom: 3px solid #ffd54d;
  padding-bottom: 4px;
}
.history-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: 0.2s ease;
}
.history-arrow:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-50%) scale(1.04);
}
.history-arrow-left {
  left: 26px;
}
.history-arrow-right {
  right: 26px;
}
.history-timeline {
  position: absolute;
  right: 36px;
  bottom: 34px;
  z-index: 6;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  max-width: 760px;
}
.history-year {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
  transition: 0.2s ease;
}
.history-year:hover {
  color: #ffffff;
}
.history-year.active {
  color: #ffd54d;
  border-bottom-color: #ffd54d;
}
.history-side-panel {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 120px;
  height: calc(100% - 48px);
  border-radius: 0 0 0 0;
  background: linear-gradient(to bottom, rgba(115, 18, 204, 0.45), rgba(84, 22, 173, 0.18));
  z-index: 2;
  opacity: 0.75;
}
.history-side-panel::before {
  content: "⋮⋮";
  position: absolute;
  top: 22px;
  right: 24px;
  transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}
@media (max-width: 980px) {
  .history-container {
    grid-template-columns: 1fr;
    padding: 90px 24px 130px;
    align-items: end;
  }
  .history-panel {
    justify-self: start;
    max-width: 100%;
  }
  .history-side-panel {
    display: none;
  }
  .history-timeline {
    left: 24px;
    right: 24px;
    justify-content: flex-start;
    gap: 18px;
  }
}
@media (max-width: 640px) {
  .history-brand {
    left: 20px;
    top: 18px;
    font-size: 0.85rem;
  }
  .history-container {
    padding: 82px 20px 120px;
  }
  .history-title {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }
  .history-copy {
    font-size: 0.96rem;
    line-height: 1.7;
  }
  .history-arrow {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }
  .history-arrow-left {
    left: 12px;
  }
  .history-arrow-right {
    right: 12px;
  }
  .history-timeline {
    gap: 14px;
    bottom: 24px;
  }
  .history-year {
    font-size: 0.86rem;
  }
}
/* Responsive */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .team-section {
    padding: 60px 0;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Responsive */
@media (max-width: 980px) {
  .about-image-grid, .about-stats, .about-pillars {
    grid-template-columns: 1fr;
  }
  .about-split, .about-cta {
    grid-template-columns: 1fr;
  }
  .about-cta-images {
    min-height: 300px;
  }
}
@media (max-width: 640px) {
  .about-section {
    padding: 60px 0;
  }
  .about-image-card img {
    min-height: 220px;
  }
  .about-split-image img {
    min-height: 250px;
  }
  .about-cta-images {
    min-height: 260px;
  }
  .about-cta-image-large {
    width: 78%;
  }
  .about-cta-image-small {
    width: 62%;
  }
}
/* Responsive */
@media (max-width: 1080px) {
  .hero-box, .content-layout {
    grid-template-columns: 1fr;
  }
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-services {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul {
    width: 100%;
    align-items: stretch;
  }
  nav details {
    width: 100%;
  }
  nav a, nav summary {
    width: 100%;
    justify-content: space-between;
  }
  nav .menu {
    position: static;
    margin-top: 6px;
    box-shadow: none;
  }
  .utility-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .utility-search {
    flex: 1 1 auto;
    width: 100%;
  }
  .fundraise-button {
    width: 100%;
  }
  .hero-box {
    padding: 28px;
  }
  .hero-visual {
    min-height: 320px;
  }
  .hero-circle {
    width: 280px;
    height: 280px;
  }
  .hero-stat strong {
    font-size: 3.3rem;
  }
  .card-grid-3, .quick-services, .content-layout {
    grid-template-columns: 1fr;
  }
}
/* ==========================================
   MUSIC THERAPY - HOW IT WORKS PAGE
   ========================================== */
.mt-how-page {
  background: #f7f6f2;
  color: var(--text);
}
/* Layout */
.mt-how-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
/* Hero */
.mt-how-hero {
  padding: 88px 0 70px;
}
.mt-how-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}
.mt-how-intro {
  max-width: 560px;
}
.mt-how-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.mt-how-title {
  margin: 0 0 22px;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  max-width: 11ch;
  color: var(--text);
}
.mt-how-text {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 56ch;
}
.mt-how-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}
.mt-how-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.mt-how-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.mt-how-link {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.mt-how-link:hover {
  opacity: 0.8;
}
/* Steps */
.mt-how-steps {
  position: relative;
  padding-top: 8px;
}
.mt-how-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 54px;
  right: 54px;
  height: 1px;
  background: rgba(48, 116, 109, 0.22);
}
.mt-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 470px;
  margin-bottom: 26px;
}
.mt-step:last-child {
  margin-bottom: 0;
}
.mt-step-1, .mt-step-3 {
  margin-right: auto;
}
.mt-step-2, .mt-step-4 {
  margin-left: auto;
}
.mt-step-number {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(48, 116, 109, 0.55);
  background: #f7f6f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: #4f7c75;
}
.mt-step-card {
  flex: 1;
  min-width: 0;
  padding: 15px 18px;
  border: 1px solid rgba(48, 116, 109, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}
.mt-step-card h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  line-height: 1.25;
  color: var(--text);
}
.mt-step-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--muted);
}
/* Quote band */
.mt-how-quote-band {
  padding: 54px 0;
  background: #ece7e0;
  text-align: center;
}
.mt-how-quote {
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.45;
  color: #5d564e;
}
.mt-how-quote-credit {
  margin: 0;
  font-size: 0.95rem;
  color: #7a7268;
}
/* Detail sections */
.mt-how-detail-section {
  padding: 88px 0 96px;
}
.mt-how-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 92px;
}
.mt-how-detail:last-child {
  margin-bottom: 0;
}
.mt-how-detail-right .mt-how-image-wrap {
  order: 1;
}
.mt-how-detail-right .mt-how-copy {
  order: 2;
}
.mt-how-detail-left .mt-how-copy {
  order: 1;
}
.mt-how-detail-left .mt-how-image-wrap {
  order: 2;
}
.mt-how-image-wrap {
  position: relative;
}
.mt-how-bg-number {
  position: absolute;
  top: -2px;
  left: 8px;
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(117, 168, 160, 0.7);
  pointer-events: none;
  user-select: none;
  z-index: 2;
}
.mt-how-bg-number-odd {
  position: absolute;
  top: -2px;
  right: 20px;
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(117, 168, 160, 0.3);
  pointer-events: none;
  user-select: none;
  z-index: 2;
}
.mt-how-bg-number-odd-3 {
  position: absolute;
  top: -2px;
  right: 38px;
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(117, 168, 160, 0.3);
  pointer-events: none;
  user-select: none;
  z-index: 2;
}
.mt-how-image-block {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 0;
}
.mt-how-image-block::after {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 68%;
  height: 32%;
  background: rgba(126, 198, 190, 0.18);
  z-index: 0;
}
.mt-how-image-block img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.06);
}
.mt-how-copy {
  max-width: 470px;
}
.mt-how-mini-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.mt-how-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}
.mt-how-copy p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}
.mt-how-copy p:last-child {
  margin-bottom: 0;
}
/* Bottom CTA */
.mt-how-bottom-cta {
  padding: 0 0 92px;
}
.mt-how-bottom-cta-inner {
  background: #3e3e40;
  color: #fff;
  text-align: center;
  padding: 74px 28px;
}
.mt-how-bottom-cta-inner h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
.mt-how-bottom-cta-inner p {
  margin: 0 auto 26px;
  max-width: 56ch;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}
.mt-how-bottom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #2f5f83;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.mt-how-bottom-button:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
/* Responsive */
@media (max-width: 1100px) {
  .mt-how-top {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .mt-how-steps {
    max-width: 760px;
  }
  .mt-how-steps::before {
    display: none;
  }
  .mt-step, .mt-step-1, .mt-step-2, .mt-step-3, .mt-step-4 {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
}
@media (max-width: 900px) {
  .mt-how-detail, .mt-how-detail-right, .mt-how-detail-left {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 72px;
  }
  .mt-how-detail-right .mt-how-image-wrap, .mt-how-detail-right .mt-how-copy, .mt-how-detail-left .mt-how-copy, .mt-how-detail-left .mt-how-image-wrap {
    order: initial;
  }
  .mt-how-copy, .mt-how-image-block {
    max-width: none;
  }
  .mt-how-image-block img {
    height: 420px;
  }
}
@media (max-width: 640px) {
  .mt-how-hero {
    padding: 64px 0 54px;
  }
  .mt-how-detail-section {
    padding: 64px 0 72px;
  }
  .mt-how-title {
    max-width: none;
  }
  .mt-how-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .mt-step {
    gap: 12px;
  }
  .mt-step-card {
    padding: 14px 15px;
  }
  .mt-how-bg-number {
    top: -18px;
    left: -6px;
    font-size: 4.6rem;
  }
  .mt-how-image-block::after {
    left: -10px;
    bottom: -10px;
  }
  .mt-how-image-block img {
    height: 320px;
  }
  .mt-how-bottom-cta-inner {
    padding: 56px 20px;
  }
}
/* ==========================================
   MUSIC THERAPY - NEUROSCIENCE PAGE
   ========================================== */
.mt-neuro-page {
  background: #f6f7f8;
  color: var(--text);
  overflow: hidden;
}
.mt-neuro-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
/* HERO */
.mt-neuro-hero {
  position: relative;
  padding: 96px 0 70px;
  background:
    radial-gradient(circle at 85% 18%, rgba(182, 220, 255, 0.22) 0 240px, transparent 241px), radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.75) 0 180px, transparent 181px), linear-gradient(180deg, #f7f9fb 0%, #f5f7f9 100%);
}
.mt-neuro-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 54px;
  align-items: center;
}
.mt-neuro-hero-copy {
  max-width: 620px;
}
.mt-neuro-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.mt-neuro-title {
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 4.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 10ch;
  color: var(--text);
}
.mt-neuro-intro {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.82;
  color: var(--muted);
  max-width: 58ch;
}
.mt-neuro-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}
.mt-neuro-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(15, 76, 129, 0.14);
  transition: background 0.2s ease, transform 0.2s ease;
}
.mt-neuro-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.mt-neuro-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}
.mt-neuro-link:hover {
  opacity: 0.82;
}
/* HERO VISUAL */
.mt-neuro-hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-neuro-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(78, 147, 173, 0.18);
}
.mt-neuro-orbit-1 {
  width: 420px;
  height: 420px;
}
.mt-neuro-orbit-2 {
  width: 320px;
  height: 320px;
}
.mt-neuro-orbit-3 {
  width: 220px;
  height: 220px;
}
.mt-neuro-brain-card {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(231, 241, 250, 0.92));
  border: 1px solid rgba(187, 214, 231, 0.9);
  box-shadow: 0 28px 60px rgba(21, 63, 98, 0.12);
  overflow: hidden;
}
.mt-neuro-brain-lines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 34%, rgba(85, 170, 197, 0.25) 0 6px, transparent 7px), radial-gradient(circle at 58% 28%, rgba(85, 170, 197, 0.2) 0 5px, transparent 6px), radial-gradient(circle at 70% 44%, rgba(85, 170, 197, 0.22) 0 5px, transparent 6px), radial-gradient(circle at 38% 62%, rgba(85, 170, 197, 0.22) 0 5px, transparent 6px), radial-gradient(circle at 62% 70%, rgba(85, 170, 197, 0.2) 0 5px, transparent 6px), linear-gradient(115deg, transparent 0 33%, rgba(93, 174, 200, 0.14) 33% 34%, transparent 34% 100%), linear-gradient(40deg, transparent 0 48%, rgba(93, 174, 200, 0.14) 48% 49%, transparent 49% 100%), linear-gradient(160deg, transparent 0 52%, rgba(93, 174, 200, 0.12) 52% 53%, transparent 53% 100%);
  opacity: 0.95;
}
.mt-neuro-node {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7ed0db, #4ea0c5);
  box-shadow: 0 0 0 8px rgba(126, 208, 219, 0.12);
}
.mt-neuro-node-1 {
  top: 95px;
  left: 115px;
}
.mt-neuro-node-2 {
  top: 80px;
  right: 118px;
}
.mt-neuro-node-3 {
  top: 162px;
  right: 78px;
}
.mt-neuro-node-4 {
  left: 112px;
  bottom: 132px;
}
.mt-neuro-node-5 {
  right: 132px;
  bottom: 106px;
}
.mt-neuro-node-6 {
  left: 192px;
  top: 198px;
}
.mt-neuro-brain-text {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(194, 220, 234, 0.8);
  backdrop-filter: blur(10px);
}
.mt-neuro-brain-text strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.35;
  color: var(--text);
}
.mt-neuro-brain-text span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}
/* STAT BAND */
.mt-neuro-stats {
  padding: 10px 0 72px;
}
.mt-neuro-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.mt-neuro-stat-card {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(215, 227, 234, 0.95);
  box-shadow: 0 16px 34px rgba(15, 76, 129, 0.06);
}
.mt-neuro-stat-number {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.mt-neuro-stat-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.2;
  color: var(--text);
}
.mt-neuro-stat-card p {
  margin: 0;
  line-height: 1.72;
  color: var(--muted);
}
/* MAIN SECTIONS */
.mt-neuro-sections {
  padding: 26px 0 96px;
}
.mt-neuro-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 96px;
}
.mt-neuro-block:last-child {
  margin-bottom: 0;
}
.mt-neuro-block-right .mt-neuro-block-media {
  order: 1;
}
.mt-neuro-block-right .mt-neuro-block-copy {
  order: 2;
}
.mt-neuro-block-left .mt-neuro-block-copy {
  order: 1;
}
.mt-neuro-block-left .mt-neuro-block-media {
  order: 2;
}
.mt-neuro-block-media {
  position: relative;
}
.mt-neuro-bg-label {
  position: absolute;
  top: -32px;
  left: -8px;
  font-size: clamp(4.8rem, 10vw, 8rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: rgba(129, 176, 196, 0.12);
  pointer-events: none;
  user-select: none;
}
.mt-neuro-image-card {
  position: relative;
  max-width: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: #edf3f7;
  box-shadow: 0 24px 48px rgba(19, 58, 90, 0.08);
}
.mt-neuro-image-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(173, 216, 255, 0.18);
  z-index: 1;
}
.mt-neuro-image-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.mt-neuro-block-copy {
  max-width: 500px;
}
.mt-neuro-mini {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.mt-neuro-block-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}
.mt-neuro-block-copy p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.82;
  color: var(--muted);
}
.mt-neuro-block-copy p:last-of-type {
  margin-bottom: 0;
}
.mt-neuro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.mt-neuro-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(126, 208, 219, 0.10);
  border: 1px solid rgba(126, 208, 219, 0.22);
  color: #2d6473;
  font-size: 0.92rem;
  font-weight: 600;
}
.mt-neuro-callout {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(236, 246, 252, 0.9));
  border: 1px solid rgba(197, 223, 235, 0.9);
  box-shadow: 0 12px 28px rgba(19, 58, 90, 0.05);
}
.mt-neuro-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.98rem;
}
.mt-neuro-callout span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}
.mt-neuro-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.mt-neuro-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.7;
}
.mt-neuro-list li:last-child {
  margin-bottom: 0;
}
.mt-neuro-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #58a8bd;
}
/* SUMMARY */
.mt-neuro-summary {
  padding: 0 0 100px;
}
.mt-neuro-summary-card {
  position: relative;
  overflow: hidden;
  padding: 44px 42px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, #20344e 0%, #1d3f63 100%);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  box-shadow: 0 28px 54px rgba(13, 35, 55, 0.18);
}
.mt-neuro-summary-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(130, 193, 233, 0.12);
}
.mt-neuro-summary-card::after {
  content: "";
  position: absolute;
  left: 40%;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.mt-neuro-summary-copy, .mt-neuro-summary-actions {
  position: relative;
  z-index: 1;
}
.mt-neuro-summary-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fd6e0;
}
.mt-neuro-summary-copy h2 {
  margin: 0 0 14px;
  max-width: 18ch;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.mt-neuro-summary-copy p {
  margin: 0;
  max-width: 58ch;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}
.mt-neuro-summary-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.mt-neuro-btn-light, .mt-neuro-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}
.mt-neuro-btn-light {
  background: #fff;
  color: #1f466c;
}
.mt-neuro-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.mt-neuro-btn-light:hover, .mt-neuro-btn-outline:hover {
  transform: translateY(-1px);
  opacity: 0.94;
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .mt-neuro-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .mt-neuro-hero-copy {
    max-width: none;
  }
  .mt-neuro-title {
    max-width: none;
  }
  .mt-neuro-hero-visual {
    min-height: 440px;
  }
  .mt-neuro-brain-card {
    width: 380px;
    height: 380px;
  }
  .mt-neuro-stats-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .mt-neuro-block, .mt-neuro-block-right, .mt-neuro-block-left {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 74px;
  }
  .mt-neuro-block-right .mt-neuro-block-media, .mt-neuro-block-right .mt-neuro-block-copy, .mt-neuro-block-left .mt-neuro-block-copy, .mt-neuro-block-left .mt-neuro-block-media {
    order: initial;
  }
  .mt-neuro-image-card, .mt-neuro-block-copy {
    max-width: none;
  }
  .mt-neuro-image-card img {
    height: 420px;
  }
  .mt-neuro-summary-card {
    grid-template-columns: 1fr;
  }
  .mt-neuro-summary-actions {
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .mt-neuro-hero {
    padding: 70px 0 54px;
  }
  .mt-neuro-sections {
    padding: 16px 0 72px;
  }
  .mt-neuro-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .mt-neuro-hero-visual {
    min-height: 340px;
  }
  .mt-neuro-brain-card {
    width: 100%;
    max-width: 320px;
    height: 320px;
    border-radius: 24px;
  }
  .mt-neuro-image-card img {
    height: 320px;
  }
  .mt-neuro-bg-label {
    top: -18px;
    left: 0;
    font-size: 4rem;
  }
  .mt-neuro-summary-card {
    padding: 34px 24px;
  }
  .mt-neuro-summary-actions {
    width: 100%;
  }
  .mt-neuro-btn-light, .mt-neuro-btn-outline {
    width: 100%;
  }
}
/* ==========================================
   FAQ PAGE
   ========================================== */
.faq-page {
  background: #f5f3ef;
}
/* HERO */
.faq-hero {
  padding: 72px 0 56px;
  background: #f5f3ef;
}
.faq-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: start;
}
.faq-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d4b91;
}
.faq-hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #16324f;
  max-width: 10ch;
}
.faq-hero-text {
  margin: 0;
  max-width: 60ch;
  color: #5a6871;
  line-height: 1.82;
}
.faq-hero-card {
  background: #ffffff;
  border: 1px solid #ddd7cf;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}
.faq-hero-card h2 {
  margin: 0 0 18px;
  font-size: 1.5rem;
  line-height: 1.15;
  color: #16324f;
}
.faq-quick-links {
  display: grid;
  gap: 12px;
}
.faq-quick-links a {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f4f7fa;
  color: #16324f;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}
.faq-quick-links a:hover {
  background: #e9f0f6;
  transform: translateY(-1px);
}
/* SECTIONS */
.faq-section {
  padding: 68px 0;
  background: #f5f3ef;
}
.faq-section-alt {
  background: #ece8e1;
}
.faq-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.faq-section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.1;
  color: #16324f;
}
.faq-section-head p {
  margin: 0;
  color: #5b6972;
  line-height: 1.8;
}
/* FAQ LIST */
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid #ddd7cf;
  border-radius: 16px;
  overflow: hidden;
}
.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 22px;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
  color: #16324f;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  color: #0d4b91;
}
.faq-item[open] summary::after {
  content: "–";
}
.faq-answer {
  padding: 0 22px 22px;
}
.faq-answer p {
  margin: 0;
  color: #59666f;
  line-height: 1.82;
}
/* CTA */
.faq-cta-section {
  padding: 0 0 72px;
  background: #ece8e1;
}
.faq-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.faq-cta-card {
  min-height: 230px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
}
.faq-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.12;
}
.faq-cta-card p {
  margin: 0 0 22px;
  max-width: 50ch;
  line-height: 1.8;
}
.faq-cta-card-left {
  background: #16324f;
  color: #f4f7f8;
}
.faq-cta-card-right {
  background: #d4cbc1;
  color: #16324f;
}
.faq-cta-card a {
  margin-top: auto;
  align-self: flex-start;
}
/* RESPONSIVE */
@media (max-width: 980px) {
  .faq-hero-grid, .faq-cta-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .faq-hero {
    padding: 56px 0 42px;
  }
  .faq-section {
    padding: 54px 0;
  }
  .faq-hero-card, .faq-cta-card {
    padding: 24px 20px;
  }
  .faq-item summary {
    padding: 18px 50px 18px 18px;
  }
  .faq-answer {
    padding: 0 18px 18px;
  }
}
/* ==========================================
   PROFESSIONAL STANDARDS PAGE
   ========================================== */
.ps-page {
  background: #f8fafc;
}
.ps-main {
  overflow: hidden;
}
.ps-section {
  padding: 88px 0;
  position: relative;
}
.ps-section-soft {
  background: #f4fafb;
}
.ps-section-light {
  background: #f8fbfd;
}
.ps-section-white {
  background: #ffffff;
}
.ps-section-dark {
  background: #12314d;
  color: #ffffff;
}
.ps-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 44px;
}
.ps-intro-light .ps-section-title, .ps-intro-light .ps-section-text {
  color: #ffffff;
}
.ps-intro-light .ps-section-text {
  color: rgba(255, 255, 255, 0.82);
}
.ps-section-title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}
.ps-section-text {
  margin: 0 auto;
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
/* hero */
.ps-hero {
  padding: 54px 0 92px;
  background: #f8fbfd;
}
.ps-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 44px;
  align-items: center;
}
.ps-hero-copy {
  position: relative;
  z-index: 1;
}
.ps-hero-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 12ch;
}
.ps-hero-lead {
  margin: 0 0 26px;
  max-width: 60ch;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
}
.ps-hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.ps-mini-card {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(215, 227, 234, 0.95);
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.07);
  backdrop-filter: blur(8px);
}
.ps-mini-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1rem;
}
.ps-mini-card span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}
.ps-hero-visual {
  position: relative;
  min-height: 620px;
}
.ps-hero-photo-wrap {
  height: 100%;
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(15, 76, 129, 0.16);
  border: 1px solid rgba(215, 227, 234, 0.92);
  background: #dcecf2;
}
.ps-hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ps-hero-visual::before, .ps-hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ps-hero-visual::before {
  width: 180px;
  height: 180px;
  top: -26px;
  right: -18px;
  background: rgba(27, 154, 170, 0.10);
  filter: blur(8px);
}
.ps-hero-visual::after {
  width: 150px;
  height: 150px;
  bottom: 34px;
  left: -26px;
  background: rgba(15, 76, 129, 0.08);
  filter: blur(8px);
}
.ps-floating-card {
  position: absolute;
  width: min(290px, 84%);
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(215, 227, 234, 0.95);
  box-shadow: 0 18px 42px rgba(15, 76, 129, 0.14);
  backdrop-filter: blur(10px);
}
.ps-floating-card-top {
  top: 26px;
  left: 12px;
}
.ps-floating-card-bottom {
  right: 12px;
  bottom: 30px;
}
.ps-floating-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.74rem;
}
.ps-floating-card strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.ps-floating-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}
/* core standards cards */
.ps-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.ps-card {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(215, 227, 234, 0.95);
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.ps-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: var(--accent);
  opacity: 0.85;
}
.ps-card:hover {
  transform: translateY(-6px);
  border-color: rgba(27, 154, 170, 0.36);
  box-shadow: 0 20px 44px rgba(15, 76, 129, 0.10);
}
.ps-card h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.2;
}
.ps-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
  font-size: 0.98rem;
}
/* split section */
.ps-split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.ps-split-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.82;
  font-size: 1.02rem;
}
.ps-split-media img, .ps-why-image img {
  width: 100%;
  display: block;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 20px 46px rgba(15, 76, 129, 0.12);
}
.ps-check-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.ps-check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  line-height: 1.7;
  font-weight: 500;
}
.ps-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(27, 154, 170, 0.10);
  transform: translateY(-50%);
}
/* dark stats */
.ps-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.ps-stat {
  padding: 28px 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}
.ps-stat strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1;
  color: #ffffff;
}
.ps-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  font-size: 0.98rem;
}
/* why section */
.ps-why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}
.ps-why-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.82;
  font-size: 1.02rem;
}
/* process */
.ps-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.ps-process-card {
  position: relative;
  padding: 30px 24px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(215, 227, 234, 0.95);
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06);
}
.ps-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
/* CTA tweak so it fits this page without gradients */
.ps-cta-panel {
  background: rgba(255, 255, 255, 0.92);
}
.ps-cta-panel::before {
  display: none;
}
/* responsive */
@media (max-width: 1180px) {
  .ps-hero-grid, .ps-split, .ps-why-grid {
    grid-template-columns: 1fr;
  }
  .ps-hero-visual {
    min-height: auto;
  }
  .ps-hero-photo-wrap {
    min-height: 520px;
  }
  .ps-card-grid, .ps-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ps-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .ps-section {
    padding: 68px 0;
  }
  .ps-hero {
    padding: 34px 0 72px;
  }
  .ps-hero-copy h1 {
    max-width: none;
  }
  .ps-hero-points, .ps-card-grid, .ps-process-grid, .ps-stats {
    grid-template-columns: 1fr;
  }
  .ps-hero-photo-wrap {
    min-height: 420px;
  }
  .ps-floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 16px;
  }
  .ps-hero-visual::before, .ps-hero-visual::after {
    display: none;
  }
}
/* ==========================================
   MENTAL HEALTH & EMOTIONAL WELLBEING PAGE
   ========================================== */
.mh-page {
  background: #f6f8f4;
}
/* HERO */
.mh-hero {
  padding: 72px 0 54px;
  background: #f3f5ef;
}
.mh-hero-inner {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: start;
}
.mh-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.mh-eyebrow-light {
  color: #d8f5a7;
}
.mh-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 10ch;
}
.mh-hero-text {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}
.mh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.mh-hero-media {
  min-width: 0;
}
.mh-hero-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}
.mh-hero-card {
  border-radius: 18px;
  overflow: hidden;
  background: #dfe6dd;
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.08);
  min-height: 220px;
}
.mh-card-tall {
  min-height: 420px;
}
.mh-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* BAND */
.mh-band {
  padding: 42px 0 56px;
  background: darkseagreen;
  color: rgb(244, 247, 239);
}
.mh-band-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 26px;
}
.mh-band-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: rgb(210, 225, 205);
}
.mh-band-intro p {
  margin: 0 auto;
  color: rgb(244, 247, 239);
  max-width: 68ch;
  line-height: 1.8;
}
.mh-band-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.mh-band-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #244026;
  font-weight: 600;
  font-size: 0.92rem;
}
/* SECTION HEADINGS */
.mh-section-heading {
  margin-bottom: 28px;
}
.mh-section-heading h2, .mh-section-heading-low h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.14;
  color: rgb(68, 87, 74);
}
.mh-section-heading-low h2 {
  color: rgb(68, 87, 74);
  padding-bottom: 10px;
}
.mh-section-heading-centre {
  text-align: center;
}
/* FEATURE CARDS */
.mh-feature-section {
  padding: 58px 0;
  background: whitesmoke;
  color: rgb(244, 247, 239);
}
.mh-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.mh-feature-card {
  background: rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  padding: 34px 32px;
  min-height: 260px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}
.mh-feature-copy h3 {
  margin: 0 0 12px;
  font-size: 1.38rem;
  line-height: 1.2;
  color: var(--text);
}
.mh-feature-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}
.mh-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary);
}
.mh-text-link::after {
  content: "→";
}
/* SPLIT */
.mh-split-section {
  padding: 72px 0;
  background: darkseagreen;
  color: rgb(244, 247, 239);
}
.mh-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}
.mh-split-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.12;
  color: rgb(210, 225, 205);
}
.mh-split-copy p {
  margin: 0 0 16px;
  color: rgb(244, 247, 239);
  line-height: 1.8;
}
.mh-split-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}
.mh-split-media img {
  width: 100%;
  display: block;
  min-height: 460px;
  object-fit: cover;
}
.mh-check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.mh-check-list li {
  position: relative;
  padding-left: 26px;
  color: rgb(244, 247, 239);
  line-height: 1.7;
  font-weight: 500;
}
.mh-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2f7d44;
}
/* CASE SECTION */
.mh-case-section {
  padding: 62px 0 50px;
  background: darkseagreen;
  color: rgb(210, 225, 205);
}
.mh-case-panel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 470px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.10);
}
.mh-case-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.mh-case-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background: linear-gradient(rgb(60 5 75) 1%, rgba(18, 23, 22, -0.78) 111%, rgba(65, 27, 14, 0.04) 100%);
}
.mh-case-overlay h2 {
  margin: 0 0 14px;
  max-width: 14ch;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}
.mh-case-overlay p {
  margin: 0 0 22px;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  font-size: 1.3rem;
  text-shadow: 2px 2px 4px #000000;
}
.mh-light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #a7f35b;
  color: #14331a;
  font-weight: 700;
}
/* PROCESS */
.mh-process-section {
  padding: 74px 0;
  background: #f4f7ef;
}
.mh-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.mh-process-card {
  background: #ffffff;
  border: 1px solid #d8e4d4;
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}
.mh-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #8ee56e;
  color: #17331b;
  font-weight: 800;
  font-size: 0.84rem;
}
.mh-process-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.22;
  color: var(--text);
}
.mh-process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
/* RELATED */
.mh-related-section {
  padding: 68px 0;
  background: #f4f7ef;
}
.mh-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.mh-related-card {
  display: block;
  background: #ffffff;
  border: 1px solid #d8e4d4;
  border-radius: 24px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.mh-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  border-color: #9bd48e;
}
.mh-related-copy h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.22;
  color: var(--text);
}
.mh-related-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
/* CTA */
.mh-cta-section {
  padding: 0;
  background: #f4f7ef;
}
.mh-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mh-cta-card {
  padding: 42px 34px;
  min-height: 250px;
}
.mh-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
}
.mh-cta-card p {
  margin: 0 0 22px;
  max-width: 52ch;
  line-height: 1.8;
}
.mh-cta-card-left {
  background: rgb(26, 44, 62);
  color: rgb(244, 247, 239);
}
.mh-cta-card-right {
  background: #EB7B65;
  color: #311d0f;
}
.mh-cta-card {
  padding: 42px 34px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
/* push button to bottom-left */
.mh-cta-card a {
  margin-top: auto;
  align-self: flex-start;
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .mh-hero-inner, .mh-split, .mh-process-grid, .mh-related-grid {
    grid-template-columns: 1fr;
  }
  .mh-feature-grid {
    grid-template-columns: 1fr;
  }
  .mh-cta-grid {
    grid-template-columns: 1fr;
  }
  .mh-hero-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .mh-card-tall {
    grid-column: span 2;
  }
}
@media (max-width: 700px) {
  .mh-hero {
    padding: 58px 0 42px;
  }
  .mh-hero-gallery {
    grid-template-columns: 1fr;
  }
  .mh-card-tall {
    grid-column: auto;
    min-height: 300px;
  }
  .mh-hero-card {
    min-height: 220px;
  }
  .mh-case-image img {
    height: 360px;
  }
  .mh-case-overlay {
    padding: 24px;
  }
  .mh-feature-card, .mh-related-card, .mh-process-card {
    padding: 24px 20px;
  }
  .mh-cta-card {
    padding: 34px 24px;
  }
}
/* ==========================================
   NEURODIVERSITY & LEARNING DIFFERENCES PAGE
   ========================================== */
.nd-page {
  background: #f5f7fb;
}
/* HERO */
.nd-hero {
  padding: 72px 0 54px;
  background: #f2f5fb;
}
.nd-hero-inner {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: start;
}
.nd-eyebrow, .nd-eyebrow-dark {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.nd-eyebrow {
  color: var(--accent);
}
.nd-eyebrow-dark {
  color: rgb(190, 220, 210)
}
.nd-eyebrow-light {
  color: #d7e3ff;
}
.nd-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 10ch;
}
.nd-hero-text {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}
.nd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.nd-hero-media {
  min-width: 0;
}
.nd-hero-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}
.nd-hero-card {
  border-radius: 18px;
  overflow: hidden;
  background: #dde5f2;
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.08);
  min-height: 220px;
}
.nd-card-tall {
  min-height: 420px;
}
.nd-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* BAND */
.nd-band {
  padding: 42px 0 56px;
  background: #5a6fb0;
  color: #f5f7fb;
}
.nd-band-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 26px;
}
.nd-band-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: #edf2ff;
}
.nd-band-intro p {
  margin: 0 auto;
  color: #f5f7fb;
  max-width: 68ch;
  line-height: 1.8;
}
.nd-band-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.nd-band-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #33457a;
  font-weight: 600;
  font-size: 0.92rem;
}
/* SECTION HEADINGS */
.nd-section-heading {
  margin-bottom: 28px;
}
.nd-section-heading h2, .nd-section-heading-low h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.14;
  color: #edf2ff;
}
.nd-section-heading-low h2 {
  color: #44567f;
  padding-bottom: 10px;
}
.nd-section-heading-centre {
  text-align: center;
}
/* FEATURE CARDS */
.nd-feature-section {
  padding: 58px 0;
  background: #5a6fb0;
  color: #f5f7fb;
}
.nd-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.nd-feature-card {
  background: rgba(255, 255, 255, 0.90);
  border-radius: 28px;
  padding: 34px 32px;
  min-height: 260px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}
.nd-feature-copy h3 {
  margin: 0 0 12px;
  font-size: 1.38rem;
  line-height: 1.2;
  color: var(--text);
}
.nd-feature-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}
.nd-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary);
}
.nd-text-link::after {
  content: "→";
}
/* SPLIT */
.nd-split-section {
  padding: 72px 0;
  background: #5a6fb0;
  color: #f5f7fb;
}
.nd-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}
.nd-split-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.12;
  color: #edf2ff;
}
.nd-split-copy p {
  margin: 0 0 16px;
  color: #f5f7fb;
  line-height: 1.8;
}
.nd-split-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}
.nd-split-media img {
  width: 100%;
  display: block;
  min-height: 460px;
  object-fit: cover;
}
.nd-check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.nd-check-list li {
  position: relative;
  padding-left: 26px;
  color: #f5f7fb;
  line-height: 1.7;
  font-weight: 500;
}
.nd-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c5d3ff;
}
/* CASE SECTION */
.nd-case-section {
  padding: 62px 0 50px;
  background: #5a6fb0;
  color: #edf2ff;
}
.nd-case-panel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 430px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.10);
}
.nd-case-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.nd-case-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background: linear-gradient(to top, rgba(25, 33, 62, 0.80) 0%, rgba(25, 33, 62, 0.22) 52%, rgba(25, 33, 62, 0.04) 100%);
}
.nd-case-overlay h2 {
  margin: 0 0 14px;
  max-width: 14ch;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}
.nd-case-overlay p {
  margin: 0 0 22px;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.5;
  font-size: 1.16rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.34);
}
.nd-light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #d7e3ff;
  color: #24345f;
  font-weight: 700;
}
/* PROCESS */
.nd-process-section {
  padding: 74px 0;
  background: #f2f5fb;
}
.nd-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.nd-process-card {
  background: #ffffff;
  border: 1px solid #d7e0f2;
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}
.nd-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #d7e3ff;
  color: #33457a;
  font-weight: 800;
  font-size: 0.84rem;
}
.nd-process-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.22;
  color: var(--text);
}
.nd-process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
/* RELATED */
.nd-related-section {
  padding: 68px 0;
  background: #f2f5fb;
}
.nd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.nd-related-card {
  display: block;
  background: #ffffff;
  border: 1px solid #d7e0f2;
  border-radius: 24px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.nd-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  border-color: #aebde6;
}
.nd-related-copy h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.22;
  color: var(--text);
}
.nd-related-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
/* CTA */
.nd-cta-section {
  padding: 0;
  background: #f2f5fb;
}
.nd-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.nd-cta-card {
  padding: 42px 34px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.nd-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
}
.nd-cta-card p {
  margin: 0 0 22px;
  max-width: 52ch;
  line-height: 1.8;
}
.nd-cta-card-left {
  background: #2b436b;
  color: #f5f7fb;
}
.nd-cta-card-right {
  background: #d8a1d8;
  color: #2f2032;
}
.nd-cta-card a {
  margin-top: auto;
  align-self: flex-start;
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .nd-hero-inner, .nd-split, .nd-process-grid, .nd-related-grid {
    grid-template-columns: 1fr;
  }
  .nd-feature-grid {
    grid-template-columns: 1fr;
  }
  .nd-cta-grid {
    grid-template-columns: 1fr;
  }
  .nd-hero-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .nd-card-tall {
    grid-column: span 2;
  }
}
@media (max-width: 700px) {
  .nd-hero {
    padding: 58px 0 42px;
  }
  .nd-hero-gallery {
    grid-template-columns: 1fr;
  }
  .nd-card-tall {
    grid-column: auto;
    min-height: 300px;
  }
  .nd-hero-card {
    min-height: 220px;
  }
  .nd-case-image img {
    height: 360px;
  }
  .nd-case-overlay {
    padding: 24px;
  }
  .nd-feature-card, .nd-related-card, .nd-process-card {
    padding: 24px 20px;
  }
  .nd-cta-card {
    padding: 34px 24px;
  }
}
/* ==========================================
   NEUROLOGICAL & PHYSICAL REHABILITATION PAGE
   ========================================== */
.rehab-page {
  background: #f5f3ef;
}
/* HERO */
.rehab-hero {
  padding: 74px 0 58px;
  background: #f1eeea;
}
.rehab-hero-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
}
.rehab-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.rehab-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 10ch;
}
.rehab-hero-text {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}
.rehab-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.rehab-hero-media {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}
.rehab-hero-image {
  border-radius: 22px;
  overflow: hidden;
  background: #ddd;
  min-height: 470px;
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.08);
}
.rehab-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rehab-hero-stats {
  display: grid;
  gap: 18px;
}
.rehab-stat-card {
  background: #ffffff;
  border: 1px solid #ddd5cb;
  border-radius: 22px;
  padding: 24px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}
.rehab-stat-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.08rem;
}
.rehab-stat-card span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}
/* OVERVIEW */
.rehab-overview {
  padding: 60px 0;
  background: #d9a56d;
}
.rehab-overview-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
.rehab-overview-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  color: #2f2318;
  max-width: 12ch;
}
.rehab-overview-copy p {
  margin: 0 0 16px;
  color: #3d2d1d;
  line-height: 1.8;
  font-size: 1.02rem;
}
.rehab-overview-copy p:last-child {
  margin-bottom: 0;
}
/* SUPPORT SECTION */
.rehab-support-section {
  padding: 68px 0;
  background: #d9a56d;
}
.rehab-section-heading {
  margin-bottom: 28px;
}
.rehab-section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.14;
  color: #2f2318;
}
.rehab-section-heading-centre {
  text-align: center;
}
.rehab-support-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.rehab-support-card {
  grid-column: span 4;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 26px;
  padding: 28px 24px;
  min-height: 220px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}
.rehab-support-card-large {
  grid-column: span 8;
}
.rehab-support-card h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
  line-height: 1.2;
  color: var(--text);
}
.rehab-support-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}
/* SPLIT */
.rehab-split-section {
  padding: 76px 0;
  background: #f5f3ef;
}
.rehab-split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 38px;
  align-items: center;
}
.rehab-split-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}
.rehab-split-media img {
  width: 100%;
  display: block;
  min-height: 500px;
  object-fit: cover;
}
.rehab-split-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  color: var(--text);
}
.rehab-split-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.8;
}
.rehab-check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.rehab-check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  line-height: 1.7;
  font-weight: 500;
}
.rehab-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b97946;
}
/* PATHWAY */
.rehab-pathway-section {
  padding: 74px 0;
  background: #ece8e2;
}
.rehab-pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.rehab-pathway-card {
  background: #ffffff;
  border: 1px solid #ddd5cb;
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}
.rehab-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #b97946;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.84rem;
}
.rehab-pathway-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.22;
  color: var(--text);
}
.rehab-pathway-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
/* CASE */
.rehab-case-section {
  padding: 68px 0;
  background: #243546;
}
.rehab-case-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #243546;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}
.rehab-case-copy {
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rehab-case-copy h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  max-width: 12ch;
}
.rehab-case-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}
.rehab-case-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.rehab-dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #d9a56d;
  color: #2f2318;
  font-weight: 700;
}
/* RELATED */
.rehab-related-section {
  padding: 68px 0;
  background: #f5f3ef;
}
.rehab-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.rehab-related-card {
  display: block;
  background: #ffffff;
  border: 1px solid #ddd5cb;
  border-radius: 24px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.rehab-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  border-color: #d9a56d;
}
.rehab-related-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.22;
  color: var(--text);
}
.rehab-related-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
/* CTA */
.rehab-cta-section {
  padding: 0;
  background: #f5f3ef;
}
.rehab-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.rehab-cta-card {
  padding: 42px 34px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.rehab-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
}
.rehab-cta-card p {
  margin: 0 0 22px;
  max-width: 52ch;
  line-height: 1.8;
}
.rehab-cta-card-left {
  background: #243546;
  color: #f5f3ef;
}
.rehab-cta-card-right {
  background: #d9a56d;
  color: #2f2318;
}
.rehab-cta-card a {
  margin-top: auto;
  align-self: flex-start;
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .rehab-hero-inner, .rehab-overview-grid, .rehab-split, .rehab-pathway-grid, .rehab-related-grid, .rehab-case-panel {
    grid-template-columns: 1fr;
  }
  .rehab-hero-media {
    grid-template-columns: 1fr;
  }
  .rehab-support-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .rehab-support-card, .rehab-support-card-large {
    grid-column: auto;
  }
  .rehab-cta-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .rehab-hero {
    padding: 58px 0 42px;
  }
  .rehab-hero-image {
    min-height: 300px;
  }
  .rehab-split-media img {
    min-height: 320px;
  }
  .rehab-case-copy, .rehab-support-card, .rehab-pathway-card, .rehab-related-card, .rehab-cta-card {
    padding: 24px 20px;
  }
}
/* ==========================================
   DEMENTIA & OLDER ADULT CARE PAGE
   ========================================== */
.dementia-page {
  background: #f7f3ed;
}
/* HERO */
.dementia-hero {
  padding: 72px 0 56px;
  background: #f4eee6;
}
.dementia-hero-inner {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 34px;
  align-items: start;
}
.dementia-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d95f0e;
}
.dementia-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 10ch;
}
.dementia-hero-text {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}
.dementia-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.dementia-hero-media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}
.dementia-hero-main-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
  background: #ddd;
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.08);
}
.dementia-hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dementia-hero-side {
  display: grid;
  gap: 18px;
}
.dementia-hero-small-card {
  border-radius: 24px;
  overflow: hidden;
  min-height: 250px;
  background: #ddd;
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.08);
}
.dementia-hero-small-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dementia-hero-note {
  background: #ffffff;
  border: 1px solid #e3d6c6;
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}
.dementia-hero-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.08rem;
}
.dementia-hero-note span {
  display: block;
  color: #d95f0e;
  line-height: 1.7;
}
/* OVERVIEW BAND */
.dementia-overview-band {
  padding: 44px 0 58px;
  background: #d7a77b;
}
.dementia-overview-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 26px;
}
.dementia-overview-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: #332114;
}
.dementia-overview-intro p {
  margin: 0 auto;
  color: #422b1c;
  max-width: 68ch;
  line-height: 1.8;
}
.dementia-overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.dementia-overview-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #5a3922;
  font-weight: 600;
  font-size: 0.92rem;
}
/* HEADINGS */
.dementia-section-heading {
  margin-bottom: 28px;
}
.dementia-section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.14;
  color: #543624;
}
.dementia-section-heading-centre {
  text-align: center;
}
/* FEATURES */
.dementia-feature-section {
  padding: 68px 0;
  background: #f7f3ed;
}
.dementia-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.dementia-feature-card {
  background: #fffdf9;
  border: 1px solid #eadfd2;
  border-radius: 26px;
  padding: 30px 26px;
  min-height: 220px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}
.dementia-feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--text);
}
.dementia-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}
/* SPLIT */
.dementia-split-section {
  padding: 76px 0;
  background: #efe3d2;
}
.dementia-split {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 38px;
  align-items: center;
}
.dementia-split-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  color: #4b2f1f;
}
.dementia-split-copy p {
  margin: 0 0 16px;
  color: #5d4333;
  line-height: 1.8;
}
.dementia-split-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}
.dementia-split-media img {
  width: 100%;
  display: block;
  min-height: 500px;
  object-fit: cover;
}
.dementia-check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.dementia-check-list li {
  position: relative;
  padding-left: 26px;
  color: #4a3327;
  line-height: 1.7;
  font-weight: 500;
}
.dementia-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c07b4a;
}
/* STORY PANEL */
.dementia-story-section {
  padding: 68px 0;
  background: #f7f3ed;
}
.dementia-story-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #5e4334;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}
.dementia-story-copy {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dementia-story-copy h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  max-width: 12ch;
}
.dementia-story-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}
.dementia-story-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.dementia-dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #d7a77b;
  color: #332114;
  font-weight: 700;
}
/* APPROACH */
.dementia-approach-section {
  padding: 74px 0;
  background: #f4ebe0;
}
.dementia-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.dementia-approach-card {
  background: #ffffff;
  border: 1px solid #eadfd2;
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}
.dementia-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #d7a77b;
  color: #4b2f1f;
  font-weight: 800;
  font-size: 0.84rem;
}
.dementia-approach-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.22;
  color: var(--text);
}
.dementia-approach-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
/* RELATED */
.dementia-related-section {
  padding: 68px 0;
  background: #f7f3ed;
}
.dementia-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.dementia-related-card {
  display: block;
  background: #fffdf9;
  border: 1px solid #eadfd2;
  border-radius: 24px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.dementia-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  border-color: #d7a77b;
}
.dementia-related-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.22;
  color: var(--text);
}
.dementia-related-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
/* CTA */
.dementia-cta-section {
  padding: 0;
  background: #f7f3ed;
}
.dementia-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dementia-cta-card {
  padding: 42px 34px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.dementia-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
}
.dementia-cta-card p {
  margin: 0 0 22px;
  max-width: 52ch;
  line-height: 1.8;
}
.dementia-cta-card-left {
  background: #5e4334;
  color: #f7f3ed;
}
.dementia-cta-card-right {
  background: #d7a77b;
  color: #332114;
}
.dementia-cta-card a {
  margin-top: auto;
  align-self: flex-start;
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .dementia-hero-inner, .dementia-split, .dementia-approach-grid, .dementia-related-grid, .dementia-story-panel {
    grid-template-columns: 1fr;
  }
  .dementia-hero-media {
    grid-template-columns: 1fr;
  }
  .dementia-feature-grid {
    grid-template-columns: 1fr;
  }
  .dementia-cta-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .dementia-hero {
    padding: 58px 0 42px;
  }
  .dementia-hero-main-image {
    min-height: 300px;
  }
  .dementia-split-media img {
    min-height: 320px;
  }
  .dementia-story-copy, .dementia-feature-card, .dementia-approach-card, .dementia-related-card, .dementia-cta-card {
    padding: 24px 20px;
  }
}
/* ==========================================
   ADDICTION & REHABILITATION PAGE
   ========================================== */
.addiction-page {
  background: #f6f2f8;
}
/* HERO */
.addiction-hero {
  padding: 74px 0 56px;
  background: #f2edf6;
}
.addiction-hero-inner {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 34px;
  align-items: start;
}
.addiction-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a4cb2;
}
.addiction-eyebrow-light {
  color: #eadbff;
}
.addiction-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 10ch;
}
.addiction-hero-text {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}
.addiction-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.addiction-hero-media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}
.addiction-hero-main-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 470px;
  background: #ddd;
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.08);
}
.addiction-hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.addiction-hero-side-grid {
  display: grid;
  gap: 18px;
}
.addiction-hero-side-card {
  background: #ffffff;
  border: 1px solid #e3d7ef;
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}
.addiction-hero-side-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.08rem;
}
.addiction-hero-side-card span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}
.addiction-hero-side-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 250px;
  background: #ddd;
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.08);
}
.addiction-hero-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* OVERVIEW BAND */
.addiction-overview-band {
  padding: 44px 0 58px;
  background: #6f4b91;
}
.addiction-overview-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 26px;
}
.addiction-overview-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: #f5effd;
}
.addiction-overview-intro p {
  margin: 0 auto;
  color: #efe8f8;
  max-width: 68ch;
  line-height: 1.8;
}
.addiction-overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.addiction-overview-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #563574;
  font-weight: 600;
  font-size: 0.92rem;
}
/* HEADINGS */
.addiction-section-heading {
  margin-bottom: 28px;
}
.addiction-section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.14;
  color: #4f2f69;
}
.addiction-section-heading-centre {
  text-align: center;
}
/* FEATURES */
.addiction-feature-section {
  padding: 68px 0;
  background: #f6f2f8;
}
.addiction-feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.addiction-feature-card {
  grid-column: span 4;
  background: #fffdfd;
  border: 1px solid #eadff2;
  border-radius: 26px;
  padding: 30px 26px;
  min-height: 220px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}
.addiction-feature-card-large {
  grid-column: span 8;
}
.addiction-feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--text);
}
.addiction-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}
/* SPLIT */
.addiction-split-section {
  padding: 76px 0;
  background: #ece3f2;
}
.addiction-split {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 38px;
  align-items: center;
}
.addiction-split-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  color: #4f2f69;
}
.addiction-split-copy p {
  margin: 0 0 16px;
  color: #5d476f;
  line-height: 1.8;
}
.addiction-split-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}
.addiction-split-media img {
  width: 100%;
  display: block;
  min-height: 500px;
  object-fit: cover;
}
.addiction-check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.addiction-check-list li {
  position: relative;
  padding-left: 26px;
  color: #4f3c5f;
  line-height: 1.7;
  font-weight: 500;
}
.addiction-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8d5cc2;
}
/* STORY PANEL */
.addiction-story-section {
  padding: 68px 0;
  background: #332042;
}
.addiction-story-panel {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #332042;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}
.addiction-story-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.addiction-story-copy {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.addiction-story-copy h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  max-width: 12ch;
}
.addiction-story-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}
.addiction-light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #cdb5ea;
  color: #332042;
  font-weight: 700;
}
/* APPROACH */
.addiction-approach-section {
  padding: 74px 0;
  background: #f3edf7;
}
.addiction-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.addiction-approach-card {
  background: #ffffff;
  border: 1px solid #eadff2;
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}
.addiction-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #8d5cc2;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.84rem;
}
.addiction-approach-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.22;
  color: var(--text);
}
.addiction-approach-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
/* RELATED */
.addiction-related-section {
  padding: 68px 0;
  background: #f6f2f8;
}
.addiction-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.addiction-related-card {
  display: block;
  background: #fffdfd;
  border: 1px solid #eadff2;
  border-radius: 24px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.addiction-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  border-color: #b896df;
}
.addiction-related-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.22;
  color: var(--text);
}
.addiction-related-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
/* CTA */
.addiction-cta-section {
  padding: 0;
  background: #f6f2f8;
}
.addiction-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.addiction-cta-card {
  padding: 42px 34px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.addiction-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
}
.addiction-cta-card p {
  margin: 0 0 22px;
  max-width: 52ch;
  line-height: 1.8;
}
.addiction-cta-card-left {
  background: rgb(232, 235, 244);
  color: #332042;
}
.addiction-cta-card-right {
  background: #cdb5ea;
  color: #332042;
}
.addiction-cta-card a {
  margin-top: auto;
  align-self: flex-start;
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .addiction-hero-inner, .addiction-split, .addiction-approach-grid, .addiction-related-grid, .addiction-story-panel {
    grid-template-columns: 1fr;
  }
  .addiction-hero-media {
    grid-template-columns: 1fr;
  }
  .addiction-feature-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .addiction-feature-card, .addiction-feature-card-large {
    grid-column: auto;
  }
  .addiction-cta-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .addiction-hero {
    padding: 58px 0 42px;
  }
  .addiction-hero-main-image {
    min-height: 300px;
  }
  .addiction-split-media img {
    min-height: 320px;
  }
  .addiction-story-copy, .addiction-feature-card, .addiction-approach-card, .addiction-related-card, .addiction-cta-card {
    padding: 24px 20px;
  }
}
/* ==========================================
   PALLIATIVE CARE PAGE
   ========================================== */

.palliative-page {
  background: #f7f4ef;
}

/* HERO */

.palliative-hero {
  padding: 74px 0 56px;
  background: #f3eee7;
}

.palliative-hero-inner {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 34px;
  align-items: start;
}

.palliative-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a6a45;
}

.palliative-eyebrow-light {
  color: #f7e4c9;
}

.palliative-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 10ch;
}

.palliative-hero-text {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.palliative-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.palliative-hero-media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.palliative-hero-main-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 470px;
  background: #ddd;
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.08);
}

.palliative-hero-main-image img,
.palliative-hero-side-image img,
.palliative-split-media img,
.palliative-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.palliative-hero-side-grid {
  display: grid;
  gap: 18px;
}

.palliative-hero-side-card {
  background: #ffffff;
  border: 1px solid #eadfce;
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.palliative-hero-side-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.08rem;
}

.palliative-hero-side-card span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.palliative-hero-side-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 250px;
  background: #ddd;
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.08);
}

/* OVERVIEW BAND */

.palliative-overview-band {
  padding: 44px 0 58px;
  background: #3e2b20;
}

.palliative-overview-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 26px;
}

.palliative-overview-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: #fff7ed;
}

.palliative-overview-intro p {
  margin: 20px auto;
  color: #f7eadb;
  max-width: 68ch;
  line-height: 1.8;
}

.palliative-overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.palliative-overview-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #604229;
  font-weight: 600;
  font-size: 0.92rem;
}

/* HEADINGS */

.palliative-section-heading {
  margin-bottom: 28px;
}

.palliative-section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.14;
  color: #604229;
}

.palliative-section-heading-centre {
  text-align: center;
}

/* FEATURES */

.palliative-feature-section {
  padding: 68px 0;
  background: #f7f4ef;
}

.palliative-feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.palliative-feature-card {
  grid-column: span 4;
  background: #fffdf9;
  border: 1px solid #eadfce;
  border-radius: 26px;
  padding: 30px 26px;
  min-height: 220px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.palliative-feature-card-large {
  grid-column: span 8;
}

.palliative-feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--text);
}

.palliative-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

/* SPLIT */

.palliative-split-section {
  padding: 76px 0;
  background: #efe6da;
}

.palliative-split {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 38px;
  align-items: center;
}

.palliative-split-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  color: #604229;
}

.palliative-split-copy p {
  margin: 0 0 16px;
  color: #6a5443;
  line-height: 1.8;
}

.palliative-split-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.palliative-split-media img {
  min-height: 500px;
}

.palliative-check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.palliative-check-list li {
  position: relative;
  padding-left: 26px;
  color: #5f4a38;
  line-height: 1.7;
  font-weight: 500;
}

.palliative-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9a6a45;
}

/* STORY PANEL */

.palliative-story-section {
  padding: 68px 0;
  background: #3e2b20;
}

.palliative-story-panel {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #3e2b20;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.palliative-story-image img {
  min-height: 420px;
}

.palliative-story-copy {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.palliative-story-copy h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  max-width: 12ch;
}

.palliative-story-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.palliative-light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #f3d9b8;
  color: #3e2b20;
  font-weight: 700;
}

/* APPROACH */

.palliative-approach-section {
  padding: 74px 0;
  background: #f3eee7;
}

.palliative-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.palliative-approach-card {
  background: #ffffff;
  border: 1px solid #eadfce;
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.palliative-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #9a6a45;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.84rem;
}

.palliative-approach-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.22;
  color: var(--text);
}

.palliative-approach-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

/* RELATED */

.palliative-related-section {
  padding: 68px 0;
  background: #f7f4ef;
}

.palliative-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.palliative-related-card {
  display: block;
  background: #fffdf9;
  border: 1px solid #eadfce;
  border-radius: 24px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.palliative-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  border-color: #caa57b;
}

.palliative-related-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.22;
  color: var(--text);
}

.palliative-related-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

/* CTA */

.palliative-cta-section {
  padding: 0;
  background: #f7f4ef;
}

.palliative-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.palliative-cta-card {
  padding: 42px 34px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.palliative-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
}

.palliative-cta-card p {
  margin: 0 0 22px;
  max-width: 52ch;
  line-height: 1.8;
}

.palliative-cta-card-left {
  background: #3e2b20;
  color: #ffffff;
}

.palliative-cta-card-right {
  background: #f3d9b8;
  color: #3e2b20;
}

.palliative-cta-card a {
  margin-top: auto;
  align-self: flex-start;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .palliative-hero-inner,
  .palliative-split,
  .palliative-approach-grid,
  .palliative-related-grid,
  .palliative-story-panel {
    grid-template-columns: 1fr;
  }

  .palliative-hero-media {
    grid-template-columns: 1fr;
  }

  .palliative-feature-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .palliative-feature-card,
  .palliative-feature-card-large {
    grid-column: auto;
  }

  .palliative-cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .palliative-hero {
    padding: 58px 0 42px;
  }

  .palliative-hero-main-image {
    min-height: 300px;
  }

  .palliative-split-media img {
    min-height: 320px;
  }

  .palliative-story-copy,
  .palliative-feature-card,
  .palliative-approach-card,
  .palliative-related-card,
  .palliative-cta-card {
    padding: 24px 20px;
  }
}
/* ==========================================
   PAIN MANAGEMENT PAGE
   ========================================== */

.pain-page {
  background: #f5f7fb;
}

/* HERO */

.pain-hero {
  padding: 74px 0 56px;
  background: #eef3f8;
}

.pain-hero-inner {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 34px;
  align-items: start;
}

.pain-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f7fa2;
}

.pain-eyebrow-light {
  color: #d9f1ff;
}

.pain-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 10ch;
}

.pain-hero-text {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.pain-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.pain-hero-media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.pain-hero-main-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 470px;
  background: #ddd;
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.08);
}

.pain-hero-main-image img,
.pain-hero-side-image img,
.pain-split-media img,
.pain-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pain-hero-side-grid {
  display: grid;
  gap: 18px;
}

.pain-hero-side-card {
  background: #ffffff;
  border: 1px solid #d3e5ef;
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.pain-hero-side-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.08rem;
}

.pain-hero-side-card span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.pain-hero-side-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 250px;
  background: #ddd;
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.08);
}

/* OVERVIEW BAND */

.pain-overview-band {
  padding: 44px 0 58px;
  background: #2f7fa2;
}

.pain-overview-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 26px;
}

.pain-overview-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: #f2fbff;
}

.pain-overview-intro p {
  margin: 0 auto;
  color: #e7f6fb;
  max-width: 68ch;
  line-height: 1.8;
}

.pain-overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pain-overview-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #245b72;
  font-weight: 600;
  font-size: 0.92rem;
}

/* HEADINGS */

.pain-section-heading {
  margin-bottom: 28px;
}

.pain-section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.14;
  color: #245b72;
}

.pain-section-heading-centre {
  text-align: center;
}

/* FEATURES */

.pain-feature-section {
  padding: 68px 0;
  background: #f5f7fb;
}

.pain-feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.pain-feature-card {
  grid-column: span 4;
  background: #ffffff;
  border: 1px solid #d7e6ee;
  border-radius: 26px;
  padding: 30px 26px;
  min-height: 220px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.pain-feature-card-large {
  grid-column: span 8;
}

.pain-feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--text);
}

.pain-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

/* SPLIT */

.pain-split-section {
  padding: 76px 0;
  background: #e9f2f6;
}

.pain-split {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 38px;
  align-items: center;
}

.pain-split-copy h2 {

  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  color: #245b72;
}

.pain-split-copy p {
  margin: 0 0 16px;
  color: #4a6470;
  line-height: 1.8;
}

.pain-split-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.pain-split-media img {
  min-height: 500px;
}

.pain-check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pain-check-list li {
  position: relative;
  padding-left: 26px;
  color: #3d5965;
  line-height: 1.7;
  font-weight: 500;
}

.pain-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3c9abf;
}

/* STORY PANEL */

.pain-story-section {
  padding: 68px 0;
  background: #17384a;
}

.pain-story-panel {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #17384a;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.pain-story-image img {
  min-height: 420px;
}

.pain-story-copy {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pain-story-copy h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  max-width: 12ch;
}

.pain-story-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.pain-light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #bce6f4;
  color: #17384a;
  font-weight: 700;
}

/* APPROACH */

.pain-approach-section {
  padding: 74px 0;
  background: #edf5f8;
}

.pain-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.pain-approach-card {
  background: #ffffff;
  border: 1px solid #d7e6ee;
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.pain-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #3c9abf;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.84rem;
}

.pain-approach-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.22;
  color: var(--text);
}

.pain-approach-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

/* RELATED */

.pain-related-section {
  padding: 68px 0;
  background: #f5f7fb;
}

.pain-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pain-related-card {
  display: block;
  background: #ffffff;
  border: 1px solid #d7e6ee;
  border-radius: 24px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pain-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  border-color: #8fc7db;
}

.pain-related-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.22;
  color: var(--text);
}

.pain-related-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

/* CTA */

.pain-cta-section {
  padding: 0;
  background: #f5f7fb;
}

.pain-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pain-cta-card {
  padding: 42px 34px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.pain-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
}

.pain-cta-card p {
  margin: 0 0 22px;
  max-width: 52ch;
  line-height: 1.8;
}

.pain-cta-card-left {
  background: #17384a;
  color: #ffffff;
}

.pain-cta-card-right {
  background: #bce6f4;
  color: #17384a;
}

.pain-cta-card a {
  margin-top: auto;
  align-self: flex-start;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .pain-hero-inner,
  .pain-split,
  .pain-approach-grid,
  .pain-related-grid,
  .pain-story-panel {
    grid-template-columns: 1fr;
  }

  .pain-hero-media {
    grid-template-columns: 1fr;
  }

  .pain-feature-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .pain-feature-card,
  .pain-feature-card-large {
    grid-column: auto;
  }

  .pain-cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .pain-hero {
    padding: 58px 0 42px;
  }

  .pain-hero-main-image {
    min-height: 300px;
  }

  .pain-split-media img {
    min-height: 320px;
  }

  .pain-story-copy,
  .pain-feature-card,
  .pain-approach-card,
  .pain-related-card,
  .pain-cta-card {
    padding: 24px 20px;
  }
}
/* ==========================================
   WOMEN'S HEALTH PAGE
   ========================================== */
.womens-page {
  background: #fcf5f8;
}
/* HERO */
.womens-hero {
  padding: 76px 0 58px;
  background: #fbeef4;
}
.womens-hero-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
.womens-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cf5f93;
}
.womens-eyebrow-light {
  color: #ffe4f0;
}
.womens-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 8ch;
}
.womens-hero-text {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}
.womens-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.womens-hero-media {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}
.womens-hero-main {
  border-radius: 28px;
  overflow: hidden;
  min-height: 480px;
  background: #ddd;
  box-shadow: 0 14px 34px rgba(207, 95, 147, 0.12);
}
.womens-hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.womens-hero-side {
  display: grid;
  gap: 18px;
}
.womens-hero-side-top {
  border-radius: 28px;
  overflow: hidden;
  min-height: 250px;
  background: #ddd;
  box-shadow: 0 14px 34px rgba(207, 95, 147, 0.12);
}
.womens-hero-side-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.womens-hero-note {
  background: #fff8fb;
  border: 1px solid #f1d7e4;
  border-radius: 28px;
  padding: 26px 24px;
  box-shadow: 0 12px 26px rgba(207, 95, 147, 0.08);
}
.womens-hero-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.08rem;
}
.womens-hero-note span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}
/* OVERVIEW BAND */
.womens-overview-band {
  padding: 46px 0 58px;
  background: #f6b7cf;
}
.womens-overview-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 26px;
}
.womens-overview-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: #5a2640;
}
.womens-overview-intro p {
  margin: 0 auto;
  color: #6a3550;
  max-width: 68ch;
  line-height: 1.8;
}
.womens-overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.womens-overview-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #8a3d65;
  font-weight: 600;
  font-size: 0.92rem;
}
/* HEADINGS */
.womens-section-heading {
  margin-bottom: 28px;
}
.womens-section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.14;
  color: #8a3d65;
}
.womens-section-heading-centre {
  text-align: center;
}
/* FEATURES */
.womens-feature-section {
  padding: 70px 0;
  background: #fcf5f8;
}
.womens-feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.womens-feature-card {
  grid-column: span 4;
  background: #fff9fb;
  border: 1px solid #f1d7e4;
  border-radius: 30px;
  padding: 30px 26px;
  min-height: 220px;
  box-shadow: 0 12px 24px rgba(207, 95, 147, 0.05);
}
.womens-feature-card-large {
  grid-column: span 8;
}
.womens-feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
  line-height: 1.2;
  color: var(--text);
}
.womens-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}
/* SPLIT */
.womens-split-section {
  padding: 78px 0;
  background: #fdeff5;
}
.womens-split {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 38px;
  align-items: center;
}
.womens-split-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  color: #8a3d65;
}
.womens-split-copy p {
  margin: 0 0 16px;
  color: #6a4e5c;
  line-height: 1.8;
}
.womens-split-media {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(207, 95, 147, 0.10);
}
.womens-split-media img {
  width: 100%;
  display: block;
  min-height: 500px;
  object-fit: cover;
}
.womens-check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.womens-check-list li {
  position: relative;
  padding-left: 26px;
  color: #5c4150;
  line-height: 1.7;
  font-weight: 500;
}
.womens-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cf5f93;
}
/* STORY PANEL */
.womens-story-section {
  padding: 70px 0;
  background: #f7dce8;
}
.womens-story-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #b44979;
  box-shadow: 0 18px 40px rgba(180, 73, 121, 0.16);
}
.womens-story-copy {
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.womens-story-copy h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  max-width: 12ch;
}
.womens-story-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.8;
}
.womens-story-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.womens-light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #ffd7e8;
  color: #7b2c53;
  font-weight: 700;
}
/* APPROACH */
.womens-approach-section {
  padding: 74px 0;
  background: #fcf5f8;
}
.womens-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.womens-approach-card {
  background: #fff9fb;
  border: 1px solid #f1d7e4;
  border-radius: 26px;
  padding: 28px 22px;
  box-shadow: 0 10px 22px rgba(207, 95, 147, 0.05);
}
.womens-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #f6b7cf;
  color: #7b2c53;
  font-weight: 800;
  font-size: 0.84rem;
}
.womens-approach-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.22;
  color: var(--text);
}
.womens-approach-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
/* RELATED */
.womens-related-section {
  padding: 68px 0;
  background: #fcf5f8;
}
.womens-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.womens-related-card {
  display: block;
  background: #fff9fb;
  border: 1px solid #f1d7e4;
  border-radius: 26px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.womens-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(207, 95, 147, 0.08);
  border-color: #e7a8c5;
}
.womens-related-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.22;
  color: var(--text);
}
.womens-related-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
/* CTA */
.womens-cta-section {
  padding: 0;
  background: #fcf5f8;
}
.womens-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.womens-cta-card {
  padding: 42px 34px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.womens-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
}
.womens-cta-card p {
  margin: 0 0 22px;
  max-width: 52ch;
  line-height: 1.8;
}
.womens-cta-card-left {
  background: #b44979;
  color: #fff7fb;
}
.womens-cta-card-right {
  background: #ffd7e8;
  color: #7b2c53;
}
.womens-cta-card a {
  margin-top: auto;
  align-self: flex-start;
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .womens-hero-inner, .womens-split, .womens-approach-grid, .womens-related-grid, .womens-story-panel {
    grid-template-columns: 1fr;
  }
  .womens-hero-media {
    grid-template-columns: 1fr;
  }
  .womens-feature-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .womens-feature-card, .womens-feature-card-large {
    grid-column: auto;
  }
  .womens-cta-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .womens-hero {
    padding: 58px 0 42px;
  }
  .womens-hero-main {
    min-height: 300px;
  }
  .womens-split-media img {
    min-height: 320px;
  }
  .womens-story-copy, .womens-feature-card, .womens-approach-card, .womens-related-card, .womens-cta-card {
    padding: 24px 20px;
  }
}
/* ==========================================
   WORKPLACE WELLBEING PAGE
   ========================================== */
.workplace-page {
  background: #f3f7f8;
}
/* HERO */
.workplace-hero {
  padding: 74px 0 56px;
  background: #eef4f5;
}
.workplace-hero-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
.workplace-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1c8a97;
}
.workplace-eyebrow-light {
  color: #d5eef2;
}
.workplace-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 9ch;
}
.workplace-hero-text {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}
.workplace-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.workplace-hero-media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}
.workplace-hero-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 470px;
  background: #ddd;
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.08);
}
.workplace-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.workplace-hero-panels {
  display: grid;
  gap: 18px;
}
.workplace-hero-panel {
  background: #ffffff;
  border: 1px solid #d8e7ea;
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}
.workplace-hero-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.08rem;
}
.workplace-hero-panel span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}
/* OVERVIEW BAND */
.workplace-overview-band {
  padding: 56px 0;
  background: #1f6974;
}
.workplace-overview-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}
.workplace-overview-left h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  color: #edf8fa;
  max-width: 12ch;
}
.workplace-overview-right p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}
.workplace-overview-right p:last-child {
  margin-bottom: 0;
}
/* HEADINGS */
.workplace-section-heading {
  margin-bottom: 28px;
}
.workplace-section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.14;
  color: #25515a;
}
.workplace-section-heading-centre {
  text-align: center;
}
/* FEATURES */
.workplace-feature-section {
  padding: 68px 0;
  background: #f3f7f8;
}
.workplace-feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.workplace-feature-card {
  grid-column: span 4;
  background: #ffffff;
  border: 1px solid #d8e7ea;
  border-radius: 24px;
  padding: 30px 26px;
  min-height: 220px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}
.workplace-feature-card-large {
  grid-column: span 8;
  background: #dff1f4;
}
.workplace-feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--text);
}
.workplace-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}
/* SPLIT */
.workplace-split-section {
  padding: 78px 0;
  background: #e7f0f2;
}
.workplace-split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 38px;
  align-items: center;
}
.workplace-split-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(15, 76, 129, 0.10);
}
.workplace-split-media img {
  width: 100%;
  display: block;
  min-height: 500px;
  object-fit: cover;
}
.workplace-split-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  color: #25515a;
}
.workplace-split-copy p {
  margin: 0 0 16px;
  color: #4f666d;
  line-height: 1.8;
}
.workplace-check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.workplace-check-list li {
  position: relative;
  padding-left: 26px;
  color: #3d5359;
  line-height: 1.7;
  font-weight: 500;
}
.workplace-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1c8a97;
}
/* STORY PANEL */
.workplace-story-section {
  padding: 70px 0;
  background: #203843;
}
.workplace-story-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #203843;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}
.workplace-story-copy {
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.workplace-story-copy h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  max-width: 12ch;
}
.workplace-story-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.8;
}
.workplace-story-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.workplace-light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #bce4ea;
  color: #1d4e56;
  font-weight: 700;
}
/* APPROACH */
.workplace-approach-section {
  padding: 74px 0;
  background: #eef4f5;
}
.workplace-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.workplace-approach-card {
  background: #ffffff;
  border: 1px solid #d8e7ea;
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
}
.workplace-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #bce4ea;
  color: #1d4e56;
  font-weight: 800;
  font-size: 0.84rem;
}
.workplace-approach-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.22;
  color: var(--text);
}
.workplace-approach-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
/* RELATED */
.workplace-related-section {
  padding: 68px 0;
  background: #f3f7f8;
}
.workplace-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.workplace-related-card {
  display: block;
  background: #ffffff;
  border: 1px solid #d8e7ea;
  border-radius: 24px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.workplace-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  border-color: #9fced5;
}
.workplace-related-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.22;
  color: var(--text);
}
.workplace-related-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
/* CTA */
.workplace-cta-section {
  padding: 0;
  background: #f3f7f8;
}
.workplace-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.workplace-cta-card {
  padding: 42px 34px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.workplace-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.15;
}
.workplace-cta-card p {
  margin: 0 0 22px;
  max-width: 52ch;
  line-height: 1.8;
}
.workplace-cta-card-left {
  background: #203843;
  color: #eef7f8;
}
.workplace-cta-card-right {
  background: #bce4ea;
  color: #1d4e56;
}
.workplace-cta-card a {
  margin-top: auto;
  align-self: flex-start;
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .workplace-hero-inner, .workplace-overview-grid, .workplace-split, .workplace-approach-grid, .workplace-related-grid, .workplace-story-panel {
    grid-template-columns: 1fr;
  }
  .workplace-hero-media {
    grid-template-columns: 1fr;
  }
  .workplace-feature-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .workplace-feature-card, .workplace-feature-card-large {
    grid-column: auto;
  }
  .workplace-cta-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .workplace-hero {
    padding: 58px 0 42px;
  }
  .workplace-hero-image {
    min-height: 300px;
  }
  .workplace-split-media img {
    min-height: 320px;
  }
  .workplace-story-copy, .workplace-feature-card, .workplace-approach-card, .workplace-related-card, .workplace-cta-card {
    padding: 24px 20px;
  }
}
/* ==========================================
   CASE STUDIES PAGE
   ========================================== */

.case-studies-page {
  background: #f8fafc;
}

.case-studies-hero {
  padding: 72px 0 28px;
}

.case-studies-hero .wrap,
.case-studies-main .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.case-studies-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e67e22;
}

.case-studies-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
}

.case-studies-intro {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

/* filters */
.case-studies-main {
  padding: 0 0 84px;
}

.case-studies-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  gap: 18px;
  margin: 0 0 34px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.05);
}

.case-studies-filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-studies-filter-group label {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text);
}

.case-studies-filter-group select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(215, 227, 234, 1);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  font-family: inherit;
  font-size: 0.96rem;
  box-shadow: none;
}

/* list */
.case-studies-list {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.05);
}

.case-study-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 28px 26px;
  border-bottom: 1px solid rgba(215, 227, 234, 0.95);
}

.case-study-item:last-child {
  border-bottom: none;
}

.case-study-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.case-study-label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.case-study-date {
  font-size: 0.98rem;
  color: var(--text);
}

.case-study-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(230, 126, 34, 0.1);
  color: #c86410;
  font-size: 0.84rem;
  font-weight: 700;
}

.case-study-content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.3vw, 1.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.case-study-content h2 a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.case-study-content h2 a:hover {
  color: var(--primary);
}

.case-study-excerpt {
  max-width: 980px;
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
}

.case-study-summary {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

.case-study-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 18px;
  border-radius: 999px;
  background: #e67e22;
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(230, 126, 34, 0.16);
  transition: background 0.2s ease, transform 0.2s ease;
}

.case-study-readmore:hover {
  background: #cf6d17;
  transform: translateY(-1px);
}

/* pagination */
.case-studies-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.case-studies-page-link,
.case-studies-page-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(215, 227, 234, 1);
  background: #ffffff;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.case-studies-page-link:hover {
  border-color: rgba(15, 76, 129, 0.22);
}

.case-studies-page-link.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.case-studies-page-link.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* responsive */
@media (max-width: 900px) {
  .case-studies-filters {
    grid-template-columns: 1fr;
  }

  .case-study-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-study-meta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
  }

  .case-studies-pagination {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .case-studies-hero {
    padding: 56px 0 20px;
  }

  .case-studies-hero .wrap,
  .case-studies-main .wrap {
    padding: 0 18px;
  }

  .case-study-item {
    padding: 22px 20px;
  }

  .case-study-content h2 {
    font-size: 1.45rem;
  }

  .case-studies-list,
  .case-studies-filters {
    border-radius: 22px;
  }
}
/* ==========================================
   CORPORATE PARTNERSHIPS PAGE
   ========================================== */

.cp-page {
  background: #f8fafc;
  color: #1f2f3f;
}

.cp-wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.cp-narrow {
  max-width: 760px;
}

.cp-section {
  padding: 88px 0;
}

.cp-section-white {
  background: #ffffff;
}

.cp-section-soft {
  background: #f4f8fb;
}

.cp-section-dark {
  background: #12314d;
  color: #ffffff;
}

.cp-section-label,
.cp-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e87022;
}

.cp-section h2,
.cp-hero h1 {
  margin: 0 0 20px;
  line-height: 1.05;
  color: inherit;
}

.cp-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cp-hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 760px;
}

.cp-section p,
.cp-hero p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #526273;
  margin: 10px 0;
}

.cp-section-dark p {
  color: rgba(255,255,255,0.82);
}

/* HERO */

.cp-hero {
  position: relative;
  padding: 120px 0 100px;
  background:
    radial-gradient(circle at top right, rgba(232,112,34,0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  overflow: hidden;
}

.cp-hero::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 2px solid rgba(232,112,34,0.3);
  border-radius: 50%;
}

.cp-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cp-hero-content p {
  max-width: 680px;
  font-size: 1.18rem;
}

.cp-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cp-btn:hover {
  transform: translateY(-2px);
}

.cp-btn-primary {
  background: #e87022;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(232,112,34,0.25);
}

.cp-btn-secondary {
  background: #ffffff;
  color: #12314d;
  border: 1px solid #dce6ee;
}

.cp-hero-card {
  display: flex;
  justify-content: flex-end;
}

.cp-impact-card {
  max-width: 330px;
  padding: 34px;
  border-radius: 28px;
  background: #12314d;
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(18,49,77,0.22);
}

.cp-impact-card span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}

.cp-impact-card strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.2;
}

/* SECTION HEAD */

.cp-section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

/* CARDS */

.cp-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cp-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(18,49,77,0.08);
  border: 1px solid #e5edf3;

  display: flex;
  flex-direction: column;
  align-items: center;   
  text-align: center;      
}

.cp-card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: #fff1e8;
  color: #e87022;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 900;
}

.cp-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: #12314d;
}

.cp-card p {
  margin: 0;
  font-size: 0.96rem;
}

/* SPLIT SECTIONS */

.cp-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.cp-split-reverse {
  grid-template-columns: 1fr 1fr;
}

.cp-list-box {
  background: #ffffff;
  border: 1px solid #e2eaf1;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(18,49,77,0.08);
}

.cp-list-box ul {
  margin: 0;
  padding-left: 20px;
}

.cp-list-box li {
  margin-bottom: 16px;
  line-height: 1.65;
  font-weight: 700;
  color: #33475b;
}

.cp-image-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.cp-benefit-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.cp-benefit-list div {
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 700;
}

/* PILLS */

.cp-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cp-pill-list span {
  padding: 12px 18px;
  border-radius: 999px;
  background: #f0f6fa;
  color: #12314d;
  font-weight: 800;
}

/* CTA */

.cp-cta {
  padding: 40px 0;
  background: #ffffff;
}

.cp-cta-box {
  padding: 58px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(232,112,34,0.22), transparent 34%),
    #12314d;
  color: #ffffff;
  text-align: center;
}

.cp-cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.cp-cta-box p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

/* POSTS */

.cp-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cp-post-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(18,49,77,0.08);
  border: 1px solid #e5edf3;
}

.cp-post-image {
  height: 190px;
  background: #dfeaf2;
}

.cp-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-post-content {
  padding: 24px;
}

.cp-post-content span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8f7fb;
  color: #16758a;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cp-post-content h3 {
  margin: 0 0 10px;
  color: #12314d;
}

.cp-post-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .cp-hero-grid,
  .cp-split,
  .cp-split-reverse {
    grid-template-columns: 1fr;
  }

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

  .cp-hero-card {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .cp-wrap {
    width: min(100% - 32px, 1120px);
  }

  .cp-hero {
    padding: 82px 0 72px;
  }

  .cp-section {
    padding: 64px 0;
  }

  .cp-card-grid,
  .cp-post-grid {
    grid-template-columns: 1fr;
  }

  .cp-cta-box {
    padding: 38px 24px;
  }

  .cp-image-panel img {
    height: 280px;
  }
}
/* ==========================================
   IN MEMORY GIVING PAGE
   ========================================== */

.memory-page {
  background: #fbf7f4;
  color: var(--text);
}

/* HERO */

.memory-hero {
  padding: 90px 0 74px;
  background:
    radial-gradient(circle at 85% 12%, rgba(214, 150, 141, 0.18) 0 220px, transparent 221px),
    radial-gradient(circle at 8% 18%, rgba(125, 145, 116, 0.13) 0 180px, transparent 181px),
    linear-gradient(180deg, #fffaf7 0%, #fbf7f4 100%);
  border-bottom: 1px solid rgba(216, 200, 190, 0.65);
}

.memory-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 58px;
  align-items: center;
}

.memory-hero-content {
  max-width: 760px;
}

.memory-kicker,
.memory-section-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b56f64;
}

.memory-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #263747;
}

.memory-hero p {
  margin: 0;
  max-width: 680px;
  font-size: 1.18rem;
  line-height: 1.75;
  color: #5f6d69;
}

.memory-hero-image {
  position: relative;
}

.memory-hero-image::before {
  content: "";
  position: absolute;
  inset: 26px -22px -22px 26px;
  border-radius: 34px;
  background: #f0d8d4;
  opacity: 0.8;
}

.memory-hero-image img {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(68, 55, 48, 0.16);
}

/* INTRO */

.memory-intro {
  padding: 44px 0 20px;
}

.memory-intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: stretch;
}

.memory-intro-card,
.memory-soft-note,
.memory-sidebar-card,
.memory-main-content {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(222, 207, 198, 0.9);
  box-shadow: 0 18px 44px rgba(68, 55, 48, 0.06);
}

.memory-intro-card {
  padding: 34px;
  border-radius: 28px;
}

.memory-intro-card p {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.8;
  color: #263747;
}

.memory-soft-note {
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(249, 226, 222, 0.82), rgba(255, 255, 255, 0.95));
}

.memory-soft-note p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #5f6d69;
}

/* MAIN SECTION */

.memory-section {
  padding: 44px 0 96px;
}

.memory-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.memory-main-content {
  border-radius: 30px;
  padding: 42px;
}

.memory-block + .memory-block {
  margin-top: 54px;
  padding-top: 48px;
  border-top: 1px solid rgba(222, 207, 198, 0.9);
}

.memory-block h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #263747;
}

.memory-block p {
  margin: 0 0 20px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: #5f6d69;
}

.memory-block p:last-child {
  margin-bottom: 0;
}

.memory-block a {
  color: #b56f64;
  font-weight: 800;
  text-decoration: none;
}

.memory-block a:hover {
  text-decoration: underline;
}

/* QUOTE */

.memory-quote-block blockquote {
  position: relative;
  margin: 26px 0 0;
  padding: 30px 32px;
  border-left: 5px solid #b56f64;
  border-radius: 20px;
  background: #fff1ee;
  color: #263747;
  font-size: 1.12rem;
  line-height: 1.8;
  font-weight: 600;
}

/* SIDEBAR */

.memory-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 110px;
}

.memory-sidebar-card {
  border-radius: 24px;
  padding: 26px;
}

.memory-sidebar-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.15;
  color: #263747;
}

.memory-sidebar-card p {
  margin: 0 0 20px;
  color: #5f6d69;
  line-height: 1.75;
}

.memory-muted-card {
  background: #f2eee8;
}

.memory-muted-card p {
  margin-bottom: 0;
}

.memory-pink-card {
  background:
    linear-gradient(135deg, #fff1ee 0%, #ffffff 100%);
}

.memory-pink-card p {
  margin-bottom: 0;
}

/* BUTTON */

.memory-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: #b56f64;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(181, 111, 100, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.memory-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(181, 111, 100, 0.24);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .memory-hero-grid,
  .memory-intro-grid,
  .memory-content-grid {
    grid-template-columns: 1fr;
  }

  .memory-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .memory-hero {
    padding: 72px 0 54px;
  }

  .memory-hero-grid {
    gap: 34px;
  }

  .memory-intro {
    padding: 30px 0 12px;
  }

  .memory-section {
    padding: 30px 0 68px;
  }

  .memory-main-content,
  .memory-intro-card,
  .memory-soft-note,
  .memory-sidebar-card {
    padding: 24px;
    border-radius: 22px;
  }

  .memory-block + .memory-block {
    margin-top: 38px;
    padding-top: 34px;
  }

  .memory-quote-block blockquote {
    padding: 24px;
    font-size: 1rem;
  }
}
/* ==========================================
   SCHOOL FUNDRAISING PAGE
   ========================================== */

.sf-page {
  background: #f8fafc;
  color: #1f2f3f;
}

.sf-wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.sf-narrow {
  max-width: 780px;
}

.sf-section {
  padding: 88px 0;
}

.sf-section-white {
  background: #ffffff;
}

.sf-section-soft {
  background: #f4f8fb;
}

.sf-section-dark {
  background: #12314d;
  color: #ffffff;
}

.sf-section-label,
.sf-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e87022;
}

.sf-hero h1,
.sf-section h2 {
  margin: 0 0 20px;
  line-height: 1.05;
  color: inherit;
}

.sf-hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 850px;
}

.sf-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.sf-hero p,
.sf-section p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #526273;
	margin-bottom: 10px;
}

.sf-section-dark p {
  color: rgba(255,255,255,0.82);
}

/* HERO */

.sf-hero {
  padding: 120px 0 100px;
  background:
    radial-gradient(circle at top left, rgba(232,112,34,0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  overflow: hidden;
}

.sf-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 58px;
  align-items: center;
}

.sf-hero-content p {
  max-width: 680px;
  font-size: 1.18rem;
}

.sf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.sf-hero-image {
  position: relative;
}

.sf-hero-image::before {
  content: "";
  position: absolute;
  inset: 28px -24px -24px 28px;
  border-radius: 34px;
  background: #e87022;
  opacity: 0.16;
}

.sf-hero-image img {
  position: relative;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 26px 70px rgba(18,49,77,0.16);
}

/* BUTTONS */

.sf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sf-btn:hover {
  transform: translateY(-2px);
}

.sf-btn-primary {
  background: #e87022;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(232,112,34,0.25);
}

.sf-btn-secondary {
  background: #ffffff;
  color: #12314d;
  border: 1px solid #dce6ee;
}

/* HEADERS */

.sf-section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

/* CARDS */

.sf-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sf-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(18,49,77,0.08);
  border: 1px solid #e5edf3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sf-card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: #fff1e8;
  color: #e87022;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 900;
}

.sf-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: #12314d;
}

.sf-card p {
  margin: 0;
  font-size: 0.96rem;
}

/* SPLIT */

.sf-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.sf-split-reverse {
  grid-template-columns: 1fr 1fr;
}

.sf-list-box {
  background: #ffffff;
  border: 1px solid #e2eaf1;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(18,49,77,0.08);
}

.sf-list-box ul {
  margin: 0;
  padding-left: 20px;
}

.sf-list-box li {
  margin-bottom: 16px;
  line-height: 1.65;
  font-weight: 700;
  color: #33475b;
}

.sf-image-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.sf-benefit-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.sf-benefit-list div {
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 700;
}

/* STEPS */

.sf-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.sf-step {
  position: relative;
  padding: 30px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid #e2eaf1;
}

.sf-step span {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 0.85rem;
  font-weight: 900;
  color: #e87022;
}

.sf-step h3 {
  margin: 0 0 12px;
  color: #12314d;
  font-size: 1.2rem;
}

.sf-step p {
  margin: 0;
  font-size: 0.95rem;
}

/* CTA */

.sf-cta {
  padding: 40px 0;
  background: #ffffff;
}

.sf-cta-box {
  text-align: center;
  padding: 58px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(232,112,34,0.22), transparent 34%),
    #12314d;
  color: #ffffff;
}

.sf-cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.sf-cta-box p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

/* POSTS */

.sf-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sf-post-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(18,49,77,0.08);
  border: 1px solid #e5edf3;
}

.sf-post-image {
  height: 190px;
  background: #dfeaf2;
}

.sf-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-post-content {
  padding: 24px;
}

.sf-post-content span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8f7fb;
  color: #16758a;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sf-post-content h3 {
  margin: 0 0 10px;
  color: #12314d;
}

.sf-post-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .sf-hero-grid,
  .sf-split,
  .sf-split-reverse {
    grid-template-columns: 1fr;
  }

  .sf-card-grid,
  .sf-post-grid,
  .sf-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sf-hero-image img {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .sf-wrap {
    width: min(100% - 32px, 1120px);
  }

  .sf-hero {
    padding: 82px 0 72px;
  }

  .sf-section {
    padding: 64px 0;
  }

  .sf-card-grid,
  .sf-post-grid,
  .sf-steps-grid {
    grid-template-columns: 1fr;
  }

  .sf-hero-image img {
    height: 280px;
  }

  .sf-cta-box {
    padding: 38px 24px;
  }

  .sf-image-panel img {
    height: 280px;
  }
}
/* ==========================================
   COMMUNITY FUNDRAISING PAGE
   ========================================== */

.cf-page {
  background: #f8fafc;
  color: #1f2f3f;
}

.cf-wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.cf-narrow {
  max-width: 780px;
}

.cf-section {
  padding: 88px 0;
}

.cf-section-white {
  background: #ffffff;
}

.cf-section-soft {
  background: #f4f8fb;
}

.cf-section-dark {
  background: #12314d;
  color: #ffffff;
}

.cf-section-label,
.cf-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e87022;
}

.cf-hero h1,
.cf-section h2 {
  margin: 0 0 20px;
  line-height: 1.05;
  color: inherit;
}

.cf-hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 820px;
}

.cf-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cf-hero p,
.cf-section p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #526273;
}

.cf-section-dark p {
  color: rgba(255,255,255,0.82);
}

/* HERO */

.cf-hero {
  padding: 120px 0 100px;
  background:
    radial-gradient(circle at top left, rgba(232,112,34,0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  overflow: hidden;
}

.cf-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 58px;
  align-items: center;
}

.cf-hero-content p {
  max-width: 680px;
  font-size: 1.18rem;
}

.cf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.cf-hero-image {
  position: relative;
}

.cf-hero-image::before {
  content: "";
  position: absolute;
  inset: 28px -24px -24px 28px;
  border-radius: 34px;
  background: #e87022;
  opacity: 0.16;
}

.cf-hero-image img {
  position: relative;
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 26px 70px rgba(18,49,77,0.16);
}

/* BUTTONS */

.cf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 15px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cf-btn:hover {
  transform: translateY(-2px);
}

.cf-btn-primary {
  background: #e87022;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(232,112,34,0.25);
}

.cf-btn-secondary {
  background: #ffffff;
  color: #12314d;
  border: 1px solid #dce6ee;
}

/* HEADERS */

.cf-section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

/* CARDS */

.cf-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cf-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(18,49,77,0.08);
  border: 1px solid #e5edf3;

  display: flex;
  flex-direction: column;
  align-items: center;     
  text-align: center;      
}

.cf-card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: #fff1e8;
  color: #e87022;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 900;
}

.cf-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  color: #12314d;
}

.cf-card p {
  margin: 0;
  font-size: 0.96rem;
}

/* SUPPORT SPLIT */

.cf-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.cf-list-box {
  background: #ffffff;
  border: 1px solid #e2eaf1;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(18,49,77,0.08);
}

.cf-list-box ul {
  margin: 0;
  padding-left: 20px;
}

.cf-list-box li {
  margin-bottom: 16px;
  line-height: 1.65;
  font-weight: 700;
  color: #33475b;
}

/* FUNDRAISING PACK */

.cf-pack-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.cf-pack-image {
  background: #ffffff;
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.cf-pack-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.cf-pack-content h2 {
  max-width: 720px;
}

/* CTA */

.cf-cta {
  padding: 40px 0;
  background: #ffffff;
}

.cf-cta-box {
  text-align: center;
  padding: 58px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(232,112,34,0.22), transparent 34%),
    #12314d;
  color: #ffffff;
}

.cf-cta-box h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.cf-cta-box p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

/* POSTS */

.cf-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cf-post-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(18,49,77,0.08);
  border: 1px solid #e5edf3;
}

.cf-post-image {
  height: 190px;
  background: #dfeaf2;
}

.cf-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cf-post-content {
  padding: 24px;
}

.cf-post-content span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8f7fb;
  color: #16758a;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cf-post-content h3 {
  margin: 0 0 10px;
  color: #12314d;
}

.cf-post-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .cf-hero-grid,
  .cf-split,
  .cf-pack-grid {
    grid-template-columns: 1fr;
  }

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

  .cf-hero-image img {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .cf-wrap {
    width: min(100% - 32px, 1120px);
  }

  .cf-hero {
    padding: 82px 0 72px;
  }

  .cf-section {
    padding: 64px 0;
  }

  .cf-card-grid,
  .cf-post-grid {
    grid-template-columns: 1fr;
  }

  .cf-hero-image img {
    height: 280px;
  }

  .cf-cta-box {
    padding: 38px 24px;
  }
}
/* ==========================================
   LATEST NEWS PAGE
   ========================================== */

.nimtt-news-page {
  background: #f8fafc;
}

.nimtt-news-hero {
  padding: 68px 0 26px;
  background:
    radial-gradient(circle at 88% 10%, rgba(230, 126, 34, 0.10) 0 180px, transparent 181px),
    radial-gradient(circle at 10% 20%, rgba(15, 76, 129, 0.06) 0 140px, transparent 141px),
    linear-gradient(180deg, #f7fafc 0%, #f8fafc 100%);
}

.nimtt-news-hero-inner {
  max-width: 760px;
}

.nimtt-news-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e67e22;
}

.nimtt-news-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text);
}

.nimtt-news-hero p {
  margin: 0;
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.nimtt-news-main {
  padding: 20px 0 84px;
}

.nimtt-news-featured {
  margin-bottom: 20px;
}

.nimtt-news-featured-link {
  display: grid;
  grid-template-columns: 42% 58%;
  height: 280px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06);
  text-decoration: none;
  color: inherit;
}

.nimtt-news-featured-media {
  height: 280px;
  background: #eef3f6;
}

.nimtt-news-featured-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.nimtt-news-featured-copy {
  position: relative;
  padding: 58px 22px 68px;
}

.nimtt-news-meta {
  position: absolute;
  top: 20px;
  left: 22px;
  margin: 0;
}

.nimtt-news-readmore {
  position: absolute;
  bottom: 20px;
  left: 22px;
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.86rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  width: fit-content;
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.14);
}

.nimtt-news-featured-copy h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
}

.nimtt-news-featured-copy p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.nimtt-news-meta-item,
.nimtt-news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.nimtt-news-meta-item {
  background: rgba(15, 76, 129, 0.08);
  color: var(--text);
}

.nimtt-news-tag {
  background: rgba(230, 126, 34, 0.10);
  color: #c86412;
}

.nimtt-news-featured-copy h2 {
  margin: 0 0 14px;
  font-size: 1.6rem;   /* was ~2rem+ */
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

.nimtt-news-featured-copy p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 50px; 
  color: var(--muted);
}

.nimtt-news-readmore {
  position: absolute;
  bottom: 20px;
  left: 22px;

  display: flex;                
  align-items: center;           
  justify-content: center;       

  min-height: 38px;
  padding: 0 16px;              
  font-size: 0.86rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  text-align: center;          
}

.nimtt-news-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.nimtt-news-feed {
  min-width: 0;
}

.nimtt-news-row {
  border-top: 1px solid rgba(215, 227, 234, 0.95);
}

.nimtt-news-row:last-of-type {
  border-bottom: 1px solid rgba(215, 227, 234, 0.95);
}

.nimtt-news-row-link {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 28px;
  gap: 26px;
  align-items: start;
  padding: 26px 0;
  text-decoration: none;
  color: inherit;
}

.nimtt-news-row-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 2px;
}

.nimtt-news-row-day {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--text);
}

.nimtt-news-row-month {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.nimtt-news-row-body h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nimtt-news-row-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.nimtt-news-row-arrow {
  font-size: 1.3rem;
  line-height: 1;
  color: var(--primary);
  padding-top: 6px;
}

.nimtt-news-sidebar {
  display: grid;
  gap: 18px;
}

.nimtt-news-sidebar-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 24px;
  padding: 22px 22px 20px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.05);
}

.nimtt-news-sidebar-card h3 {
  margin: 0 0 14px;
  font-size: 1.25rem;
  color: var(--text);
}

.nimtt-news-sidebar-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.8;
}

.nimtt-news-sidebar-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nimtt-news-sidebar-card li + li {
  margin-top: 10px;
}

.nimtt-news-sidebar-card a {
  color: var(--text);
  text-decoration: none;
}

.nimtt-news-sidebar-card a:hover {
  text-decoration: underline;
}

.nimtt-news-sidebar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #e67e22;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
}

.nimtt-news-pagination {
  margin-top: 28px;
  padding-top: 10px;
}

.nimtt-news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(215, 227, 234, 1);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.nimtt-news-pagination .page-numbers.current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.nimtt-news-empty {
  padding: 44px 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 24px;
}

.nimtt-news-empty h2 {
  margin: 0 0 12px;
  color: var(--text);
}

.nimtt-news-empty p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .nimtt-news-featured-link {
    grid-template-columns: 1fr;
    height: auto;
  }

  .nimtt-news-featured-media {
    height: 260px;
  }
}

@media (max-width: 760px) {
  .nimtt-news-hero {
    padding: 54px 0 20px;
  }

  .nimtt-news-main {
    padding: 18px 0 64px;
  }

  .nimtt-news-featured-copy {
    padding: 22px 20px 22px;
  }

  .nimtt-news-row-link {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .nimtt-news-row-arrow {
    display: none;
  }

  .nimtt-news-row-date {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }

  .nimtt-news-row-day {
    font-size: 1.35rem;
  }

  .nimtt-news-row-month {
    margin-top: 0;
  }
}
/* ==========================================
   FUNDRAISING EVENTS PAGE
   ========================================== */

.nimtt-events-page {
  background: #f8fafc;
}

.nimtt-events-hero {
  padding: 72px 0 36px;
  background:
    radial-gradient(circle at 88% 10%, rgba(230, 126, 34, 0.10) 0 180px, transparent 181px),
    linear-gradient(180deg, #f7fafc 0%, #f8fafc 100%);
}

.nimtt-events-hero-inner {
  max-width: 760px;
}

.nimtt-events-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e67e22;
}

.nimtt-events-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text);
}

.nimtt-events-hero p {
  margin: 0;
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.nimtt-events-main {
  padding: 34px 0 88px;
}

.nimtt-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */

.nimtt-event-card {
  background: #ffffff;
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nimtt-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15, 76, 129, 0.11);
}

.nimtt-event-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* IMAGE */

.nimtt-event-image {
  position: relative;
  height: 200px;
  background: #eef3f6;
  overflow: hidden;
}

.nimtt-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DATE BADGE */

.nimtt-event-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  width: 58px;
  min-height: 70px;
  padding: 7px 6px;
  border-radius: 8px;
  background: #ffffff;
  color: #12314d;
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.18);
  text-align: center;
  line-height: 1;
}

.nimtt-event-date-badge strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.nimtt-event-date-badge span {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nimtt-event-date-badge small {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #526273;
}

/* CONTENT */

.nimtt-event-content {
  position: relative;
  min-height: 200px;
  padding: 10px;
}

.nimtt-event-content h2 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: var(--text);
}

.nimtt-event-detail {
  display: flex;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
}

.nimtt-event-icon {
  flex: 0 0 auto;
  color: var(--primary);
  font-weight: 900;
}

.nimtt-event-button {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.14);
}

/* PLACEHOLDER */

.nimtt-event-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eef3f6, #f8fafc);
  color: var(--text);
  font-weight: 800;
}

/* PAGINATION */

.nimtt-events-pagination {
  margin-top: 34px;
}

.nimtt-events-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(215, 227, 234, 1);
  background: #ffffff;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.nimtt-events-pagination .page-numbers.current,
.nimtt-events-pagination .page-numbers:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* EMPTY STATE */

.nimtt-events-empty {
  padding: 44px 28px;
  background: #ffffff;
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 24px;
}

.nimtt-events-empty h2 {
  margin: 0 0 12px;
  color: var(--text);
}

.nimtt-events-empty p {
  margin: 0;
  color: var(--muted);
}

/* RESPONSIVE */

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

@media (max-width: 640px) {
  .nimtt-events-hero {
    padding: 54px 0 28px;
  }

  .nimtt-events-main {
    padding: 28px 0 64px;
  }

  .nimtt-events-grid {
    grid-template-columns: 1fr;
  }

  .nimtt-event-image {
    height: 175px;
  }

  .nimtt-event-content {
    min-height: 165px;
  }
}

.event-single-page {
  background: #f8fafc;
}

.event-single-hero {
  padding: 72px 0;
}

.event-single-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.event-single-image img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.event-single-kicker {
  color: #e67e22;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.event-single-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
  margin: 14px 0 24px;
  color: var(--text);
}

.event-single-details {
  margin-bottom: 28px;
}

.event-single-details p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
}

.event-register-button,
.event-register-box button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.event-single-body {
  padding: 0 0 88px;
}

.event-single-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
}

.event-single-article,
.event-register-box {
  background: #fff;
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06);
}

.event-register-box {
  position: sticky;
  top: 110px;
}

.event-register-box h2 {
  margin: 0 0 10px;
  color: var(--text);
}

.event-register-box p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.event-register-box label {
  display: block;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--text);
}

.event-register-box input {
  width: 100%;
  margin-top: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(215, 227, 234, 1);
  border-radius: 12px;
}
.event-single-article {
  line-height: 1.75;
  font-size: 1rem;
  color: var(--text);
}

/* Proper paragraph spacing */
.event-single-article p {
  margin: 0 0 18px;
}

/* Remove awkward last gap */
.event-single-article p:last-child {
  margin-bottom: 0;
}
.event-single-article h2,
.event-single-article h3 {
  margin: 28px 0 12px;
}

.event-single-article ul {
  margin: 16px 0 20px 20px;
}

.event-single-article li {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .event-single-grid,
  .event-single-body-grid {
    grid-template-columns: 1fr;
  }

  .event-register-box {
    position: static;
  }
}
/* ==========================================
   INSIGHTS & ARTICLES PAGE
   ========================================== */
.insights-page {
  background: #edf2f3;
}
/* HERO */
.insights-hero {
  padding: 0 0 48px;
  background: #dbe4e7;
}
.insights-hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: #111;
}
.insights-hero-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}
.insights-hero-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 560px;
  padding: 48px 42px;
  color: #fff;
  background: linear-gradient(to top, rgba(10, 12, 14, 0.78), rgba(10, 12, 14, 0.18));
}
.insights-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8f04d;
}
.insights-kicker-light {
  color: #dff58c;
}
.insights-hero-overlay h1 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.insights-hero-overlay p {
  margin: 0 0 22px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}
.insights-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #c8f04d;
  color: #183028;
  font-weight: 700;
}
/* INTRO */
.insights-intro-section {
  padding: 34px 0 48px;
  background: #edf2f3;
}
.insights-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid #9eb0b5;
}
.insights-intro-title h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.14;
  color: #1e2327;
}
.insights-intro-copy p {
  margin: 0;
  color: #445057;
  line-height: 1.85;
}
/* BAND */
.insights-band-section {
  padding: 0 0 52px;
  background: #edf2f3;
}
.insights-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.insights-band-card {
  display: block;
  min-height: 220px;
  padding: 38px 34px;
  color: #fff;
}
.insights-band-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1.1;
}
.insights-band-card p {
  margin: 0 0 20px;
  max-width: 46ch;
  line-height: 1.8;
}
.insights-band-card span {
  font-weight: 700;
}
.insights-band-card-dark {
  background: rgb(58, 82, 73);
}
.insights-band-card-accent {
  background: rgb(104, 91, 109);
}
/* SECTION HEAD */
.insights-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}
.insights-section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  color: #1f2428;
}
.insights-mini-link {
  color: #215c4e;
  font-weight: 700;
  white-space: nowrap;
}
/* LATEST */
.insights-latest-section {
  padding: 62px 0;
  background: #f6f4f3;
}
.insights-latest-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}
.insights-featured-story {
  background: #fff;
  padding: 0;
}
.insights-featured-image {
  margin-bottom: 14px;
}
.insights-featured-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.insights-featured-copy {
  padding: 20px;
}
.insights-featured-copy h3 {
  margin: 0 0 10px;
  font-size: 1.42rem;
  line-height: 1.24;
  color: #1f2428;
}
.insights-featured-copy p {
  margin: 0;
  color: #4c585f;
  line-height: 1.75;
}
.insights-side-list {
  display: grid;
  gap: 18px;
}
.insights-side-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d9dfe1;
}
.insights-side-thumb img {
  width: 100%;
  height: 95px;
  object-fit: cover;
  display: block;
}
.insights-side-copy h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.28;
  color: #1f2428;
}
.insights-side-copy p {
  margin: 0;
  color: #546168;
  line-height: 1.7;
}
/* CASE BANNER */
.insights-case-banner-section {
  padding: 0 0 56px;
  background: #f6f4f3;
}
.insights-case-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px 34px;
  background: linear-gradient(90deg, #7b2e71, #9a3f69);
  color: #fff;
}
.insights-case-banner-copy h2 {
  margin: 0 0 12px;
  max-width: 16ch;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}
.insights-case-banner-copy p {
  margin: 0;
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}
.insights-light-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #7b2e71;
  font-weight: 700;
}
/* NEWS LIST */
.insights-news-section {
  padding: 64px 0;
  background: #f6f4f3;
}
.insights-news-list {
  border-top: 1px solid #d6dcde;
}
.insights-news-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid #d6dcde;
}
.insights-news-title h3 {
  margin: 0 0 8px;
  font-size: 1.24rem;
  line-height: 1.25;
  color: #1f2428;
}
.insights-news-title p {
  margin: 0;
  color: #556168;
  line-height: 1.7;
}
.insights-news-meta {
  color: #45615b;
  font-weight: 600;
  white-space: nowrap;
}
/* ARTICLES LIST */
.insights-articles-section {
  padding: 64px 0;
  background: #e5eef0;
}
.insights-articles-list {
  border-top: 1px solid #c7d4d8;
}
.insights-article-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid #c7d4d8;
}
.insights-article-title h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
  line-height: 1.25;
  color: #1f2428;
}
.insights-article-title p {
  margin: 0;
  color: #526067;
  line-height: 1.72;
}
.insights-article-meta {
  color: #315e56;
  font-weight: 600;
  white-space: nowrap;
}
/* CTA */
.insights-cta-section {
  padding: 0;
  background: #e5eef0;
}
.insights-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.insights-cta-card {
  min-height: 230px;
  display: flex;
}
.insights-cta-inner {
  width: 100%;
  max-width: 760px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
}
.insights-cta-card-left {
  background: rgb(26, 44, 62);
  color: rgb(232, 235, 244);
  justify-content: flex-end;
}
.insights-cta-card-right {
  background: rgb(104, 91, 109);
  color: rgb(232, 235, 244);
  justify-content: flex-start;
}
.insights-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.12;
}
.insights-cta-card p {
  margin: 0 0 22px;
  max-width: 50ch;
  line-height: 1.8;
}
.insights-cta-card a {
  margin-top: auto;
  align-self: flex-start;
}
/* MAIN GRID */
.insights-latest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: stretch; /* THIS is key */
}
/* LEFT + RIGHT BOTH STRETCH */
.insights-featured-story, .insights-side-list {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.insights-side-list {
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* Each item shares the available height */
.insights-side-item {
  flex: 1;
  display: flex;
  border-bottom: 1px solid rgba(215, 227, 234, 0.95);
}
.insights-side-item:last-child {
  border-bottom: none;
}
/* Make links fill the space */
.insights-side-link {
  display: flex;
  width: 100%;
}
.insights-side-copy {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  width: 100%;
}
.insights-featured-copy, .insights-side-copy {
  display: flex;
  flex-direction: column;
}
.insights-read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin-top: auto;
  min-height: 30px;
  padding: 0 18px;
  border-radius: 999px;
  background: #e67e22;
  color: #ffffff;
  font-weight: 200;
  font-size: 0.8rem;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(230, 126, 34, 0.18);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.insights-read-more-btn--small {
  min-height: 30px;
  padding: 0 16px;
  font-size: 0.8rem;
}
.insights-featured-link:hover .insights-read-more-btn, .insights-side-link:hover .insights-read-more-btn {
  background: #cf6d17;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(230, 126, 34, 0.24);
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .insights-intro-grid, .insights-latest-grid, .insights-band-grid, .insights-case-banner, .insights-cta-grid {
    grid-template-columns: 1fr;
  }
  .insights-news-row, .insights-article-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .insights-hero-image img {
    height: 440px;
  }
  .insights-hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    max-width: none;
    padding: 28px 24px;
  }
  .insights-side-item {
    grid-template-columns: 1fr;
  }
  .insights-featured-image img {
    height: 260px;
  }
  .insights-case-banner, .insights-cta-card {
    padding: 26px 22px;
  }
}
/* ==========================================
   PHILIP STORY
   ========================================== */
.philip-story-wrapper {
  max-width: 860px;
  margin: 0 auto;
  color: #31424f;
  font-size: 1.05rem;
  line-height: 1.95;
}

.philip-story-wrapper section {
	padding: 0;
}

/* INTRO */

.philip-story-intro {
  margin-bottom: 48px;
}

.philip-story-intro p {
  font-size: 1.18rem;
  line-height: 1.95;
  color: #425361;
}

/* HIGHLIGHT */

.philip-story-highlight {
  margin: 54px 0;
}

.philip-story-highlight-inner {
  padding: 48px;
  border-radius: 34px;

  background:
    linear-gradient(135deg, #fff7f1 0%, #ffffff 100%);

  border: 1px solid rgba(230, 126, 34, 0.12);

  box-shadow:
    0 24px 60px rgba(15, 76, 129, 0.06);
}

.philip-story-highlight-inner p {
  margin: 0 0 20px;
}

.philip-story-focus {
  font-size: 1.12rem;
  color: #5b6773;
}

.philip-story-highlight h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #e67e22;
}

/* MAIN QUOTE */

.philip-story-quote {
  margin: 60px 0;
  padding: 0 0 0 34px;

  border-left: 4px solid #e67e22;
}

.philip-story-quote p {
  margin: 0 0 16px;
  font-size: 1.7rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #20313f;
}

.philip-story-quote cite {
  font-style: normal;
  font-weight: 700;
  color: #6f7c87;
}

/* CONTENT */

.philip-story-content p {
  margin: 0 0 28px;
}

/* PULLQUOTE */

.philip-story-pullquote {
  margin: 46px 0;
  padding: 34px;
  border-radius: 28px;

  background:
    linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);

  border: 1px solid rgba(15, 76, 129, 0.08);
}

.philip-story-pullquote p {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.8;
  color: #20313f;
}

/* TRANSITION */

.philip-story-transition {
  margin: 56px 0 28px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #e67e22;
}

/* RESPONSE BLOCK */

.philip-story-response {
  margin: 0 0 44px;
  padding: 42px;
  border-radius: 30px;

  background:
    linear-gradient(135deg, #fff4ea 0%, #fffdfa 100%);

  border: 1px solid rgba(230, 126, 34, 0.12);

  box-shadow:
    0 18px 40px rgba(230, 126, 34, 0.08);
}

.philip-story-response p {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.7;
  font-weight: 500;
  color: #20313f;
}

/* EMOTIONAL QUOTE */

.philip-story-emotional-quote {
  margin: 60px 0;
  padding: 0;
  border: none;
}

.philip-story-emotional-quote p {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.28;
  letter-spacing: -0.045em;
  text-align: center;
  color: #20313f;
}

/* ENDING */

.philip-story-ending {
  margin-top: 80px;
  padding-top: 56px;

  border-top: 1px solid rgba(15, 76, 129, 0.08);
}

.philip-story-ending-line {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: #20313f;
}

.philip-story-ending-line + .philip-story-ending-line {
  margin-top: 16px;
}

/* MOBILE */

@media (max-width: 768px) {

  .philip-story-wrapper {
    font-size: 1rem;
    line-height: 1.85;
  }

  .philip-story-highlight-inner,
  .philip-story-response,
  .philip-story-pullquote {
    padding: 28px;
    border-radius: 22px;
  }

  .philip-story-quote {
    padding-left: 22px;
  }

  .philip-story-quote p {
    font-size: 1.3rem;
  }
}
/* ==========================================
   NEWS & UPDATES
   ========================================== */
.insights-news-section {
  padding: 24px 0 72px;
}
.insights-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.insights-news-card {
  background: #fff;
  border: 1px solid rgba(215, 227, 234, 0.95);
  overflow: hidden;
}
.insights-news-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.insights-news-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef3f6;
}
.insights-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.insights-news-copy {
  padding: 20px 18px 18px;
}
.insights-news-copy h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.18;
  color: var(--text);
}
.insights-news-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.insights-news-link:hover h3 {
  color: var(--primary);
}
/* ==========================================
   MORE ARTICLES
   ========================================== */
.insights-more-section {
  padding: 0 0 84px;
}
.insights-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.insights-more-card {
  background: #fff;
  border: 1px solid rgba(215, 227, 234, 0.95);
  overflow: hidden;
}
.insights-more-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.insights-more-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef3f6;
}
.insights-more-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.insights-more-copy {
  padding: 20px 18px 18px;
}
.insights-more-meta {
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e67e22;
}
.insights-more-copy h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.18;
  color: var(--text);
}
.insights-more-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.insights-more-link:hover h3 {
  color: var(--primary);
}
@media (max-width: 980px) {
  .insights-news-grid, .insights-more-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================
   LATEST INSIGHTS - WORDPRESS POSTS
   ========================================== */
.insights-latest-section {
  padding: 48px 0 72px;
}
.insights-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 28px 0;
}
.insights-section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  color: var(--text);
}
.insights-mini-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.insights-mini-link:hover {
  text-decoration: underline;
}
.insights-latest-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: start;
}
.insights-featured-story {
  background: #fff;
  border: 1px solid rgba(215, 227, 234, 0.95);
  overflow: hidden;
}
.insights-featured-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.insights-featured-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef3f6;
}
.insights-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.insights-featured-copy {
  padding: 28px 20px 22px;
}
.insights-featured-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}
.insights-featured-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}
.insights-side-list {
  display: flex;
  flex-direction: column;
}
.insights-side-item {
  border-bottom: 1px solid rgba(215, 227, 234, 0.95);
}
.insights-side-item:first-child {
  border-top: 1px solid rgba(215, 227, 234, 0.95);
}
.insights-side-link {
  display: block;
  padding: 20px 0;
  color: inherit;
  text-decoration: none;
}
.insights-side-copy h3 {
  margin: 0 0 10px;
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
.insights-side-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}
.insights-side-link:hover h3, .insights-featured-link:hover h3 {
  color: var(--primary);
}
.insights-empty-state {
  padding: 24px 0;
  color: var(--muted);
}
@media (max-width: 980px) {
  .insights-latest-grid {
    grid-template-columns: 1fr;
  }
  .insights-side-copy h3 {
    font-size: 1.35rem;
  }
}
@media (max-width: 640px) {
  .insights-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .insights-featured-copy {
    padding: 22px 16px 18px;
  }
  .insights-featured-copy h3 {
    font-size: 1.55rem;
  }
  .insights-side-link {
    padding: 18px 0;
  }
  .insights-side-copy h3 {
    font-size: 1.2rem;
  }
}
/* ==========================================
   SEARCH RESULTS PAGE
   ========================================== */

.nimtt-search-page {
  background: #f8fafc;
}

.nimtt-search-hero {
  padding: 68px 0 26px;
  background:
    radial-gradient(circle at 86% 12%, rgba(230, 126, 34, 0.10) 0 180px, transparent 181px),
    radial-gradient(circle at 12% 18%, rgba(15, 76, 129, 0.06) 0 140px, transparent 141px),
    linear-gradient(180deg, #f7fafc 0%, #f8fafc 100%);
}

.nimtt-search-hero-inner {
  max-width: 760px;
}

.nimtt-search-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e67e22;
}

.nimtt-search-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text);
}

.nimtt-search-hero p {
  margin: 0;
  max-width: 62ch;
  font-size: 1.03rem;
  line-height: 1.8;
  color: var(--muted);
}

.nimtt-search-main {
  padding: 20px 0 84px;
}

.nimtt-search-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.nimtt-search-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 120px;
}

.nimtt-search-sidebar-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.05);
}

.nimtt-search-sidebar-card h2 {
  margin: 0 0 14px;
  font-size: 1.18rem;
  color: var(--text);
}

.nimtt-search-sidebar-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nimtt-search-sidebar-card li + li {
  margin-top: 10px;
}

.nimtt-search-sidebar-card a {
  color: var(--text);
  text-decoration: none;
}

.nimtt-search-sidebar-card a:hover {
  text-decoration: underline;
}

.nimtt-search-form {
  display: grid;
  gap: 12px;
}

.nimtt-search-form input[type="search"] {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(215, 227, 234, 1);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  box-sizing: border-box;
}

.nimtt-search-form input[type="search"]:focus {
  outline: none;
  border-color: rgba(27, 154, 170, 0.55);
  box-shadow: 0 0 0 4px rgba(27, 154, 170, 0.10);
}

.nimtt-search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  background: #e67e22;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(230, 126, 34, 0.20);
}

.nimtt-search-form button:hover {
  background: #cf6d17;
}

.nimtt-search-results-head {
  margin-bottom: 18px;
}

.nimtt-search-count {
  margin: 0;
  font-size: 0.96rem;
  color: var(--muted);
}

.nimtt-search-results-list {
  display: grid;
  gap: 18px;
}

.nimtt-search-result-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.05);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.nimtt-search-result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(15, 76, 129, 0.09);
  border-color: rgba(27, 154, 170, 0.24);
}

.nimtt-search-result-link {
  display: block;
  padding: 24px 24px 22px;
  color: inherit;
  text-decoration: none;
}

.nimtt-search-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.nimtt-search-result-type,
.nimtt-search-result-date {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.nimtt-search-result-type {
  background: rgba(15, 76, 129, 0.08);
  color: var(--text);
}

.nimtt-search-result-date {
  background: rgba(230, 126, 34, 0.10);
  color: #c86412;
}

.nimtt-search-result-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nimtt-search-result-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.nimtt-search-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  width: fit-content;
}

.nimtt-search-pagination {
  margin-top: 28px;
  padding-top: 6px;
}

.nimtt-search-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(215, 227, 234, 1);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.nimtt-search-pagination .page-numbers.current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.nimtt-search-empty {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.05);
}

.nimtt-search-empty h2 {
  margin: 0 0 12px;
  color: var(--text);
}

.nimtt-search-empty p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.nimtt-search-empty-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nimtt-search-empty-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.08);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.nimtt-search-empty-links a:hover {
  background: rgba(15, 76, 129, 0.14);
}

@media (max-width: 1024px) {
  .nimtt-search-layout {
    grid-template-columns: 1fr;
  }

  .nimtt-search-sidebar {
    position: static;
    top: auto;
  }
}

@media (max-width: 760px) {
  .nimtt-search-hero {
    padding: 54px 0 20px;
  }

  .nimtt-search-main {
    padding: 18px 0 64px;
  }

  .nimtt-search-result-link {
    padding: 20px 18px 18px;
  }

  .nimtt-search-result-card h2 {
    font-size: 1.55rem;
  }
}
/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-page {
  background: #f4f7f8;
}
.contact-hero-section {
  padding: 70px 0 56px;
  background: #edf2f4;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 22px;
  align-items: start;
}
.contact-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d9762f;
}
.contact-form-panel {
  background: #fbfbfa;
  border: 1px solid #e1e7ea;
  border-radius: 30px;
  padding: 34px 30px 30px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06);
}
.contact-form-panel h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #12181d;
  max-width: 11ch;
}
.contact-intro {
  margin: 0 0 26px;
  max-width: 58ch;
  color: #56656f;
  line-height: 1.8;
  padding-bottom: 22px;
  border-bottom: 1px solid #d9e2e6;
}
.contact-form {
  display: grid;
  gap: 18px;
}
.contact-form-row {
  display: grid;
  gap: 16px;
}
.contact-form-row-two {
  grid-template-columns: 1fr 1fr;
}
.contact-field {
  display: grid;
  gap: 10px;
}
.contact-field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #18232c;
}
.contact-field input, .contact-field select, .contact-field textarea {
  width: 100%;
  border: 1px solid #e1e7ea;
  background: #f7f8f8;
  color: #1b2730;
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-field textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-field input:focus, .contact-field select:focus, .contact-field textarea:focus {
  border-color: #1b9aaa;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(27, 154, 170, 0.10);
}
.contact-other-subject {
  display: none;
}
.contact-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #56656f;
  line-height: 1.65;
  font-size: 0.95rem;
}
.contact-checkbox input {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.contact-info-column {
  display: grid;
  gap: 22px;
}
.contact-visual-card {
  position: relative;
  min-height: 430px;
  border-radius: 30px;
  overflow: hidden;
  background: #dfe8f9;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.08);
}
.contact-visual-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-visual-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 10%, rgba(126, 172, 239, 0.35) 0, rgba(126, 172, 239, 0.35) 12%, transparent 12%, transparent 19%, rgba(126, 172, 239, 0.28) 19%, rgba(126, 172, 239, 0.28) 26%, transparent 26%, transparent 33%, rgba(126, 172, 239, 0.22) 33%, rgba(126, 172, 239, 0.22) 40%, transparent 40%);
  opacity: 0.95;
}
.contact-info-stack {
  display: grid;
  gap: 16px;
}
.contact-info-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  background: #fbfbfa;
  border: 1px solid #e1e7ea;
  border-radius: 22px;
  padding: 20px 20px;
}
.contact-info-card-soft {
  grid-template-columns: 1fr;
  align-items: start;
  background: #f7f3ec;
}
.contact-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef3f8;
  color: #0f4c81;
  font-size: 1.4rem;
  font-weight: 700;
}
.contact-info-text h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  line-height: 1.15;
  color: #111920;
}
.contact-info-text p {
  margin: 0;
  color: #56656f;
  line-height: 1.7;
}
.contact-info-text a {
  color: #56656f;
}
.contact-info-text a:hover {
  color: #0f4c81;
}
/* MAP */
.contact-map-section {
  padding: 0 0 70px;
  background: #f4f7f8;
}
.contact-map-header {
  margin: 20px 0;
}
.contact-map-header h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
  color: #16324f;
}
.contact-map-header p {
  margin: 0;
  color: #5f7287;
  line-height: 1.8;
}
.contact-map-wrap {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid #d7e3ea;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.08);
  height: 420px;
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-visual-card {
    min-height: 360px;
  }
}
@media (max-width: 720px) {
  .contact-hero-section {
    padding: 56px 0 42px;
  }
  .contact-form-row-two {
    grid-template-columns: 1fr;
  }
  .contact-form-panel {
    padding: 26px 20px 22px;
  }
  .contact-form-panel h1 {
    max-width: none;
  }
  .contact-visual-card {
    min-height: 300px;
  }
  .contact-info-card {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .contact-map-wrap {
    height: 320px;
  }
}

.contact-success-message {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    margin-bottom: 50px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f8fff8 0%, #f3faf3 100%);
    border: 2px solid #5cb85c;
    box-shadow:
        0 12px 30px rgba(0,0,0,0.08),
        0 4px 10px rgba(92,184,92,0.15);
    overflow: hidden;
}

.contact-success-message::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #4caf50, #78d678);
}

.contact-success-icon {
    flex-shrink: 0;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: linear-gradient(135deg, #43a047, #66bb6a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow:
        0 8px 20px rgba(76,175,80,0.35);
}

.contact-success-content {
    position: relative;
    z-index: 2;
}

.contact-success-content h3 {
    margin: 0 0 14px;
    font-size: 2rem;
    line-height: 1.2;
    color: #1d3b1d;
    font-weight: 700;
    max-width: 700px;
}

.contact-success-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4c5b4c;
    max-width: 650px;
}

.contact-success-decoration {
    position: absolute;
    right: 40px;
    bottom: 20px;
    color: rgba(76, 175, 80, 0.08);
    transform: rotate(-12deg);
    pointer-events: none;
    line-height: 1;
}

.contact-success-decoration .material-symbols-outlined {
    font-size: 5rem;
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 48;
}

@media (max-width: 768px) {

    .contact-success-message {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 25px;
    }

    .contact-success-content h3 {
        font-size: 1.6rem;
    }

    .contact-success-content p {
        font-size: 1rem;
    }

    .contact-success-icon {
        width: 80px;
        height: 80px;
    }

    .contact-success-decoration {
        display: none;
    }
}
/* ==========================================
   STUDIO HIRE PAGE
   ========================================== */

.studio-hire-page {
  background: #09070d;
  color: #ffffff;
  overflow: hidden;
}

.studio-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.studio-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #ff7b52;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.studio-kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: #ff5a2f;
}

/* HERO */

.studio-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #070311;
  padding: 70px 0;
}

.studio-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 3, 17, 0.88) 0%,
      rgba(7, 3, 17, 0.70) 42%,
      rgba(7, 3, 17, 0.48) 100%
    ),
    url("images/studio-cinematic.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.studio-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(122, 52, 255, 0.42), transparent 42%),
    radial-gradient(circle at 85% 15%, rgba(255, 90, 47, 0.20), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(35, 114, 255, 0.24), transparent 30%);
  mix-blend-mode: screen;
}

.studio-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 3, 17, 0.94) 0%, transparent 34%);
  pointer-events: none;
}

.studio-hero::before,
.studio-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}

.studio-hero::before {
  width: 420px;
  height: 420px;
  background: #742dff;
  top: -120px;
  left: -80px;
}

.studio-hero::after {
  width: 340px;
  height: 340px;
  background: #ff5a2f;
  bottom: -140px;
  right: -60px;
}

.studio-hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 46px;
  align-items: center;
}

.studio-hero-copy {
  max-width: 680px;
}

.studio-hero-copy h1 {
  margin: 0 0 24px;
  max-width: 13ch;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.studio-hero-copy p {
  max-width: 58ch;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.75;
}



.studio-btn-primary,
.studio-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.studio-btn-primary {
  background: #ff5a2f;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(255, 90, 47, 0.28);
}

.studio-btn-primary:hover {
  transform: translateY(-2px);
  background: #ff7049;
}

.studio-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.studio-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
}

/* HERO GLASS CARD */

.studio-hero-card {
  position: relative;
    padding: 26px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.studio-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 40%);
  pointer-events: none;
}

.studio-hero-card strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.studio-hero-card span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

/* INTRO */

.studio-intro {
  padding: 82px 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(176, 38, 255, 0.18), transparent 28%),
    #09070d;
}

.studio-intro-grid,
.studio-why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.studio-intro h2,
.studio-why h2,
.studio-booking h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.studio-intro p,
.studio-why p,
.studio-booking p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.85;
}

/* USES */

.studio-uses {
  padding: 82px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 90, 47, 0.12), transparent 26%),
    #0f0a16;
}

.studio-section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.studio-section-head h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.studio-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.studio-use-card {
  padding: 26px 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.studio-use-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 47, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
}

.studio-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff5a2f, #ff7b3d);
  font-size: 2rem;
  box-shadow: 0 16px 34px rgba(255, 90, 47, 0.22);
}

.studio-use-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.15;
  color: #ffffff;
}

.studio-use-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* GALLERY */

.studio-gallery {
  padding: 82px 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(255, 90, 47, 0.20), transparent 26%),
    radial-gradient(circle at 84% 20%, rgba(122, 52, 255, 0.18), transparent 26%),
    #09070d;
}

.studio-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 18px;
  align-items: end;
}

.studio-gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 28px;
  border: 3px solid #ff5a2f;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  filter: saturate(1.12) contrast(1.04);
}

.studio-gallery img:first-child {
  height: 460px;
}

/* WHY */

.studio-why {
  padding: 82px 0;
  background:
    radial-gradient(circle at 85% 75%, rgba(35, 114, 255, 0.12), transparent 28%),
    #0f0a16;
}

.studio-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.studio-check-list li {
  position: relative;
  padding: 18px 18px 18px 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  line-height: 1.55;
}

.studio-check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6a35;
  font-weight: 900;
}

/* BOOKING */

.studio-booking {
  padding: 0 0 90px;
  background: #0f0a16;
}

.studio-booking-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 44px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 20%, rgba(176, 38, 255, 0.28), transparent 26%),
    linear-gradient(135deg, rgba(255, 90, 47, 0.22), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .studio-hero-grid,
  .studio-intro-grid,
  .studio-why-grid,
  .studio-booking-box {
    grid-template-columns: 1fr;
  }

  .studio-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-gallery-grid {
    grid-template-columns: 1fr;
  }

  .studio-gallery img,
  .studio-gallery img:first-child {
    height: 340px;
  }

  .studio-hero-card {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .studio-hero {
    min-height: auto;
    padding: 100px 0 86px;
  }

  .studio-hero-copy h1 {
    max-width: none;
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .studio-card-grid {
    grid-template-columns: 1fr;
  }

  .studio-hero-card,
  .studio-booking-box {
    padding: 26px;
  }

  .studio-btn-primary,
  .studio-btn-secondary {
    width: 100%;
  }

  .studio-hero-actions {
    flex-direction: column;
  }
}
/* ==========================================
   TRAINING FOR SCHOOLS PAGE
   ========================================== */
.schools-training-page {
  background: #f4f1ec;
}
/* HERO */
.schools-hero {
  padding: 72px 0 56px;
  background: #f5f2ee;
}
.schools-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
}
.schools-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d4b91;
}
.schools-eyebrow-light {
  color: #dff0ff;
}
.schools-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #16324f;
  max-width: 9ch;
}
.schools-hero-text {
  margin: 0;
  max-width: 58ch;
  color: #5b6670;
  line-height: 1.8;
}
.schools-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.schools-hero-media {
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.08);
}
.schools-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* INTRO */
.schools-intro-section {
  padding: 44px 0 54px;
  background: #f5f2ee;
}
.schools-intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
}
.schools-intro-title h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.14;
  color: #16324f;
}
.schools-intro-copy p {
  margin: 0;
  color: #5d6972;
  line-height: 1.85;
}
/* SECTION HEAD */
.schools-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}
.schools-section-head h2, .schools-section-head-centre h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
  color: #16324f;
}
.schools-section-head-centre {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}
.schools-section-head-centre p {
  margin: 14px auto 0;
  color: #5d6972;
  line-height: 1.8;
  max-width: 64ch;
}
.schools-mini-link {
  color: #0d4b91;
  font-weight: 700;
  white-space: nowrap;
}
/* OFFERS */
.schools-offers-section {
  padding: 58px 0 72px;
  background: #f5f2ee;
}
.schools-offers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.schools-offer-card {
  background: #ffffff;
  border: 1px solid #d7dde2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.03);
}
.schools-offer-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.schools-offer-copy {
  padding: 18px 16px 18px;
}
.schools-offer-copy h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  line-height: 1.2;
  color: #16324f;
}
.schools-offer-copy p {
  margin: 0 0 16px;
  color: #596873;
  line-height: 1.72;
  font-size: 0.96rem;
}
.schools-offer-copy a {
  color: #0d4b91;
  font-weight: 700;
}
/* WHY SECTION */
.schools-why-section {
  padding: 82px 0 70px;
  background: #ece8e1;
}
.schools-why-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.schools-why-card {
  grid-column: span 3;
  background: #d4cdc3;
  border-radius: 12px;
  padding: 26px 22px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.schools-why-card-large {
  grid-column: span 6;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}
.schools-why-card-accent {
  grid-column: span 6;
  background: #1182b0;
  color: #ffffff;
}
.schools-why-card-dark {
  grid-column: span 6;
  background: #0d4b91;
  color: #ffffff;
}
.schools-why-copy {
  padding: 28px 24px 18px;
}
.schools-why-copy h3, .schools-why-card h3 {
  margin: 0 0 12px;
  font-size: 1.58rem;
  line-height: 1.14;
  color: inherit;
}
.schools-why-copy p, .schools-why-card p {
  margin: 0 0 18px;
  line-height: 1.75;
  color: inherit;
}
.schools-why-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.schools-inline-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #0d4b91;
}
.schools-inline-link-light {
  color: #ffffff;
}
.schools-why-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
/* FORMATS */
.schools-formats-section {
  padding: 68px 0;
  background: #f5f2ee;
}
.schools-formats-list {
  border-top: 1px solid #ccd5da;
}
.schools-format-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid #ccd5da;
}
.schools-format-title h3 {
  margin: 0 0 8px;
  font-size: 1.24rem;
  line-height: 1.25;
  color: #16324f;
}
.schools-format-title p {
  margin: 0;
  color: #5a6871;
  line-height: 1.7;
}
.schools-format-meta {
  color: #0d4b91;
  font-weight: 700;
  white-space: nowrap;
}
/* BANNER */
.schools-banner-section {
  padding: 0 0 72px;
  background: #f5f2ee;
}
.schools-banner {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #6f2d74, #9a3e65);
  padding: 42px 36px;
  color: #ffffff;
}
.schools-banner-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  max-width: 14ch;
}
.schools-banner-copy p {
  margin: 0 0 22px;
  max-width: 64ch;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.90);
}
.schools-light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #6f2d74;
  font-weight: 700;
}
/* CTA */
.schools-cta-section {
  padding: 0 0 70px;
  background: #f5f2ee;
}
.schools-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.schools-cta-card {
  min-height: 230px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
}
.schools-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.12;
}
.schools-cta-card p {
  margin: 0 0 22px;
  max-width: 50ch;
  line-height: 1.8;
}
.schools-cta-card-left {
  background: #16324f;
  color: #f3f6fa;
}
.schools-cta-card-right {
  background: #d4cdc3;
  color: #16324f;
}
.schools-cta-card a {
  margin-top: auto;
  align-self: flex-start;
}
/* RESPONSIVE */
@media (max-width: 1180px) {
  .schools-offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .schools-intro-grid, .schools-hero-grid, .schools-cta-grid {
    grid-template-columns: 1fr;
  }
  .schools-why-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .schools-why-card, .schools-why-card-large, .schools-why-card-accent, .schools-why-card-dark {
    grid-column: auto;
  }
}
@media (max-width: 760px) {
  .schools-hero {
    padding: 56px 0 42px;
  }
  .schools-offers-grid {
    grid-template-columns: 1fr;
  }
  .schools-format-row {
    grid-template-columns: 1fr;
  }
  .schools-banner, .schools-cta-card {
    padding: 26px 22px;
  }
  .schools-why-copy {
    padding: 24px 20px 14px;
  }
  .schools-why-image img {
    height: 200px;
  }
}
/* ==========================================
   TRAINING FOR HEALTHCARE PROFESSIONALS PAGE
   ========================================== */
.healthcare-training-page {
  background: #f2f5f6;
}
/* HERO */
.healthcare-hero {
  padding: 72px 0 56px;
  background: #f3f6f7;
}
.healthcare-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
}
.healthcare-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f7e8a;
}
.healthcare-eyebrow-light {
  color: #dbf1f4;
}
.healthcare-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #17324f;
  max-width: 9ch;
}
.healthcare-hero-text {
  margin: 0;
  max-width: 58ch;
  color: #5b6870;
  line-height: 1.8;
}
.healthcare-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.healthcare-hero-media {
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.08);
}
.healthcare-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* INTRO */
.healthcare-intro-section {
  padding: 44px 0 54px;
  background: #f3f6f7;
}
.healthcare-intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
}
.healthcare-intro-title h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.14;
  color: #17324f;
}
.healthcare-intro-copy p {
  margin: 0;
  color: #5d6972;
  line-height: 1.85;
}
/* SECTION HEAD */
.healthcare-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}
.healthcare-section-head h2, .healthcare-section-head-centre h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
  color: #17324f;
}
.healthcare-section-head-centre {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}
.healthcare-section-head-centre p {
  margin: 14px auto 0;
  color: #5d6972;
  line-height: 1.8;
  max-width: 64ch;
}
.healthcare-mini-link {
  color: #1f7e8a;
  font-weight: 700;
  white-space: nowrap;
}
/* OFFERS */
.healthcare-offers-section {
  padding: 58px 0 72px;
  background: #f3f6f7;
}
.healthcare-offers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.healthcare-offer-card {
  background: #ffffff;
  border: 1px solid #d7e1e5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.03);
}
.healthcare-offer-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.healthcare-offer-copy {
  padding: 18px 16px 18px;
}
.healthcare-offer-copy h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  line-height: 1.2;
  color: #17324f;
}
.healthcare-offer-copy p {
  margin: 0 0 16px;
  color: #5b6870;
  line-height: 1.72;
  font-size: 0.96rem;
}
.healthcare-offer-copy a {
  color: #1f7e8a;
  font-weight: 700;
}
/* WHY */
.healthcare-why-section {
  padding: 82px 0 70px;
  background: #e7edee;
}
.healthcare-why-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.healthcare-why-card {
  grid-column: span 3;
  background: #d7dcdb;
  border-radius: 12px;
  padding: 26px 22px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.healthcare-why-card-large {
  grid-column: span 6;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}
.healthcare-why-card-accent {
  grid-column: span 6;
  background: #1f7e8a;
  color: #ffffff;
}
.healthcare-why-card-dark {
  grid-column: span 6;
  background: #17324f;
  color: #ffffff;
}
.healthcare-why-copy {
  padding: 28px 24px 18px;
}
.healthcare-why-copy h3, .healthcare-why-card h3 {
  margin: 0 0 12px;
  font-size: 1.58rem;
  line-height: 1.14;
  color: inherit;
}
.healthcare-why-copy p, .healthcare-why-card p {
  margin: 0 0 18px;
  line-height: 1.75;
  color: inherit;
}
.healthcare-why-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.healthcare-inline-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #1f7e8a;
}
.healthcare-inline-link-light {
  color: #ffffff;
}
.healthcare-why-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
/* FORMATS */
.healthcare-formats-section {
  padding: 68px 0;
  background: #f3f6f7;
}
.healthcare-formats-list {
  border-top: 1px solid #ccd8dd;
}
.healthcare-format-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid #ccd8dd;
}
.healthcare-format-title h3 {
  margin: 0 0 8px;
  font-size: 1.24rem;
  line-height: 1.25;
  color: #17324f;
}
.healthcare-format-title p {
  margin: 0;
  color: #5a6871;
  line-height: 1.7;
}
.healthcare-format-meta {
  color: #1f7e8a;
  font-weight: 700;
  white-space: nowrap;
}
/* BANNER */
.healthcare-banner-section {
  padding: 0 0 72px;
  background: #f3f6f7;
}
.healthcare-banner {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #17324f, #1f7e8a);
  padding: 42px 36px;
  color: #ffffff;
}
.healthcare-banner-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  max-width: 14ch;
}
.healthcare-banner-copy p {
  margin: 0 0 22px;
  max-width: 64ch;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.90);
}
.healthcare-light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #17324f;
  font-weight: 700;
}
/* CTA */
.healthcare-cta-section {
  padding: 0 0 70px;
  background: #f3f6f7;
}
.healthcare-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.healthcare-cta-card {
  min-height: 230px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
}
.healthcare-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.12;
}
.healthcare-cta-card p {
  margin: 0 0 22px;
  max-width: 50ch;
  line-height: 1.8;
}
.healthcare-cta-card-left {
  background: #17324f;
  color: #f3f7f8;
}
.healthcare-cta-card-right {
  background: #d7dcdb;
  color: #17324f;
}
.healthcare-cta-card a {
  margin-top: auto;
  align-self: flex-start;
}
/* RESPONSIVE */
@media (max-width: 1180px) {
  .healthcare-offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .healthcare-intro-grid, .healthcare-hero-grid, .healthcare-cta-grid {
    grid-template-columns: 1fr;
  }
  .healthcare-why-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .healthcare-why-card, .healthcare-why-card-large, .healthcare-why-card-accent, .healthcare-why-card-dark {
    grid-column: auto;
  }
}
@media (max-width: 760px) {
  .healthcare-hero {
    padding: 56px 0 42px;
  }
  .healthcare-offers-grid {
    grid-template-columns: 1fr;
  }
  .healthcare-format-row {
    grid-template-columns: 1fr;
  }
  .healthcare-banner, .healthcare-cta-card {
    padding: 26px 22px;
  }
  .healthcare-why-copy {
    padding: 24px 20px 14px;
  }
  .healthcare-why-image img {
    height: 200px;
  }
}
/* ==========================================
   WORKSHOPS & PROGRAMMES PAGE
   ========================================== */
.workshops-page {
  background: #f5f1eb;
}
/* HERO */
.workshops-hero {
  padding: 76px 0 58px;
  background: #f3efe8;
}
.workshops-hero-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 34px;
  align-items: start;
}
.workshops-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cf6c3a;
}
.workshops-eyebrow-light {
  color: #ffe6d6;
}
.workshops-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #16324f;
  max-width: 8.5ch;
}
.workshops-hero-text {
  margin: 0;
  max-width: 58ch;
  color: #5e686f;
  line-height: 1.8;
}
.workshops-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.workshops-hero-media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}
.workshops-hero-main {
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.08);
}
.workshops-hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.workshops-hero-side {
  display: flex;
  align-items: stretch;
}
.workshops-hero-note {
  width: 100%;
  background: #fff8f2;
  border: 1px solid #ecd9cb;
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}
.workshops-hero-note strong {
  display: block;
  margin-bottom: 10px;
  color: #16324f;
  font-size: 1.08rem;
}
.workshops-hero-note span {
  display: block;
  color: #5e686f;
  line-height: 1.75;
}
/* INTRO BAND */
.workshops-intro-band {
  padding: 54px 0;
  background: #e8dfd4;
}
.workshops-intro-band-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
.workshops-intro-title h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  color: #16324f;
}
.workshops-intro-copy p {
  margin: 0;
  color: #5d676e;
  line-height: 1.85;
}
/* HEADINGS */
.workshops-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}
.workshops-section-head h2, .workshops-section-head-centre h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
  color: #16324f;
}
.workshops-section-head-centre {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}
.workshops-section-head-centre p {
  margin: 14px auto 0;
  color: #5d6972;
  line-height: 1.8;
  max-width: 64ch;
}
.workshops-mini-link {
  color: #cf6c3a;
  font-weight: 700;
  white-space: nowrap;
}
/* PROGRAMMES */
.workshops-programmes-section {
  padding: 68px 0;
  background: #f5f1eb;
}
.workshops-programmes-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.workshops-programme-card {
  grid-column: span 4;
  background: #ffffff;
  border: 1px solid #dfd5cb;
  border-radius: 18px;
  padding: 24px 20px;
  min-height: 240px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.03);
}
.workshops-programme-card-large {
  grid-column: span 6;
  padding: 0;
  overflow: hidden;
}
.workshops-programme-card-accent {
  grid-column: span 6;
  background: #cf6c3a;
  color: #ffffff;
}
.workshops-programme-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}
.workshops-programme-copy {
  padding: 22px 20px 20px;
}
.workshops-programme-copy h3, .workshops-programme-card h3 {
  margin: 0 0 12px;
  font-size: 1.34rem;
  line-height: 1.2;
  color: inherit;
}
.workshops-programme-copy p, .workshops-programme-card p {
  margin: 0 0 16px;
  color: inherit;
  line-height: 1.75;
}
.workshops-programme-copy a {
  color: #cf6c3a;
  font-weight: 700;
}
.workshops-inline-link {
  font-weight: 700;
  color: #cf6c3a;
}
.workshops-inline-link-light {
  color: #ffffff;
}
/* HIGHLIGHTS */
.workshops-highlights-section {
  padding: 74px 0;
  background: #e9dfd5;
}
.workshops-highlights-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.workshops-highlight-card {
  grid-column: span 3;
  min-height: 220px;
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.workshops-highlight-card h3 {
  margin: 0 0 12px;
  font-size: 1.42rem;
  line-height: 1.16;
}
.workshops-highlight-card p {
  margin: 0;
  line-height: 1.78;
}
.workshops-highlight-card-cream {
  background: #f7f1ea;
  color: #16324f;
}
.workshops-highlight-card-blue {
  background: #1182b0;
  color: #ffffff;
}
.workshops-highlight-card-dark {
  background: #16324f;
  color: #ffffff;
}
.workshops-highlight-card-image {
  padding: 0;
  overflow: hidden;
  background: #ddd;
}
.workshops-highlight-card-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}
/* FORMATS */
.workshops-formats-section {
  padding: 68px 0;
  background: #f5f1eb;
}
.workshops-formats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.workshops-format-card {
  background: #ffffff;
  border: 1px solid #dfd5cb;
  border-radius: 16px;
  padding: 26px 22px;
}
.workshops-format-card h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  line-height: 1.22;
  color: #16324f;
}
.workshops-format-card p {
  margin: 0;
  color: #5d6972;
  line-height: 1.72;
}
/* BANNER */
.workshops-banner-section {
  padding: 0 0 72px;
  background: #f5f1eb;
}
.workshops-banner {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #16324f, #cf6c3a);
  padding: 42px 36px;
  color: #ffffff;
}
.workshops-banner-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  max-width: 14ch;
}
.workshops-banner-copy p {
  margin: 0 0 22px;
  max-width: 64ch;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.90);
}
.workshops-light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #16324f;
  font-weight: 700;
}
/* CTA */
.workshops-cta-section {
  padding: 0 0 70px;
  background: #f5f1eb;
}
.workshops-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.workshops-cta-card {
  min-height: 230px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
}
.workshops-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.12;
}
.workshops-cta-card p {
  margin: 0 0 22px;
  max-width: 50ch;
  line-height: 1.8;
}
.workshops-cta-card-left {
  background: #16324f;
  color: #f4f7f8;
}
.workshops-cta-card-right {
  background: #d4cbc1;
  color: #16324f;
}
.workshops-cta-card a {
  margin-top: auto;
  align-self: flex-start;
}
/* RESPONSIVE */
@media (max-width: 1180px) {
  .workshops-hero-grid, .workshops-intro-band-grid, .workshops-cta-grid {
    grid-template-columns: 1fr;
  }
  .workshops-programmes-grid, .workshops-highlights-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .workshops-programme-card, .workshops-programme-card-large, .workshops-programme-card-accent, .workshops-highlight-card {
    grid-column: auto;
  }
  .workshops-formats-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .workshops-hero {
    padding: 56px 0 42px;
  }
  .workshops-hero-media {
    grid-template-columns: 1fr;
  }
  .workshops-banner, .workshops-cta-card {
    padding: 26px 22px;
  }
  .workshops-programme-copy {
    padding: 20px 18px 18px;
  }
}
/* ==========================================
   PROFILE PAGE
   ========================================== */
.profile-page {
  background: #f5f3ef;
}
/* HERO */
.profile-hero {
  padding: 72px 0 64px;
  background: #f5f3ef;
}
.profile-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}
.profile-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ef3f7a;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.profile-hero-copy h1 {
  margin: 24px 0 10px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #111820;
}
.profile-hero-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1.12;
  color: #1a1f24;
}
.profile-lead {
  margin: 0 0 24px;
  max-width: 58ch;
  color: #55616a;
  line-height: 1.8;
  font-size: 1.02rem;
}
.profile-quick-info {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.profile-quick-info li {
  color: #1c242b;
  line-height: 1.7;
}
.profile-quick-info strong {
  color: #111820;
}
.profile-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.profile-socials a {
  font-weight: 700;
  color: #0d4b91;
}
.profile-hero-media {
  display: flex;
  justify-content: center;
}
.profile-photo-ring {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  padding: 20px;
  background: #dcdcdc;
  box-shadow: inset 0 0 0 18px #e6e6e6;
}
.profile-photo-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
/* ABOUT */
.profile-about-section {
  padding: 52px 0 60px;
  background: #f5f3ef;
}
.profile-about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.profile-section-title h2, .profile-section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  color: #111820;
}
.profile-about-copy p {
  margin: 0 0 18px;
  color: #55616a;
  line-height: 1.85;
}
.profile-about-copy p:last-child {
  margin-bottom: 0;
}
/* DETAILS */
.profile-details-section {
  padding: 24px 0 68px;
  background: #f5f3ef;
}
.profile-details-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
}
.profile-card {
  border-radius: 18px;
  padding: 28px 24px;
  min-height: 220px;
}
.profile-card h3 {
  margin: 0 0 14px;
  font-size: 1.4rem;
  line-height: 1.18;
}
.profile-card p {
  margin: 0;
  line-height: 1.78;
}
.profile-card-light {
  background: #ffffff;
  color: #16324f;
  border: 1px solid #ddd7cf;
}
.profile-card-accent {
  background: #1182b0;
  color: #ffffff;
}
.profile-card-dark {
  background: #0d4b91;
  color: #ffffff;
}
/* SPECIALISMS */
.profile-specialisms-section {
  padding: 74px 0;
  background: #ece8e1;
}
.profile-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 26px;
}
.profile-mini-link {
  color: #0d4b91;
  font-weight: 700;
  white-space: nowrap;
}
.profile-specialisms-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.profile-specialism-card {
  background: #d5cec4;
  border-radius: 14px;
  padding: 24px 20px;
  min-height: 200px;
}
.profile-specialism-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #16324f;
}
.profile-specialism-card p {
  margin: 0;
  color: #4f5d67;
  line-height: 1.74;
}
/* PERSONAL */
.profile-personal-section {
  padding: 74px 0;
  background: #f5f3ef;
}
.profile-personal-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.profile-personal-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}
.profile-personal-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.profile-personal-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
  color: #111820;
}
.profile-personal-copy p {
  margin: 0 0 18px;
  color: #55616a;
  line-height: 1.84;
}
.profile-personal-copy p:last-child {
  margin-bottom: 0;
}
/* CONTRIBUTIONS */
.profile-contributions-section {
  padding: 74px 0;
  background: #ece8e1;
}
.profile-contributions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.profile-contribution-card {
  background: #ffffff;
  border: 1px solid #ddd7cf;
  border-radius: 16px;
  padding: 24px 22px;
  min-height: 220px;
}
.profile-contribution-card h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  line-height: 1.24;
  color: #16324f;
}
.profile-contribution-card p {
  margin: 0 0 16px;
  color: #56636d;
  line-height: 1.74;
}
.profile-contribution-card a {
  color: #0d4b91;
  font-weight: 700;
}
/* CTA */
.profile-cta-section {
  padding: 0 0 72px;
  background: #ece8e1;
}
.profile-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.profile-cta-card {
  min-height: 230px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
}
.profile-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.12;
}
.profile-cta-card p {
  margin: 0 0 22px;
  max-width: 50ch;
  line-height: 1.8;
}
.profile-cta-card-left {
  background: #16324f;
  color: #f4f7f8;
}
.profile-cta-card-right {
  background: #d4cbc1;
  color: #16324f;
}
.profile-cta-card a {
  margin-top: auto;
  align-self: flex-start;
}
/* RESPONSIVE */
@media (max-width: 1180px) {
  .profile-hero-grid, .profile-about-grid, .profile-personal-grid, .profile-cta-grid {
    grid-template-columns: 1fr;
  }
  .profile-details-grid, .profile-specialisms-grid, .profile-contributions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .profile-photo-ring {
    width: 340px;
    height: 340px;
  }
}
@media (max-width: 760px) {
  .profile-hero {
    padding: 56px 0 42px;
  }
  .profile-details-grid, .profile-specialisms-grid, .profile-contributions-grid {
    grid-template-columns: 1fr;
  }
  .profile-photo-ring {
    width: 260px;
    height: 260px;
    padding: 14px;
  }
  .profile-personal-image img {
    height: 280px;
  }
  .profile-card, .profile-contribution-card, .profile-cta-card {
    padding: 24px 20px;
  }
}
/* ==========================================
   FORENSIC THERAPY PAGE
   ========================================== */
.forensic-page {
  background: #f1efed;
}
/* HERO */
.forensic-hero {
  padding: 74px 0 58px;
  background: #ece9e6;
}
.forensic-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}
.forensic-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a3d54;
}
.forensic-eyebrow-light {
  color: #f1d8df;
}
.forensic-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #1c2430;
  max-width: 8.5ch;
}
.forensic-hero-text {
  margin: 0;
  max-width: 58ch;
  color: #5f6870;
  line-height: 1.8;
}
.forensic-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.forensic-hero-media {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}
.forensic-hero-image {
  border-radius: 22px;
  overflow: hidden;
  min-height: 430px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}
.forensic-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.forensic-hero-panel {
  background: #2b313c;
  color: #f4f1ee;
  border-radius: 22px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.forensic-hero-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}
.forensic-hero-panel span {
  display: block;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.86);
}
/* OVERVIEW */
.forensic-overview-section {
  padding: 58px 0;
  background: #2b313c;
}
.forensic-overview-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
}
.forensic-overview-title h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  color: #ffffff;
  max-width: 13ch;
}
.forensic-overview-copy p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.84;
}
.forensic-overview-copy p:last-child {
  margin-bottom: 0;
}
/* HEADINGS */
.forensic-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}
.forensic-section-head h2, .forensic-section-head-centre h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
  color: #1c2430;
}
.forensic-section-head-centre {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}
.forensic-section-head-centre p {
  margin: 14px auto 0;
  color: #5d6972;
  line-height: 1.8;
  max-width: 64ch;
}
.forensic-mini-link {
  color: #8a3d54;
  font-weight: 700;
  white-space: nowrap;
}
/* SUPPORT */
.forensic-support-section {
  padding: 68px 0;
  background: #f1efed;
}
.forensic-support-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.forensic-support-card {
  grid-column: span 4;
  background: #ffffff;
  border: 1px solid #ddd6cf;
  border-radius: 18px;
  padding: 24px 20px;
  min-height: 220px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.03);
}
.forensic-support-card-feature {
  grid-column: span 8;
  background: #f7f4f1;
}
.forensic-support-card h3 {
  margin: 0 0 12px;
  font-size: 1.34rem;
  line-height: 1.2;
  color: #1c2430;
}
.forensic-support-card p {
  margin: 0;
  color: #5d6870;
  line-height: 1.76;
}
/* SPLIT */
.forensic-split-section {
  padding: 78px 0;
  background: #e5dfd8;
}
.forensic-split {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 38px;
  align-items: center;
}
.forensic-split-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}
.forensic-split-media img {
  width: 100%;
  display: block;
  min-height: 500px;
  object-fit: cover;
}
.forensic-split-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  color: #1c2430;
}
.forensic-split-copy p {
  margin: 0 0 16px;
  color: #5c666e;
  line-height: 1.82;
}
.forensic-check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.forensic-check-list li {
  position: relative;
  padding-left: 26px;
  color: #3f4a53;
  line-height: 1.74;
  font-weight: 500;
}
.forensic-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8a3d54;
}
/* APPROACH */
.forensic-approach-section {
  padding: 74px 0;
  background: #f7f4f1;
}
.forensic-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.forensic-approach-card {
  background: #ffffff;
  border: 1px solid #ddd6cf;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.03);
}
.forensic-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #8a3d54;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.84rem;
}
.forensic-approach-card h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
  line-height: 1.22;
  color: #1c2430;
}
.forensic-approach-card p {
  margin: 0;
  color: #5d6870;
  line-height: 1.74;
}
/* FEATURE PANEL */
.forensic-feature-section {
  padding: 68px 0;
  background: #2b313c;
}
.forensic-feature-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #2b313c;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}
.forensic-feature-copy {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.forensic-feature-copy h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  max-width: 13ch;
}
.forensic-feature-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.82;
}
.forensic-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.forensic-light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #f1d8df;
  color: #5f2437;
  font-weight: 700;
}
/* RELATED */
.forensic-related-section {
  padding: 68px 0;
  background: #f1efed;
}
.forensic-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.forensic-related-card {
  display: block;
  background: #ffffff;
  border: 1px solid #ddd6cf;
  border-radius: 18px;
  padding: 26px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.forensic-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
  border-color: #c7a8b2;
}
.forensic-related-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.24;
  color: #1c2430;
}
.forensic-related-card p {
  margin: 0;
  color: #5e6971;
  line-height: 1.74;
}
/* CTA */
.forensic-cta-section {
  padding: 0 0 72px;
  background: #f1efed;
}
.forensic-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.forensic-cta-card {
  min-height: 230px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
}
.forensic-cta-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.12;
}
.forensic-cta-card p {
  margin: 0 0 22px;
  max-width: 50ch;
  line-height: 1.8;
}
.forensic-cta-card-left {
  background: #1c2430;
  color: #f4f1ee;
}
.forensic-cta-card-right {
  background: #d8cec5;
  color: #1c2430;
}
.forensic-cta-card a {
  margin-top: auto;
  align-self: flex-start;
}
/* RESPONSIVE */
@media (max-width: 1180px) {
  .forensic-hero-grid, .forensic-overview-grid, .forensic-split, .forensic-feature-panel, .forensic-cta-grid {
    grid-template-columns: 1fr;
  }
  .forensic-support-grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .forensic-support-card, .forensic-support-card-feature {
    grid-column: auto;
  }
  .forensic-approach-grid, .forensic-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .forensic-hero-media {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .forensic-hero {
    padding: 56px 0 42px;
  }
  .forensic-approach-grid, .forensic-related-grid {
    grid-template-columns: 1fr;
  }
  .forensic-split-media img, .forensic-feature-image img {
    min-height: 300px;
  }
  .forensic-feature-copy, .forensic-support-card, .forensic-approach-card, .forensic-related-card, .forensic-cta-card {
    padding: 24px 20px;
  }
}
/* ==========================================
   SINGLE POST PAGE
   ========================================== */
.post-page {
  background: #f7f6f2;
  color: #1f2d3d;
}
.post-hero {
  padding: 88px 0 54px;
  border-bottom: 1px solid rgba(31, 45, 61, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(247, 246, 242, 1) 100%);
}
.post-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 56px;
  align-items: start;
}
.post-hero-main {
  max-width: 760px;
}
.post-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(21, 50, 78, 0.06);
  color: #15324e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.post-title {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(2.8rem, 5vw, 3.3rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
  color: #1d2430;
  font-weight: 500;
}
.post-intro {
  margin-top: 32px;
  max-width: 700px;
}
.post-intro p {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.8;
  color: #506273;
}
.post-meta-panel {
  position: sticky;
  top: 110px;
  align-self: start;
}
.post-meta-block {
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(31, 45, 61, 0.08);
}
.post-meta-block:last-child {
  margin-bottom: 0;
}
.post-meta-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a8694;
}
.post-meta-value {
  display: block;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #23364a;
}
.post-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.post-share-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #15324e;
}
.post-share-links a:hover {
  text-decoration: underline;
}
.post-content-section {
  padding: 72px 0 90px;
  position: relative;
}
.post-content-wrap {
  position: relative;
}
.post-content-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 80px;
  width: 180px;
  height: 360px;
  pointer-events: none;
  border-left: 2px solid rgba(230, 126, 34, 0.75);
  border-bottom: 2px solid rgba(230, 126, 34, 0.75);
  border-bottom-left-radius: 200px;
  opacity: 0.75;
}
.post-article {
  max-width: 760px;
  margin: 0 auto;
}
.post-featured-image {
  margin: 0 0 40px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 76, 129, 0.08);
}
.post-featured-image img {
  display: none;
  width: 100%;
  height: auto;
}
.post-content {
  font-size: 1.02rem;
  line-height: 1.9;
  color: #2e3d4d;
}
.post-content > *:first-child {
  margin-top: 0;
}
.post-content p {
  margin: 0 0 1.45em;
}
.post-content h2, .post-content h3, .post-content h4 {
  margin: 2.2em 0 0.7em;
  color: #1d2430;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.post-content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}
.post-content h3 {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}
.post-content h4 {
  font-size: 1.3rem;
}
.post-content ul, .post-content ol {
  margin: 0 0 1.6em 1.3em;
  padding: 0;
}
.post-content li {
  margin-bottom: 0.7em;
}
.post-content blockquote {
  margin: 2.2em 0;
  padding: 22px 24px;
  border-left: 3px solid #e67e22;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 0 16px 16px 0;
  color: #243547;
  font-size: 1.05rem;
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}
.post-content figure {
  margin: 2em 0;
}
.post-content figcaption {
  margin-top: 10px;
  font-size: 0.88rem;
  color: #708091;
}
.post-content a {
  color: #15324e;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.post-content hr {
  border: 0;
  border-top: 1px solid rgba(31, 45, 61, 0.12);
  margin: 3em 0;
}
.post-bottom {
  padding: 0 0 90px;
}
.post-bottom-inner {
  border-top: 1px solid rgba(31, 45, 61, 0.08);
  padding-top: 42px;
}
.post-bottom-copy {
  max-width: 740px;
  margin-bottom: 26px;
}
.post-bottom-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e67e22;
}
.post-bottom-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #1d2430;
}
.post-bottom-copy p {
  margin: 0;
  color: #607283;
  line-height: 1.8;
}
.post-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.related-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 76, 129, 0.05);
}
.related-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.related-card-image {
  min-height: 190px;
  max-height: 242px;
  overflow: hidden;
  background: #dfe7ec;
}
.related-card-image img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  display: block;
}
.related-card-body {
  padding: 18px 18px 20px;
}
.related-card-body h3 {
  margin: 10px 0 10px;
  font-size: 1.35rem;
  line-height: 1.18;
  color: #18324d;
}
.related-card-body p {
  margin: 0;
  color: #607283;
  line-height: 1.7;
}
@media (max-width: 1100px) {
  .post-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .post-meta-panel {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .post-meta-block {
    margin-bottom: 0;
  }
  .post-content-wrap::before {
    display: none;
  }
  .post-related-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .post-hero {
    padding: 62px 0 36px;
  }
  .post-title {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .post-intro {
    margin-top: 22px;
  }
  .post-meta-panel {
    grid-template-columns: 1fr;
  }
  .post-content-section {
    padding: 42px 0 64px;
  }
  .post-featured-image {
    margin-bottom: 28px;
  }
  .post-content {
    font-size: 0.98rem;
    line-height: 1.82;
  }
}
/* ==========================================
   WOOCOMMERCE SHOP PAGE
   ========================================== */
.shop-page {
  background: #f8fafc;
}
/* hero */
.shop-hero {
  padding: 74px 0 48px;
  background:
    radial-gradient(circle at 85% 20%, rgba(230, 126, 34, 0.16) 0 180px, transparent 181px), radial-gradient(circle at 15% 10%, rgba(15, 76, 129, 0.08) 0 140px, transparent 141px), linear-gradient(180deg, #f7fafc 0%, #f8fafc 100%);
  border-bottom: 1px solid rgba(215, 227, 234, 0.9);
}
.shop-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}
.shop-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.shop-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 12ch;
}
.shop-hero-text {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}
.shop-hero-text p {
  margin: 0;
}
.shop-hero-panel-card {
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.07);
  backdrop-filter: blur(8px);
}
.shop-panel-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e67e22;
}
.shop-hero-panel-card h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.18;
  color: var(--text);
}
.shop-hero-panel-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
/* main area */
.shop-main-section {
  padding: 36px 0 84px;
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(215, 227, 234, 0.95);
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.05);
  backdrop-filter: blur(6px);
}
.shop-toolbar .woocommerce-result-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.shop-toolbar .woocommerce-ordering {
  margin: 0;
}
.shop-toolbar select {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(215, 227, 234, 1);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  font-family: inherit;
  font-size: 0.94rem;
}
/* product grid */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce ul.products::before, .woocommerce ul.products::after {
  display: none !important;
}
.woocommerce ul.products li.product.shop-product-card {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  list-style: none;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.woocommerce ul.products li.product.shop-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(15, 76, 129, 0.10);
  border-color: rgba(27, 154, 170, 0.28);
}
.shop-product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.shop-product-card {
  height: 100%;
}
.shop-product-card:hover img {
  transform: scale(1.04);
}
.shop-product-image-wrap img {
  transition: transform 0.35s ease;
}
.shop-add-to-cart {
  letter-spacing: 0.02em;
  font-weight: 700;
}
.shop-add-to-cart:hover {
  box-shadow: 0 14px 28px rgba(15, 76, 129, 0.25);
}
.shop-product-image-wrap {
  background: #eef3f6;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.shop-product-image-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  margin: 0 !important;
}
.shop-product-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #edf3f6, #dde7ed);
}
.shop-product-body {
  padding: 20px 20px 14px;
}
.shop-product-cats {
  margin-bottom: 10px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
}
.shop-product-cats a {
  color: var(--muted);
  text-decoration: none;
}
.shop-product-cats a:hover {
  text-decoration: underline;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 0 0 12px !important;
  padding: 0 !important;
  font-size: 1.24rem;
  line-height: 1.2;
  color: var(--text);
}
.shop-product-price, .woocommerce ul.products li.product .price {
  margin: 0 !important;
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 1rem !important;
  line-height: 1.5;
}
.shop-product-price del, .woocommerce ul.products li.product .price del {
  opacity: 0.55;
  margin-right: 6px;
}
.shop-product-footer {
  margin-top: auto;
  padding: 0 20px 20px;
}
.shop-add-to-cart, .woocommerce ul.products li.product .button.shop-add-to-cart {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: var(--primary) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.16);
  transition: background 0.2s ease, transform 0.2s ease;
}
.shop-add-to-cart:hover, .woocommerce ul.products li.product .button.shop-add-to-cart:hover {
  background: var(--primary-dark) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}
/* sale badge */
.woocommerce span.onsale {
  top: 14px !important;
  left: 14px !important;
  right: auto !important;
  min-width: auto !important;
  min-height: auto !important;
  padding: 8px 12px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: #e67e22 !important;
  color: #ffffff !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}
/* pagination */
.shop-pagination {
  margin-top: 34px;
}
.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(215, 227, 234, 1);
  color: var(--text);
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}
/* empty state */
.shop-empty-state {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 60px 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 28px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06);
}
.shop-empty-state h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  color: var(--text);
}
.shop-empty-state p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}
/* single product + general woo cleanup */
.woocommerce-breadcrumb, .woocommerce-products-header {
  display: none;
}
/* remove trust box on single product pages */
.single-product .nimtt-product-trust-box {
  display: none !important;
}
/* remove related products section */
.single-product .related, .single-product .related.products, .single-product .up-sells, .single-product .upsells, .single-product .products.related {
  display: none !important;
}
.single-product .woocommerce-tabs, .single-product .woocommerce-tabs.wc-tabs-wrapper {
  margin-bottom: 0 !important;
}
/* responsive */
@media (max-width: 1100px) {
  .shop-hero-grid {
    grid-template-columns: 1fr;
  }
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 760px) {
  .shop-hero {
    padding: 58px 0 36px;
  }
  .shop-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }
  .shop-main-section {
    padding: 26px 0 64px;
  }
}
/* ==========================================
   WOOCOMMERCE SINGLE PRODUCT PAGE
   ========================================== */
.nimtt-product-page {
  background: #f8fafc;
}
.nimtt-product-shell {
  padding: 72px 0 84px;
  background:
    radial-gradient(circle at 88% 12%, rgba(230, 126, 34, 0.12) 0 180px, transparent 181px), radial-gradient(circle at 12% 10%, rgba(15, 76, 129, 0.06) 0 140px, transparent 141px), linear-gradient(180deg, #f7fafc 0%, #f8fafc 100%);
}
.nimtt-product-shell div.product {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(360px, 1fr);
  gap: 36px;
  align-items: start;
}
/* gallery shell */
.nimtt-product-shell div.product .woocommerce-product-gallery {
  margin: 0 !important;
  width: auto !important;
  float: none !important;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  grid-template-areas: "thumbs main";
  gap: 16px;
  align-items: start;
  background: #ffffff;
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.05);
}
/* main image viewport */
.nimtt-product-shell div.product .woocommerce-product-gallery .flex-viewport {
  grid-area: main;
  width: 100%;
  max-width: 520px;
  min-height: 520px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(215, 227, 234, 0.85);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.nimtt-product-shell div.product .woocommerce-product-gallery__wrapper {
  margin: 0 !important;
  padding: 0 !important;
}
.nimtt-product-shell div.product .woocommerce-product-gallery__image {
  margin: 0 !important;
}
.nimtt-product-shell div.product .woocommerce-product-gallery__image a {
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-sizing: border-box;
  background: #ffffff;
}
.nimtt-product-shell div.product .woocommerce-product-gallery__image img {
  width: auto !important;
  max-width: 100% !important;
  max-height: 460px !important;
  height: auto !important;
  object-fit: contain;
  display: block;
  margin: 0 auto !important;
  border-radius: 0;
  box-shadow: none !important;
}
/* thumbnail rail */
.nimtt-product-shell div.product ol.flex-control-nav.flex-control-thumbs {
  grid-area: thumbs;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}
.nimtt-product-shell div.product ol.flex-control-nav.flex-control-thumbs li {
  width: 78px !important;
  margin: 0 !important;
  float: none !important;
  flex: 0 0 auto;
}
.nimtt-product-shell div.product ol.flex-control-nav.flex-control-thumbs img {
  width: 78px !important;
  height: 78px !important;
  object-fit: cover;
  display: block;
  background: #ffffff;
  border: 2px solid rgba(215, 227, 234, 0.95);
  border-radius: 10px;
  padding: 3px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  opacity: 1 !important;
}
.nimtt-product-shell div.product ol.flex-control-nav.flex-control-thumbs img:hover {
  border-color: rgba(230, 126, 34, 0.75);
  transform: translateY(-1px);
}
.nimtt-product-shell div.product ol.flex-control-nav.flex-control-thumbs img.flex-active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(21, 50, 78, 0.10);
}
/* zoom / lightbox trigger */
.nimtt-product-shell div.product .woocommerce-product-gallery__trigger {
  top: 14px !important;
  right: 14px !important;
  z-index: 5;
  background: #ffffff !important;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(15, 76, 129, 0.10);
}
/* summary card */
.nimtt-product-shell div.product .summary {
  margin: 0 !important;
  width: auto !important;
  float: none !important;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 22px;
  padding: 26px 26px 28px;
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.05);
}
.nimtt-product-shell div.product .product_title {
  font-weight: 200;
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 4vw, 2.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
}
.nimtt-product-shell div.product p.price, .nimtt-product-shell div.product span.price {
  margin: 0 0 20px;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.2;
}
.nimtt-product-shell div.product p.price del, .nimtt-product-shell div.product span.price del {
  opacity: 0.55;
  margin-right: 8px;
}
.nimtt-product-shell div.product .woocommerce-product-details__short-description {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}
.nimtt-product-shell form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px !important;
}
.nimtt-product-shell .quantity .qty {
  width: 88px;
  min-height: 48px;
  border: 1px solid rgba(215, 227, 234, 1);
  border-radius: 12px;
  padding: 0 10px;
  background: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
}
.nimtt-product-shell button.single_add_to_cart_button.button {
  min-height: 48px;
  padding: 0 22px !important;
  border-radius: 999px !important;
  background: var(--primary) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.16);
  transition: background 0.2s ease, transform 0.2s ease;
}
.nimtt-product-shell button.single_add_to_cart_button.button:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}
.nimtt-product-shell .product_meta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(215, 227, 234, 0.95);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}
.nimtt-product-shell .product_meta a {
  color: var(--muted);
  text-decoration: none;
}
.nimtt-product-shell .product_meta a:hover {
  text-decoration: underline;
}
.nimtt-product-support-note {
  margin-top: 18px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(230, 126, 34, 0.08);
  border: 1px solid rgba(230, 126, 34, 0.14);
}
.nimtt-product-support-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e67e22;
}
.nimtt-product-support-note p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
}
.nimtt-product-trust-box {
  margin-top: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(15, 76, 129, 0.04);
  border: 1px solid rgba(15, 76, 129, 0.08);
}
.nimtt-product-trust-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nimtt-product-trust-box li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.7;
}
.nimtt-product-trust-box li:last-child {
  margin-bottom: 0;
}
.nimtt-product-trust-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}
/* tabs */
.nimtt-product-shell .woocommerce-tabs {
  margin-top: 42px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 28px;
  padding: 24px 24px 28px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.04);
}
.nimtt-product-shell .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: none !important;
  margin: 0 0 20px !important;
  padding: 0 !important;
}
.nimtt-product-shell .woocommerce-tabs ul.tabs::before {
  display: none !important;
}
.nimtt-product-shell .woocommerce-tabs ul.tabs li {
  border: none !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 999px !important;
}
.nimtt-product-shell .woocommerce-tabs ul.tabs li::before, .nimtt-product-shell .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}
.nimtt-product-shell .woocommerce-tabs ul.tabs li a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px !important;
  line-height: 1 !important;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.06);
  color: var(--text) !important;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
}
.nimtt-product-shell .woocommerce-tabs ul.tabs li {
  display: flex !important;
  align-items: center;
}
.nimtt-product-shell .woocommerce-tabs ul.tabs li.active a {
  background: var(--primary);
  color: #ffffff !important;
}
.nimtt-product-shell .woocommerce-tabs .panel {
  margin: 0 !important;
  color: var(--muted);
  line-height: 1.85;
}
.nimtt-product-shell .woocommerce-tabs h2 {
  margin-top: 0;
  color: var(--text);
}
/* related products */
.nimtt-product-shell .related.products, .nimtt-product-shell .up-sells, .nimtt-product-shell .upsells {
  margin-top: 42px;
}
.nimtt-product-shell .related.products > h2, .nimtt-product-shell .up-sells > h2, .nimtt-product-shell .upsells > h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.03em;
}
.nimtt-product-shell .related.products ul.products, .nimtt-product-shell .up-sells ul.products, .nimtt-product-shell .upsells ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 !important;
  padding: 0 !important;
}
.nimtt-product-shell .related.products ul.products li.product, .nimtt-product-shell .up-sells ul.products li.product, .nimtt-product-shell .upsells ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  list-style: none;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06);
  padding: 0 0 20px;
}
.nimtt-product-shell .related.products ul.products li.product a, .nimtt-product-shell .up-sells ul.products li.product a, .nimtt-product-shell .upsells ul.products li.product a {
  color: inherit;
  text-decoration: none;
}
.nimtt-product-shell .related.products ul.products li.product img, .nimtt-product-shell .up-sells ul.products li.product img, .nimtt-product-shell .upsells ul.products li.product img {
  width: 100% !important;
  margin: 0 0 16px !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.nimtt-product-shell .related.products ul.products li.product .woocommerce-loop-product__title, .nimtt-product-shell .up-sells ul.products li.product .woocommerce-loop-product__title, .nimtt-product-shell .upsells ul.products li.product .woocommerce-loop-product__title {
  padding: 0 18px !important;
  margin: 0 0 10px !important;
  font-size: 1.18rem;
  line-height: 1.2;
}
.nimtt-product-shell .related.products ul.products li.product .price, .nimtt-product-shell .up-sells ul.products li.product .price, .nimtt-product-shell .upsells ul.products li.product .price {
  display: block;
  padding: 0 18px;
  margin: 0 0 16px !important;
  color: var(--primary) !important;
  font-weight: 700;
}
.nimtt-product-shell .related.products ul.products li.product .button, .nimtt-product-shell .up-sells ul.products li.product .button, .nimtt-product-shell .upsells ul.products li.product .button {
  margin: 0 18px !important;
  width: calc(100% - 36px);
  min-height: 44px;
  border-radius: 999px !important;
  background: var(--primary) !important;
  color: #fff !important;
  text-align: center;
  line-height: 44px;
  font-weight: 700;
}
/* sale badge */
.nimtt-product-shell .woocommerce span.onsale {
  top: 14px !important;
  left: 14px !important;
  right: auto !important;
  min-width: auto !important;
  min-height: auto !important;
  padding: 8px 12px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: #e67e22 !important;
  color: #ffffff !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}
@media (max-width: 1100px) {
  .nimtt-product-shell div.product {
    grid-template-columns: 1fr;
  }
  .nimtt-product-shell div.product .woocommerce-product-gallery {
    max-width: 760px;
  }
  .nimtt-product-shell .related.products ul.products, .nimtt-product-shell .up-sells ul.products, .nimtt-product-shell .upsells ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .nimtt-product-shell {
    padding: 52px 0 64px;
  }
  .nimtt-product-shell div.product .woocommerce-product-gallery {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "thumbs";
    padding: 14px;
    border-radius: 18px;
  }
  .nimtt-product-shell div.product .woocommerce-product-gallery .flex-viewport {
    max-width: 100%;
    min-height: 360px;
  }
  .nimtt-product-shell div.product .woocommerce-product-gallery__image a {
    min-height: 360px;
    padding: 14px;
  }
  .nimtt-product-shell div.product .woocommerce-product-gallery__image img {
    max-height: 320px !important;
  }
  .nimtt-product-shell div.product ol.flex-control-nav.flex-control-thumbs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 4px !important;
  }
  .nimtt-product-shell div.product ol.flex-control-nav.flex-control-thumbs li {
    width: 64px !important;
    flex: 0 0 64px;
  }
  .nimtt-product-shell div.product ol.flex-control-nav.flex-control-thumbs img {
    width: 64px !important;
    height: 64px !important;
  }
  .nimtt-product-shell div.product .summary, .nimtt-product-shell .woocommerce-tabs {
    padding: 18px;
    border-radius: 18px;
  }
  .nimtt-product-shell form.cart {
    flex-direction: column;
    align-items: stretch;
  }
  .nimtt-product-shell .quantity .qty, .nimtt-product-shell button.single_add_to_cart_button.button {
    width: 100%;
  }
  .nimtt-product-shell .related.products ul.products, .nimtt-product-shell .up-sells ul.products, .nimtt-product-shell .upsells ul.products {
    grid-template-columns: 1fr;
  }
}
/* single-image product fix */
.nimtt-product-shell div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-1, .nimtt-product-shell div.product .woocommerce-product-gallery:has(.woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:only-child) {
  grid-template-columns: 1fr;
  grid-template-areas: "main";
}
.nimtt-product-shell div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-1 .flex-viewport, .nimtt-product-shell div.product .woocommerce-product-gallery:has(.woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:only-child) .flex-viewport {
  max-width: 100%;
}
.nimtt-product-shell div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-1 ol.flex-control-nav.flex-control-thumbs, .nimtt-product-shell div.product .woocommerce-product-gallery:has(.woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:only-child) ol.flex-control-nav.flex-control-thumbs {
  display: none !important;
}
.nimtt-product-shell div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-1 {
  grid-template-columns: 1fr;
  grid-template-areas: "main";
}
.nimtt-product-shell div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-1 .flex-viewport {
  grid-area: main;
  max-width: 100%;
}
.nimtt-product-shell div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-1 ol.flex-control-nav.flex-control-thumbs {
  display: none !important;
}
/* ==========================================
   WOOCOMMERCE CART BLOCK WIDTH FIX
   ========================================== */
.woocommerce-cart article.page {
  padding: 56px 0 80px;
}
.woocommerce-cart .entry-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.woocommerce-cart .wp-block-woocommerce-cart.alignwide, .woocommerce-cart .wp-block-woocommerce-empty-cart-block {
  max-width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.woocommerce-cart .wc-block-cart, .woocommerce-cart .wc-block-components-sidebar-layout {
  max-width: 100%;
}
/* optional: make the page title line up nicely too */
.woocommerce-cart .entry-title, .woocommerce-cart .post-edit-link {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.woocommerce-cart .entry-title {
  margin-bottom: 10px;
}
.woocommerce-cart .post-edit-link {
  display: none;
}
/* responsive */
@media (max-width: 768px) {
  .woocommerce-cart article.page {
    padding: 40px 0 64px;
  }
  .woocommerce-cart .entry-content, .woocommerce-cart .entry-title, .woocommerce-cart .post-edit-link {
    padding-left: 18px;
    padding-right: 18px;
  }
}
/* ==========================================
   CART BLOCK – PROCEED TO CHECKOUT BUTTON
   ========================================== */
.woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block, .woocommerce-cart .wc-block-cart__submit {
  margin-top: 22px;
}
.woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button, .woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-button, .woocommerce-cart .wc-block-cart__submit .wc-block-components-button, .woocommerce-cart .wc-block-cart__submit-button {
  width: 100% !important;
  min-height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 22px !important;
  border: none !important;
  border-radius: 999px !important;
  background: #e67e22 !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  box-shadow: 0 14px 30px rgba(230, 126, 34, 0.24) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}
.woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button:hover, .woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-button:hover, .woocommerce-cart .wc-block-cart__submit .wc-block-components-button:hover, .woocommerce-cart .wc-block-cart__submit-button:hover {
  background: #cf6d17 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(230, 126, 34, 0.30) !important;
}
.woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button:focus, .woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-cart__submit-button:focus, .woocommerce-cart .wc-block-cart__submit .wc-block-components-button:focus, .woocommerce-cart .wc-block-cart__submit-button:focus {
  outline: none !important;
  box-shadow:
    0 0 0 4px rgba(230, 126, 34, 0.18), 0 14px 30px rgba(230, 126, 34, 0.24) !important;
}
.woocommerce-cart .wc-block-components-button__text {
  width: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: inherit !important;
  font-weight: 700 !important;
  text-align: center !important;
  line-height: 1 !important;
}
/* ==========================================
   WOOCOMMERCE CHECKOUT
   ========================================== */
body.woocommerce-checkout {
  background: #f8fafc;
}
body.woocommerce-checkout article.page {
  padding: 56px 0 84px;
}
body.woocommerce-checkout .post-edit-link {
  display: none;
}
body.woocommerce-checkout .entry-title, body.woocommerce-checkout .entry-content {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}
body.woocommerce-checkout .entry-title {
  margin-bottom: 28px;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--text);
}
/* main checkout layout */
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 380px !important;
  gap: 32px !important;
  align-items: start !important;
}
/* left side */
body.woocommerce-checkout .wc-block-components-main.wc-block-checkout__main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 26px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(215, 227, 234, 0.95) !important;
  border-radius: 24px !important;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06) !important;
}
/* right side */
body.woocommerce-checkout .wc-block-components-sidebar.wc-block-checkout__sidebar.wc-block-woocommerce-checkout-totals-block {
  width: 100% !important;
  max-width: 380px !important;
  margin: 0 !important;
  background: #ffffff !important;
  border: 1px solid rgba(215, 227, 234, 0.95) !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06) !important;
  overflow: hidden !important;
  position: sticky !important;
  top: 132px !important;
  align-self: start !important;
}
/* step cards */
body.woocommerce-checkout .wc-block-components-checkout-step {
  background: #fbfdfe !important;
  border: 1px solid rgba(215, 227, 234, 0.95) !important;
  border-radius: 18px !important;
  padding: 22px !important;
  margin-bottom: 16px !important;
  box-shadow: none !important;
}
body.woocommerce-checkout .wc-block-components-checkout-step:last-child {
  margin-bottom: 0 !important;
}
/* headings */
body.woocommerce-checkout .wc-block-components-title, body.woocommerce-checkout .wc-block-components-checkout-step__heading h2, body.woocommerce-checkout .wc-block-components-checkout-order-summary__title, body.woocommerce-checkout .wc-block-components-order-summary__title {
  color: var(--text) !important;
  font-weight: 700 !important;
}
/* fields */
body.woocommerce-checkout .wc-block-components-text-input input, body.woocommerce-checkout .wc-block-components-text-input textarea, body.woocommerce-checkout .wc-block-components-text-input select, body.woocommerce-checkout .wc-block-components-select select {
  min-height: 54px !important;
  padding: 18px 16px 8px !important;
  border: 1px solid rgba(215, 227, 234, 1) !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input label {
  top: 8px !important;
  left: 16px !important;
  transform: none !important;
  font-size: 0.72rem !important;
  line-height: 1 !important;
}
/* order summary shell */
body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-order-summary, body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-wrapper, body.woocommerce-checkout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-block {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
body.woocommerce-checkout .wc-block-components-checkout-order-summary__title, body.woocommerce-checkout .wc-block-components-order-summary__title {
  margin: 0 !important;
  padding: 18px 18px 14px !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--text) !important;
}
/* product rows */
body.woocommerce-checkout .wc-block-components-order-summary-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  padding: 14px 18px !important;
  border-top: 1px solid rgba(215, 227, 234, 0.95) !important;
}
body.woocommerce-checkout .wc-block-components-order-summary-item__image {
  flex: 0 0 56px !important;
  width: 56px !important;
  min-width: 56px !important;
}
body.woocommerce-checkout .wc-block-components-order-summary-item__image img {
  width: 56px !important;
  height: 56px !important;
  object-fit: cover !important;
  border-radius: 10px !important;
}
body.woocommerce-checkout .wc-block-components-order-summary-item__description {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}
body.woocommerce-checkout .wc-block-components-product-name {
  display: block !important;
  margin: 0 0 4px !important;
  font-size: 0.95rem !important;
  line-height: 1.35 !important;
  color: var(--text) !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}
body.woocommerce-checkout .wc-block-components-product-metadata {
  margin-top: 2px !important;
}
body.woocommerce-checkout .wc-block-components-product-metadata__description {
  display: none !important;
}
body.woocommerce-checkout .wc-block-components-order-summary-item__total-price {
  margin-left: auto !important;
  white-space: nowrap !important;
  font-weight: 600 !important;
  color: var(--text) !important;
}
/* coupon section */
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-coupon-form-block, body.woocommerce-checkout .wc-block-components-totals-coupon.wc-block-components-panel {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  background: #ffffff !important;
  border-top: 1px solid rgba(215, 227, 234, 0.95) !important;
  border-bottom: 1px solid rgba(215, 227, 234, 0.95) !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
/* the actual clickable row */
body.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-panel__button {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 54px !important;
  padding: 16px 46px 16px 18px !important;
  box-sizing: border-box !important;
  background: #ffffff !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--text) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  text-align: left !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
/* keep the icon properly placed */
body.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-panel__button-icon {
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  pointer-events: none !important;
}
/* expanded coupon content */
body.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-panel__content {
  width: 100% !important;
  max-width: 100% !important;
  padding: 14px 18px 18px !important;
  box-sizing: border-box !important;
  border-top: 1px solid rgba(215, 227, 234, 0.65) !important;
  background: #ffffff !important;
}
/* subtotal / total rows */
body.woocommerce-checkout .wc-block-components-totals-item {
  padding: 14px 18px !important;
  border-top: 1px solid rgba(215, 227, 234, 0.95) !important;
}
body.woocommerce-checkout .wc-block-components-totals-footer-item {
  padding: 18px !important;
  border-top: 1px solid rgba(215, 227, 234, 0.95) !important;
}
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label, body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: #e67e22 !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
}
/* return link */
body.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
  display: inline-flex !important;
  margin: 8px 0 16px !important;
  color: #e67e22 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}
/* place order button */
body.woocommerce-checkout .wc-block-checkout__actions_row {
  display: block !important;
}
body.woocommerce-checkout .wc-block-checkout__actions .wc-block-components-button, body.woocommerce-checkout .wc-block-checkout__actions .wc-block-components-checkout-place-order-button {
  width: 100% !important;
  min-height: 56px !important;
  border: none !important;
  border-radius: 999px !important;
  background: #e67e22 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 14px 30px rgba(230, 126, 34, 0.24) !important;
}
body.woocommerce-checkout .wc-block-checkout__actions .wc-block-components-button:hover, body.woocommerce-checkout .wc-block-checkout__actions .wc-block-components-checkout-place-order-button:hover {
  background: #cf6d17 !important;
}
body.woocommerce-checkout .wc-block-components-sidebar.wc-block-checkout__sidebar {
  width: 100% !important;
  max-width: 100% !important;
}
/* ==========================================
   CHECKOUT TOTALS POLISH
   ========================================== */
body.woocommerce-checkout .wc-block-components-totals-wrapper {
  padding: 0 !important;
  background: #ffffff !important;
}
body.woocommerce-checkout .wc-block-components-totals-item {
  padding: 14px 18px !important;
  border-top: 1px solid rgba(215, 227, 234, 0.95) !important;
  background: #ffffff !important;
}
body.woocommerce-checkout .wc-block-components-totals-item__label, body.woocommerce-checkout .wc-block-components-totals-item__value {
  color: var(--text) !important;
  font-size: 0.98rem !important;
  font-weight: 500 !important;
}
/* final total row */
body.woocommerce-checkout .wc-block-components-totals-footer-item {
  padding: 18px !important;
  margin-top: 10px !important;
  border-top: 2px solid rgba(15, 76, 129, 0.12) !important;
  background: rgba(15, 76, 129, 0.03) !important;
}
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  color: var(--text) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: var(--text) !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}
/* mobile */
@media (max-width: 1100px) {
  body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
    grid-template-columns: 1fr !important;
  }
  body.woocommerce-checkout .wc-block-components-sidebar.wc-block-checkout__sidebar.wc-block-woocommerce-checkout-totals-block {
    max-width: 100% !important;
    position: static !important;
    top: auto !important;
  }
}
/* ==========================================
   WOOCOMMERCE MY ACCOUNT
   ========================================== */
body.woocommerce-account {
  background: #f8fafc;
}
/* page shell */
body.woocommerce-account article.page {
  padding: 56px 0 84px;
}
body.woocommerce-account .post-edit-link {
  display: none;
}
body.woocommerce-account article.page > .header, body.woocommerce-account article.page > .entry-content {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
body.woocommerce-account article.page > .header {
  margin-bottom: 28px;
}
body.woocommerce-account .entry-title {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--text);
}
/* actual Woo layout */
body.woocommerce-account .entry-content > .woocommerce {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
/* nav */
body.woocommerce-account .woocommerce-MyAccount-navigation {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  min-width: 0;
}
body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06);
}
body.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}
body.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
body.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: rgba(15, 76, 129, 0.06);
  color: var(--text);
  transform: translateX(2px);
}
body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  background: #e67e22;
  color: #fff;
  box-shadow: 0 10px 24px rgba(230, 126, 34, 0.22);
}
/* content card */
body.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  min-width: 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06);
}
/* dashboard intro text */
body.woocommerce-account .woocommerce-MyAccount-content p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}
body.woocommerce-account .woocommerce-MyAccount-content p:last-child {
  margin-bottom: 0;
}
body.woocommerce-account .woocommerce-MyAccount-content strong, body.woocommerce-account .woocommerce-MyAccount-content b {
  color: var(--text);
}
body.woocommerce-account .woocommerce-MyAccount-content a {
  color: #e67e22;
  text-decoration: none;
  font-weight: 600;
}
body.woocommerce-account .woocommerce-MyAccount-content a:hover {
  text-decoration: underline;
}
/* notices */
body.woocommerce-account .woocommerce-notices-wrapper {
  margin-bottom: 18px;
}
body.woocommerce-account .woocommerce-message, body.woocommerce-account .woocommerce-info, body.woocommerce-account .woocommerce-error {
  margin: 0 0 16px !important;
  padding: 16px 18px !important;
  border-radius: 16px !important;
  box-shadow: none !important;
}
body.woocommerce-account .woocommerce-message {
  background: rgba(37, 173, 96, 0.08) !important;
  border: 1px solid rgba(37, 173, 96, 0.18) !important;
  color: var(--text) !important;
}
body.woocommerce-account .woocommerce-info {
  background: rgba(15, 76, 129, 0.06) !important;
  border: 1px solid rgba(15, 76, 129, 0.12) !important;
  color: var(--text) !important;
}
body.woocommerce-account .woocommerce-error {
  background: rgba(220, 38, 38, 0.06) !important;
  border: 1px solid rgba(220, 38, 38, 0.16) !important;
  color: var(--text) !important;
}
/* buttons */
body.woocommerce-account .button, body.woocommerce-account .woocommerce-button, body.woocommerce-account .woocommerce-Button, body.woocommerce-account button.button, body.woocommerce-account input.button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px !important;
  border: none !important;
  border-radius: 999px !important;
  background: #e67e22 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  box-shadow: 0 12px 26px rgba(230, 126, 34, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}
body.woocommerce-account .button:hover, body.woocommerce-account .woocommerce-button:hover, body.woocommerce-account .woocommerce-Button:hover, body.woocommerce-account button.button:hover, body.woocommerce-account input.button:hover {
  background: #cf6d17 !important;
  transform: translateY(-1px);
}
/* orders table */
body.woocommerce-account table.shop_table, body.woocommerce-account table.woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse !important;
  border-spacing: 0;
  background: #fff;
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 18px;
  overflow: hidden;
}
body.woocommerce-account table.shop_table thead th, body.woocommerce-account table.woocommerce-orders-table thead th {
  padding: 16px 18px;
  background: rgba(15, 76, 129, 0.04);
  border-bottom: 1px solid rgba(215, 227, 234, 0.95);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
body.woocommerce-account table.shop_table tbody td, body.woocommerce-account table.woocommerce-orders-table tbody td {
  padding: 18px;
  border-bottom: 1px solid rgba(215, 227, 234, 0.95);
  color: var(--text);
  vertical-align: middle;
}
body.woocommerce-account table.shop_table tbody tr:last-child td, body.woocommerce-account table.woocommerce-orders-table tbody tr:last-child td {
  border-bottom: none;
}
/* addresses */
body.woocommerce-account .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
body.woocommerce-account .woocommerce-Address {
  margin: 0;
  padding: 22px;
  background: #fbfdfe;
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 18px;
}
body.woocommerce-account .woocommerce-Address-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
body.woocommerce-account .woocommerce-Address-title h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text);
}
body.woocommerce-account address {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-style: normal;
}
/* forms */
body.woocommerce-account .woocommerce form {
  margin: 0;
}
body.woocommerce-account .woocommerce form .form-row {
  margin-bottom: 16px;
}
body.woocommerce-account .woocommerce form label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
}
body.woocommerce-account .woocommerce input[type="text"], body.woocommerce-account .woocommerce input[type="email"], body.woocommerce-account .woocommerce input[type="password"], body.woocommerce-account .woocommerce input[type="tel"], body.woocommerce-account .woocommerce select, body.woocommerce-account .woocommerce textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(215, 227, 234, 1);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  box-shadow: none;
}
body.woocommerce-account .woocommerce textarea {
  min-height: 140px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}
body.woocommerce-account .woocommerce input:focus, body.woocommerce-account .woocommerce select:focus, body.woocommerce-account .woocommerce textarea:focus {
  outline: none;
  border-color: rgba(230, 126, 34, 0.5);
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.08);
}
/* downloads / empty messages */
body.woocommerce-account .woocommerce-Message, body.woocommerce-account .woocommerce-info {
  border-radius: 16px;
}
/* login/register view */
body.woocommerce-account .u-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
body.woocommerce-account .u-column1, body.woocommerce-account .u-column2 {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06);
}
body.woocommerce-account .u-column1 h2, body.woocommerce-account .u-column2 h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.5rem;
}
/* dashboard page specific */
body.woocommerce-account.woocommerce-dashboard .woocommerce-MyAccount-content {
  max-width: 820px;
}
/* responsive */
@media (max-width: 980px) {
  body.woocommerce-account .entry-content > .woocommerce {
    grid-template-columns: 1fr;
  }
  body.woocommerce-account .woocommerce-Addresses, body.woocommerce-account .u-columns {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  body.woocommerce-account article.page {
    padding: 44px 0 64px;
  }
  body.woocommerce-account .woocommerce-MyAccount-content, body.woocommerce-account .woocommerce-MyAccount-navigation ul, body.woocommerce-account .u-column1, body.woocommerce-account .u-column2 {
    padding: 18px;
    border-radius: 18px;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation a {
    min-height: 46px;
    padding: 0 14px;
  }
  body.woocommerce-account table.shop_table thead, body.woocommerce-account table.woocommerce-orders-table thead {
    display: none;
  }
  body.woocommerce-account table.shop_table tbody tr, body.woocommerce-account table.woocommerce-orders-table tbody tr {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(215, 227, 234, 0.95);
  }
  body.woocommerce-account table.shop_table tbody td, body.woocommerce-account table.woocommerce-orders-table tbody td {
    display: block;
    width: 100%;
    padding: 8px 0;
    border: none;
  }
}
/* ==========================================
   MY ACCOUNT – FIX INNER TAB LAYOUTS
   ========================================== */
/* main account content should use full available width */
body.woocommerce-account .woocommerce-MyAccount-content {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}
/* remove the narrow dashboard-only restriction if you still have it */
body.woocommerce-account.woocommerce-dashboard .woocommerce-MyAccount-content {
  max-width: none !important;
}
/* ==========================================
   ORDERS / DOWNLOADS EMPTY STATES
   ========================================== */
body.woocommerce-account .woocommerce-message, body.woocommerce-account .woocommerce-info {
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 !important;
  padding: 22px 24px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(215, 227, 234, 0.95) !important;
  border-radius: 20px !important;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06) !important;
  color: var(--muted) !important;
  line-height: 1.75 !important;
}
body.woocommerce-account .woocommerce-message .button, body.woocommerce-account .woocommerce-info .button {
  margin-top: 14px !important;
}
/* make sure notice text doesn't get squeezed beside the button */
body.woocommerce-account .woocommerce-message, body.woocommerce-account .woocommerce-info {
  display: block !important;
}
body.woocommerce-account .woocommerce-message::after, body.woocommerce-account .woocommerce-info::after {
  content: "";
  display: table;
  clear: both;
}
body.woocommerce-account .woocommerce-message .button, body.woocommerce-account .woocommerce-info .button {
  float: none !important;
  display: inline-flex !important;
}
/* ==========================================
   ADDRESSES PAGE
   ========================================== */
body.woocommerce-account .woocommerce-Addresses {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: 980px !important;
}
body.woocommerce-account .woocommerce-Address {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 26px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(215, 227, 234, 0.95) !important;
  border-radius: 20px !important;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06) !important;
}
body.woocommerce-account .woocommerce-Address-title {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 18px !important;
  margin-bottom: 18px !important;
}
body.woocommerce-account .woocommerce-Address-title h3 {
  margin: 0 !important;
  font-size: 1.45rem !important;
  line-height: 1.2 !important;
  color: var(--text) !important;
}
body.woocommerce-account .woocommerce-Address .edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(230, 126, 34, 0.10);
  color: #e67e22 !important;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
body.woocommerce-account .woocommerce-Address .edit:hover {
  background: #e67e22;
  color: #fff !important;
  text-decoration: none;
}
body.woocommerce-account .woocommerce-Address address, body.woocommerce-account .woocommerce-Address p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-style: normal;
}
/* ==========================================
   ACCOUNT DETAILS FORM
   ========================================== */
body.woocommerce-account .woocommerce-EditAccountForm {
  width: 100% !important;
  max-width: 760px !important;
  padding: 28px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(215, 227, 234, 0.95) !important;
  border-radius: 24px !important;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06) !important;
}
body.woocommerce-account .woocommerce-EditAccountForm fieldset {
  margin: 26px 0 0 !important;
  padding: 22px !important;
  border: 1px solid rgba(215, 227, 234, 0.95) !important;
  border-radius: 18px !important;
  background: #fbfdfe !important;
}
body.woocommerce-account .woocommerce-EditAccountForm fieldset legend {
  padding: 0 8px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}
body.woocommerce-account .woocommerce-EditAccountForm .form-row-first, body.woocommerce-account .woocommerce-EditAccountForm .form-row-last {
  width: calc(50% - 10px) !important;
}
body.woocommerce-account .woocommerce-EditAccountForm .form-row-wide {
  width: 100% !important;
}
body.woocommerce-account .woocommerce-EditAccountForm em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
}
body.woocommerce-account .woocommerce-EditAccountForm button[type="submit"] {
  margin-top: 8px !important;
}
/* ==========================================
   ORDERS TABLE
   ========================================== */
body.woocommerce-account .woocommerce-orders-table, body.woocommerce-account table.shop_table {
  width: 100% !important;
  max-width: 100% !important;
}
/* ==========================================
   BETTER SPACING UNDER TAB NAV
   ========================================== */
body.woocommerce-account .woocommerce-MyAccount-navigation {
  margin-bottom: 20px !important;
}
body.woocommerce-account .woocommerce-MyAccount-content > *:first-child {
  margin-top: 0 !important;
}
body.woocommerce-account .entry-content > .woocommerce {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}
/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 980px) {
  body.woocommerce-account .woocommerce-Addresses {
    grid-template-columns: 1fr !important;
    max-width: none !important;
  }
  body.woocommerce-account .woocommerce-EditAccountForm {
    max-width: none !important;
  }
}
@media (max-width: 760px) {
  body.woocommerce-account .woocommerce-message, body.woocommerce-account .woocommerce-info, body.woocommerce-account .woocommerce-EditAccountForm, body.woocommerce-account .woocommerce-Address {
    padding: 18px !important;
    border-radius: 18px !important;
  }
  body.woocommerce-account .woocommerce-EditAccountForm .form-row-first, body.woocommerce-account .woocommerce-EditAccountForm .form-row-last {
    width: 100% !important;
    float: none !important;
  }
  body.woocommerce-account .woocommerce-Address-title {
    flex-direction: column;
    align-items: flex-start !important;
  }
}
/* ==========================================
   REFUND / RETURNS POLICY PAGE
   ========================================== */
body.page-template-default.page-id-78 {
  background: #f8fafc;
}
body.page-id-78 article.page {
  padding: 56px 0 84px;
}
body.page-id-78 .post-edit-link {
  display: none;
}
body.page-id-78 .entry-header, body.page-id-78 .header, body.page-id-78 > article > .header {
  display: none;
}
body.page-id-78 .entry-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.policy-page {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
}
.policy-hero {
  max-width: 760px;
  margin-bottom: 34px;
}
.policy-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e67e22;
}
.policy-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 4.6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text);
}
.policy-hero p {
  margin: 0;
  max-width: 62ch;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--muted);
}
.policy-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.policy-sidebar {
  position: sticky;
  top: 132px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.policy-sidebar-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06);
}
.policy-sidebar-card h2 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--text);
}
.policy-sidebar-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.policy-sidebar-card ul {
  margin: 0;
  padding-left: 18px;
}
.policy-sidebar-card li {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.6;
}
.policy-sidebar-card--highlight {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(252, 247, 242, 0.95) 100%);
  border-color: rgba(230, 126, 34, 0.22);
}
.policy-contact-link, .policy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  margin-top: 16px;
  border-radius: 999px;
  background: #e67e22;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(230, 126, 34, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.policy-contact-link:hover, .policy-button:hover {
  background: #cf6d17;
  color: #ffffff !important;
  transform: translateY(-1px);
}
.policy-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.policy-section {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(215, 227, 234, 0.95);
  border-radius: 28px;
  padding: 30px 32px;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.06);
}
.policy-section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.1;
  color: var(--text);
}
.policy-section p, .policy-section li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}
.policy-section p {
  margin: 0 0 14px;
}
.policy-section p:last-child {
  margin-bottom: 0;
}
.policy-section ul, .policy-section ol {
  margin: 8px 0 16px 0;
  padding-left: 22px;
}
.policy-section li {
  margin-bottom: 10px;
}
.policy-section--final {
  background:
    radial-gradient(circle at top right, rgba(230, 126, 34, 0.10), transparent 36%), rgba(255, 255, 255, 0.92);
}
.policy-section--final h2 {
  margin-bottom: 12px;
}
@media (max-width: 980px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }
  .policy-sidebar {
    position: static;
    top: auto;
    order: 2;
  }
  .policy-content {
    order: 1;
  }
}
@media (max-width: 760px) {
  body.page-id-78 article.page {
    padding: 42px 0 64px;
  }
  .policy-hero {
    margin-bottom: 24px;
  }
  .policy-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }
  .policy-section, .policy-sidebar-card {
    padding: 22px 20px;
    border-radius: 22px;
  }
}

/* FINAL HOMEPAGE HERO OVERRIDE */

section.hero-homepage-new {
  position: relative;
  overflow: hidden;
  padding: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4, 20, 38, 0.76) 0%,
      rgba(4, 20, 38, 0.62) 24%,
      rgba(4, 20, 38, 0.34) 52%,
      rgba(4, 20, 38, 0.10) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.08) 48%,
      rgba(255,255,255,0.02) 100%
    ),
    url('<?php echo esc_url(get_template_directory_uri() . "/images/mom-plays-with-her-daughter.webp"); ?>');

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-homepage-new .wrap {
  position: relative;
  z-index: 3;
}

.hero-homepage-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 46px;
  align-items: center;
}

.hero-impact-wrap {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-impact-card {
  position: relative;
  width: 360px;
  height: 510px;
  padding: 40px 38px 10px;
  border-radius: 34px;
  overflow: visible;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, #063a62 0%, #082f52 55%, #062642 100%);
  box-shadow: 0 30px 70px rgba(10, 44, 75, 0.28);
  margin-bottom: 26px;
  opacity: 0.8;
}

.hero-impact-card::before {
  display: none;
}


.hero-impact-icon {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0871d, #d95f0e);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-impact-icon .material-symbols-outlined {
  color: #fff;
  font-size: 54px;
}

.hero-impact-card strong,
.hero-impact-card h2,
.hero-impact-card p,
.hero-impact-line,
.hero-impact-hands {
  position: relative;
  z-index: 3;
}

.hero-impact-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(4.4rem, 7vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.hero-impact-card h2 {
  margin: 0;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.hero-impact-line {
  display: block;
  width: 96px;
  height: 3px;
  margin: 24px auto 22px;
  background: #f0871d;
  border-radius: 999px;
}

.hero-impact-card p {
  margin: 0 auto;
  max-width: 27ch;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-impact-hands {
  margin-top: 28px;
}

.hero-impact-hands .material-symbols-outlined {
  font-size: 96px;
  color: #f0871d;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -62px;
	z-index: 4;
  height: 210px;
  z-index: 2;
  pointer-events: none;
}

.hero-homepage-new .wrap {
  position: relative;
  z-index: 5;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-wave path {
  fill: #f8fafc;
}

@media (max-width: 980px) {
  .hero-homepage-grid {
    grid-template-columns: 1fr;
    padding: 70px 0 130px;
  }

  .hero-impact-wrap {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-impact-card {
    width: 100%;
  }
}

.hero-homepage-new .hero-copy h1 {
  color: #ffffff;

  text-shadow:
    0 4px 22px rgba(0,0,0,0.38),
    0 2px 6px rgba(0,0,0,0.28);
}

.hero-homepage-new .hero-copy p {
  color: rgba(255,255,255);

  text-shadow:
    0 2px 10px rgba(0,0,0,0.78);
}

.hero-homepage-new .btn-secondary {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,0.34);
  color: #ffffff;
}

.hero-homepage-new .btn-secondary:hover {
  background: rgba(255,255,255,0.18);
}

#news {
  background: aliceblue;
  margin-top: 0;
  padding-top: 42px;
}

.hero-service-strip {
  position: absolute;
  right: 22px;
  bottom: 27px;
  z-index: 7;

  width: 760px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  padding: 0 5px;
}

.hero-service-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-service-item {
  text-align: center;
  padding: 0 18px;
  border-right: 1px solid rgba(15, 50, 79, 0.14);
}

.hero-service-item:last-child {
  border-right: 0;
}

.hero-service-item .material-symbols-outlined {
  display: block;
  margin-bottom: 10px;
  color: #d95f0e;
  font-size: 36px;
}

.hero-service-item strong {
  display: block;
  color: #16324f;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.hero-service-item p {
  margin: 0;
  color: #4f6074;
  font-size: 0.84rem;
  line-height: 1.35;
}

.hero-bottom-curve {
  position: absolute;
  right: 20px;
  bottom: 41px;
  z-index: 5;
  pointer-events: none;
  line-height: 0;
  overflow: hidden;
  width: 830px;
  height: 180px;
}

.hero-bottom-curve img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (max-width: 1180px) {
  .hero-service-strip {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin: 34px 0 0;
  }
}

@media (max-width: 760px) {
  .hero-service-strip {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-service-item {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 50, 79, 0.12);
    padding-bottom: 18px;
  }

  .hero-service-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

.hero-homepage-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("images/mom-plays-with-her-daughter-home-lessons-musical-instrument-children-s-development-family-values-concept-children-s-friendship-family.webp") center / cover no-repeat;
}

.hero-bottom-curve {
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: 6;
  pointer-events: none;
  line-height: 0;
  overflow: hidden;
  width: 830px;
  height: 180px;
}

.hero-bottom-curve img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-homepage-new h1 {
  margin: 0 0 34px;

  color: #fff;

  font-size: clamp(3.6rem, 7vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.07em;

  text-shadow:
    0 4px 22px rgba(0,0,0,0.88),
    0 2px 6px rgba(0,0,0,0.78);
}

.hero-homepage-new p {
  margin: 0 0 38px;

  max-width: 58ch;

  color: rgba(255,255,255,0.94);

  font-size: 1.34rem;
  line-height: 1.75;

  text-shadow:
    0 2px 10px rgba(0,0,0,0.78);
}

.hero-homepage-new {
  position: relative;
  overflow: hidden;
}

.hero-homepage-new::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.48) 0%,
      rgba(0,0,0,0.56) 24%,
      rgba(0,0,0,0.48) 46%,
      rgba(0,0,0,0.08) 72%,
      rgba(0,0,0,0) 100%
    );

  z-index: 1;
  pointer-events: none;
}

.hero-homepage-new .wrap,
.hero-homepage-new .hero-content,
.hero-homepage-new .hero-copy,
.hero-homepage-new .hero-stat-card {
  position: relative;
  z-index: 2;
}

/* ==========================================
   HOME DONATION SECTION
   ========================================== */

.home-donate-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(230,126,34,0.12), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(27,154,170,0.10), transparent 30%),
    #f8fafc;
}

.home-donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* =========================
   IMAGE AREA
   ========================= */

.home-donate-images {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.home-donate-images::before {
  content: "";
  position: absolute;
  inset: -26px -28px -28px -24px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 82% 18%, rgba(230,126,34,0.13), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,241,225,0.68));
  border: 1px solid rgba(230,126,34,0.12);
  box-shadow: 0 28px 70px rgba(15,76,129,0.08);
  z-index: -2;
}

.home-donate-images::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle at center,
      rgba(230,126,34,0.28) 0 2px,
      transparent 3px 14px
    );
  opacity: 0.45;
  z-index: -1;
}

.home-donate-image {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  background: #eef3f6;
  border: 1px solid rgba(215, 227, 234, 0.95);
  box-shadow: 0 24px 58px rgba(15, 76, 129, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-donate-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 70px rgba(15, 76, 129, 0.18);
}

.home-donate-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-donate-image-main {
  left: 18px;
  top: 22px;
  width: 66%;
  height: 390px;
  transform: rotate(-2deg);
}

.home-donate-image-overlap {
  right: 8px;
  bottom: 26px;
  width: 58%;
  height: 360px;
  border: 8px solid #ffffff;
  transform: rotate(2deg);
}

/* =========================
   TEXT CONTENT
   ========================= */

.home-donate-copy {
  max-width: 640px;
}

.home-donate-copy h2 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.home-donate-copy p {
  margin: 0 0 34px;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.home-donate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 980px) {

  .home-donate-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-donate-images {
    min-height: 520px;
  }

}

@media (max-width: 640px) {

  .home-donate-section {
    padding: 68px 0;
  }

  .home-donate-images {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .home-donate-images::before,
  .home-donate-images::after {
    display: none;
  }

  .home-donate-image {
    position: relative;
    width: 100%;
    height: 300px;
    transform: none !important;
  }

  .home-donate-image-main,
  .home-donate-image-overlap {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 300px;
    border: 0;
  }

}
/* ==========================================
   MOBILE HEADER / NAVIGATION
   ========================================== */

.mobile-nav-toggle,
.mobile-nav-button {
  display: none;
}

@media (max-width: 900px) {

  .site-header {
    position: sticky;
    top: 0;
    z-index: 500;
  }

  .main-header {
    background: #f8fafc;
  }

  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
  }

  .brand img {
    height: 44px;
  }

  .mobile-nav-button {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 999;
  }

  .mobile-nav-button span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 99px;
    transition: 0.2s ease;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100vh;
    overflow-y: auto;

    padding: 96px 22px 30px;

    background: #ffffff;
    box-shadow: -20px 0 50px rgba(15, 76, 129, 0.18);

    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 700;
  }

  .mobile-nav-toggle:checked ~ .site-nav {
    transform: translateX(0);
  }

  .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav ul {
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav a,
  .site-nav summary {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 13px 14px;
    border-radius: 14px;
    background: #f4f8fb;
    color: var(--text);
    font-weight: 700;
  }

  .site-nav details[open] > summary {
    background: #eef6f6;
  }

  .site-nav .caret {
    position: static;
    transform: none;
    opacity: 0.45;
    font-size: 1rem;
  }

  .site-nav details[open] > summary .caret {
    transform: rotate(180deg);
  }

  .site-nav .menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    border-radius: 14px;
    box-shadow: none;
    background: #f8fafc;
  }

  .site-nav .menu ul {
    display: grid;
    gap: 6px;
  }

  .site-nav .menu a {
    background: #ffffff;
    padding: 11px 14px;
    font-weight: 600;
  }

  .utility-bar-inner {
    padding: 12px 20px;
  }

  .utility-left,
  .utility-actions {
    width: 100%;
  }

  .utility-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .utility-icon-link {
    width: 42px;
    height: 42px;
  }
}
.site-nav .primary-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.site-nav .menu-item {
  position: relative;
}

.site-nav .menu-item > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
}

.site-nav .menu-item > a:hover {
  background: var(--surface-soft);
}

.site-nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  z-index: 50;
  list-style: none;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.site-nav .menu-item-has-children:hover > .sub-menu {
  display: block;
}

.site-nav .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.site-nav .sub-menu a:hover {
  background: var(--surface-soft);
}
/* ==========================================
   WORDPRESS MENU - MATCH OLD NAV STYLE
   ========================================== */

.site-nav .primary-menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
}

.site-nav .primary-menu > .menu-item > a {
  position: relative;
  background: transparent;
}

.site-nav .primary-menu > .menu-item > a:hover,
.site-nav .primary-menu > .menu-item:hover > a {
  background: var(--surface-soft);
}

.site-nav .menu-item-has-children > a::after {
  content: "▾";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  opacity: 0.25;
  font-size: 1.4em;
  line-height: 1;
}

.site-nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  z-index: 999;
  list-style: none;
  margin: 0;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.site-nav .menu-item-has-children:hover > .sub-menu {
  display: block;
}

.site-nav .sub-menu li {
  width: 100%;
}

.site-nav .sub-menu a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}

.site-nav .sub-menu a:hover {
  background: var(--surface-soft);
}

/* ==========================================
   MOBILE BURGER MENU - WORDPRESS NAV
   ========================================== */

.mobile-nav-toggle,
.mobile-nav-button {
  display: none;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
  }

  .brand img {
    height: 44px;
  }

  .mobile-nav-button {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }

  .mobile-nav-button span {
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transition: 0.2s ease;
  }

  .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle:checked + .mobile-nav-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 380px);
    height: 100vh;
    overflow-y: auto;

    padding: 94px 20px 32px;

    background: #ffffff;
    box-shadow: -20px 0 50px rgba(15, 76, 129, 0.18);

    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 900;
  }

  .mobile-nav-toggle:checked ~ .site-nav {
    transform: translateX(0);
  }

  .site-nav .primary-menu {
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .site-nav .primary-menu > .menu-item {
    width: 100%;
  }

  .site-nav .primary-menu > .menu-item > a {
    width: 100%;
    min-height: 48px;
    padding: 13px 14px;

    justify-content: space-between;

    border-radius: 14px;
    background: #f4f8fb;

    color: var(--text);
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: normal;
    text-align: left;
  }

  .site-nav .primary-menu > .menu-item > a:hover {
    background: #eef6f6;
  }

  .site-nav .menu-item-has-children > a::after {
    content: "▾";
    position: static;
    transform: none;
    opacity: 0.45;
    font-size: 1rem;
    margin-left: auto;
  }

  .site-nav .sub-menu {
    display: none;
    position: static;

    min-width: 0;
    width: 100%;

    margin: 8px 0 0;
    padding: 8px;

    border: 0;
    border-radius: 14px;
    background: #f8fafc;
    box-shadow: none;
  }

.site-nav .menu-item-has-children > .sub-menu {
  display: none;
}

.site-nav .menu-item-has-children.submenu-open > .sub-menu {
  display: block;
}

  .site-nav .sub-menu a {
    width: 100%;
    min-height: 42px;
    padding: 11px 14px;

    border-radius: 12px;
    background: #ffffff;

    font-size: 0.92rem;
    font-weight: 600;
    white-space: normal;
  }

  .site-nav .sub-menu a:hover {
    background: #eef6f6;
  }
}
/* Force WordPress dropdowns to open by click only */
.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu {
  display: none !important;
}

.site-nav .menu-item-has-children.submenu-open > .sub-menu {
  display: block !important;
}

@media (max-width: 900px) {
  .site-nav .menu-item-has-children.submenu-open > .sub-menu {
    display: grid !important;
    gap: 6px;
  }
}