:root {
  --cream: #fffaf2;
  --cream-deep: #f8eee2;
  --paper: #ffffff;
  --blush: #f9ded5;
  --blush-deep: #efb19c;
  --terracotta: #c64840;
  --terracotta-dark: #9d3828;
  --sage: #4a1c0c;
  --sage-mid: #775143;
  --sage-pale: #f6e8df;
  --sage-wash: #fdf6ef;
  --ink: #3b241d;
  --muted: #705d55;
  --line: #eaded3;
  --gold: #ee9a4a;
  --error: #a92f2f;
  --shadow-sm: 0 10px 30px rgba(74, 28, 12, 0.08);
  --shadow-md: 0 24px 64px rgba(74, 28, 12, 0.14);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 78px;
  --font-body: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  color: #fff;
  background: var(--terracotta);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.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;
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--sage);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 249, 243, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(74, 28, 12, 0.1);
  background: rgba(255, 249, 243, 0.97);
  box-shadow: 0 9px 30px rgba(59, 36, 29, 0.06);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--sage);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--cream);
  filter: drop-shadow(0 5px 9px rgba(74, 28, 12, 0.14));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--terracotta-dark);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nav-toggle {
  display: grid;
  place-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(74, 28, 12, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2.5px 0;
  border-radius: 5px;
  background: var(--sage);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  position: fixed;
  z-index: 99;
  inset: var(--header-height) 0 auto;
  display: none;
  max-height: calc(100vh - var(--header-height));
  padding: 22px 24px 34px;
  overflow-y: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow-md);
}

.primary-nav.is-open {
  display: flex;
  flex-direction: column;
}

.primary-nav > a {
  padding: 12px 2px;
  border-bottom: 1px solid rgba(74, 28, 12, 0.09);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 650;
}

.nav-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 20px;
}

.nav-actions .btn-primary {
  grid-column: 1 / -1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--terracotta);
  box-shadow: 0 10px 25px rgba(198, 103, 77, 0.22);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 14px 30px rgba(169, 75, 53, 0.26);
}

.btn-outline {
  border-color: rgba(74, 28, 12, 0.3);
  color: var(--sage);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--sage);
  background: var(--sage-wash);
}

.btn-ghost {
  color: var(--sage);
  background: var(--sage-pale);
}

.btn-text {
  min-height: auto;
  padding-inline: 4px;
  color: var(--sage);
  border-radius: 0;
}

.btn-text:hover {
  color: var(--terracotta-dark);
  box-shadow: 0 2px 0 var(--terracotta);
}

.btn-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.7rem;
}

.btn-large {
  min-height: 54px;
  padding: 15px 24px;
}

.btn-cream {
  color: var(--sage);
  background: var(--cream);
  box-shadow: 0 12px 30px rgba(59, 25, 15, 0.16);
}

.hero {
  position: relative;
  padding: 72px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(239, 175, 151, 0.22), transparent 30%),
    linear-gradient(180deg, #fff9f3 0%, #fffdf9 100%);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-one {
  top: 80px;
  right: -160px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(198, 103, 77, 0.15);
}

.hero-shape-two {
  bottom: 100px;
  left: -70px;
  width: 130px;
  height: 130px;
  background: rgba(249, 222, 213, 0.72);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 58px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--terracotta-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--blush-deep);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-intro h2,
.final-cta h2,
.policy-hero h1 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 12vw, 5.4rem);
}

.hero h1 em,
.cases-heading h2 em {
  color: var(--terracotta);
  font-weight: inherit;
}

