:root {
  --cream: #fbf6ec;
  --paper: #fffdf7;
  --ink: #172116;
  --green: #164b32;
  --turquoise: #078f8b;
  --turquoise-dark: #066f6c;
  --turquoise-soft: rgba(7, 143, 139, 0.13);
  --sage: #7f8c61;
  --sage-soft: #e6eddc;
  --gold: #c7983a;
  --gold-soft: #f6ecd1;
  --orange: #d77700;
  --line: rgba(23, 33, 22, 0.15);
  --font-body: "Helvetica Neue", Arial, sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;
  --font-accent: "Bradley Hand", "Segoe Print", "Marker Felt", "Comic Sans MS", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fffdf8 0 150px, var(--cream) 150px 100%),
    radial-gradient(circle at 9% 20%, rgba(228, 235, 218, 0.42), transparent 18rem),
    radial-gradient(circle at 88% 9%, rgba(244, 233, 207, 0.45), transparent 24rem);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: clip;
}

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

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

main {
  margin: 0 auto;
  max-width: 1360px;
  overflow: visible;
  padding: 0 48px 34px;
  width: 100%;
}

.site-header {
  align-items: start;
  background: transparent;
  display: grid;
  gap: 2rem;
  grid-template-columns: 220px auto auto;
  isolation: isolate;
  margin: 0 -48px;
  padding: 18px 64px 14px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header::before {
  background: rgba(255, 253, 248, 0.98);
  border-bottom: 1px solid rgba(23, 33, 22, 0.08);
  bottom: 0;
  content: "";
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: absolute;
  right: 50%;
  top: 0;
  z-index: -1;
}

.brand img {
  background: transparent;
  width: 185px;
}

.main-nav {
  display: flex;
  gap: 34px;
  justify-content: end;
  min-width: 0;
  padding-top: 27px;
}

.main-nav a {
  align-items: center;
  border-bottom: 1px solid transparent;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  min-height: 44px;
  padding: 6px 2px;
}

.main-nav a.active,
.main-nav a:hover {
  border-color: var(--turquoise);
}

.client-login,
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  gap: 7px;
  justify-content: center;
  line-height: 1;
  min-height: 34px;
  white-space: nowrap;
}

.client-login {
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
  box-shadow: 0 10px 22px rgba(7, 143, 139, 0.18);
  color: #fff;
  font-size: 12px;
  margin-top: 18px;
  padding: 0 17px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 0.87fr 1.13fr;
  min-height: 500px;
  padding: 52px 0 62px;
  position: relative;
}

.hero::before {
  background: rgba(126, 140, 101, 0.18);
  bottom: 26px;
  content: "";
  height: 75px;
  left: -34px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 70%, transparent);
  position: absolute;
  transform: rotate(-9deg);
  width: 310px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  margin: 0 0 15px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 48px;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.hero h1 span {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.68em;
  font-weight: 400;
  line-height: 1.12;
  margin-top: 9px;
}

.hero-text {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  margin: 24px 0 21px;
  max-width: 430px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.button {
  border: 1px solid var(--turquoise-dark);
  font-size: 13px;
  padding: 0 20px;
}

.button.primary {
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
  box-shadow: 0 10px 20px rgba(7, 143, 139, 0.18);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 253, 247, 0.84);
  color: var(--turquoise-dark);
}

.hero-visual {
  min-height: 430px;
  position: relative;
}

.hero-shape {
  display: none;
}

.image-shape {
  aspect-ratio: 1 / 1;
  background: var(--cream);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-left: auto;
  overflow: hidden;
  position: relative;
  width: min(500px, 100%);
}

.image-shape picture {
  display: block;
  height: 100%;
  width: 100%;
}

.image-shape img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.handwritten-card {
  align-items: center;
  background: rgba(255, 253, 247, 0.92);
  border: 7px solid rgba(126, 140, 101, 0.75);
  border-radius: 50%;
  bottom: 40px;
  display: grid;
  height: 140px;
  justify-items: center;
  padding: 22px;
  position: absolute;
  right: 12px;
  text-align: center;
  width: 140px;
}

.handwritten-card p,
.script-note {
  font-family: var(--font-accent);
  letter-spacing: 0;
}

.handwritten-card p {
  color: #12150f;
  font-size: 15px;
  line-height: 1.05;
  margin: 0;
}

.handwritten-card span {
  color: var(--sage);
  font-size: 20px;
}

.trusted {
  align-items: center;
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(23, 33, 22, 0.04);
  display: grid;
  gap: 30px;
  grid-template-columns: 250px 1fr;
  margin: 0 0 48px;
  padding: 22px 70px;
}

.trusted p {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.45;
  margin: 0;
  text-transform: uppercase;
}

.trusted span {
  display: block;
}

