/* =====================================================================
   Gambling Recovery Therapy
   v2: single typeface, card-based paths, carousel testimonials
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --slate-dark: #35444F;
  --slate: #4A5C6B;
  --slate-soft: #6B7C8A;
  --gold: #B8A87A;
  --gold-deep: #9C8E63;
  --cream: #F5F2EC;
  --cream-warm: #EDE7DA;
  --cream-deep: #E2DBC9;
  --terracotta: #A0524A;
  --terracotta-deep: #88433C;
  --line: rgba(53, 68, 79, 0.10);
  --line-strong: rgba(53, 68, 79, 0.20);

  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 5.5rem;
  --s-10: 7rem;

  --container: 1320px;
  --container-tight: 980px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --shadow-soft: 0 1px 2px rgba(53, 68, 79, 0.04), 0 8px 24px -10px rgba(53, 68, 79, 0.10);
  --shadow-lift: 0 1px 3px rgba(53, 68, 79, 0.06), 0 20px 40px -14px rgba(53, 68, 79, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 8px;
  --radius-sm: 4px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- Base ---------- */
body {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--slate-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern", "liga";
}

::selection { background: var(--gold); color: var(--slate-dark); }

/* ---------- Containers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-tight { max-width: var(--container-tight); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--slate-dark);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.display {
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--slate-dark);
}
.display .accent {
  font-weight: 200;
  font-style: italic;
  color: var(--gold-deep);
  letter-spacing: -0.03em;
}

.h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.h2 em, .h2 .em {
  font-weight: 200;
  font-style: italic;
  color: var(--gold-deep);
}

.h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--gold-deep);
  display: inline-block;
}

.eyebrow-num {
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--gold-deep);
  letter-spacing: 0;
}

.lede {
  font-size: clamp(1.1rem, 1.55vw, 1.3rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--slate);
  letter-spacing: -0.005em;
}

p { color: var(--slate); }
p + p { margin-top: var(--s-4); }

em, .italic { font-style: italic; font-weight: 300; }

/* ---------- Links ---------- */
.link {
  position: relative;
  color: var(--slate-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding-bottom: 2px;
  display: inline-block;
}
.link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.5s var(--ease);
}
.link:hover::after { right: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn .arrow { display: inline-block; transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--slate-dark);
  color: var(--cream);
  border-color: var(--slate-dark);
}
.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.btn-gold {
  background: var(--gold);
  color: var(--slate-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--cream);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--slate-dark);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--slate-dark);
  color: var(--cream);
  border-color: var(--slate-dark);
}

.btn-terracotta {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}
.btn-terracotta:hover {
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
}

.btn-sm { padding: 0.7rem 1.3rem; font-size: 0.86rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 242, 236, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: var(--s-6);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}
.brand-mark {
  width: clamp(118px, 12vw, 172px);
  height: 54px;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  display: grid;
  place-items: center;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.brand-name .light { font-weight: 300; font-style: italic; color: var(--slate); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-7);
  font-size: 0.93rem;
  font-weight: 400;
}
.nav-links a {
  color: var(--slate);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--slate-dark); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
}

.nav-cta { display: inline-flex; align-items: center; gap: var(--s-3); }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.menu-btn span {
  width: 22px;
  height: 1px;
  background: var(--slate-dark);
  position: relative;
  transition: background 0.2s var(--ease);
}
.menu-btn span::before, .menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1px;
  background: var(--slate-dark);
  transition: transform 0.3s var(--ease);
}
.menu-btn span::before { top: -7px; }
.menu-btn span::after { top: 7px; }
.menu-btn[aria-expanded="true"] span { background: transparent; }
.menu-btn[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .menu-btn { display: inline-flex; }
  .nav-links {
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: var(--s-4) var(--gutter) var(--s-6);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
  }
  .nav-links a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-cta .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.hero h1 { margin-bottom: var(--s-6); }
.hero-lede { max-width: 32em; margin-bottom: var(--s-7); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-5);
}
.hero-trust {
  margin-top: var(--s-6);
  display: flex;
  align-items: center;
  gap: var(--s-4);
  color: var(--slate-soft);
  font-size: 0.85rem;
}
.hero-trust .rule { width: 38px; height: 1px; background: var(--line-strong); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-warm);
  box-shadow: var(--shadow-lift);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(0.95);
  transition: transform 1.6s var(--ease);
}
.hero-visual:hover img { transform: scale(1.04); }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(53, 68, 79, 0.40));
  pointer-events: none;
}
.hero-caption {
  position: absolute;
  bottom: var(--s-5);
  left: var(--s-5);
  right: var(--s-5);
  color: var(--cream);
  font-size: 0.86rem;
  font-style: italic;
  font-weight: 300;
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
}
.hero-caption::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .hero-visual { aspect-ratio: 4/3; max-height: 60vh; }
}

/* ---------- Section utilities ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-tight { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.section-warm { background: var(--cream-warm); }
.section-dark { background: var(--slate-dark); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark p { color: rgba(245, 242, 236, 0.78); }
.section-dark .eyebrow { color: var(--gold); }

.section-intro {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-intro .eyebrow { margin-bottom: var(--s-4); }
.section-intro .lede { margin-top: var(--s-5); max-width: 36em; }

/* ---------- Path cards ---------- */
.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.path-card {
  position: relative;
  background: var(--cream-warm);
  border-radius: var(--radius);
  padding: clamp(2rem, 3.5vw, 3rem);
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.path-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transition: height 0.4s var(--ease);
}
.path-card:hover::before { height: 5px; }
.path-card--gold::before { background: var(--gold); }
.path-card--terracotta::before { background: var(--terracotta); }