.hero-tagline {
  margin-bottom: 18px;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero-copy > p:not(.eyebrow, .hero-tagline, .hero-promise) {
  max-width: 700px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1.01rem;
}

.hero-promise {
  margin: 24px 0 26px;
  padding-left: 15px;
  border-left: 3px solid var(--terracotta);
  color: var(--sage);
  font-weight: 750;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.hero-visual {
  position: relative;
  width: min(100%, 470px);
  min-height: 410px;
  margin-inline: auto;
  padding: 26px 10px;
}

.hero-visual::before {
  position: absolute;
  inset: 8px 30px 14px;
  border-radius: 50% 44% 48% 52%;
  background: var(--blush);
  content: "";
  transform: rotate(-6deg);
}

.support-card {
  position: relative;
  z-index: 2;
  max-width: 390px;
  margin: 26px auto 0;
  padding: 25px 20px 22px;
  border: 1px solid rgba(74, 28, 12, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  transform: rotate(1.5deg);
}

.support-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.support-card-top img {
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: contain;
}

.support-card-top div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.support-card-top span {
  color: var(--muted);
  font-size: 0.75rem;
}

.support-card-top strong {
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.message {
  position: relative;
  max-width: 84%;
  margin: 20px 0 0;
  padding: 13px 15px;
  border-radius: 16px 16px 16px 4px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.message p {
  margin: 0;
}

.message-question {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--sage);
  background: var(--sage-pale);
}

.message-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage-mid);
}

.message-answer {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  margin-left: auto;
  border-radius: 16px 16px 4px;
  color: #fff;
  background: var(--terracotta);
}

.mini-heart {
  flex: 0 0 auto;
  color: #ffe9df;
}

.mini-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.mini-process i {
  width: 14px;
  height: 1px;
  background: var(--line);
}

.mini-process .is-done {
  color: var(--terracotta-dark);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid rgba(74, 28, 12, 0.09);
  border-radius: 999px;
  color: var(--sage);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 0.72rem;
  font-weight: 750;
}

.floating-note span {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
}

.note-top {
  top: 8px;
  left: 0;
  transform: rotate(-4deg);
}

.note-bottom {
  right: -2px;
  bottom: 15px;
  transform: rotate(3deg);
}

.note-bottom span {
  background: var(--terracotta);
}

.visual-spark {
  position: absolute;
  z-index: 2;
  color: var(--terracotta);
  font-size: 1.2rem;
}

.spark-one {
  top: 65px;
  right: 15px;
}

.spark-two {
  bottom: 90px;
  left: 8px;
  color: var(--sage);
  font-size: 0.8rem;
}

.reassurance-strip {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1px;
  margin-top: 54px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
  box-shadow: var(--shadow-sm);
  list-style: none;
}

.reassurance-strip > li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.85);
}

.reassurance-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--terracotta-dark);
  background: var(--blush);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
}

.reassurance-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.4;
}

.reassurance-strip strong {
  color: var(--sage);
  font-size: 0.91rem;
}

.services-section {
  background: #fff;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading-centred {
  margin-inline: auto;
  text-align: center;
}

.section-heading-centred .eyebrow {
  justify-content: center;
}

.section-heading h2,
.about-copy h2,
.contact-intro h2,
.final-cta h2 {
  font-size: clamp(2.5rem, 8.5vw, 4.3rem);
}

.section-heading > p:last-child,
.about-copy > p,
.contact-intro > p {
  color: var(--muted);
}

.help-grid {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.help-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 14px 16px;
  border: 1px solid rgba(74, 28, 12, 0.1);
  border-radius: 15px;
  color: var(--ink);
  background: var(--cream);
  font-size: 0.95rem;
  font-weight: 650;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.help-grid li:hover {
  border-color: rgba(198, 103, 77, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.check-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--sage);
  background: var(--sage-pale);
  font-size: 0.82rem;
  font-weight: 900;
}

.ask-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius-md);
  color: var(--sage);
  background: var(--blush);
}

.ask-banner p {
  flex: 1 1 220px;
  margin: 0;
}

.ask-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--terracotta);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.text-link {
  color: var(--terracotta-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.why-section {
  padding: 0;
  color: #fff;
  background: var(--sage);
}

.why-grid {
  width: 100%;
  max-width: none;
}

.why-highlight,
.why-copy {
  padding: 70px 24px;
}

.why-highlight {
  position: relative;
  overflow: hidden;
  color: var(--sage);
  background: var(--blush);
}

.why-highlight::after {
  position: absolute;
  right: -50px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(198, 103, 77, 0.25);
  border-radius: 50%;
  content: "";
}

.quote-mark {
  height: 60px;
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
}

.why-highlight h2 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 15px 0 26px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.07;
}

.why-line {
  width: 62px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--terracotta);
}

.why-highlight p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-transform: uppercase;
}