.trusted div {
  align-items: center;
  color: rgba(23, 33, 22, 0.52);
  display: flex;
  font-size: 20px;
  gap: 42px;
  justify-content: space-between;
}

.intro-mingle {
  align-items: center;
  background:
    linear-gradient(125deg, rgba(255, 253, 247, 0.92), rgba(230, 237, 220, 0.5)),
    var(--paper);
  border: 1px solid rgba(23, 33, 22, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) 210px;
  margin: 0 0 44px;
  padding: 42px;
}

.intro-mingle h2,
.mind-thought h2 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 36px;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

.intro-mingle p:not(.eyebrow) {
  color: rgba(23, 33, 22, 0.78);
  font-size: 16px;
  line-height: 1.68;
  margin: 0 0 14px;
}

.intro-mingle .button {
  margin-top: 8px;
}

.mind-circles {
  aspect-ratio: 1 / 1;
  position: relative;
}

.mind-circles span,
.mind-circles strong {
  border-radius: 50%;
  display: block;
  position: absolute;
}

.mind-circles span:nth-child(1) {
  background: rgba(22, 75, 50, 0.72);
  height: 112px;
  left: 34px;
  top: 19px;
  width: 112px;
}

.mind-circles span:nth-child(2) {
  background: rgba(95, 156, 151, 0.58);
  height: 118px;
  right: 24px;
  top: 52px;
  width: 118px;
}

.mind-circles span:nth-child(3) {
  background: rgba(199, 152, 58, 0.46);
  bottom: 24px;
  height: 112px;
  left: 56px;
  width: 112px;
}

.mind-circles strong {
  background: rgba(126, 140, 101, 0.68);
  height: 124px;
  left: 48px;
  top: 62px;
  width: 124px;
}

.brand-pillars {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 48px;
}

.pillar-card {
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 245px;
  overflow: hidden;
  padding: 30px;
  position: relative;
}

.pillar-card::after {
  border: 1px dashed rgba(22, 75, 50, 0.36);
  border-radius: 50%;
  content: "";
  height: 140px;
  position: absolute;
  right: -38px;
  top: -36px;
  width: 140px;
}

.pillar-card h2 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 34px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 42px 0 14px;
  text-transform: uppercase;
}

.pillar-card p {
  color: rgba(23, 33, 22, 0.78);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  max-width: 250px;
}

.pillar-icon {
  background: rgba(255, 253, 247, 0.58);
  border-radius: 50%;
  height: 82px;
  object-fit: contain;
  position: relative;
  width: 82px;
  z-index: 1;
}

.pillar-mark {
  background: var(--sage-soft);
  border-radius: 50%;
  display: block;
  height: 54px;
  position: relative;
  width: 54px;
}

.pillar-mark::before,
.pillar-mark::after {
  content: "";
  position: absolute;
}

.grow .pillar-mark::before {
  border: 3px solid var(--green);
  border-radius: 80% 0 80% 0;
  height: 22px;
  left: 16px;
  top: 15px;
  transform: rotate(-28deg);
  width: 22px;
}

.connect .pillar-mark::before {
  border: 3px solid var(--green);
  border-radius: 50%;
  height: 23px;
  left: 13px;
  top: 12px;
  width: 27px;
}

.connect .pillar-mark::after {
  border-top: 10px solid var(--green);
  border-left: 8px solid transparent;
  bottom: 14px;
  height: 0;
  left: 24px;
  width: 0;
}

.spark .pillar-mark {
  background: var(--gold-soft);
}

.spark .pillar-mark::before {
  border: 3px solid var(--green);
  border-radius: 50% 50% 46% 46%;
  height: 24px;
  left: 15px;
  top: 11px;
  width: 20px;
}

.spark .pillar-mark::after {
  background: var(--green);
  border-radius: 999px;
  height: 8px;
  left: 20px;
  top: 36px;
  width: 13px;
}

.mind-thought {
  align-items: center;
  background: var(--green);
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 34px;
  grid-template-columns: 190px 1fr;
  margin: 0 0 54px;
  overflow: hidden;
  padding: 38px 48px;
  position: relative;
}

.mind-thought::after {
  background: rgba(255, 253, 247, 0.08);
  border-radius: 50%;
  content: "";
  height: 220px;
  position: absolute;
  right: -72px;
  top: -88px;
  width: 220px;
}

.mind-thought h2,
.mind-thought .script-note {
  color: #fff;
  position: relative;
}

.mind-thought h2 {
  font-size: 38px;
  max-width: 740px;
}

.mind-thought .script-note {
  font-size: 30px;
  margin: 0 0 12px;
}

.mind-thought-quote {
  border-left: 3px solid var(--gold);
  margin: 24px 0 0;
  max-width: 660px;
  padding-left: 18px;
}