.path-meta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.path-meta .eyebrow-num { font-size: 1.05rem; color: var(--gold-deep); }
.path-card--terracotta .path-meta .eyebrow-num { color: var(--terracotta); }
.path-card--terracotta .eyebrow { color: var(--terracotta-deep); }

.path-card h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 400;
  margin-bottom: var(--s-4);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.path-card p {
  margin-bottom: var(--s-6);
  flex: 1;
  max-width: 38em;
}
.path-card .btn { align-self: flex-start; }

.path-corner {
  position: absolute;
  top: var(--s-5);
  right: var(--s-5);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--slate);
  transition: all 0.4s var(--ease);
}
.path-card--gold:hover .path-corner {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--slate-dark);
  transform: rotate(-45deg);
}
.path-card--terracotta:hover .path-corner {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
  transform: rotate(-45deg);
}

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

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.pillar { padding: var(--s-7) var(--s-5) var(--s-7) 0; position: relative; }
.pillar + .pillar { border-left: 1px solid var(--line); padding-left: var(--s-5); }
.pillar .num {
  font-style: italic;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--gold-deep);
  margin-bottom: var(--s-5);
  display: block;
}
.pillar h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: var(--s-3);
  letter-spacing: -0.015em;
}
.pillar p { font-size: 0.94rem; line-height: 1.55; }

@media (max-width: 880px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(3) { border-left: 0; padding-left: 0; }
  .pillar:nth-child(3), .pillar:nth-child(4) { border-top: 1px solid var(--line); padding-top: var(--s-7); }
}
@media (max-width: 540px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { padding: var(--s-6) 0 !important; border-left: 0 !important; }
  .pillar + .pillar { border-top: 1px solid var(--line); }
}

/* ---------- Testimonial carousel ---------- */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.7s var(--ease);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding-right: 1px;
}
.carousel-slide blockquote {
  font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 2.05rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 30em;
}
.carousel-slide blockquote .quote-mark {
  font-style: italic;
  color: var(--gold);
  margin-right: var(--s-2);
  font-size: 1.4em;
  line-height: 0;
  position: relative;
  top: 0.18em;
  font-weight: 200;
}
.carousel-slide cite {
  display: block;
  margin-top: var(--s-6);
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(245, 242, 236, 0.70);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(245, 242, 236, 0.12);
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245, 242, 236, 0.20);
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--slate-dark);
}
.carousel-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.carousel-dots {
  display: flex;
  gap: var(--s-3);
  flex: 1;
  align-items: center;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 242, 236, 0.22);
  transition: all 0.4s var(--ease);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.carousel-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
}
.carousel-counter {
  font-size: 0.82rem;
  color: rgba(245, 242, 236, 0.55);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.carousel-counter .total { color: rgba(245, 242, 236, 0.30); }

@media (max-width: 540px) {
  .carousel-controls { gap: var(--s-3); }
  .carousel-counter { display: none; }
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-7);
}
.testimonial-head .rule { width: 32px; height: 1px; background: var(--gold); }

/* ---------- CTA strip ---------- */
.cta-strip {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.cta-strip-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.cta-strip h2 { margin-bottom: var(--s-4); }
.cta-strip .lede { max-width: 28em; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-6);
}
.cta-meta {
  font-size: 0.85rem;
  color: var(--slate-soft);
  margin-top: var(--s-5);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.cta-meta::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.cta-aside {
  border-left: 1px solid var(--line);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.5;
  color: var(--slate);
}
.cta-aside strong {
  font-style: normal;
  font-weight: 500;
  color: var(--slate-dark);
}
@media (max-width: 720px) {
  .cta-strip-grid { grid-template-columns: 1fr; }
  .cta-aside { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: var(--s-5); }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--slate-dark);
  color: rgba(245, 242, 236, 0.7);
  padding: clamp(3rem, 6vw, 5rem) 0 var(--s-6);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: var(--s-8);
}
.footer-brand {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--s-4);
}
.footer-brand .light { font-weight: 300; font-style: italic; color: var(--gold); }
.footer-col h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--s-5);
}
.footer-col ul li { margin-bottom: var(--s-3); }
.footer-col a { font-size: 0.93rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--cream); }

.footer-trust {
  border-top: 1px solid rgba(245, 242, 236, 0.10);
  border-bottom: 1px solid rgba(245, 242, 236, 0.10);
  padding: var(--s-6) 0;
  margin-bottom: var(--s-6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}
.footer-trust-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}
.footer-trust-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.footer-trust-grid img {
  max-height: 44px;
  width: auto;
  filter: grayscale(1) brightness(2);
  opacity: 0.55;
  transition: opacity 0.4s var(--ease);
}
.footer-trust-grid img:hover { opacity: 0.95; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-6);
  border-top: 1px solid rgba(245, 242, 236, 0.10);
  font-size: 0.82rem;
  color: rgba(245, 242, 236, 0.5);
  flex-wrap: wrap;
  gap: var(--s-4);
}
.footer-bottom a { color: rgba(245, 242, 236, 0.7); }
.footer-bottom a:hover { color: var(--cream); }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-trust { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.page-hero .eyebrow { margin-bottom: var(--s-4); }
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.035em;
  max-width: 16ch;
  margin-bottom: var(--s-5);
}
.page-hero h1 .accent {
  font-weight: 200;
  font-style: italic;
  color: var(--gold-deep);
}
.page-hero .lede { max-width: 36em; }
.page-hero-actions {
  margin-top: var(--s-7);
  display: flex; gap: var(--s-5); flex-wrap: wrap; align-items: center;
}
.page-hero-aside {
  border-left: 1px solid var(--line);
  padding-left: clamp(1.25rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.5;
}
@media (max-width: 880px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-aside { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: var(--s-5); }
}

/* ---------- Process steps ---------- */
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: auto 1fr 2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: padding 0.4s var(--ease);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step:hover { padding-left: var(--s-3); }
.step .step-num {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--gold-deep);
  letter-spacing: -0.02em;
  line-height: 1;
  min-width: 3ch;
}
.step h4 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.step p { font-size: 1rem; line-height: 1.6; }
@media (max-width: 720px) {
  .step { grid-template-columns: auto 1fr; gap: var(--s-4); }
  .step h4 { grid-column: 2; }
  .step p { grid-column: 1 / -1; margin-top: var(--s-3); }
}

