/* ============================================================
   SHA.CSS — SustainHealth Academy Global Stylesheet
   All brand tokens, typography, shared components
   ============================================================ */

/* ── BRAND FONTS (self-hosted) ──────────────────────────── */
@font-face {
  font-family: 'FKRomanStandard';
  src: url('../fonts/FKRomanStandard.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal oblique 0deg 20deg;
  font-display: swap;
}

@font-face {
  font-family: 'FTRegolaNeue';
  src: url('../fonts/FTRegolaNeue-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── CSS CUSTOM PROPERTIES ──────────────────────────────── */
:root {
  /* Brand colours */
  --wine:      #730D2E;
  --wine-dark: #5a0a24;
  --wine-10:   rgba(115, 13, 46, 0.10);
  --wine-06:   rgba(115, 13, 46, 0.06);
  --peach:     #F5BF91;
  --peach-15:  rgba(245, 191, 145, 0.15);
  --rust:      #C4524A;
  --off-white: #FAF8F5;
  --text:      #730D2E;   /* Wine as body text — SHA brand rule */
  --text-mid:  #4A4A4A;
  --white:     #FFFFFF;
  --border:    #e8e0d8;

  /* Parent brand greens */
  --forest:  #05544A;
  --tea:     #D6E8B0;
  --hunter:  #177A45;

  /* Brand fonts */
  --font-serif: 'FKRomanStandard', 'Playfair Display', Garamond, serif;
  --font-sans:  'FTRegolaNeue', 'DM Sans', system-ui, sans-serif;

  /* Layout */
  --max:    1100px;
  --gutter: 24px;
}

/* ── BASE RESET ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 20px; /* Base: 20px desktop */
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  color: var(--wine);
}

h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }
h4 { font-size: 1rem; }

/* ── LAYOUT HELPERS ─────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── SECTIONS ───────────────────────────────────────────── */
.sec       { padding: 80px var(--gutter); }
.sec-alt   { background: var(--off-white); }
.sec-peach { background: var(--peach-15); }
.sec-wine  { background: var(--wine); color: var(--white); }

@media (max-width: 767px) {
  .sec { padding: 56px var(--gutter); }
}

.sec-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 12px;
  font-family: var(--font-sans);
}

.sec-wine .sec-label { color: var(--peach); }

.sec-hd          { margin-bottom: 48px; }
.sec-hd h2       { color: var(--wine); margin-bottom: 14px; }
.sec-hd p        { color: var(--text-mid); font-size: 1.02rem; max-width: 640px; margin: 0; }
.sec-hd.center   { text-align: center; }
.sec-hd.center p { margin-inline: auto; }

.sec-wine .sec-hd h2 { color: var(--white); }
.sec-wine .sec-hd p  { color: rgba(255, 255, 255, 0.78); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-align: center;
  line-height: 1.3;
  min-height: 48px;
}

/* Primary: wine fill */
.btn-primary,
.btn-wine {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}
.btn-primary:hover,
.btn-wine:hover {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
  transform: translateY(-1px);
}

/* Secondary: wine outline */
.btn-outline {
  background: transparent;
  border-color: var(--wine);
  color: var(--wine);
}
.btn-outline:hover {
  background: var(--wine);
  color: var(--white);
}

/* Accent / urgency: rust */
.btn-accent,
.btn-rust {
  background: var(--rust);
  color: var(--white);
  border-color: var(--rust);
}
.btn-accent:hover,
.btn-rust:hover {
  background: #b04742;
  border-color: #b04742;
  transform: translateY(-1px);
}

/* Peach — hero on dark bg */
.btn-peach {
  background: var(--peach);
  color: var(--wine);
  border-color: var(--peach);
}
.btn-peach:hover {
  background: #f0b07a;
  transform: translateY(-2px);
}

/* Light outline — on wine/dark bg */
.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-outline-light:hover {
  border-color: var(--white);
}

/* Sizes */
.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
  min-height: 40px;
}

/* CTA cluster (flex row of buttons) */
.cta-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-cluster.center {
  justify-content: center;
}

/* Mobile: full-width buttons */
@media (max-width: 480px) {
  .btn { width: 100%; }
  .cta-cluster { flex-direction: column; }
}

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--wine-06);
}

.card-peach {
  background: rgba(245, 191, 145, 0.20);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px var(--wine-06);
}

/* ── SEMINAR CARDS ──────────────────────────────────────── */
.seminar-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--wine-06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.seminar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(115, 13, 46, 0.14);
}

.seminar-card-img {
  overflow: hidden;
  background: var(--wine-dark);
  line-height: 0;
}

.seminar-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.seminar-card-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.seminar-tag {
  display: inline-block;
  background: var(--peach-15);
  color: var(--wine);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  font-family: var(--font-sans);
  border: 1px solid rgba(115, 13, 46, 0.1);
  width: fit-content;
}

.seminar-card h3 {
  font-family: var(--font-serif);
  font-size: 0.97rem;
  color: var(--wine);
  margin-bottom: 5px;
  line-height: 1.3;
}

