:root {
  --ink: #071a36;
  --ink-soft: #233653;
  --paper: #fbfaf8;
  --white: #ffffff;
  --silver: #e5e7ea;
  --silver-dark: #9ca5b1;
  --ruby: #a81243;
  --ruby-bright: #dc2b66;
  --sapphire: #075cad;
  --sapphire-deep: #063878;
  --emerald: #007b62;
  --emerald-deep: #004a3e;
  --line: rgba(7, 26, 54, .13);
  --shadow: 0 24px 70px rgba(7, 26, 54, .12);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  width: min(1440px, calc(100% - 48px));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-gem {
  width: 26px;
  height: 30px;
  display: inline-block;
  background:
    linear-gradient(135deg, transparent 48%, rgba(255,255,255,.55) 49% 51%, transparent 52%),
    linear-gradient(45deg, var(--sapphire), #071f46 52%, var(--emerald));
  clip-path: polygon(50% 0, 95% 30%, 82% 78%, 50% 100%, 18% 78%, 5% 30%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.35);
}

.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.brand-name em {
  color: var(--ruby);
  font-size: .8em;
  font-weight: 400;
}

.site-nav { display: flex; align-items: center; gap: 28px; }

.site-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .045em;
  text-decoration: none;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--ruby);
  transition: right .22s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 13px 23px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: white;
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .11em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--sapphire-deep);
  box-shadow: 0 10px 26px rgba(7, 26, 54, .16);
  transform: translateY(-2px);
}

.button-small { min-height: 42px; padding: 10px 18px; font-size: 10px; }

.button-outline {
  color: var(--ink);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible { color: white; }

.hero {
  width: min(1440px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  padding: 80px 4vw 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, .95fr);
  align-items: center;
  gap: 7vw;
  overflow: hidden;
}

.hero-copy { max-width: 690px; }

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sapphire-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--ruby);
}