/* ---------- Service / techniques grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.service-item {
  padding: var(--s-7) var(--s-5) var(--s-7) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.service-item + .service-item { padding-left: var(--s-5); }
.service-item:nth-child(3n+2), .service-item:nth-child(3n) { border-left: 1px solid var(--line); }
.service-item .service-num {
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--gold-deep);
  margin-bottom: var(--s-4);
  display: block;
  letter-spacing: 0.04em;
}
.service-item h4 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: var(--s-3);
  letter-spacing: -0.015em;
}
.service-item p { font-size: 0.94rem; line-height: 1.55; }
@media (max-width: 720px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-item { padding: var(--s-6) var(--s-4) var(--s-6) 0 !important; }
  .service-item:nth-child(odd) { border-left: 0 !important; }
  .service-item:nth-child(even) { border-left: 1px solid var(--line) !important; padding-left: var(--s-4) !important; }
}
@media (max-width: 480px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-item { padding: var(--s-5) 0 !important; border-left: 0 !important; }
}

/* ---------- Empathy list (Affected Other "What we hear most") ---------- */
.empathy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.empathy-item {
  padding: var(--s-6) var(--s-5) var(--s-6) 0;
  border-top: 1px solid var(--line);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: var(--slate-dark);
  line-height: 1.4;
  letter-spacing: -0.015em;
  display: flex;
  align-items: baseline;
  gap: var(--s-4);
}
.empathy-item::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  align-self: center;
}
.empathy-item:nth-child(even) { border-left: 1px solid var(--line); padding-left: var(--s-5); }
.empathy-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
@media (max-width: 720px) {
  .empathy { grid-template-columns: 1fr; }
  .empathy-item:nth-child(even) { border-left: 0; padding-left: 0; }
  .empathy-item:nth-last-child(-n+2):not(:last-child) { border-bottom: 0; }
}

/* ---------- Bullet list with brand styling ---------- */
.brand-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3) var(--s-7);
  padding-top: var(--s-5);
}
.brand-list li {
  position: relative;
  padding-left: var(--s-6);
  line-height: 1.55;
  color: var(--slate);
}
.brand-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 18px;
  height: 1px;
  background: var(--gold);
}
@media (max-width: 600px) {
  .brand-list { grid-template-columns: 1fr; }
}

/* ---------- Programme highlight (CIC Rebuild & Rise) ---------- */
.programme {
  background: var(--cream-warm);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.programme::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.programme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.programme h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-5);
  line-height: 1.1;
}
.programme h3 em {
  font-weight: 200;
  color: var(--gold-deep);
}
.programme-list { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-5); }
.programme-list li {
  position: relative;
  padding-left: var(--s-6);
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--slate);
}
.programme-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 16px; height: 1px;
  background: var(--gold);
}
.programme-actions { margin-top: var(--s-6); display: flex; gap: var(--s-4); flex-wrap: wrap; }
@media (max-width: 720px) {
  .programme-grid { grid-template-columns: 1fr; }
}

/* ---------- Help cards (Affected Other 3 paths) ---------- */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.help-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s var(--ease);
}
.help-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.help-card .help-num {
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--gold-deep);
  margin-bottom: var(--s-5);
  display: block;
}
.help-card h4 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: var(--s-4);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.help-card p { font-size: 0.96rem; line-height: 1.55; flex: 1; margin-bottom: var(--s-5); }
.help-card .link { align-self: flex-start; }
@media (max-width: 880px) {
  .help-grid { grid-template-columns: 1fr; }
}


/* ---------- About team photo ---------- */
.about-team-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.about-team-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-warm);
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--line);
}
.about-team-image img {
  width: 100%;
  height: min(72vh, 760px);
  object-fit: cover;
  object-position: center top;
}
.about-team-copy {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--s-7) 0;
}
.about-team-copy .lede { margin-top: var(--s-4); }
.team-photo { border-style: solid; }
.team-photo--lorraine img { object-position: 29% 45%; }
.team-photo--claire img { object-position: 76% 47%; }
@media (max-width: 880px) {
  .about-team-feature { grid-template-columns: 1fr; }
  .about-team-image img { height: auto; }
}
@media (max-width: 540px) {
  .brand-mark { width: 112px; height: 42px; }
}