.seminar-presenter {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 0;
  font-family: var(--font-sans);
}

.seminar-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
  padding-top: 10px;
}

.seminar-meta-item {
  font-size: 0.76rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
}

.seminar-meta-item svg {
  flex-shrink: 0;
  opacity: 0.55;
}

.seminar-cpd {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--rust);
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
}

/* Seminar card button override */
.seminar-card .btn-sm {
  margin-top: 12px;
  border-color: var(--wine);
  color: var(--wine);
  font-size: 0.78rem;
  padding: 7px 16px;
  align-self: flex-start;
  min-height: unset;
}

.seminar-card .btn-sm:hover {
  background: var(--wine);
  color: var(--white);
}

/* Seminar grid */
.seminar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

@media (min-width: 1024px) {
  .seminar-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── TESTIMONIAL CARDS ──────────────────────────────────── */
.testi-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 26px;
  box-shadow: 0 2px 14px var(--wine-06);
  border-left: 4px solid var(--peach);
  display: flex;
  flex-direction: column;
}

.testi-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.97rem;
  color: var(--text);
  margin: 0 0 20px;
  line-height: 1.65;
  flex: 1;
}

.testi-card cite {
  font-style: normal;
  font-size: 0.84rem;
  color: var(--text-mid);
  font-family: var(--font-sans);
  display: block;
}

.testi-card cite strong {
  display: block;
  color: var(--wine);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── PILLAR GRID ────────────────────────────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 32px;
}

@media (min-width: 640px) {
  .pillar-grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar { text-align: center; }

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--wine-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--wine);
}

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--wine);
  margin-bottom: 10px;
}

.pillar p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* ── VIEW ALL ───────────────────────────────────────────── */
.view-all {
  text-align: center;
  margin-top: 44px;
}

.view-all a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--wine);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 2px solid var(--peach);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.view-all a:hover {
  border-color: var(--wine);
}

/* ── LOGOS / PARTNERS SECTION ───────────────────────────── */
.logos-section {
  padding: 64px var(--gutter);
  background: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.logos-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 10px;
  font-family: var(--font-sans);
}

.logos-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 400;
  color: var(--wine);
  margin: 0 0 8px;
}

.logos-sub {
  font-size: 0.92rem;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.65;
  font-family: var(--font-sans);
}

.logos-rule {
  width: 40px;
  height: 2px;
  background: var(--peach);
  margin: 0 auto 36px;
  border: none;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 52px;
  max-width: 920px;
  margin: 0 auto;
}

.logos-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  opacity: 0.82;
  filter: grayscale(100%);
  transition: opacity 0.25s, filter 0.25s;
}

.logos-row a:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.logos-row img {
  height: 64px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.logos-row a.logo-cab img {
  height: auto;
  width: 135px;
  max-width: 135px;
}

.logos-row a.logo-nva img {
  height: 80px;
  max-width: 220px;
}

.logos-divider {
  width: 100%;
  max-width: 480px;
  height: 1px;
  background: var(--border);
  margin: 72px auto;
  border: none;
}

@media (max-width: 600px) {
  .logos-section { padding: 48px var(--gutter); }
  .logos-row { gap: 20px 36px; }
  .logos-row a { height: 48px; }
  .logos-row img { height: 48px; max-width: 130px; }
  .logos-row a.logo-cab img { width: 108px; max-width: 108px; }
  .logos-row a.logo-nva img { height: 60px; max-width: 170px; }
}

/* ── TRUST STRIP ────────────────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px var(--gutter);
}

.trust-inner {
  max-width: var(--max);
  margin-inline: auto;
}

.trust-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .trust-row {
    flex-direction: row;
    text-align: left;
    gap: 32px;
  }
}

.trust-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  white-space: nowrap;
  min-width: 110px;
  flex-shrink: 0;
}

.trust-logos img {
  height: 56px;
  width: auto;
  max-width: 100%;
  display: block;
  opacity: 0.85;
}

/* ── NEWSLETTER ─────────────────────────────────────────── */
.newsletter-inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.newsletter-inner h2 { color: var(--white); margin-bottom: 12px; }

.newsletter-inner .sub {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  font-size: 1.02rem;
}

.newsletter-embed {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

/* ── NEWSLETTER FORM ────────────────────────────────────── */
#sha-nl-form {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--font-sans);
}

#sha-nl-form .nl-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 540px) {
  #sha-nl-form .nl-row { grid-template-columns: 1fr; }
}

#sha-nl-form .nl-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#sha-nl-form label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
}

#sha-nl-form input,
#sha-nl-form select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

#sha-nl-form input::placeholder { color: rgba(255, 255, 255, 0.4); }

#sha-nl-form input:focus,
#sha-nl-form select:focus {
  border-color: var(--peach);
  background: rgba(255, 255, 255, 0.15);
}

#sha-nl-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F5BF91' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

#sha-nl-form select option { color: #1C1C1C; background: #fff; }