.mind-thought-quote p {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 10px;
}

.mind-thought-quote cite {
  color: rgba(255, 255, 255, 0.76);
  display: block;
  font-size: 14px;
  font-style: normal;
}

.mind-thought-copy {
  font-size: 18px;
  line-height: 1.6;
  margin: 24px 0 0;
  max-width: 720px;
}

.thought-orbit {
  aspect-ratio: 1 / 1;
  border: 2px dashed rgba(255, 253, 247, 0.5);
  border-radius: 50%;
  position: relative;
}

.thought-orbit span {
  border-radius: 50%;
  display: block;
  position: absolute;
}

.thought-orbit span:nth-child(1) {
  background: var(--sage);
  height: 38px;
  left: 14px;
  top: 26px;
  width: 38px;
}

.thought-orbit span:nth-child(2) {
  background: #5f9c97;
  height: 44px;
  right: 18px;
  top: 66px;
  width: 44px;
}

.thought-orbit span:nth-child(3) {
  background: var(--gold);
  bottom: 22px;
  height: 34px;
  left: 70px;
  width: 34px;
}

.layers-section {
  background: rgba(255, 253, 247, 0.54);
  border-top: 1px solid rgba(23, 33, 22, 0.08);
  border-bottom: 1px solid rgba(23, 33, 22, 0.08);
  margin: 0 -48px 56px;
  padding: 42px 64px 54px;
}

.section-kicker {
  font-size: 18px;
  letter-spacing: 0.22em;
  margin: 0 0 42px;
  position: relative;
  text-align: center;
}

.section-kicker::after {
  background: rgba(22, 75, 50, 0.44);
  bottom: -9px;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 160px;
}

.layers-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, 1fr);
}

.layer-card {
  border-left: 1px solid var(--line);
  min-height: 260px;
  padding: 0 24px 0 0;
}

.layer-card + .layer-card {
  padding-left: 24px;
}

.layer-card:first-child {
  border-left: 0;
}

.layer-top {
  align-items: end;
  display: flex;
  gap: 17px;
  margin-bottom: 10px;
}

.layer-top strong {
  font-size: 11px;
}

.line-icon {
  align-items: center;
  background: radial-gradient(circle, #f9efd3 0, #f9efd3 38%, #dfe8d6 100%);
  border-radius: 50%;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  position: relative;
  width: 58px;
}

.line-icon span {
  border: 3px solid var(--green);
  display: block;
  height: 23px;
  position: relative;
  width: 23px;
}

.line-icon-mic span {
  border-radius: 12px;
  height: 27px;
  width: 15px;
}

.line-icon-team span,
.line-icon-chat span,
.line-icon-bot span {
  border-radius: 50%;
}

.line-icon-leaf span {
  border-radius: 80% 0 80% 0;
  transform: rotate(-24deg);
}

.line-icon-search span {
  border-radius: 50%;
}

.line-icon-search span::after,
.line-icon-handshake span::after {
  background: currentColor;
  content: "";
  height: 3px;
  position: absolute;
  right: -12px;
  top: 18px;
  transform: rotate(45deg);
  width: 15px;
}

.line-icon-handshake span {
  border-radius: 8px;
  transform: rotate(45deg);
}

.layer-card h2,
.shop-card h2,
.footer h2 {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.25;
  margin: 0;
  text-transform: uppercase;
}

.script-note {
  color: var(--green);
  font-size: 14px;
  margin: 4px 0 28px;
}

.layer-card p:not(.script-note),
.shop-card p,
.story-section p,
.footer,
.footer a {
  color: rgba(23, 33, 22, 0.76);
  font-size: 13px;
  line-height: 1.7;
}

.layer-card a,
.shop-card a {
  color: var(--green);
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  margin-top: 21px;
}

.story-section,
.story-teaser {
  background:
    linear-gradient(95deg, rgba(232, 235, 220, 0.96), rgba(255, 253, 247, 0.52)),
    var(--paper);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.7fr);
  border-radius: 8px;
  margin: 0 0 64px;
  padding: 42px;
  position: relative;
}

.story-section::before,
.story-teaser::before {
  background: rgba(126, 140, 101, 0.18);
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 88%, transparent);
  position: absolute;
}

.story-section > *,
.story-teaser > * {
  position: relative;
}

.story-section h2,
.story-teaser h2 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 38px;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
}

.story-lead {
  color: rgba(23, 33, 22, 0.82);
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 18px 0 0;
}

.story-inline-icon {
  height: 92px;
  margin-top: 24px;
  object-fit: contain;
  width: 92px;
}