.why-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-copy h2 {
  max-width: 570px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.why-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.why-copy > p:last-child {
  margin-bottom: 0;
  color: #fff;
  font-weight: 650;
}

.process-section {
  background: var(--cream);
}

.steps-list {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list::before {
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 27px;
  width: 2px;
  background: var(--blush-deep);
  content: "";
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 15px;
  align-items: start;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 6px solid var(--cream);
  border-radius: 50%;
  color: #fff;
  background: var(--terracotta);
  box-shadow: 0 0 0 1px rgba(198, 103, 77, 0.12);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.step-content {
  padding: 20px;
  border: 1px solid rgba(74, 28, 12, 0.09);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 24px rgba(74, 28, 12, 0.045);
}

.step-content h3 {
  margin-bottom: 8px;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

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

.cases-section {
  background: #fff;
}

.cases-heading h2 {
  max-width: 850px;
}

.case-grid {
  display: grid;
  gap: 18px;
}

.case-card {
  display: flex;
  flex-direction: column;
  padding: 25px 22px;
  border: 1px solid rgba(74, 28, 12, 0.1);
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: 0 10px 32px rgba(74, 28, 12, 0.045);
}

.case-card-featured {
  background: var(--sage-wash);
}

.case-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--terracotta-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--terracotta-dark);
  background: var(--blush);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0;
}

.case-card h3 {
  margin-bottom: 15px;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.case-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.91rem;
}

.case-card p:last-child {
  margin-bottom: 0;
}

.case-card blockquote {
  margin: auto 0 0;
  padding: 17px 17px 17px 20px;
  border-left: 3px solid var(--terracotta);
  border-radius: 0 12px 12px 0;
  color: var(--sage);
  background: #fff;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.35;
}

.case-outcome {
  margin-top: auto;
  padding-top: 8px;
  color: var(--sage) !important;
  font-weight: 700;
}

.case-outcome span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 5px;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font-size: 0.7rem;
}

.compact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.compact-list li {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--sage);
  background: var(--sage-pale);
  font-size: 0.73rem;
  font-weight: 650;
}

.cases-closing {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding: 26px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--sage);
}

.cases-closing img {
  width: 64px;
  height: 64px;
}

.cases-closing p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.cases-closing p:last-child {
  margin-bottom: 0;
  color: #fff;
}

.about-section {
  background: var(--sage-pale);
}

.about-grid {
  display: grid;
  gap: 42px;
}

.about-copy > p {
  max-width: 700px;
  margin-bottom: 14px;
}

.about-copy .about-closing {
  margin-top: 22px;
  padding-left: 16px;
  border-left: 3px solid var(--terracotta);
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.approach-card {
  position: relative;
  overflow: hidden;
  padding: 27px 22px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--sage);
  box-shadow: var(--shadow-md);
}

.approach-card::before {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.approach-label {
  margin-bottom: 22px;
  color: var(--blush-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.approach-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.approach-card li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.approach-card li span {
  color: var(--blush-deep);
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.approach-signoff {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 650;
}

.approach-signoff span {
  color: var(--blush-deep);
}

.audience-section {
  background: var(--cream);
}

.audience-grid {
  display: grid;
  gap: 12px;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 80px;
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.audience-item > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--terracotta-dark);
  background: var(--blush);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
}

.audience-item p {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 620;
  line-height: 1.45;
}

.audience-signoff {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 36px auto 0;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-align: center;
}

.audience-signoff span {
  color: var(--terracotta);
}

.contact-section {
  color: #fff;
  background:
    radial-gradient(circle at 10% 15%, rgba(239, 194, 173, 0.1), transparent 27%),
    var(--sage);
}

.contact-layout {
  display: grid;
  gap: 44px;
}

.contact-intro h2 {
  max-width: 520px;
}

.contact-intro > p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.76);
}

.direct-contact {
  display: grid;
  gap: 11px;
  margin-top: 30px;
}

.direct-card {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.direct-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.11);
  transform: translateX(3px);
}

.direct-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--sage);
  background: var(--blush);
}

.direct-icon svg {
  width: 21px;
  fill: currentColor;
}

.direct-icon.whatsapp-icon {
  color: #fff;
  background: #2d9d67;
}

.direct-card > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.direct-card small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
}