/* ---------- Team member cards (About) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
.team-card {
  display: flex;
  flex-direction: column;
}
.team-photo {
  aspect-ratio: 4/5;
  background: var(--cream-warm);
  border-radius: var(--radius);
  margin-bottom: var(--s-6);
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--slate-soft);
  font-size: 0.85rem;
  font-style: italic;
  border: 1px dashed var(--line-strong);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-2);
  line-height: 1.1;
}
.team-card .team-role {
  font-size: 0.9rem;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  margin-bottom: var(--s-5);
  display: block;
}
.team-card p { margin-bottom: var(--s-4); }
.team-card .team-bullets {
  margin-top: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.team-card .team-bullets li {
  position: relative;
  padding-left: var(--s-5);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--slate);
}
.team-card .team-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 12px; height: 1px;
  background: var(--gold);
}
@media (max-width: 720px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.form { display: flex; flex-direction: column; gap: var(--s-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
.form-field { display: flex; flex-direction: column; gap: var(--s-2); }
.form-field label {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate);
}
.form-field input, .form-field textarea, .form-field select {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  color: var(--slate-dark);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: var(--s-3) 0;
  transition: border-color 0.3s var(--ease);
  outline: none;
  width: 100%;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1L6 6L11 1' stroke='%234A5C6B' stroke-width='1.2' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 24px;
}
.form-field textarea { resize: vertical; min-height: 7rem; line-height: 1.5; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-bottom-color: var(--gold-deep);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--slate-soft); }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.5;
  cursor: pointer;
}
.form-checkbox input {
  appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
  position: relative;
}
.form-checkbox input:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.form-checkbox input:checked::after {
  content: "";
  position: absolute;
  top: 2px; left: 5px;
  width: 5px; height: 9px;
  border: solid var(--slate-dark);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.form-actions { margin-top: var(--s-3); display: flex; flex-wrap: wrap; gap: var(--s-4); align-items: center; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; }

.contact-aside {
  background: var(--cream-warm);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
}
.contact-aside h4 {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  margin-bottom: var(--s-4);
}
.contact-aside-block + .contact-aside-block {
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--line);
}
.contact-aside p { font-size: 0.95rem; line-height: 1.55; }
.contact-aside a.link { font-size: 1rem; }
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Blog cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  text-decoration: none;
  group: blog;
}
.blog-card .blog-cover {
  aspect-ratio: 4/3;
  background: var(--cream-warm);
  border-radius: var(--radius);
  margin-bottom: var(--s-5);
  overflow: hidden;
  position: relative;
}
.blog-card .blog-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.blog-card:hover .blog-cover img { transform: scale(1.04); }
.blog-card .blog-meta {
  display: flex; gap: var(--s-3); align-items: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: var(--s-3);
}
.blog-card .blog-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold-deep); display: inline-block; }
.blog-card h3 {
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--s-3);
}
.blog-card:hover h3 { color: var(--gold-deep); transition: color 0.3s var(--ease); }
.blog-card p { font-size: 0.95rem; line-height: 1.55; }
@media (max-width: 880px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---------- 404 ---------- */
.notfound {
  min-height: calc(100vh - 200px);
  display: grid;
  place-items: center;
  padding: var(--s-9) var(--gutter);
  text-align: center;
}
.notfound .display { margin-bottom: var(--s-5); max-width: 14ch; margin-inline: auto; }
.notfound .lede { max-width: 32em; margin: 0 auto var(--s-7); }
.notfound .quick-links {
  display: flex; gap: var(--s-5); justify-content: center; flex-wrap: wrap;
  padding-top: var(--s-7);
  margin-top: var(--s-7);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}
.notfound .quick-links a { color: var(--slate); transition: color 0.3s var(--ease); }
.notfound .quick-links a:hover { color: var(--slate-dark); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(14px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  .carousel-track { transition: none !important; }
}


/* =====================================================================
   v5 polish: fixed premium top bar, protected logo sizing, richer imagery
   ===================================================================== */
:root {
  --navy-ink: #071321;
  --navy-panel: #0D1A2B;
  --gold-bright: #C9B176;
}

body {
  padding-top: 96px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  background: linear-gradient(135deg, rgba(7,19,33,0.98), rgba(13,26,43,0.96));
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid rgba(201,177,118,0.24);
  box-shadow: 0 18px 55px rgba(7,19,33,0.24);
}

.site-header.scrolled {
  border-bottom-color: rgba(201,177,118,0.34);
}

.site-header .nav {
  min-height: 96px;
  padding: 0;
}

.site-header .brand {
  flex: 0 0 auto;
  min-width: 0;
}

.site-header .brand-mark {
  width: clamp(128px, 12vw, 172px) !important;
  height: 72px !important;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  display: grid;
  place-items: center;
}

.site-header .brand-mark img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 72px !important;
  object-fit: contain !important;
}

.site-header .nav-links {
  gap: clamp(1.2rem, 3vw, 3rem);
}

.site-header .nav-links a {
  color: rgba(245,242,236,0.78);
  font-weight: 450;
}

.site-header .nav-links a:hover,
.site-header .nav-links a[aria-current="page"] {
  color: #fff;
}

.site-header .nav-links a[aria-current="page"]::after {
  background: var(--gold-bright);
  bottom: -10px;
}

.site-header .btn-gold {
  background: linear-gradient(135deg, #D8C184, #B8A05F);
  border-color: rgba(216,193,132,0.8);
  color: #081321;
  box-shadow: 0 10px 30px rgba(201,177,118,0.18);
}

.site-header .menu-btn span,
.site-header .menu-btn span::before,
.site-header .menu-btn span::after {
  background: var(--cream);
}

.hero,
.page-hero {
  scroll-margin-top: 120px;
}

.page-hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(201,177,118,0.18), transparent 34rem),
    linear-gradient(180deg, #F8F5EE 0%, #F1EBDC 100%);
}

.page-hero-grid {
  align-items: center;
}