.story-page-hero {
  align-items: center;
  background: var(--cream);
  border-radius: 8px;
  color: var(--green);
  display: grid;
  gap: 64px;
  grid-template-columns: 0.87fr 1.13fr;
  margin-bottom: 34px;
  padding: 52px 0 62px;
}

.story-page-hero-copy {
  min-width: 0;
}

.story-page-hero .eyebrow,
.story-page-hero p {
  color: rgba(23, 33, 22, 0.72);
}

.story-page-hero h1 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 48px;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 18px;
  max-width: 620px;
}

.story-page-hero p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

.story-hero-image {
  align-self: center;
  border-radius: 8px;
  background: transparent;
  height: 430px;
  overflow: hidden;
  justify-self: end;
  max-width: 500px;
  padding: 0;
  width: 100%;
}

.story-hero-image img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.story-teaser-copy {
  display: grid;
  gap: 14px;
}

.story-teaser-copy p {
  color: rgba(23, 33, 22, 0.78);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.story-teaser-copy .button {
  font-size: 11px;
  justify-self: start;
  margin-top: 8px;
  min-height: 30px;
  padding: 0 12px;
}

.story-copy {
  columns: 2 280px;
  column-gap: 36px;
}

.story-copy p {
  break-inside: avoid;
  margin: 0 0 12px;
}

.story-copy strong {
  color: var(--green);
}

.story-points {
  break-inside: avoid;
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.story-points strong {
  background: rgba(255, 253, 247, 0.78);
  border-left: 4px solid var(--sage);
  border-radius: 6px;
  color: var(--green);
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  padding: 10px 14px;
}

.story-signoff {
  font-size: 16px;
  margin-top: 18px;
}

.meet-daleen {
  align-items: center;
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  margin: 0 0 64px;
  overflow: hidden;
  padding: 34px;
}

.meet-daleen-image {
  border-radius: 8px;
  height: 440px;
  overflow: hidden;
}

.meet-daleen-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.meet-daleen-copy h2 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 42px;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0 0 8px;
}

.meet-daleen-copy .role {
  color: var(--green);
  font-style: italic;
  font-weight: 700;
  margin-bottom: 22px;
}

.meet-daleen-copy p {
  color: rgba(23, 33, 22, 0.78);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 12px;
}

.meet-daleen-copy .meet-daleen-note {
  color: var(--green);
  font-style: italic;
  font-weight: 700;
  margin-top: 4px;
}

.meet-daleen-hero {
  margin-bottom: 28px;
}

.standalone-profile {
  margin-bottom: 46px;
}

.shop-section {
  background: rgba(255, 253, 247, 0.56);
  border-top: 1px solid rgba(23, 33, 22, 0.08);
  margin: 0 -48px 56px;
  padding: 42px 66px 50px;
}

.shop-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.shop-card {
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 286px;
  overflow: hidden;
  position: relative;
}

.shop-card img {
  aspect-ratio: 2.02 / 1;
  object-fit: cover;
  width: 100%;
}

.shop-card div {
  padding: 29px 17px 15px;
}

.shop-badge {
  align-items: center;
  background: var(--green);
  border: 3px solid var(--cream);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 21px;
  height: 43px;
  justify-content: center;
  left: 30px;
  position: absolute;
  top: 100px;
  width: 43px;
}

.shop-badge.gold {
  background: var(--gold);
}

.shop-badge.sage {
  background: var(--sage);
}

.shop-card h2 {
  text-transform: none;
}

.shop-card p {
  margin: 9px 0 0;
}

.shop-card a {
  margin-top: 14px;
}

.shop-freebie {
  align-items: center;
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.92), rgba(230, 237, 220, 0.72)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 260px;
  margin: 0 0 28px;
  overflow: hidden;
  padding: 38px 42px;
  position: relative;
}

.shop-freebie::after {
  background: var(--turquoise-soft);
  border-radius: 50%;
  bottom: -72px;
  content: "";
  height: 180px;
  position: absolute;
  right: -42px;
  width: 180px;
}

.shop-freebie > * {
  position: relative;
  z-index: 1;
}

.shop-freebie-copy h2 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 42px;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0 0 16px;
  max-width: 720px;
}

.shop-freebie-copy p:not(.eyebrow) {
  color: rgba(23, 33, 22, 0.78);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: 560px;
}

.shop-freebie-panel {
  align-items: center;
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid rgba(7, 143, 139, 0.24);
  border-radius: 8px;
  display: grid;
  justify-items: center;
  min-height: 220px;
  padding: 26px;
}

.shop-freebie-panel img {
  height: 104px;
  object-fit: contain;
  width: 104px;
}