#sha-nl-form .nl-full { grid-column: 1 / -1; }
#sha-nl-form .nl-hp   { display: none !important; }

#sha-nl-form .nl-submit {
  margin-top: 16px;
  width: 100%;
  padding: 15px 28px;
  background: var(--peach);
  color: var(--wine);
  border: none;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}

#sha-nl-form .nl-submit:hover   { background: #f0b07a; transform: translateY(-1px); }
#sha-nl-form .nl-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

#sha-nl-msg {
  margin-top: 14px;
  font-size: 0.9rem;
  min-height: 1.4em;
  text-align: center;
  font-family: var(--font-sans);
}

#sha-nl-msg.success { color: var(--peach); }
#sha-nl-msg.error   { color: #f7a5a0; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes sha-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero — fires on load */
.hero-badge   { animation: sha-up 0.65s ease both; animation-delay: 0.08s; }
.hero-text h1 { animation: sha-up 0.7s  ease both; animation-delay: 0.22s; }
.hero-sub     { animation: sha-up 0.7s  ease both; animation-delay: 0.38s; }
.cta-cluster  { animation: sha-up 0.7s  ease both; animation-delay: 0.52s; }

/* Scroll-triggered elements */
.sha-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
}

.sha-animate.sha-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-badge,
  .hero-text h1,
  .hero-sub,
  .cta-cluster { animation: none; }

  .sha-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── NAV ────────────────────────────────────────────────── */
.sha-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--wine);
  color: var(--white);
  transition: box-shadow 0.3s;
}

.sha-nav.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.sha-nav-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.sha-nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
  color: var(--white);
}

.sha-nav-logo .logo-top {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--white);
}

.sha-nav-logo .logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.sha-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sha-nav-links a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  text-decoration: none;
}

.sha-nav-links a:hover { color: var(--peach); }

.sha-nav-links .nav-cta a {
  background: var(--peach);
  color: var(--wine);
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}

.sha-nav-links .nav-cta a:hover {
  background: #f0b07a;
  transform: translateY(-1px);
  color: var(--wine);
}

/* Hamburger */
.sha-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  -webkit-appearance: none;
}

.sha-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

/* Mobile nav drawer */
.sha-nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--wine-dark);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.sha-nav-drawer.open {
  max-height: 400px;
  padding: 12px 0 24px;
}

.sha-nav-drawer a {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 14px var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.sha-nav-drawer a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--peach);
}

.sha-nav-drawer a:last-child { border-bottom: none; }

@media (max-width: 767px) {
  .sha-nav-links  { display: none; }
  .sha-nav-toggle { display: flex; }
  .sha-nav-drawer { display: flex; }
}

/* Hamburger open state */
.sha-nav.nav-open .sha-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.sha-nav.nav-open .sha-nav-toggle span:nth-child(2) {
  opacity: 0;
}
.sha-nav.nav-open .sha-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.sha-footer {
  background: var(--wine);
  color: var(--white);
}

.sha-footer-main {
  max-width: 1200px;
  margin-inline: auto;
  padding: 64px var(--gutter) 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px 40px;
}

@media (max-width: 900px) {
  .sha-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
}

@media (max-width: 560px) {
  .sha-footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px var(--gutter) 36px;
  }
}

/* Footer logo + tagline */
.sha-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sha-footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.sha-footer-logo .logo-top {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
}

.sha-footer-logo .logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.sha-footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--peach);
  margin: 0;
}

.sha-footer-about {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0;
  max-width: 300px;
}

/* Footer nav columns */
.sha-footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peach);
  margin: 0 0 16px;
}

.sha-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sha-footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  text-decoration: none;
}

.sha-footer-col ul a:hover { color: var(--peach); }

/* Social links */
.sha-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.sha-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
}

.sha-footer-social a:hover {
  border-color: var(--peach);
  color: var(--peach);
}

/* Accreditation strip */
.sha-footer-accred {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sha-footer-accred-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 28px var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.sha-footer-accred-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-sans);
}

.sha-footer-accred-list {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-sans);
}

/* Copyright bar */
.sha-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sha-footer-bottom-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 20px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.sha-footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  font-family: var(--font-sans);
}

.sha-footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.sha-footer-bottom a:hover { color: var(--peach); }

/* ── MOBILE BASE FONT SIZE ──────────────────────────────── */
@media (max-width: 480px) {
  html { font-size: 18px; }
  h3   { font-size: 1.2rem; }
}

/* ── SCOPED OVERRIDES FOR .sha-home ────────────────────── */

/* The homepage v5 uses its own CSS custom properties scoped to .sha-home.
   These overrides ensure that section backgrounds and text inside .sha-home
   follow the same conventions without conflicting with the global rules above. */

.sha-home {
  --font-serif: 'FKRomanStandard', 'Playfair Display', Garamond, serif;
  --font-sans:  'FTRegolaNeue', 'DM Sans', system-ui, sans-serif;
  --text: #730D2E;
  font-size: 1rem;
}
