/*
Theme Name: Purpose Garden
Theme URI: https://purpose-garden.com/
Author: Purpose Garden
Description: A lightweight custom WordPress theme for Purpose Garden.
Version: 1.0.0
Text Domain: purpose-garden
*/

:root {
  --pine: #243542;
  --moss: #5f6670;
  --moss-dark: #3d4c5c;
  --garden-green: #2e3d29;
  --blue: #1f7fbf;
  --blue-dark: #146a95;
  --pink: #f03a89;
  --pink-dark: #cf2d70;
  --violet: #9466d8;
  --gold: #d9b382;
  --clay: #a1683a;
  --petal: #f8e6ef;
  --cream: #f5f3eb;
  --paper: #ffffff;
  --ink: #202833;
  --muted: #5f6670;
  --line: rgba(32, 40, 51, 0.16);
  --shadow: 0 24px 80px rgba(32, 40, 51, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --content-max: 1120px;
  --content-gutter: clamp(1rem, 3vw, 2rem);
  --section-inset: clamp(1.25rem, 3.5vw, 3rem);
}

/* Signature Programme page */
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--content-max));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--section-inset);
  background: var(--cream);
}

.page-hero h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 6.4vw, 6rem);
}

.page-hero .lead {
  max-width: 640px;
  color: var(--pine);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.15;
}

.page-hero-visual {
  min-height: 480px;
  border-radius: 8px;
  background: url("assets/hero-pink-lotus-garden.webp") center / cover;
  box-shadow: var(--shadow);
}

.programme-intro,
.programme-investment,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 7vw, 7rem);
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--content-max));
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.5rem) var(--section-inset);
}

.programme-intro h2,
.programme-investment h2,
.contact-layout h1,
.contact-layout h2 {
  font-size: clamp(2.7rem, 4.6vw, 4.5rem);
}

.programme-intro p,
.programme-investment p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.04rem;
}

.programme-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.programme-step {
  min-height: 286px;
  padding: 1.5rem 1.3rem;
  border-right: 1px solid var(--line);
}

.programme-step:last-child {
  border-right: 0;
}

.programme-step-number {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--pink-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.programme-step h2 {
  margin-bottom: 0.8rem;
  color: var(--blue-dark);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.programme-step p {
  color: var(--muted);
  font-size: 0.93rem;
}

.programme-investment {
  align-items: center;
  background: #f3f4f1;
}

.investment-card,
.contact-card {
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  border: 1px solid rgba(217, 179, 130, 0.52);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.investment-card .price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 0.35rem 0 1.2rem;
  color: var(--blue-dark);
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1;
}

.investment-card .currency {
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  font-weight: 600;
}

.investment-card .amount {
  font-size: clamp(4rem, 7vw, 6rem);
  letter-spacing: 0;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.55rem;
  color: var(--pine);
}

.check-list li::before {
  color: var(--pink-dark);
  content: "✓";
  font-weight: 900;
}

.contact-layout {
  min-height: 65vh;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-card label {
  display: grid;
  gap: 0.4rem;
  color: var(--pine);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.8rem;
  background: var(--cream);
  color: var(--ink);
}

.contact-card textarea {
  min-height: 150px;
  resize: vertical;
}

/* The ConqrLogic form keeps message delivery and abuse protection consistent across
   the network; these rules make its shared markup belong to Purpose Garden. */
.contact-card .cl-contact-intro {
  display: none;
}

.contact-card .cl-contact-form {
  display: grid;
  gap: 1rem;
}

.contact-card .cl-contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-card .cl-contact-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted) !important;
  font-size: 0.84rem !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.contact-card .cl-contact-consent input {
  width: auto !important;
  margin: 0.2rem 0 0 !important;
  accent-color: var(--pink-dark);
}

.contact-card .cl-contact-consent a {
  color: var(--blue-dark);
  font-weight: 800;
}

.contact-card .cl-contact-form input,
.contact-card .cl-contact-form textarea {
  margin: 0 !important;
  border: 1px solid var(--line) !important;
  border-radius: 4px !important;
  background: var(--cream) !important;
  color: var(--ink) !important;
}

.contact-card .cl-contact-form button[type="submit"] {
  order: 1;
  width: auto;
  justify-self: start;
  padding: 0.85rem 1.3rem !important;
  border: 2px solid var(--pink) !important;
  border-radius: 999px !important;
  background: var(--blue) !important;
  color: #fff !important;
  font-weight: 800;
}

.contact-card .cl-contact-form .cf-turnstile {
  order: 2;
  margin-top: 0.1rem !important;
}

.contact-card .cl-contact-ok,
.contact-card .cl-contact-err {
  margin: 0;
  border-radius: 4px !important;
}

.contact-privacy {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem !important;
}

.contact-privacy a {
  color: var(--blue-dark);
  font-weight: 800;
}

/* Contact page trial: choose a session on the right, then send an enquiry below. */
.contact-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  row-gap: clamp(2.5rem, 5vw, 4rem);
}

.contact-layout > .booking-options {
  width: 100%;
  max-width: 360px;
  margin: 0;
  justify-self: end;
  align-self: center;
}

.contact-layout > .contact-card {
  grid-column: 1 / -1;
  width: min(100%, 780px);
  justify-self: center;
}

@media (max-width: 760px) {
  .contact-layout > .booking-options {
    max-width: 470px;
    justify-self: start;
  }

  .contact-layout > .contact-card {
    grid-column: auto;
    width: 100%;
  }
}

.booking-options {
  display: grid;
  gap: 0.7rem;
  max-width: 470px;
  margin-top: 1.8rem;
}

.booking-options .button {
  width: 100%;
}

.contact-note {
  margin-top: 0.75rem;
  font-size: 0.86rem !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(31, 127, 191, 0.12), transparent 25rem),
    radial-gradient(circle at 12% 18%, rgba(240, 58, 137, 0.12), transparent 22rem),
    radial-gradient(circle at top left, rgba(217, 179, 130, 0.35), transparent 28rem),
    linear-gradient(180deg, #f5f3eb 0%, #f1eadf 45%, #f5f3eb 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 88px;
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--content-max));
  margin: 0 auto;
  padding: 0.55rem var(--section-inset);
  border-bottom: 1px solid rgba(32, 40, 51, 0.1);
  background: rgba(245, 243, 235, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.86rem;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 94px;
  height: 64px;
  border: 1px solid rgba(217, 179, 130, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(32, 40, 51, 0.08);
}

.brand-mark img {
  display: block;
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 7px 14px rgba(32, 40, 51, 0.12));
}