.shop-freebie-panel p {
  color: var(--turquoise-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin: 0;
  text-transform: uppercase;
}

.shop-coming-soon {
  background: rgba(255, 253, 247, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0 0 54px;
  max-width: 760px;
  padding: 42px;
  position: relative;
}

.shop-coming-soon p:not(.script-note) {
  color: rgba(23, 33, 22, 0.78);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 20px;
}

.shop-coming-soon .script-note {
  color: var(--green);
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 22px;
}

.shop-coming-soon ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 8px 0 34px;
  padding: 0;
}

.shop-coming-soon li {
  color: rgba(23, 33, 22, 0.82);
  font-size: 17px;
  line-height: 1.35;
  padding-left: 22px;
  position: relative;
}

.shop-coming-soon li::before {
  background: var(--sage);
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0.55em;
  width: 7px;
}

.shop-coming-soon h2 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 30px;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 14px;
}

.shop-icon-row {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-bottom: -26px;
  pointer-events: none;
}

.shop-icon-row img {
  height: 78px;
  object-fit: contain;
  width: 78px;
}

.cta-band {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(126, 140, 101, 0.9), rgba(7, 143, 139, 0.34), rgba(22, 75, 50, 0.76)),
    var(--sage);
  color: #fff;
  display: grid;
  gap: 20px;
  grid-template-columns: 260px 1fr auto;
  border-radius: 8px;
  margin: 0 0 34px;
  min-height: 92px;
  padding: 12px 34px;
  position: relative;
}

.cta-band::before {
  background: rgba(126, 140, 101, 0.26);
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 90%, transparent);
  position: absolute;
}

.cta-band > * {
  position: relative;
}

.cta-band img {
  border-radius: 8px;
  height: 70px;
  margin-top: 0;
  object-fit: contain;
  object-position: center;
  position: relative;
  top: -16px;
  width: 215px;
}

.cta-band img.cta-icon {
  background: rgba(255, 253, 247, 0.76);
  border-radius: 50%;
  height: 82px;
  padding: 4px;
  top: 0;
  width: 82px;
}

.cta-band h2 {
  font-family: var(--font-accent);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
  text-align: center;
}

.cta-band.testimonials-cta h2 {
  font-size: 28px;
  line-height: 1.05;
}

.cta-band p {
  font-size: 13px;
  margin: 5px 0 0;
  text-align: center;
}

.story-cta {
  grid-template-columns: 230px 1fr auto;
}

.story-cta h2 {
  font-size: 36px;
  text-align: left;
}

.meet-daleen-cta h2 {
  font-size: 28px;
  line-height: 1.15;
}

.story-cta p {
  text-align: center;
}

.cta-actions {
  display: flex;
  gap: 12px;
}

.cta-band .button.secondary {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.cta-band.final-cta {
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.94), rgba(230, 237, 220, 0.74)),
    var(--paper);
  border: 1px solid rgba(23, 33, 22, 0.1);
  color: var(--ink);
  gap: 34px;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  min-height: 0;
  overflow: hidden;
  padding: 42px 48px;
}

.cta-band.final-cta::before {
  background: rgba(199, 152, 58, 0.18);
  border-radius: 50%;
  height: 180px;
  inset: auto -62px -86px auto;
  mask-image: none;
  width: 180px;
}

.cta-band.final-cta h1,
.cta-band.final-cta h2 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 12px;
  text-align: left;
}

.cta-band.final-cta p {
  color: rgba(23, 33, 22, 0.78);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  text-align: left;
}

.cta-band.final-cta .script-note {
  color: var(--green);
  font-size: 34px;
  margin-top: 10px;
}

.cta-band.final-cta.contact-page h1 {
  font-family: var(--font-accent);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.12;
  margin-top: 9px;
}

.cta-band.final-cta.contact-page {
  align-items: start;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1.48fr);
  margin-top: 34px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
}

.contact-details a {
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  background: rgba(22, 75, 50, 0.08);
  border: 1px solid rgba(22, 75, 50, 0.14);
  border-radius: 999px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 14px;
}

.contact-intro .social-links .social-icon {
  height: 44px;
  padding: 0;
  width: 44px;
}

.contact-intro .social-links .social-icon img {
  height: 18px;
  max-width: 18px;
  width: 18px;
}

.social-icon {
  align-items: center;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.social-icon img {
  color: currentColor;
  height: 18px;
  margin: 0;
  object-fit: contain;
  position: static;
  top: auto;
  width: 18px;
}

.footer .social-icon {
  background: rgba(22, 75, 50, 0.08);
  border: 1px solid rgba(22, 75, 50, 0.14);
  border-radius: 999px;
  margin: 3px 8px 3px 0;
  padding: 0;
}

.enquiry-form {
  display: grid;
  gap: 22px 26px;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
}

.hidden-field {
  display: none;
}

.form-choice-fields {
  align-content: start;
  display: grid;
  gap: 18px;
}

.form-main-fields {
  align-content: start;
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: rgba(23, 33, 22, 0.82);
  font-size: 15px;
  font-weight: 800;
}

.form-field label span {
  color: rgba(23, 33, 22, 0.58);
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid rgba(23, 33, 22, 0.18);
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(23, 33, 22, 0.04);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  min-height: 52px;
  padding: 0 16px;
  width: 100%;
}

.form-field textarea {
  line-height: 1.5;
  min-height: 152px;
  padding: 14px 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(7, 143, 139, 0.14);
  outline: 0;
}

.phone-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 130px minmax(0, 1fr);
}