.page-hero-aside {
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(53,68,79,0.10);
  border-left: 1px solid rgba(53,68,79,0.10);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.page-hero-aside--image {
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  position: relative;
  border: 0;
  box-shadow: var(--shadow-lift);
}

.page-hero-aside--image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.page-hero-aside--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,19,33,0.08), rgba(7,19,33,0.42));
  pointer-events: none;
}

.editorial-showcase {
  padding-top: 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: stretch;
}

.editorial-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius);
  background: var(--cream-warm);
  box-shadow: var(--shadow-lift);
}

.editorial-card.small {
  min-height: 205px;
}

.editorial-stack {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.95);
}

.editorial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7,19,33,0.62));
}

.editorial-card figcaption {
  position: absolute;
  left: clamp(1.25rem, 2.5vw, 2rem);
  right: clamp(1.25rem, 2.5vw, 2rem);
  bottom: clamp(1.25rem, 2.5vw, 2rem);
  z-index: 2;
  color: #fff;
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 300;
}

.editorial-card figcaption span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--gold-bright);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-visual {
  box-shadow: 0 28px 80px rgba(7,19,33,0.20);
}

.about-team-image,
.team-photo {
  border-radius: 18px;
}

@media (max-width: 880px) {
  body { padding-top: 78px; }
  .site-header .nav { min-height: 78px; }
  .site-header .brand-mark { width: 118px !important; height: 58px !important; }
  .site-header .brand-mark img { max-height: 58px !important; }
  .site-header .nav-links {
    background: var(--navy-ink);
    border-bottom: 1px solid rgba(201,177,118,0.22);
  }
  .site-header .nav-links a {
    color: rgba(245,242,236,0.86);
    border-bottom-color: rgba(245,242,236,0.12);
  }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-card,
  .editorial-card.small { min-height: 320px; }
  .page-hero-aside--image img { min-height: 300px; }
}

@media (max-width: 540px) {
  body { padding-top: 74px; }
  .site-header .nav { min-height: 74px; }
  .site-header .brand-mark { width: 104px !important; height: 52px !important; }
  .site-header .brand-mark img { max-height: 52px !important; }
}


/* =====================================================================
   v6 fine-tune: readable premium logo, home team photo, tighter testimonials,
   visible credentials section
   ===================================================================== */
body { padding-top: 112px; }

.site-header .nav { min-height: 112px; }
.site-header .brand-mark {
  width: clamp(190px, 18vw, 255px) !important;
  height: 88px !important;
  padding: 6px 10px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(237,231,218,0.95)) !important;
  border: 1px solid rgba(201,177,118,0.55) !important;
  box-shadow: 0 16px 44px rgba(0,0,0,0.26), inset 0 0 0 1px rgba(255,255,255,0.35) !important;
}
.site-header .brand-mark img {
  width: 100% !important;
  height: 100% !important;
  max-height: 76px !important;
  object-fit: contain !important;
}
.site-header .nav-links { gap: clamp(1rem, 2.4vw, 2.4rem); }
.site-header .nav-links a { font-size: 0.9rem; }

.who-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.who-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(53,68,79,0.18);
  background: var(--cream);
  border: 1px solid rgba(201,177,118,0.32);
}
.who-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.96) contrast(1.02);
}
.who-photo::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 18px;
  pointer-events: none;
}
.who-photo-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(7,19,33,0.78);
  color: var(--cream);
  backdrop-filter: blur(14px);
  font-size: 0.9rem;
}
.who-photo-caption strong { color: #fff; }

.credentials-panel {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: 24px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(53,68,79,0.10);
  box-shadow: var(--shadow-soft);
}
.credentials-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}
.credentials-panel-head p {
  max-width: 44rem;
  font-size: 0.98rem;
}
.credential-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 1rem;
}
.credential-logo {
  min-height: 104px;
  padding: 1rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(53,68,79,0.10);
}
.credential-logo img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.training-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}
.training-mini {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(245,242,236,0.8);
  border: 1px solid rgba(53,68,79,0.08);
  font-size: 0.9rem;
  color: var(--slate);
}
.training-mini strong { display: block; color: var(--slate-dark); font-weight: 550; margin-bottom: 0.18rem; }

.section-dark.testimonial-section {
  padding: clamp(3rem, 6vw, 4.8rem) 0;
}
.testimonial-section .testimonial-head { margin-bottom: 1.6rem; }
.testimonial-section .carousel {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(245,242,236,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.045);
}
.testimonial-section .carousel-slide blockquote {
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  line-height: 1.52;
  max-width: 58rem;
  letter-spacing: -0.005em;
}
.testimonial-section .carousel-slide blockquote .quote-mark {
  font-size: 1.15em;
  top: 0.08em;
}
.testimonial-section .carousel-slide cite {
  margin-top: 1.2rem;
  font-size: 0.78rem;
}
.testimonial-section .carousel-controls { margin-top: 1.5rem; }

.footer-trust {
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 1.4rem;
}
.footer-trust-grid img {
  max-height: 54px;
  filter: none;
  opacity: 0.92;
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  padding: 6px;
}