.brand-copy {
  display: grid;
  gap: 0.16rem;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--blue-dark);
  font-family: var(--serif);
  font-size: clamp(1.86rem, 2.7vw, 2.48rem);
  font-weight: 700;
}

.brand-copy em {
  color: var(--pink-dark);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2.1rem);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav-list,
.footer-nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2.1rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  padding: 0.5rem 0;
  color: rgba(32, 40, 51, 0.72);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--pink-dark);
}

.site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 0.15rem;
  left: 0;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  content: "";
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.35rem;
  padding-left: 0.9rem;
  border-left: 1px solid var(--line);
  color: var(--pink-dark);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.language-switcher span {
  color: var(--blue-dark);
  font-weight: 800;
}

.language-switcher a {
  padding: 0.25rem 0;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--pink);
  border-width: 2px;
  box-shadow: 0 14px 32px rgba(31, 127, 191, 0.24);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--pink);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgba(32, 40, 51, 0.2);
  background: rgba(255, 255, 255, 0.72);
  color: var(--pine);
}

.button-secondary:hover {
  background: #fff;
  box-shadow: 0 14px 30px rgba(32, 40, 51, 0.12);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(500px, 66vh, 650px);
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--content-max));
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay,
.hero-person {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/hero-pink-lotus-garden.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(245, 243, 235, 0.96) 0%, rgba(245, 243, 235, 0.84) 34%, rgba(245, 243, 235, 0.18) 56%, rgba(245, 243, 235, 0) 70%);
}

.hero-person {
  inset: auto clamp(1rem, 7vw, 7.5rem) 0 auto;
  z-index: -1;
  width: min(34vw, 440px);
  height: min(54vh, 500px);
  border-radius: 999px 999px 0 0;
  background: url("assets/ruth-rocher.webp") center 25% / cover;
  box-shadow: 0 28px 90px rgba(32, 40, 51, 0.22);
}

.hero-inner {
  display: grid;
  align-content: center;
  max-width: 720px;
  padding: clamp(3rem, 5vw, 4.5rem) var(--section-inset);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--pink-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--pine);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 650px;
  margin-bottom: 1rem;
  font-size: clamp(3.2rem, 6.5vw, 5.8rem);
}