.message-field {
  grid-column: auto;
}

.message-field textarea {
  min-height: 260px;
}

.enquiry-submit {
  grid-column: 1 / -1;
  min-height: 56px;
  width: 100%;
}

.checkbox-group {
  background: rgba(255, 253, 247, 0.7);
  border: 1px solid rgba(23, 33, 22, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px;
}

.checkbox-group legend {
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
  padding: 0 8px;
}

.checkbox-group p {
  color: rgba(23, 33, 22, 0.68);
  font-size: 13px;
  line-height: 1.45;
  margin: -2px 0 4px;
}

.checkbox-group label {
  align-items: flex-start;
  color: rgba(23, 33, 22, 0.82);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  line-height: 1.35;
}

.checkbox-group input {
  accent-color: var(--turquoise);
  flex: 0 0 auto;
  height: 16px;
  margin-top: 2px;
  width: 16px;
}

.event-details {
  background: rgba(255, 253, 247, 0.7);
  border: 1px solid rgba(23, 33, 22, 0.12);
  border-radius: 8px;
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
}

.event-details legend {
  color: var(--green);
  font-size: 17px;
  font-weight: 900;
  padding: 0 8px;
}

.event-details-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
}

.event-type-options,
.event-information-fields {
  align-content: start;
  display: grid;
  gap: 12px;
}

.event-type-options > p {
  color: rgba(23, 33, 22, 0.82);
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 2px;
}

.event-type-options > label {
  align-items: center;
  color: rgba(23, 33, 22, 0.82);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
}

.event-type-options input[type="radio"] {
  accent-color: var(--turquoise);
  height: 16px;
  margin: 0;
  width: 16px;
}

.event-other-field {
  margin-top: 6px;
}

.event-details textarea {
  min-height: 140px;
}

.form-response-note {
  border-top: 1px solid rgba(23, 33, 22, 0.12);
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  margin: 22px 0 0;
  padding-top: 18px;
  text-align: center;
}

.footer {
  align-items: start;
  display: grid;
  gap: 23px;
  grid-template-columns: 1.5fr repeat(4, 0.75fr) 1.4fr;
  border-top: 1px solid rgba(23, 33, 22, 0.1);
  padding: 28px 18px 0;
}

.keynotes-hero {
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.92), rgba(230, 237, 220, 0.58)),
    var(--paper);
  border: 1px solid rgba(23, 33, 22, 0.1);
  border-radius: 8px;
  margin: 48px 0 34px;
  padding: 58px 64px;
}

.keynotes-hero h1 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 48px;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 0 22px;
}

.keynotes-hero.testimonials-hero h1 {
  font-size: 40px;
}

.keynotes-hero p:last-child {
  color: rgba(23, 33, 22, 0.78);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
  max-width: 760px;
}

.topic-groups {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 42px;
}