@media (max-width: 980px) {
  body { padding-top: 96px; }
  .site-header .nav { min-height: 96px; }
  .site-header .brand-mark { width: 178px !important; height: 76px !important; }
  .site-header .brand-mark img { max-height: 64px !important; }
  .who-grid { grid-template-columns: 1fr; }
  .who-photo { max-width: 520px; }
  .credential-logos { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  .training-mini-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  body { padding-top: 84px; }
  .site-header .nav { min-height: 84px; }
  .site-header .brand-mark { width: 150px !important; height: 64px !important; padding: 5px 8px !important; border-radius: 14px !important; }
  .site-header .brand-mark img { max-height: 54px !important; }
  .credentials-panel-head { display: block; }
  .credential-logos { grid-template-columns: 1fr; }
  .training-mini-grid { grid-template-columns: 1fr; }
}


/* =====================================================================
   v6.1: blog archive cards
   ===================================================================== */
.blog-import-note { max-width: 760px; margin-bottom: clamp(2rem, 5vw, 4rem); }
.blog-card-live { display: flex; flex-direction: column; }
.blog-card-live .link { margin-top: auto; align-self: flex-start; }
.blog-cover-image {
  background:
    linear-gradient(180deg, rgba(7,19,33,0.10), rgba(7,19,33,0.46)),
    url('https://static.wixstatic.com/media/a6a111_6a33e8df36c64dcd8eee1dfdf32cfb61~mv2.jpg/v1/fill/w_900,h_620,al_c,q_85/a6a111_6a33e8df36c64dcd8eee1dfdf32cfb61~mv2.jpg') center/cover;
}
.migration-panel {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 20px;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  max-width: 820px;
}
.migration-panel p { margin-top: .8rem; }


/* =====================================================================
   v7 refinement: no logo badge, larger readable wordmark, credentials removed from homepage body
   ===================================================================== */
body { padding-top: 96px; }

.site-header .nav {
  min-height: 96px;
}

.site-header .brand {
  gap: 0.95rem;
  max-width: 420px;
}

.site-header .brand-mark {
  width: clamp(62px, 6vw, 82px) !important;
  height: clamp(54px, 5vw, 68px) !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  flex: 0 0 auto;
}

.site-header .brand-mark img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.18));
}

.site-header .brand-name {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  border: 0 !important;
  display: block !important;
  color: rgba(255,255,255,0.96) !important;
  font-size: clamp(1.05rem, 1.55vw, 1.38rem);
  line-height: 1.03;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  font-weight: 520;
  text-shadow: 0 12px 28px rgba(0,0,0,0.24);
}

.site-header .brand-name .light {
  display: block;
  margin-top: 0.18rem;
  color: var(--gold-bright) !important;
  font-size: 0.82em;
  font-style: normal;
  font-weight: 520;
  letter-spacing: 0.22em;
}

.site-header .nav-links {
  gap: clamp(0.9rem, 2vw, 2.2rem);
}

@media (max-width: 980px) {
  body { padding-top: 84px; }
  .site-header .nav { min-height: 84px; }
  .site-header .brand { max-width: 320px; gap: 0.75rem; }
  .site-header .brand-mark { width: 58px !important; height: 54px !important; }
  .site-header .brand-name { font-size: 0.94rem; letter-spacing: 0.07em; }
}

@media (max-width: 620px) {
  body { padding-top: 78px; }
  .site-header .nav { min-height: 78px; }
  .site-header .brand { max-width: 230px; gap: 0.65rem; }
  .site-header .brand-mark { width: 50px !important; height: 48px !important; }
  .site-header .brand-name { font-size: 0.78rem; letter-spacing: 0.055em; }
  .site-header .brand-name .light { letter-spacing: 0.16em; }
}


/* ---------- Article / migrated blog pages ---------- */
.article-page { padding-bottom: var(--s-9); }
.article-hero { padding: clamp(4rem, 8vw, 7rem) 0 var(--s-7); background: linear-gradient(180deg, rgba(237,231,218,.78), rgba(245,242,236,0)); }
.article-hero .display { margin-top: var(--s-5); max-width: 11.5em; }
.article-hero .lede { margin-top: var(--s-5); max-width: 44em; }
.article-meta { margin-top: var(--s-5); }
.article-card { background: rgba(255,255,255,.72); border: 1px solid var(--line); box-shadow: var(--shadow-soft); padding: clamp(1.5rem, 5vw, 4rem); }
.article-content { max-width: 760px; margin-inline: auto; }
.article-content h2 { font-size: clamp(1.45rem, 2vw, 2rem); line-height: 1.18; font-weight: 400; letter-spacing: -0.02em; margin: 2.4rem 0 1rem; color: var(--slate-dark); }
.article-content p { margin: 1.05rem 0; font-size: clamp(1.02rem, 1.2vw, 1.12rem); line-height: 1.78; }
.article-content ul { margin: 1.1rem 0 1.5rem; padding-left: 1.3rem; list-style: disc; color: var(--slate); }
.article-content li { margin: .55rem 0; padding-left: .25rem; }
.article-content a { color: var(--gold-deep); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.article-cta { max-width: 760px; margin: var(--s-7) auto 0; padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid rgba(184,168,122,.32); background: linear-gradient(135deg, rgba(245,242,236,.95), rgba(237,231,218,.68)); }
.article-cta h2 { margin-top: var(--s-3); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; }
.article-cta p { margin: var(--s-4) 0 var(--s-5); max-width: 42em; }
.blog-card .blog-cover-image { background-image: linear-gradient(135deg, rgba(53,68,79,.08), rgba(184,168,122,.28)), url('https://static.wixstatic.com/media/11062b_15cbe7ed567a481aa572883939e7ad10~mv2.jpg/v1/fill/w_800,h_520,al_c,q_85/11062b_15cbe7ed567a481aa572883939e7ad10~mv2.jpg'); background-size: cover; background-position: center; }
@media (max-width: 720px) { .article-card { padding: 1.25rem; } .article-content p { line-height: 1.7; } }

/* ---------- Final pathway and affected-other refinements ---------- */
.path-meta {
  margin-bottom: var(--s-4);
}
.path-meta .eyebrow {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 242, 236, 0.52);
}
.path-card--terracotta .path-meta .eyebrow {
  background: rgba(160, 82, 74, 0.06);
  border-color: rgba(160, 82, 74, 0.16);
}
.help-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffaf0 0%, var(--cream) 100%);
  box-shadow: 0 12px 30px -24px rgba(53, 68, 79, 0.35);
}
.help-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--gold);
}
.help-card--therapy::before { background: var(--slate-dark); }
.help-card--programme::before { background: var(--gold); }
.help-card--community::before { background: var(--terracotta); }
.help-card h4 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  margin-top: var(--s-2);
}
.help-card p {
  margin-bottom: var(--s-6);
}
.help-btn {
  align-self: flex-start;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 620px) {
  .page-hero-actions .btn,
  .help-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}