.hero-copy {
  max-width: 580px;
  margin-bottom: 1.45rem;
  color: var(--pine);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.support-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--content-max));
  margin: 0 auto;
  background: var(--pine);
  color: #fff;
}

.support-strip article {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem var(--section-inset);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.support-strip article:last-child {
  border-right: 0;
}

.support-strip h2 {
  margin-bottom: 0.12rem;
  color: #fff;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.2;
}

.support-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.support-icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  aspect-ratio: 1;
  padding: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  object-fit: contain;
}

.line-icon {
  flex: 0 0 auto;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
}

.line-icon.heart::before {
  left: 12px;
  top: 13px;
  width: 10px;
  height: 16px;
  border-radius: 999px 999px 0 0;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-bottom: 0;
  transform: rotate(-45deg);
}

.line-icon.heart::after {
  left: 19px;
  top: 13px;
  width: 10px;
  height: 16px;
  border-radius: 999px 999px 0 0;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-bottom: 0;
  transform: rotate(45deg);
}

.line-icon.sprout::before {
  left: 20px;
  top: 11px;
  width: 2px;
  height: 21px;
  background: rgba(255, 255, 255, 0.8);
}

.line-icon.sprout::after {
  left: 11px;
  top: 13px;
  width: 20px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-right: 0;
  border-bottom: 0;
  border-radius: 999px 0 0 0;
  box-shadow: 10px 3px 0 -6px rgba(255, 255, 255, 0.8);
  transform: rotate(-25deg);
}

.line-icon.lotus::before {
  left: 11px;
  top: 11px;
  width: 18px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px 999px 4px 4px;
}

.line-icon.lotus::after {
  left: 7px;
  top: 17px;
  width: 26px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-top: 0;
  border-radius: 0 0 999px 999px;
}

.section-grid,
.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  gap: clamp(1.4rem, 4vw, 4.5rem);
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--content-max));
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.5rem) var(--section-inset);
}

.intro-heading h2 {
  max-width: 720px;
  margin-bottom: 0.85rem;
}

.intro-heading .eyebrow {
  margin: 0;
}

.intro h2,
.services h2,
.story-copy h2,
.sessions h2,
.resource-band h2,
.booking h2 {
  font-size: clamp(2.6rem, 4.8vw, 4.5rem);
}

.intro-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.03rem;
}

.intro-copy p:last-child {
  color: var(--pine);
  font-weight: 700;
}

.services {
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--content-max));
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.5rem) var(--section-inset);
  background: rgba(255, 255, 255, 0.42);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  max-width: none;
  margin: 0 auto 1.45rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.service-heading {
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: start;
}

.service-heading h2 {
  max-width: 760px;
}

.service-heading .eyebrow {
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 255px;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 243, 235, 0.62));
}

.service-card:last-child {
  border-right: 0;
}

.service-card.featured {
  background: #faf6ed;
}

.service-card h3 {
  margin-bottom: 0.8rem;
  color: var(--blue-dark);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.service-icon {
  display: block;
  width: 64px;
  height: 64px;
  aspect-ratio: 1;
  padding: 2px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(31, 127, 191, 0.06);
  object-fit: contain;
}

.services-button {
  margin: 1.45rem auto 0;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--content-max));
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.5rem) var(--section-inset);
}

.portrait-card {
  min-height: 390px;
  border-radius: 8px;
  padding: 0.7rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.portrait-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center 28%;
}

.story-copy {
  max-width: 680px;
}

.story-copy p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 0.3rem;
  color: var(--pink-dark);
  font-weight: 900;
}

.text-link::after {
  margin-left: 0.45rem;
  content: "->";
}

.difference-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(1.35rem, 2.7vw, 2.15rem);
  border: 1px solid rgba(31, 127, 191, 0.24);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: #eef6f8;
}

.difference-card h3 {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1;
}

.difference-card p {
  margin: 0;
  color: var(--muted);
}

.programme-heading {
  grid-template-columns: 1fr;
  gap: 0.6rem;
  max-width: 880px;
  margin-bottom: 2rem;
  text-align: center;
}

.programme-heading h2 {
  max-width: 780px;
  margin: 0 auto;
}

.programme-heading .eyebrow {
  margin: 0;
}

.credentials {
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--content-max));
  margin: 0 auto;
  padding: 2.2rem var(--section-inset);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  text-align: center;
}