.direct-card strong {
  margin: 2px 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.direct-card em {
  overflow: hidden;
  color: var(--blush-deep);
  font-size: 0.68rem;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.direct-card > b {
  color: var(--blush-deep);
}

.contact-reassurance {
  display: flex;
  gap: 9px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.8rem;
}

.contact-reassurance span {
  color: var(--blush-deep);
}

.enquiry-form {
  padding: 25px 18px;
  border-radius: 28px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 28px 70px rgba(57, 25, 15, 0.23);
}

.form-heading {
  margin-bottom: 25px;
}

.form-heading > span {
  color: var(--terracotta-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 5px 0 5px;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.1;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-heading b,
.field label > span,
.radio-fieldset legend > span,
.consent-check b {
  color: var(--terracotta-dark);
}

.field-grid {
  display: grid;
  gap: 18px;
}

.field {
  margin-bottom: 19px;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 7px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #ded4cc;
  border-radius: 11px;
  color: var(--ink);
  background: #fffdfb;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input,
.field select {
  min-height: 49px;
  padding: 10px 12px;
}

.field select {
  appearance: none;
  padding-right: 38px;
  background-image: linear-gradient(45deg, transparent 50%, var(--sage) 50%), linear-gradient(135deg, var(--sage) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field textarea {
  min-height: 115px;
  padding: 12px;
  line-height: 1.55;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--terracotta);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(198, 103, 77, 0.11);
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(163, 55, 44, 0.08);
}

.field small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
}

.radio-fieldset {
  padding: 0;
  border: 0;
}

.radio-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.radio-card {
  position: relative;
  margin: 0 !important;
}

.radio-card input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.radio-card span {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 8px 4px;
  border: 1px solid #ded4cc;
  border-radius: 10px;
  color: var(--muted);
  background: #fffdfb;
  font-size: 0.72rem;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.radio-card input:checked + span {
  border-color: var(--sage);
  color: #fff;
  background: var(--sage);
}

.radio-card input:focus-visible + span {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.privacy-notice {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  margin: 24px 0 20px;
  padding: 16px;
  border: 1px solid #eaded3;
  border-radius: 15px;
  background: var(--sage-wash);
}

.privacy-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--sage);
  background: var(--sage-pale);
}

.privacy-icon svg {
  width: 19px;
  fill: currentColor;
}

.privacy-notice h4 {
  margin-bottom: 4px;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.privacy-notice p {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
}

.privacy-notice .privacy-warning {
  color: #5a514a;
}

.privacy-notice a {
  color: var(--terracotta-dark);
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.document-safety-note {
  margin: 20px 0;
  padding: 15px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  color: var(--muted);
  background: var(--cream);
  font-size: 0.72rem;
}

.document-safety-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--sage);
  font-size: 0.78rem;
}

.document-safety-note p {
  margin: 0;
}

.consent-check {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 9px;
  align-items: start;
  margin: 12px 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
  cursor: pointer;
}

.consent-check input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--sage);
}

.btn-submit {
  width: 100%;
  margin-top: 14px;
  border: 0;
}

.btn-submit[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  display: none;
  margin: 13px 0 0;
  padding: 11px 13px;
  border-radius: 10px;
  color: var(--sage);
  background: var(--sage-pale);
  font-size: 0.75rem;
  font-weight: 650;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: var(--error);
  background: #fbe9e6;
}

.final-cta {
  color: #fff;
  background: var(--terracotta);
}

.final-cta-inner {
  display: grid;
  gap: 28px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}

.final-cta h2 {
  margin-bottom: 17px;
}

.final-cta p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.83);
}

.final-cta p strong {
  color: #fff;
}

.final-cta .btn {
  justify-self: start;
}

.disclaimer {
  padding: 23px 0;
  color: #514b47;
  background: var(--cream-deep);
}

.disclaimer-inner {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.disclaimer-inner > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--muted);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
}

.disclaimer p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.6;
}

.site-footer {
  padding: 54px 0 86px;
  color: rgba(255, 255, 255, 0.75);
  background: #32160e;
}

.footer-main {
  display: grid;
  gap: 38px;
  padding-bottom: 36px;
}

.brand-footer {
  color: #fff;
}

.brand-footer .brand-copy span {
  color: var(--blush-deep);
}