/* ---------- v10 Professional blog rebuild ---------- */
.blog-hero-pro .page-hero-aside strong { color: var(--slate-dark); }
.blog-section-pro { padding-top: clamp(3rem, 6vw, 5rem); }
.blog-featured-pro { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; margin-bottom: clamp(3rem, 6vw, 5rem); padding: clamp(1.5rem, 4vw, 3rem); background: linear-gradient(135deg, rgba(53,68,79,.98), rgba(53,68,79,.88)); color: var(--cream); border-radius: 18px; box-shadow: var(--shadow-lift); overflow: hidden; }
.blog-featured-pro h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.04; font-weight: 300; max-width: 12em; margin: 1rem 0; }
.blog-featured-pro p { max-width: 48em; color: rgba(245,242,236,.78); font-size: 1.04rem; line-height: 1.65; margin-bottom: 1.5rem; }
.blog-featured-image { min-height: 300px; border-radius: 14px; background-image: linear-gradient(180deg, rgba(53,68,79,.08), rgba(53,68,79,.28)), url('https://static.wixstatic.com/media/11062b_15cbe7ed567a481aa572883939e7ad10~mv2.jpg/v1/fill/w_900,h_720,al_c,q_85/11062b_15cbe7ed567a481aa572883939e7ad10~mv2.jpg'); background-size: cover; background-position: center; }
.blog-card-top { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; color: var(--slate-soft); font-size: .82rem; letter-spacing: .03em; }
.blog-featured-pro .blog-card-top { color: rgba(245,242,236,.72); }
.blog-pill { display:inline-flex; align-items:center; border:1px solid rgba(184,168,122,.45); color: var(--gold-deep); background: rgba(184,168,122,.12); border-radius: 999px; padding: .35rem .6rem; font-size: .72rem; line-height:1; text-transform: uppercase; letter-spacing:.12em; font-weight:500; }
.blog-featured-pro .blog-pill { color: var(--cream); background: rgba(184,168,122,.22); border-color: rgba(184,168,122,.55); }
.section-heading-pro { margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.section-heading-pro .h2 { margin-top: .75rem; max-width: 12em; }
.blog-grid-pro { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.1rem; }
.blog-card-pro { display:flex; flex-direction:column; min-height: 300px; padding: 1.25rem; border:1px solid var(--line); background: rgba(255,255,255,.72); border-radius: 16px; box-shadow: var(--shadow-soft); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.blog-card-pro:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: rgba(184,168,122,.35); }
.blog-card-pro h3 { font-size: clamp(1.15rem, 1.5vw, 1.42rem); line-height: 1.18; font-weight: 400; letter-spacing: -.025em; margin: 1rem 0 .75rem; color: var(--slate-dark); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-pro p { color: var(--slate); font-size: .95rem; line-height: 1.58; margin-bottom: 1.4rem; }
.blog-card-pro .link { margin-top: auto; align-self:flex-start; }
.article-hero-pro { padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2rem, 4vw, 3rem); background: linear-gradient(180deg, rgba(237,231,218,.75), rgba(245,242,236,0)); }
.article-title-pro { font-size: clamp(2.2rem, 5vw, 4.6rem); max-width: 13.5em !important; margin-top: 1.5rem !important; }
.article-standfirst { font-size: clamp(1.02rem, 1.35vw, 1.2rem); line-height: 1.65; max-width: 46em !important; }
.article-card-pro { border-radius: 18px; padding: clamp(1.35rem, 4vw, 3.5rem); background: rgba(255,255,255,.76); }
.article-content-pro { max-width: 780px; }
.article-content-pro h2 { font-size: clamp(1.35rem, 1.8vw, 1.75rem); font-weight: 400; line-height: 1.22; letter-spacing: -.02em; margin: 2.2rem 0 .85rem; color: var(--slate-dark); }
.article-content-pro h3 { font-size: clamp(1.03rem, 1.2vw, 1.16rem); line-height: 1.35; letter-spacing: -.01em; margin: 1.45rem 0 .45rem; color: var(--gold-deep); font-weight: 500; }
.article-content-pro p { font-size: 1rem; line-height: 1.76; color: var(--slate); margin: .95rem 0; }
.article-content-pro ul { margin: 1rem 0 1.35rem; padding-left: 1.1rem; list-style: none; }
.article-content-pro li { position: relative; font-size: 1rem; line-height: 1.65; color: var(--slate); margin: .55rem 0; padding-left: 1.2rem; }
.article-content-pro li::before { content: ''; position:absolute; left:0; top:.72em; width:5px; height:5px; border-radius:50%; background: var(--gold-deep); }
.article-content-pro a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.article-cta-pro { border-radius: 16px; }
@media (max-width: 980px) { .blog-featured-pro { grid-template-columns:1fr; } .blog-grid-pro { grid-template-columns: repeat(2, minmax(0,1fr)); } .blog-featured-image { min-height: 240px; } }
@media (max-width: 640px) { .blog-grid-pro { grid-template-columns:1fr; } .blog-card-pro { min-height: auto; } .article-card-pro { padding: 1.15rem; } .article-content-pro p, .article-content-pro li { font-size: .98rem; } }


/* ---------- v11 corrected blog import + cleaner article meta ---------- */
.compact-article-hero { padding: clamp(2.6rem, 5vw, 4.2rem) 0 clamp(1.4rem, 3vw, 2.2rem); }
.article-date-only { margin-top: 1.4rem; color: var(--gold-deep); font-size: .95rem; letter-spacing: .04em; font-weight: 500; }
.article-title-pro { font-size: clamp(2.05rem, 4.5vw, 4.1rem); line-height: 1.06; }
.article-standfirst { margin-top: 1.15rem !important; }
.article-content-pro h2 { font-size: clamp(1.26rem, 1.65vw, 1.58rem); margin: 2.1rem 0 .75rem; }
.article-content-pro p { font-size: .99rem; line-height: 1.78; }
.article-content-pro strong { color: var(--slate-dark); font-weight: 500; }
.blog-card-top.date-only { color: var(--gold-deep); font-size: .9rem; letter-spacing: .04em; font-weight: 500; }
.blog-featured-pro .blog-card-top.date-only { color: rgba(245,242,236,.78); }
.blog-featured-pro h2 { font-size: clamp(1.9rem, 3.6vw, 3.25rem); }
.blog-grid-pro .blog-card-top { margin-bottom: .45rem; }
@media (max-width: 640px) { .compact-article-hero { padding-top: 2rem; } .article-title-pro { font-size: clamp(2rem, 12vw, 3.1rem); } }


/* v13 blog final fix: tighter archive and article pages */
.page-hero-grid-single { grid-template-columns: minmax(0, 760px); }
.blog-hero-pro { padding-bottom: clamp(3rem, 6vw, 5rem); }
.compact-article-hero { padding: clamp(1.85rem, 3vw, 2.9rem) 0 clamp(1rem, 2vw, 1.35rem) !important; }
.article-hero-pro .article-date-only { margin-top: 1.35rem; }
.article-title-pro { font-size: clamp(2.2rem, 6vw, 4.35rem) !important; line-height: 1.05; max-width: 12em; }
.article-card-pro { margin-top: 0 !important; padding-top: clamp(1.25rem, 3vw, 2.5rem) !important; }
.article-content-pro > p:first-child, .article-content-pro > h2:first-child { margin-top: 0; }
.article-content-pro p { font-size: 1rem !important; line-height: 1.76 !important; }
.blog-card-pro h3 { font-size: clamp(1.15rem, 1.4vw, 1.35rem); }
.blog-featured-pro h2 { font-size: clamp(1.7rem, 3vw, 2.65rem); }

/* v14: make blog article content visible immediately below the title */
.professional-article .article-hero,
.professional-article .article-hero-pro,
.professional-article .compact-article-hero {
  padding: clamp(1.25rem, 2.2vw, 2rem) 0 clamp(.6rem, 1.2vw, 1rem) !important;
  background: linear-gradient(180deg, rgba(237,231,218,.62), rgba(245,242,236,0)) !important;
}

.professional-article .container-tight {
  width: min(900px, calc(100% - 40px));
}

.professional-article .article-date-only {
  margin-top: 1.15rem !important;
  margin-bottom: .65rem !important;
  font-size: .92rem !important;
}

.professional-article .article-title-pro,
.professional-article .display.article-title-pro {
  font-size: clamp(2.15rem, 4.2vw, 3.6rem) !important;
  line-height: 1.06 !important;
  max-width: 12.5em !important;
  margin-top: .65rem !important;
  margin-bottom: .35rem !important;
  letter-spacing: -.045em !important;
}

.professional-article .article-card-pro,
.professional-article .article-card {
  margin-top: 0 !important;
  padding: clamp(1rem, 2vw, 1.55rem) 0 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid rgba(23, 32, 43, .12) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.professional-article .article-content-pro,
.professional-article .article-content {
  max-width: 800px !important;
  margin: 0 auto !important;
}

.professional-article .article-content-pro > p:first-child,
.professional-article .article-content > p:first-child {
  margin-top: 0 !important;
}

.professional-article .article-content-pro p,
.professional-article .article-content p,
.professional-article .article-content-pro li,
.professional-article .article-content li {
  font-size: 1rem !important;
  line-height: 1.78 !important;
}

.professional-article .article-content-pro h2,
.professional-article .article-content h2 {
  font-size: clamp(1.22rem, 1.45vw, 1.48rem) !important;
  margin: 1.85rem 0 .65rem !important;
}

.professional-article .article-cta-pro,
.professional-article .article-cta {
  max-width: 800px !important;
  margin-top: 3rem !important;
}

@media (max-width: 640px) {
  .professional-article .container-tight { width: min(100% - 28px, 900px); }
  .professional-article .article-title-pro,
  .professional-article .display.article-title-pro {
    font-size: clamp(2rem, 10vw, 2.75rem) !important;
  }
}

/* =====================================================================
   v16: cache-busted new GRT logo only - no old logo / no white badge
   ===================================================================== */
.site-header .brand-mark {
  width: clamp(84px, 8vw, 118px) !important;
  height: clamp(54px, 5.2vw, 70px) !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
  border-radius: 10px !important;
}
.site-header .brand-mark img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: transparent !important;
  filter: none !important;
}
@media (max-width: 620px) {
  .site-header .brand-mark { width: 72px !important; height: 46px !important; }
}