.credentials h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.credential-list span {
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--pine);
  font-size: 0.9rem;
  font-weight: 800;
}

.sessions {
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--content-max));
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.5rem) var(--section-inset);
  background:
    linear-gradient(180deg, rgba(31, 127, 191, 0.06), rgba(240, 58, 137, 0.08));
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: none;
  margin: 0 auto;
}

.session-grid article {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(32, 40, 51, 0.1);
}

.session-grid span {
  width: fit-content;
  margin-bottom: 0.95rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(217, 179, 130, 0.24);
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session-grid h3 {
  color: var(--pine);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.session-grid p {
  color: var(--muted);
}

.session-grid a {
  align-self: end;
  margin-top: 1rem;
  color: var(--pink-dark);
  font-weight: 900;
}

.resource-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--content-max));
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.5rem) var(--section-inset);
}

.resource-grid {
  display: grid;
  gap: 1rem;
}

.resource-grid article {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.resource-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(32, 40, 51, 0.12);
}

.resource-grid h3 {
  margin-bottom: 0;
  color: var(--pine);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.02;
}

.resource-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--content-max));
  margin: 0 auto;
  padding: clamp(2.6rem, 4vw, 3.5rem) var(--section-inset);
  background:
    linear-gradient(90deg, rgba(32, 40, 51, 0.97), rgba(20, 106, 149, 0.88)),
    url("assets/hero-pink-lotus-garden.webp") center / cover;
  color: #fff;
}

.booking .eyebrow,
.booking h2,
.booking p {
  color: #fff;
}

.booking h2 {
  max-width: 760px;
  margin-bottom: 0.8rem;
}

.booking p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(150px, 0.4fr) minmax(170px, 0.5fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--content-max));
  margin: 0 auto;
  padding: 2.2rem var(--section-inset);
  border-top: 1px solid rgba(32, 40, 51, 0.1);
  background: var(--cream);
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  color: var(--pine);
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 0.32rem;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 1rem;
}

.footer-newsletter form {
  display: flex;
  max-width: 440px;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.footer-newsletter input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0.95rem 1.1rem;
  background: transparent;
  color: var(--ink);
}

.footer-newsletter button {
  border: 0;
  padding: 0.9rem 1.15rem;
  background: var(--pine);
  color: #fff;
  font-weight: 800;
}

.footer-legal {
  display: grid;
  align-content: start;
  gap: 0.32rem;
}

.footer-legal a {
  font-size: 0.92rem;
}