.topic-groups article,
.topic-build {
  background: rgba(255, 253, 247, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.topic-groups article {
  position: relative;
}

.topic-groups article:nth-child(5) {
  grid-column: 1 / -1;
}

.topic-icon {
  height: 70px;
  object-fit: contain;
  position: absolute;
  right: 24px;
  top: 20px;
  width: 70px;
}

.topic-groups h2,
.topic-build h2 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0 0 18px;
  max-width: calc(100% - 92px);
}

.topic-groups article > p {
  color: rgba(22, 75, 50, 0.76);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  margin: -8px 0 18px;
}

.topic-groups.ai-people-content article > p {
  color: rgba(23, 33, 22, 0.78);
  font-weight: 500;
  line-height: 1.65;
  margin: 0 0 14px;
}

.what-we-do-blocks {
  grid-template-columns: repeat(3, 1fr);
}

.what-we-do-blocks article {
  min-height: 180px;
}

.what-we-do-blocks article:nth-child(3) {
  grid-column: auto;
}

.what-we-do-blocks article > p {
  color: rgba(23, 33, 22, 0.78);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0;
}

.what-we-do-next {
  align-items: center;
  background: rgba(255, 253, 247, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 0 0 46px;
  padding: 26px 30px;
}

.what-we-do-next p {
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  margin: 0;
  max-width: 700px;
}

.topic-groups ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topic-groups li {
  color: rgba(23, 33, 22, 0.78);
  line-height: 1.45;
  padding-left: 18px;
  position: relative;
}

.topic-groups li::before {
  background: var(--sage);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 0.65em;
  width: 6px;
}

.testimonial-page {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  margin-bottom: 46px;
}

.client-questions,
.testimonial-card {
  background: rgba(255, 253, 247, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  padding: 34px;
}

.client-questions p {
  color: rgba(23, 33, 22, 0.76);
  font-size: 16px;
  margin: 0 0 18px;
}

.client-questions ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.client-questions li {
  color: var(--green);
  font-weight: 800;
  line-height: 1.4;
}

.conversation-note {
  border-top: 1px solid rgba(22, 75, 50, 0.14);
  margin-top: 22px;
  padding-top: 20px;
}

.conversation-note p {
  color: var(--green);
  font-weight: 900;
  margin: 0 0 4px;
}

.testimonial-card {
  background:
    linear-gradient(135deg, rgba(230, 237, 220, 0.82), rgba(255, 253, 247, 0.94)),
    var(--paper);
}

.testimonial-card h2 {
  color: var(--green);
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 18px;
}

.testimonial-card blockquote {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.25;
  margin: 0 0 28px;
}

.testimonial-card blockquote::before {
  content: open-quote;
}

.testimonial-card blockquote::after {
  content: close-quote;
}

.testimonial-card-wide {
  grid-column: 1 / -1;
}

.testimonial-card-wide blockquote {
  font-size: 20px;
  line-height: 1.55;
}

.testimonial-card figcaption {
  display: grid;
  gap: 4px;
}

.testimonial-card figcaption strong {
  color: var(--ink);
  font-size: 16px;
}

.testimonial-card figcaption span {
  color: rgba(23, 33, 22, 0.72);
  font-size: 14px;
}

.topic-build {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.8fr 1.2fr;
  margin-bottom: 46px;
}

.topic-build p:not(.eyebrow) {
  color: rgba(23, 33, 22, 0.78);
  line-height: 1.65;
  margin: 0;
}

.legal-page {
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 48px 0;
  max-width: 980px;
  padding: 54px;
}

.legal-page h1 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 48px;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 22px;
}

.legal-page p:not(.eyebrow) {
  color: rgba(23, 33, 22, 0.78);
  font-size: 16px;
  line-height: 1.72;
  margin: 0 0 18px;
}

.legal-page h2 {
  border-top: 1px solid rgba(23, 33, 22, 0.12);
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 30px 0 12px;
  padding-top: 24px;
}

.legal-page h3 {
  color: var(--green);
  font-size: 16px;
  line-height: 1.3;
  margin: 18px 0 6px;
}

.legal-page ul {
  color: rgba(23, 33, 22, 0.78);
  display: grid;
  gap: 7px;
  line-height: 1.55;
  margin: 0 0 18px;
  padding-left: 24px;
}

.legal-contact {
  background: rgba(230, 237, 220, 0.58);
  border: 1px solid rgba(22, 75, 50, 0.12);
  border-radius: 8px;
  margin: 6px 0 20px;
  padding: 18px 22px 2px;
}

.legal-contact a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.format-list {
  display: grid;
  gap: 10px;
}

.format-list details {
  background: rgba(230, 237, 220, 0.64);
  border: 1px solid rgba(22, 75, 50, 0.13);
  border-radius: 26px;
  color: var(--green);
  overflow: hidden;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.format-list details[open] {
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(230, 237, 220, 0.86)),
    var(--paper);
  border-color: rgba(22, 75, 50, 0.22);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(23, 33, 22, 0.08);
}

.format-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding: 14px 52px 14px 20px;
  position: relative;
}

.format-list details[open] summary {
  background: rgba(22, 75, 50, 0.08);
  border-bottom: 1px solid rgba(22, 75, 50, 0.12);
  margin-bottom: 16px;
}

.format-list summary::-webkit-details-marker {
  display: none;
}

.format-list summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.format-list details[open] summary::after {
  content: "-";
}

.format-list details p {
  color: rgba(23, 33, 22, 0.78);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  padding: 0 22px 10px;
  text-align: left;
}

.format-list details p strong {
  display: inline;
  padding: 0;
}

.format-list details ul {
  color: rgba(23, 33, 22, 0.78);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  padding: 0 22px 12px 42px;
}

.format-list details strong {
  color: var(--green);
  display: block;
  font-size: 14px;
  padding: 0 22px 8px;
  text-align: left;
}

.format-list details .price-line {
  background: linear-gradient(135deg, rgba(199, 152, 58, 0.18), var(--turquoise-soft));
  border: 1px solid rgba(7, 143, 139, 0.26);
  border-radius: 8px;
  color: var(--green);
  font-size: 16px;
  margin: 6px 22px 12px;
  padding: 13px 16px;
}

.format-list details a {
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  margin: 4px 22px 20px;
  padding: 10px 16px;
  text-decoration: none;
}

.footer-logo {
  width: 175px;
}

.footer h2 {
  color: var(--ink);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.footer a.social-icon {
  align-items: center;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  line-height: 1;
  width: 44px;
}

.footer a.social-icon img {
  height: 18px;
  max-width: 18px;
  width: 18px;
}

@media (max-width: 900px) {
  main {
    padding: 0 22px 22px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    margin: 0 -22px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 14px 24px;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    padding-top: 0;
  }

  .hero > *,
  .site-header > *,
  .testimonial-page > *,
  .enquiry-form > *,
  .event-details-grid > * {
    min-width: 0;
  }

  .hero,
  .intro-mingle,
  .mind-thought,
  .story-section,
  .story-teaser,
  .meet-daleen {
    grid-template-columns: 1fr;
  }

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

  .image-shape {
    margin: 0 auto;
  }

  .trusted,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-band.final-cta.contact-page,
  .testimonial-page {
    grid-template-columns: 1fr;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .event-details-grid {
    grid-template-columns: 1fr;
  }

  .message-field,
  .enquiry-submit {
    grid-column: auto;
    grid-row: auto;
  }

  .topic-groups,
  .brand-pillars,
  .topic-build {
    grid-template-columns: 1fr;
  }

  .shop-freebie {
    grid-template-columns: 1fr;
  }

  .what-we-do-next {
    align-items: flex-start;
    flex-direction: column;
  }

  .mind-circles,
  .thought-orbit {
    max-width: 210px;
  }

  .topic-groups article:nth-child(5) {
    grid-column: auto;
  }

  .layers-section,
  .shop-section {
    margin-left: -22px;
    margin-right: -22px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .story-section,
  .story-teaser {
    margin-left: 0;
    margin-right: 0;
  }

  .meet-daleen-image {
    height: 380px;
  }

  .trusted div {
    flex-wrap: wrap;
  }

  .layers-grid,
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .layer-card,
  .layer-card + .layer-card {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px 0;
  }

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

@media (max-width: 620px) {
  main {
    padding: 0 14px 18px;
  }

  .site-header {
    grid-template-columns: 1fr;
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand img {
    width: 175px;
  }

  .main-nav {
    gap: 10px 18px;
  }

  .main-nav a {
    font-size: 12px;
    min-height: 44px;
    padding: 6px 2px;
  }

  .client-login {
    justify-self: stretch;
    margin-top: 0;
  }

  .hero {
    gap: 18px;
    padding-left: 0;
    padding-right: 0;
  }

  .hero h1 {
    font-size: 34px;
  }

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

  .image-shape {
    width: min(330px, 100%);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .trusted,
  .intro-mingle,
  .mind-thought,
  .story-section,
  .story-teaser,
  .meet-daleen {
    margin-left: 0;
    margin-right: 0;
    padding: 22px;
  }

  .meet-daleen-image {
    height: 330px;
  }

  .meet-daleen-copy h2 {
    font-size: 34px;
  }

  .story-page-hero {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }

  .story-page-hero h1 {
    font-size: 40px;
  }

  .story-hero-image {
    justify-self: start;
    max-width: 320px;
  }

  .layers-section,
  .shop-section {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .shop-freebie {
    padding: 28px 22px;
  }

  .shop-freebie-copy h2 {
    font-size: 34px;
  }

  .layers-grid,
  .shop-grid,
  .brand-pillars,
  .topic-groups,
  .footer {
    grid-template-columns: 1fr;
  }

  .intro-mingle h2,
  .mind-thought h2,
  .cta-band.final-cta h2 {
    font-size: 32px;
  }

  .pillar-card {
    min-height: 210px;
    padding: 24px;
  }

  .cta-band.final-cta {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .phone-row {
    grid-template-columns: 1fr;
  }

  .keynotes-hero {
    padding: 34px 24px;
  }

  .keynotes-hero h1 {
    font-size: 38px;
  }

  .keynotes-hero.testimonials-hero h1 {
    font-size: 32px;
  }

  .client-questions,
  .testimonial-card {
    padding: 24px;
  }

  .testimonial-card blockquote {
    font-size: 23px;
  }

  .testimonial-card-wide {
    grid-column: auto;
  }

  .cta-band h2,
  .story-cta h2 {
    font-size: 30px;
  }

  .handwritten-card {
    height: 124px;
    width: 124px;
  }

  .story-section h2 {
    font-size: 32px;
  }

  .story-copy {
    columns: 1;
  }
}