.eyebrow.light { color: #dbe9fa; }
.eyebrow.light > span { background: #eb4d7e; }

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

h1, h2, h3 { font-family: var(--serif); font-weight: 500; }

h1 {
  margin-bottom: 26px;
  font-size: clamp(56px, 6vw, 98px);
  line-height: .97;
  letter-spacing: -.052em;
}

h1 em {
  display: block;
  color: var(--ruby);
  font-weight: 400;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 4.3vw, 67px);
  line-height: 1.05;
  letter-spacing: -.042em;
}

h3 { font-size: 27px; line-height: 1.15; letter-spacing: -.025em; }

.hero-lede {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
}

.button-row { display: flex; align-items: center; gap: 27px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.text-link span { color: var(--ruby); font-size: 18px; }

.hero-notes {
  margin: 38px 0 0;
  padding: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  border-top: 1px solid var(--line);
  list-style: none;
  color: #526079;
  font-size: 12px;
  font-weight: 650;
}

.hero-notes li::before { content: '◆'; margin-right: 8px; color: var(--emerald); font-size: 8px; }

.hero-art {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.logo-card {
  position: relative;
  z-index: 2;
  width: min(520px, 92%);
  padding: 20px;
  background: white;
  border: 1px solid rgba(7, 26, 54, .12);
  border-radius: 50% 50% 7px 7px / 42% 42% 7px 7px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.logo-card::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(7, 26, 54, .08);
  pointer-events: none;
}

.logo-card img { width: 100%; }

.halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.halo-ruby {
  width: 270px;
  height: 270px;
  top: 4px;
  right: -52px;
  background: radial-gradient(circle at 38% 35%, rgba(242, 75, 125, .38), rgba(168, 18, 67, .08) 58%, transparent 70%);
}

.halo-emerald {
  width: 330px;
  height: 330px;
  bottom: -30px;
  left: -80px;
  background: radial-gradient(circle at 60% 42%, rgba(0, 161, 125, .28), rgba(0, 74, 62, .06) 60%, transparent 72%);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: white;
  background: var(--ink);
}

.trust-strip span {
  min-height: 92px;
  padding: 24px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid rgba(255,255,255,.13);
  font-family: var(--serif);
  font-size: 16px;
}

.trust-strip span:last-child { border-right: 0; }
.trust-strip i { color: #85b9ee; font-family: var(--sans); font-size: 10px; font-style: normal; font-weight: 700; letter-spacing: .12em; }

.section {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading { max-width: 790px; }
.section-heading.centered { margin: 0 auto 60px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:last-child { max-width: 650px; color: #58667a; font-size: 17px; }

.problem { padding-bottom: 90px; }
.problem .section-heading { max-width: 800px; }

.problem-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-grid article {
  padding: 38px 38px 42px;
  border-right: 1px solid var(--line);
}

.problem-grid article:first-child { padding-left: 0; }
.problem-grid article:last-child { padding-right: 0; border-right: 0; }
.problem-grid h3 { min-height: 62px; margin: 24px 0 15px; font-size: 24px; }
.problem-grid p { margin-bottom: 0; color: #5d6a7d; font-size: 14px; }

.mini-mark {
  width: 17px;
  height: 17px;
  display: block;
  transform: rotate(45deg);
}

.mark-one { background: linear-gradient(135deg, var(--ruby), #ef5c8a); }
.mark-two { background: linear-gradient(135deg, var(--sapphire-deep), #198ee3); }
.mark-three { background: linear-gradient(135deg, var(--emerald-deep), #0bb990); }

.colour-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 10vw;
  align-items: start;
}

.colour-intro h2 { max-width: 560px; }
.intro-copy { padding-top: 48px; }
.intro-copy p { color: #506077; }
.large-copy { color: var(--ink) !important; font-family: var(--serif); font-size: 24px; line-height: 1.5; }

.faith-section {
  padding: 120px max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: 9vw;
  color: white;
  background:
    radial-gradient(circle at 94% 12%, rgba(12, 111, 181, .34), transparent 31%),
    linear-gradient(135deg, #06152d, #082344 70%, #071a36);
}

.faith-copy { max-width: 720px; }

.scripture {
  margin-bottom: 25px;
  color: #9cc7ee;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.scripture span { margin: 0 8px; color: #ef5c8a; }
.faith-copy h2 { max-width: 690px; }
.faith-copy > p:last-child { margin-bottom: 0; color: #c3cfde; font-size: 17px; }

.faith-section blockquote {
  margin: 0;
  padding: 26px 0 26px 55px;
  border-left: 1px solid rgba(255,255,255,.26);
  color: white;
  font-family: var(--serif);
  font-size: clamp(35px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.faith-section blockquote > span {
  display: block;
  height: 39px;
  color: #62a8df;
  font-size: 88px;
  line-height: .7;
}

.faith-section blockquote em { color: #ef6c95; font-weight: 400; }

.experience { padding-bottom: 140px; }

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps li {
  position: relative;
  padding: 42px 42px 0;
  border-right: 1px solid var(--line);
}

.steps li:first-child { padding-left: 0; }
.steps li:last-child { padding-right: 0; border-right: 0; }
.steps h3 { margin-bottom: 14px; }
.steps p { color: #5c6879; }
.step-number { color: var(--ruby); font-size: 10px; font-weight: 800; letter-spacing: .15em; }

.step-icon {
  width: 74px;
  height: 74px;
  margin: 27px 0 29px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(7,26,54,.13);
}

.observe { background: radial-gradient(circle, var(--sapphire) 0 17%, transparent 18% 37%, var(--sapphire-deep) 38% 41%, transparent 42%); }
.compare { background: linear-gradient(90deg, var(--ruby) 0 48%, white 48% 52%, var(--emerald) 52%); }
.clarify { background: conic-gradient(from 45deg, var(--sapphire) 0 25%, var(--emerald) 0 50%, var(--ruby) 0 75%, var(--silver) 0); }

.services {
  width: 100%;
  padding: 120px max(24px, calc((100vw - 1240px) / 2));
  color: white;
  background:
    radial-gradient(circle at 92% 12%, rgba(9, 111, 190, .28), transparent 30%),
    linear-gradient(140deg, #06162f, #081f40 62%, #071832);
}

.service-heading {
  max-width: none;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: end;
  gap: 60px;
}

.service-heading h2 { max-width: 690px; margin-bottom: 0; }
.service-heading > p { color: #b3bfd0 !important; }
.services .eyebrow { color: #bdd8f4; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.service-card {
  padding: 48px;
  color: var(--ink);
  background: #f6f7f8;
}

.service-card.featured { background: white; border-top: 5px solid var(--ruby); }
.workshop-card { border-top: 5px solid var(--emerald); }

.card-topline {
  margin-bottom: 38px;
  display: flex;
  justify-content: space-between;
  color: var(--sapphire-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-card h3 { margin-bottom: 14px; font-size: clamp(30px, 3vw, 43px); }

.price {
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: 50px;
  line-height: 1;
}

.price sup { color: var(--ruby); font-size: 20px; }
.price small { color: #697789; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.service-intro { min-height: 72px; color: #536176; }

.service-card ul { margin: 27px 0 36px; padding: 25px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-card li { position: relative; margin: 10px 0; padding-left: 25px; color: #34455b; font-size: 14px; }
.service-card li::before { content: '◆'; position: absolute; left: 2px; top: 2px; color: var(--emerald); font-size: 8px; }

.workshop-story {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 9vw;
}

.workshop-art {
  position: relative;
  height: 520px;
  padding: 58px 46px 38px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  background: #eef1f2;
  box-shadow: var(--shadow);
}

.workshop-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255,255,255,.8), transparent 45%);
  pointer-events: none;
}

.workshop-art span {
  position: relative;
  width: 16%;
  border-radius: 70% 70% 4px 4px / 12% 12% 4px 4px;
  box-shadow: 0 14px 24px rgba(7,26,54,.16);
  transform: skewY(-4deg);
}

.workshop-art span:nth-child(1) { height: 58%; background: linear-gradient(165deg, #e85a86, var(--ruby)); }
.workshop-art span:nth-child(2) { height: 79%; background: linear-gradient(165deg, #258edc, var(--sapphire-deep)); }
.workshop-art span:nth-child(3) { height: 94%; background: linear-gradient(165deg, #16a986, var(--emerald-deep)); }
.workshop-art span:nth-child(4) { height: 72%; background: linear-gradient(165deg, #d9dde3, #818d9c); }
.workshop-art span:nth-child(5) { height: 51%; background: linear-gradient(165deg, #f1b2c6, #8d1239); }

.workshop-art p {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 20px;
  left: 25px;
  margin: 0;
  color: white;
  font-family: var(--serif);
  font-size: 18px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(7,26,54,.65);
}

.workshop-copy { max-width: 670px; }
.workshop-copy > p:not(.eyebrow):not(.large-copy):not(.workshop-note) { color: #536176; }

.workshop-details {
  margin: 32px 0;
  padding: 26px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workshop-details span {
  color: #637084;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.workshop-details strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 23px; font-weight: 500; letter-spacing: 0; text-transform: none; }

.workshop-note {
  margin-bottom: 28px;
  padding: 19px 21px;
  color: #526177;
  background: #f0f2f3;
  border-left: 3px solid var(--emerald);
  font-size: 13px;
}

.bonus {
  padding: 120px max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 9vw;
  color: white;
  background: var(--emerald-deep);
}

.bonus-heading h2 { max-width: 610px; }
.bonus-heading > p:last-child { max-width: 590px; color: #b8d5cd; }

.bonus-grid { border-top: 1px solid rgba(255,255,255,.2); }
.bonus-grid article { padding: 30px 0 27px; display: grid; grid-template-columns: 40px 190px 1fr; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.2); }
.bonus-grid article > span { color: #8fd4c2; font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.bonus-grid h3 { margin: 0; color: white; font-size: 22px; }
.bonus-grid p { margin: 0; color: #b8d5cd; font-size: 14px; }

.about { display: grid; grid-template-columns: .78fr 1.22fr; gap: 9vw; align-items: center; }

.about-art {
  min-height: 530px;
  padding: 60px 30px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  background:
    radial-gradient(circle at 35% 30%, rgba(25, 136, 221, .6), transparent 29%),
    radial-gradient(circle at 70% 70%, rgba(0, 164, 126, .5), transparent 31%),
    linear-gradient(145deg, #071a36, #042650);
  box-shadow: var(--shadow);
}

.about-art > p { margin: auto 0 0; opacity: .72; font-size: 10px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }

.about-gem {
  width: 250px;
  height: 300px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, transparent 49%, rgba(255,255,255,.26) 50% 51%, transparent 52%),
    linear-gradient(45deg, transparent 49%, rgba(255,255,255,.16) 50% 51%, transparent 52%),
    linear-gradient(145deg, #5a001a, #dd2862 35%, #970d3d 61%, #4e0017);
  clip-path: polygon(50% 0, 92% 22%, 100% 57%, 74% 89%, 50% 100%, 26% 89%, 0 57%, 8% 22%);
  filter: drop-shadow(0 20px 24px rgba(0,0,0,.24));
}

.about-gem span { color: white; font-family: var(--serif); font-size: 94px; font-weight: 400; text-shadow: 0 4px 12px rgba(0,0,0,.2); }
.about-copy { max-width: 650px; }
.about-copy > p:not(.eyebrow):not(.large-copy) { color: #536176; }

.values { margin-top: 32px; padding-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; border-top: 1px solid var(--line); }
.values span { padding: 7px 12px; border: 1px solid var(--line); color: var(--sapphire-deep); font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

.outcomes { padding-top: 40px; }
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.outcome-grid article { padding: 42px; background: white; border: 1px solid rgba(7,26,54,.08); box-shadow: 0 16px 50px rgba(7,26,54,.06); }
.outcome-grid h3 { margin-bottom: 13px; font-size: 24px; }
.outcome-grid p { margin-bottom: 0; color: #5d6a7d; font-size: 14px; }
.outcome-mark { width: 38px; height: 38px; margin-bottom: 28px; transform: rotate(45deg); }
.ruby-mark { background: linear-gradient(135deg, var(--ruby), #ef5c8a); }
.sapphire-mark { background: linear-gradient(135deg, var(--sapphire-deep), #198ee3); }
.emerald-mark { background: linear-gradient(135deg, var(--emerald-deep), #0bb990); }

.faq { display: grid; grid-template-columns: .78fr 1.22fr; gap: 8vw; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 26px 48px 26px 0; cursor: pointer; font-family: var(--serif); font-size: 20px; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 8px; color: var(--ruby); font-family: var(--sans); font-size: 24px; font-weight: 300; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { padding-right: 48px; color: #59677a; font-size: 14px; }

.contact {
  position: relative;
  min-height: 560px;
  padding: 110px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--ink);
  text-align: center;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  left: calc(50% - 350px);
  top: -350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 118, 196, .42), rgba(168, 18, 67, .14) 48%, transparent 70%);
}

.contact > *:not(.contact-glow) { position: relative; }
.contact .eyebrow { margin-bottom: 27px; }
.contact h2 { max-width: 800px; margin-bottom: 20px; }
.contact > p:not(.eyebrow) { max-width: 650px; margin-bottom: 32px; color: #b7c2d2; }
.button-light { color: var(--ink); background: white; border-color: white; }
.button-light:hover, .button-light:focus-visible { color: white; background: var(--ruby); border-color: var(--ruby); }
.contact small { margin-top: 22px; color: #8391a5; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.site-footer {
  padding: 58px max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: .8fr 1.2fr .9fr;
  align-items: start;
  gap: 40px;
  background: #f3f2ef;
}

.site-footer > p { margin: 0; color: #667285; font-size: 12px; }
.site-footer .legal { text-align: right; }

@media (max-width: 1050px) {
  .site-nav { display: none; }
  .hero { grid-template-columns: 1fr 430px; gap: 3vw; padding-inline: 0; }
  .bonus { gap: 5vw; }
  .bonus-grid article { grid-template-columns: 32px 150px 1fr; }
}

@media (max-width: 820px) {
  .site-header { width: calc(100% - 30px); min-height: 75px; }
  .site-header .button { display: none; }
  .brand-name { font-size: 18px; }
  .hero { width: calc(100% - 30px); padding: 64px 0 74px; grid-template-columns: 1fr; gap: 50px; }
  .hero-art { min-height: 470px; }
  .logo-card { width: min(460px, 84%); }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip span:nth-child(2) { border-right: 0; }
  .trust-strip span:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .section { width: calc(100% - 36px); padding: 86px 0; }
  .colour-intro, .about, .faq, .bonus, .faith-section, .workshop-story { grid-template-columns: 1fr; gap: 55px; }
  .intro-copy { padding-top: 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-grid article,
  .problem-grid article:first-child,
  .problem-grid article:last-child { padding: 32px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .problem-grid article:last-child { border-bottom: 0; }
  .problem-grid h3 { min-height: 0; }
  .faith-section { padding-block: 86px; }
  .faith-section blockquote { padding-left: 36px; }
  .steps { grid-template-columns: 1fr; }
  .steps li, .steps li:first-child, .steps li:last-child { padding: 32px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .steps li:last-child { border-bottom: 0; }
  .step-icon { margin: 24px 0; }
  .service-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .workshop-art { height: 430px; }
  .bonus { padding-block: 86px; }
  .bonus-grid article { grid-template-columns: 36px 1fr; }
  .bonus-grid p { grid-column: 2; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcomes { padding-top: 0; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer .legal { text-align: left; }
}

@media (max-width: 520px) {
  .button-row { align-items: flex-start; flex-direction: column; }
  h1 { font-size: 50px; }
  h2 { font-size: 39px; }
  .hero-lede { font-size: 18px; }
  .hero-notes { flex-direction: column; }
  .hero-art { min-height: 370px; }
  .logo-card { width: 92%; padding: 12px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip span { min-height: 68px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .service-card { padding: 34px 25px; }
  .service-intro { min-height: 0; }
  .faith-section blockquote { padding-left: 25px; }
  .workshop-art { height: 360px; padding-inline: 25px; }
  .workshop-details { grid-template-columns: 1fr; gap: 18px; }
  .about-art { min-height: 430px; }
  .about-gem { width: 190px; height: 230px; }
  .outcome-grid article { padding: 32px; }
  .faq-list summary { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