.legal-page {
  width: min(calc(100% - (var(--content-gutter) * 2)), 860px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.legal-page > article:first-child {
  margin-bottom: 2rem;
}

.legal-page .entry-content h2 {
  margin-top: 2.25rem;
  color: var(--pine);
}

.legal-page .entry-content ul {
  padding-left: 1.25rem;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
    position: sticky;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    justify-self: end;
    gap: 4px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 10px;
    background: var(--pine);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .site-header.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: var(--frame-padding);
    left: var(--frame-padding);
    display: grid;
    gap: 0;
    padding: 0.45rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--cream);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav a {
    display: block;
    padding: 0.78rem 0.9rem;
    border-radius: 5px;
  }

  .site-header.nav-open .site-nav a:hover,
  .site-header.nav-open .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.72);
  }

  .site-header.nav-open .site-nav-list {
    display: grid;
    gap: 0;
  }

  .site-header.nav-open .language-switcher {
    margin: 0.3rem 0 0;
    padding: 0.7rem 0.9rem 0.3rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .support-strip,
  .service-grid,
  .story-band,
  .session-grid,
  .resource-band,
  .site-footer,
  .page-hero,
  .programme-intro,
  .programme-investment,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .support-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .section-grid,
  .intro-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: unset;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .difference-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .booking {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 76px;
    gap: 1rem;
  }

  .brand-mark {
    width: 66px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 1.42rem;
  }

  .brand-copy em {
    font-size: 0.58rem;
  }

  .hero {
    min-height: 560px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(245, 243, 235, 0.97) 0%, rgba(245, 243, 235, 0.88) 48%, rgba(245, 243, 235, 0.28) 78%, rgba(245, 243, 235, 0) 100%);
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-inner {
    align-content: start;
    padding-top: 3.1rem;
  }

  h1 {
    font-size: clamp(2.85rem, 12vw, 4.1rem);
  }

  .intro h2,
  .services h2,
  .story-copy h2,
  .sessions h2,
  .resource-band h2,
  .booking h2 {
    font-size: clamp(2.35rem, 10vw, 3.45rem);
  }

  .hero-actions,
  .footer-newsletter form {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-person {
    right: -1.5rem;
    width: min(48vw, 230px);
    height: 245px;
    opacity: 0.34;
  }

  .programme-steps {
    grid-template-columns: 1fr;
  }

  .programme-step {
    min-height: unset;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .programme-step:last-child {
    border-bottom: 0;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .resource-grid article {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .portrait-card {
    min-height: 310px;
  }

  .portrait-card img {
    min-height: 280px;
  }
}

/* Full-width section colour and imagery, with one shared 1200px content frame. */
:root {
  --content-max: 1200px;
  --frame-padding: max(var(--content-gutter), calc((100vw - var(--content-max)) / 2));
}

.page-hero,
.programme-intro,
.programme-investment,
.contact-layout,
.site-header,
.hero,
.support-strip,
.section-grid,
.intro-layout,
.services,
.story-band,
.credentials,
.sessions,
.resource-band,
.booking,
.site-footer {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.page-hero {
  padding-right: var(--frame-padding);
  padding-left: var(--frame-padding);
}

.programme-intro,
.programme-investment,
.contact-layout,
.section-grid,
.intro-layout,
.services,
.story-band,
.sessions,
.resource-band,
.credentials,
.booking,
.site-footer,
.site-header {
  padding-right: var(--frame-padding);
  padding-left: var(--frame-padding);
}

.hero-inner {
  width: 100%;
  max-width: none;
  padding-right: var(--frame-padding);
  padding-left: var(--frame-padding);
}

.support-strip {
  padding-right: var(--frame-padding);
  padding-left: var(--frame-padding);
}

.support-strip article {
  padding-right: clamp(1rem, 2vw, 1.5rem);
  padding-left: clamp(1rem, 2vw, 1.5rem);
}

/* Sessions read as a calm, sequential journey rather than five narrow columns. */
.programme-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: min(calc(100% - (var(--content-gutter) * 2)), 960px);
  margin: clamp(2.5rem, 5vw, 4.5rem) auto;
  border: 0;
  background: transparent;
}

.programme-step,
.programme-step:last-child {
  min-height: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.programme-step h2 {
  max-width: 680px;
  margin-bottom: 0.55rem;
}

.programme-step p {
  max-width: 760px;
  margin-bottom: 0;
}

sup {
  font-family: var(--sans);
  font-size: 0.5em;
  vertical-align: super;
}

.offer-overview {
  width: 100%;
  padding: clamp(3rem, 5vw, 4.5rem) var(--frame-padding);
  background: rgba(255, 255, 255, 0.46);
}

.offer-heading {
  grid-template-columns: 1fr;
  gap: 0.7rem;
  max-width: none;
  margin-bottom: 1.5rem;
}

.offer-heading .eyebrow {
  margin: 0;
}

.offer-heading h2 {
  max-width: 700px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.offer-grid article {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
}

.offer-label {
  margin-bottom: 0.45rem;
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer-price {
  margin-bottom: 0.8rem;
  color: var(--blue-dark);
  font-family: var(--sans);
  font-size: 2.55rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  line-height: 1;
}

.offer-price span {
  margin-right: 0.1rem;
  font-size: 0.62em;
  vertical-align: 0.15em;
}

.offer-grid article > p:last-of-type {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.session-offer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.session-offer-grid .text-link {
  margin-top: 1rem;
}

.signature-journey {
  align-items: center;
}

.signature-journey .lead {
  color: var(--pine);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.2;
}

.difference-card blockquote {
  margin: 1rem 0 0;
  color: var(--blue-dark);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.05;
}

.about-hero,
.about-story,
.about-approach {
  display: grid;
  width: 100%;
  padding: clamp(3rem, 6vw, 5rem) var(--frame-padding);
}

.about-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.about-hero h1 {
  max-width: 650px;
}

.about-hero .lead {
  max-width: 600px;
  color: var(--pine);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.15;
}

.about-story {
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.75fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: start;
  background: rgba(255, 255, 255, 0.46);
}

.about-story article,
.about-approach > div:last-child {
  max-width: 660px;
  color: var(--muted);
}

.about-story aside {
  padding: 1.5rem;
  border-left: 4px solid var(--blue);
  background: #eef6f8;
}

.about-story h2,
.about-approach h2 {
  font-size: clamp(2.5rem, 4.4vw, 4rem);
}

.about-story aside p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.about-approach {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 7vw, 6rem);
}

.expert-line {
  color: var(--pine) !important;
  font-weight: 700;
}

@media (max-width: 1060px) {
  .offer-grid,
  .about-hero,
  .about-story,
  .about-approach {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero,
  .about-story,
  .about-approach {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .offer-grid,
  .session-offer-grid {
    grid-template-columns: 1fr;
  }
}

/* Refinements to keep the offer hierarchy compact and consistently aligned. */
.hero h1 {
  max-width: 820px;
}

.title-hyphen {
  display: inline-block;
  margin: 0 0.02em;
  font-family: var(--sans);
  font-size: 0.58em;
  font-weight: 600;
  line-height: 0;
  transform: translateY(-0.08em);
  vertical-align: 0.1em;
}

.contact-layout > section > .eyebrow {
  color: var(--pink-dark);
}

.story-copy .eyebrow,
.difference-card blockquote,
.offer-label,
.offer-price-complimentary {
  color: var(--pink-dark);
}

.difference-card blockquote {
  margin: 0 0 0.8rem;
}

.programme-heading {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.programme-heading h2 {
  margin: 0;
}

.credentials {
  text-align: left;
}

.credential-list {
  justify-content: flex-start;
}

.session-link {
  margin-top: 1.25rem;
}

.offer-grid article {
  display: flex;
  flex-direction: column;
}

.offer-price-complimentary {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-grid .button {
  width: 100%;
  margin-top: 1.15rem;
  padding-right: 0.85rem;
  padding-left: 0.85rem;
  text-align: center;
}

/* Services share the home hero while each offer keeps the same price hierarchy. */
.service-hero .hero-copy strong {
  color: var(--blue-dark);
  font-weight: 800;
}

.purpose-garden-home strong {
  color: var(--blue-dark);
  font-weight: 800;
}

.offer-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(32, 40, 51, 0.08);
}

.offer-card > p:last-of-type,
.offer-card .offer-detail {
  color: var(--muted);
}

.offer-detail {
  margin: -0.3rem 0 0.8rem;
  color: var(--pine) !important;
  font-size: 0.84rem;
  font-weight: 800;
}

.offer-card .button,
.offer-grid .button {
  margin-top: auto;
}

.compact-offer-card {
  align-self: center;
  max-width: 390px;
}

.signature-programme-section {
  width: 100%;
  padding: clamp(3rem, 5vw, 4.5rem) var(--frame-padding);
  background: rgba(255, 255, 255, 0.46);
}

.signature-journey-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.signature-journey-content h2 {
  max-width: 650px;
  font-size: clamp(2.7rem, 4.6vw, 4.5rem);
}

.signature-journey-content .lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.04rem;
}

.signature-journey-content .lead strong,
.programme-intro strong,
.programme-investment strong {
  color: var(--pine);
}

.signature-programme-section .programme-steps {
  width: 100%;
  max-width: none;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
}

@media (max-width: 1060px) {
  .signature-journey-content {
    grid-template-columns: 1fr;
  }
}

/* Editorial emphasis and offer hierarchy. */
.eyebrow,
.section-kicker,
.offer-label {
  font-size: 0.9rem;
}

.programme-step-number {
  font-size: 0.9rem;
}

.offer-price-free {
  color: var(--blue-dark);
  font-size: 2.55rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.signature-programme-section .programme-steps {
  gap: 0.65rem;
}

.signature-programme-section .programme-step,
.signature-programme-section .programme-step:last-child {
  padding: 1.1rem 1.35rem;
}

.contact-layout strong,
.about-story strong,
.about-approach strong {
  color: var(--pine);
  font-weight: 800;
}

/* One clear pricing language across discovery, individual sessions and the programme. */
.programme-intro > div > .eyebrow,
.programme-investment > div > .eyebrow,
.signature-journey-content > div > .eyebrow {
  color: var(--pink-dark);
  font-size: 1rem;
  font-weight: 900;
}

.programme-intro .offer-card,
.programme-investment .offer-card,
.signature-journey-content .offer-card {
  min-height: 0;
}

.programme-intro .offer-price,
.programme-investment .offer-price,
.signature-journey-content .offer-price {
  color: var(--blue-dark);
}

.programme-intro .offer-detail,
.programme-investment .offer-detail,
.signature-journey-content .offer-detail {
  color: var(--pink-dark) !important;
}

.offer-grid article > p strong,
.offer-card > p strong {
  color: var(--pine);
  font-weight: 800;
}

.signature-programme-section .programme-steps {
  gap: 0.45rem;
}

.signature-programme-section .programme-step,
.signature-programme-section .programme-step:last-child {
  padding: 0.9rem 1.1rem;
}

.signature-programme-section .programme-step-number {
  margin-bottom: 0.25rem;
}

.signature-programme-section .programme-step h2 {
  margin-bottom: 0.35rem;
}

.footer-brand > p {
  color: var(--pine);
}

/* Services: prices read as one offer system, distinct from the CTA blue. */
.offer-card .offer-label,
.offer-grid .offer-label {
  color: var(--blue-dark);
}

.programme-intro .offer-price,
.programme-investment .offer-price,
.signature-journey-content .offer-price,
.offer-overview .offer-price {
  color: var(--pink-dark);
  font-size: 2.65rem;
}

.programme-intro .offer-price-free,
.programme-investment .offer-price-free,
.signature-journey-content .offer-price-free,
.offer-overview .offer-price-free {
  font-size: 2.65rem;
}

/* French offer copy is longer; reserve the same visual slots in every card. */
.offer-grid > article,
.programme-investment .offer-card {
  display: flex;
  flex-direction: column;
}

.offer-grid .offer-label,
.programme-investment .offer-label {
  display: flex;
  align-items: flex-start;
  min-height: 3.1em;
  margin-bottom: 0.6rem;
}

.offer-grid .offer-price,
.programme-investment .offer-price,
.signature-journey-content .offer-price {
  display: flex;
  align-items: baseline;
  min-height: 2.65rem;
  margin: 0 0 0.85rem;
  white-space: nowrap;
}

.offer-grid .offer-copy,
.offer-grid > article > strong {
  display: block;
  margin: 0;
  color: var(--muted);
}

.offer-grid > article > .button,
.programme-investment .offer-card > .button,
.signature-journey-content .offer-card > .button {
  margin-top: auto;
}

/* WordPress wraps each offer description and CTA in a paragraph. */
.offer-grid > article > p:last-of-type {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  margin-bottom: 0;
}

.offer-grid > article > p:last-of-type > .button {
  margin-top: auto;
}

/* Editorial support for the revised hero and customer testimonials. */
.hero-support {
  max-width: 620px;
  margin: -0.55rem 0 1.45rem;
  color: var(--pine);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.5;
}

.hero-support strong {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--blue-dark);
  font-weight: 800;
}

.testimonials {
  width: 100%;
  padding: clamp(3rem, 5vw, 4.5rem) var(--frame-padding);
  background: #eef6f8;
}

.testimonials-compact {
  background: rgba(255, 255, 255, 0.46);
}

.testimonials-heading {
  max-width: 640px;
  margin-bottom: 1.5rem;
}

.testimonials-heading .eyebrow {
  color: var(--pink-dark);
}

.testimonials-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  padding: clamp(1.45rem, 2.5vw, 2rem);
  overflow: hidden;
  border: 1px solid rgba(32, 40, 51, 0.1);
  border-radius: 8px;
  background: #fffafc;
  box-shadow: 0 14px 35px rgba(32, 40, 51, 0.06);
}

.testimonial-card:nth-child(even) {
  background: #f8fbfc;
}

.testimonial-card::before {
  position: absolute;
  top: -0.22em;
  left: 0.15em;
  color: rgba(240, 58, 137, 0.17);
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 7.2rem;
  line-height: 1;
}

.testimonial-card:nth-child(even)::before {
  color: rgba(31, 127, 191, 0.16);
}

.testimonial-card blockquote {
  position: relative;
  margin: 0;
  color: #384752;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 500;
  line-height: 1.58;
}

.testimonial-card figcaption {
  position: relative;
  margin-top: 1.3rem;
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.testimonial-card figcaption::before {
  display: inline-block;
  width: 1.35rem;
  height: 2px;
  margin: 0 0.55rem 0.22rem 0;
  background: var(--pink-dark);
  content: "";
}

@media (max-width: 680px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1060px) and (min-width: 681px) {
  .offer-overview .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