.footer-brand > p {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.footer-links h2,
.footer-contact h2 {
  margin-bottom: 16px;
  color: var(--blush-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
}

.footer-links a {
  font-size: 0.82rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact a {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  font-size: 0.78rem;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.footer-contact strong {
  color: #fff;
  font-weight: 620;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.69rem;
}

.footer-bottom p:first-child {
  color: var(--blush-deep);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.mobile-actions {
  position: fixed;
  z-index: 90;
  right: 8px;
  bottom: max(8px, env(safe-area-inset-bottom));
  left: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 60px;
  overflow: hidden;
  border: 1px solid rgba(74, 28, 12, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 44px rgba(57, 25, 15, 0.25);
  backdrop-filter: blur(16px);
}

.mobile-actions a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border-right: 1px solid var(--line);
  color: var(--sage);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mobile-actions a:first-child {
  color: #fff;
  background: var(--terracotta);
}

.mobile-actions a:last-child {
  border-right: 0;
}

.mobile-actions span {
  font-size: 0.95rem;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Confirmation and error pages */
.simple-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 14%, rgba(249, 222, 213, 0.8), transparent 30%),
    var(--cream);
}

.simple-shell {
  display: grid;
  width: min(calc(100% - 36px), 760px);
  min-height: 100vh;
  margin-inline: auto;
  padding: 34px 0;
  place-content: center;
}

.simple-brand {
  justify-self: center;
  margin-bottom: 24px;
}

.simple-brand-logo {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(74, 28, 12, 0.12));
}

.simple-card {
  padding: clamp(30px, 7vw, 58px);
  border: 1px solid rgba(74, 28, 12, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.simple-card .eyebrow {
  justify-content: center;
}

.simple-card h1 {
  margin-bottom: 18px;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 9vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.simple-card > p:not(.eyebrow) {
  max-width: 590px;
  margin-right: auto;
  margin-bottom: 12px;
  margin-left: auto;
  color: var(--muted);
}

.simple-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--terracotta);
  font-size: 1.4rem;
  font-weight: 850;
}

.simple-icon-muted {
  color: var(--terracotta-dark);
  background: var(--blush);
}

.simple-actions {
  justify-content: center;
  margin-top: 28px;
}

.simple-footer {
  margin: 23px 0 0;
  color: var(--terracotta-dark);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: center;
}

/* Privacy page */
.policy-page {
  background: #fff;
}

.policy-header .primary-nav {
  justify-content: flex-end;
}

.policy-hero {
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at 85% 15%, rgba(239, 175, 151, 0.25), transparent 28%),
    var(--cream);
}

.policy-hero-inner {
  max-width: 820px;
}

.policy-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 11vw, 5.2rem);
}

.policy-hero p:not(.eyebrow) {
  max-width: 710px;
  color: var(--muted);
  font-size: 1.05rem;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 25px;
  color: var(--sage);
  font-size: 0.75rem;
  font-weight: 700;
}

.policy-content {
  display: grid;
  gap: 34px;
  padding-top: 64px;
  padding-bottom: 74px;
}

.policy-toc {
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
}

.policy-toc h2 {
  margin-bottom: 14px;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.policy-toc nav {
  display: grid;
  gap: 8px;
}

.policy-toc a {
  color: var(--muted);
  font-size: 0.78rem;
}

.policy-toc a:hover {
  color: var(--terracotta-dark);
}

.policy-copy {
  min-width: 0;
}

.policy-intro-note {
  margin-bottom: 34px;
  padding: 20px;
  border-left: 4px solid var(--terracotta);
  border-radius: 0 14px 14px 0;
  color: var(--sage);
  background: var(--blush);
}

.policy-intro-note p {
  margin: 0;
}

.policy-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 105px;
}

.policy-section:first-of-type {
  padding-top: 0;
}

.policy-section h2 {
  margin-bottom: 16px;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.policy-section h3 {
  margin: 23px 0 9px;
  color: var(--sage);
  font-size: 1rem;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  font-size: 0.92rem;
}

.policy-section ul {
  padding-left: 19px;
}

.policy-section li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.policy-section a {
  color: var(--terracotta-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rights-callout {
  margin-top: 22px;
  padding: 18px;
  border-radius: 14px;
  color: var(--sage);
  background: var(--sage-pale);
}

.rights-callout strong {
  display: block;
  margin-bottom: 4px;
}

@media (min-width: 580px) {
  .container {
    width: min(calc(100% - 56px), var(--container));
  }

  .hero {
    padding-top: 88px;
  }

  .help-grid,
  .audience-grid,
  .field-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .reassurance-strip {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .cases-closing {
    grid-template-columns: auto 1fr;
    align-items: start;
    padding: 32px;
  }

  .direct-contact {
    grid-template-columns: 1fr 1fr;
  }

  .enquiry-form {
    padding: 34px;
  }

  .footer-main {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer-contact {
    grid-column: 2;
  }
}

@media (min-width: 760px) {
  .section {
    padding: 112px 0;
  }

  .why-highlight,
  .why-copy {
    padding: 92px max(7vw, 50px);
  }

  .help-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-list {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }

  .steps-list::before {
    top: 31px;
    right: 10%;
    bottom: auto;
    left: 10%;
    width: auto;
    height: 2px;
  }

  .step {
    grid-template-columns: 1fr;
    grid-template-rows: 62px 1fr;
    gap: 18px;
    justify-items: center;
  }

  .step:nth-child(1),
  .step:nth-child(2),
  .step:nth-child(3) {
    grid-column: span 2;
  }

  .step:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .step:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .step-number {
    width: 62px;
    height: 62px;
  }

  .step-content {
    height: 100%;
    padding: 24px;
    text-align: center;
  }

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

  .final-cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .footer-main {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 980px) {
  :root {
    --header-height: 88px;
  }

  .site-header {
    height: var(--header-height);
  }

  .brand-mark {
    width: 54px;
    height: 54px;
  }

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

  .brand-copy span {
    font-size: 0.66rem;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav,
  .primary-nav.is-open {
    position: static;
    display: flex;
    align-items: center;
    gap: 18px;
    max-height: none;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .primary-nav > a {
    position: relative;
    padding: 12px 0;
    border: 0;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 750;
  }

  .primary-nav > a::after {
    position: absolute;
    right: 50%;
    bottom: 6px;
    left: 50%;
    height: 2px;
    background: var(--terracotta);
    content: "";
    transition: right 180ms ease, left 180ms ease;
  }

  .primary-nav > a:hover {
    color: var(--sage);
  }

  .primary-nav > a:hover::after {
    right: 0;
    left: 0;
  }

  .nav-actions {
    display: flex;
    gap: 7px;
    padding: 0 0 0 4px;
  }

  .nav-actions .btn-primary {
    grid-column: auto;
  }

  .hero {
    padding: 94px 0 56px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.86fr);
    gap: 42px;
    align-items: center;
  }

  .hero-copy > p:not(.eyebrow, .hero-tagline, .hero-promise) {
    font-size: 0.98rem;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-visual::before {
    inset: 26px 18px 8px 35px;
  }

  .support-card {
    margin-top: 65px;
    padding: 30px 26px 26px;
  }

  .note-top {
    top: 38px;
  }

  .note-bottom {
    bottom: 35px;
  }

  .reassurance-strip {
    margin-top: 76px;
  }

  .why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .why-highlight,
  .why-copy {
    padding: 110px max(6vw, 70px);
  }

  .case-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .case-card {
    grid-column: span 4;
    padding: 29px 27px;
  }

  .case-card-featured {
    grid-column: span 6;
  }

  .case-card:nth-child(6),
  .case-card:nth-child(7),
  .case-card:nth-child(8) {
    grid-column: span 4;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 80px;
    align-items: center;
  }

  .approach-card {
    padding: 38px 36px;
  }

  .audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .audience-item {
    align-items: flex-start;
    min-height: 150px;
    flex-direction: column;
    padding: 20px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
    gap: 70px;
    align-items: start;
  }

  .contact-intro {
    position: sticky;
    top: 130px;
  }

  .direct-contact {
    grid-template-columns: 1fr;
  }

  .enquiry-form {
    padding: 42px;
  }

  .mobile-actions {
    display: none;
  }

  .site-footer {
    padding-bottom: 36px;
  }

  .policy-content {
    grid-template-columns: 230px minmax(0, 760px);
    justify-content: center;
    gap: 70px;
  }

  .policy-toc {
    position: sticky;
    top: 118px;
  }
}

@media (min-width: 1180px) {
  .primary-nav {
    gap: 25px;
  }

  .nav-actions {
    gap: 9px;
    padding-left: 10px;
  }

  .hero-grid {
    gap: 80px;
  }

  .hero h1 {
    font-size: 5.8rem;
  }
}

@media (max-width: 390px) {
  .brand-copy strong {
    font-size: 1.08rem;
  }

  .brand-copy span {
    font-size: 0.55rem;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .button-row .btn {
    width: 100%;
  }

  .button-row .btn-text {
    width: auto;
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 385px;
  }

  .floating-note {
    font-size: 0.64rem;
  }

  .radio-card span {
    font-size: 0.64rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-actions,
  .final-cta,
  .site-footer,
  .nav-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .policy-hero,
  .policy-content {
    padding: 24px 0;
  }

  .policy-content {
    display: block;
  }

  .policy-toc {
    display: none;
  }
}
