:root {
  --charcoal: #1b1b1b;
  --sage: #9daa95;
  --sand: #dec39c;
  --terracotta: #cd7653;
  --olive: #768e73;
  --butter: #cd7653;
  --cream: #fbf8f2;
  --sage-soft: #e2e8de;
  --sand-soft: #efe3d1;
  --terracotta-soft: #ead2c6;
  --butter-soft: #ead2c6;
  --olive-deep: #465b49;
  --warm-white: #fdfbf7;
  --font-heading: "Outfit", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-ui: "DM Sans", sans-serif;
  --ink: var(--charcoal);
  --muted: #60665f;
  --surface: #edf0e8;
  --paper: var(--cream);
  --primary: #465b49;
  --accent: var(--terracotta);
  --line: rgba(27, 27, 27, 0.15);
  --shell: min(1180px, calc(100vw - 48px));
  --section-space: clamp(5.5rem, 9vw, 9rem);
}

html[data-theme="2"] {
  --font-heading: "Urbanist", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-ui: "Urbanist", sans-serif;
  --ink: var(--charcoal);
  --muted: #68645e;
  --surface: #f1ebe1;
  --paper: var(--cream);
  --primary: var(--charcoal);
  --accent: var(--terracotta);
  --line: rgba(27, 27, 27, 0.13);
  --shell: min(1220px, calc(100vw - 60px));
}

html[data-theme="3"] {
  --font-heading: "Archivo", sans-serif;
  --font-body: "Public Sans", sans-serif;
  --font-ui: "Public Sans", sans-serif;
  --ink: var(--charcoal);
  --muted: #62645f;
  --surface: #f7f2e8;
  --paper: var(--cream);
  --primary: #465b49;
  --accent: var(--butter);
  --line: rgba(27, 27, 27, 0.14);
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  color: inherit;
  font-family: var(--font-ui);
  font-size: inherit;
  line-height: inherit;
}

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

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--font-heading);
  line-height: 1.06;
}

.site-nav,
.button,
.eyebrow,
.text-link,
.hero-rail,
.impact span,
.founder-role,
.footer-links,
.footer-bottom {
  font-family: var(--font-ui);
}

.hero-stamp strong,
.impact strong,
.founder-photo > div strong {
  font-family: var(--font-heading);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 500;
  padding: 0.8rem 1rem;
  background: var(--primary);
  color: white;
  transform: translateY(-120%);
}

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

.topbar {
  display: none;
}

.site-frame {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 2.2rem;
}

.brand {
  width: 145px;
  margin-right: auto;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.85rem);
}

.site-nav a {
  font-size: 0.7rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.site-nav a:hover {
  opacity: 0.6;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button i {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-style: normal;
  place-items: center;
}

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

.button-primary,
.header-cta {
  background: var(--primary);
  color: white;
}

.button-primary i,
.header-cta i {
  background: var(--accent);
  color: var(--ink);
}

.button-secondary,
.button-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.button-secondary i,
.button-outline i {
  background: var(--primary);
  color: white;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.3rem;
  color: currentColor;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  flex: 0 0 auto;
}

.section-heading h2,
.services-heading h2,
.insights-heading h2,
.final-cta h2 {
  max-width: 850px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  letter-spacing: -0.055em;
}

.lead {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.4;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.18rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.2s ease;
}

.text-link:hover {
  gap: 0.95rem;
}

/* Shared hero structure */
.hero {
  position: relative;
}

.hero-shell {
  position: relative;
}

.hero h1 {
  letter-spacing: -0.07em;
}

.hero-intro {
  color: var(--muted);
}

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

.hero-photo {
  margin: 0;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  text-align: center;
}

.hero-stamp strong {
  font-size: 2rem;
  line-height: 1;
}

.hero-stamp span {
  margin-top: 0.35rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-rail {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Shared impact */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.impact article {
  display: flex;
  flex-direction: column;
}

.impact strong {
  font-size: clamp(1.55rem, 2.5vw, 2.5rem);
  line-height: 1.1;
}

.impact span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Shared about */
.about-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-intro {
  max-width: 590px;
}

.about-intro > p:not(.lead) {
  color: var(--muted);
}

.about-intro .text-link {
  margin-top: 1rem;
}

.about-visual {
  position: relative;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual > p {
  position: absolute;
  z-index: 2;
  margin: 0;
}

.about-principles article > span {
  font-size: 0.6rem;
  font-weight: 700;
}

.about-principles h3 {
  font-size: 1.25rem;
}

.about-principles p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Purpose */
.purpose-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.purpose-image {
  display: none;
  margin: 0;
}

.purpose-cards article > span,
.values > span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purpose-cards h3 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.purpose-cards p {
  color: var(--muted);
}

.values,
.values ul {
  display: flex;
  align-items: center;
}

.values ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.values-note {
  display: none;
}

.values li strong {
  font-weight: inherit;
}

.values li small {
  display: none;
}

/* Founder */
.founder-shell {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(4rem, 9vw, 9rem);
}

.founder-photo {
  position: relative;
}

.founder-photo > img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: center 18%;
}

.founder-photo > div {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
}

.founder-photo > div span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-photo > div strong {
  font-size: 1.5rem;
}

.founder-copy h2 {
  max-width: 650px;
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
  letter-spacing: -0.055em;
}

.founder-copy h2 span {
  color: var(--accent);
}

.founder-role {
  margin: 0.7rem 0 2rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-copy > p:not(.eyebrow):not(.founder-role):not(.lead) {
  color: var(--muted);
}

.founder-copy .button {
  margin-top: 1rem;
}

/* Services */
.service-explorer {
  display: contents;
}

.service-feature {
  display: none;
}

.services-heading,
.insights-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.services-heading > p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
}

.service summary {
  cursor: pointer;
  list-style: none;
}

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

.service summary span {
  font-size: 0.6rem;
  font-weight: 700;
}

.service summary h3 {
  font-weight: 600;
}

.service summary i {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.service summary i::before,
.service summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.service summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service[open] summary i::after {
  transform: translate(-50%, -50%);
}

.service > p {
  color: var(--muted);
}

/* Approach */
.approach-visual {
  display: none;
  margin: 0;
}

.approach-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(4rem, 10vw, 10rem);
}

.approach-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  list-style: none;
}

.approach-list li > span {
  font-size: 0.6rem;
  font-weight: 700;
}

.approach-list strong {
  display: block;
  font-size: 1.45rem;
}

.approach-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Stories */
.stories-intro,
.proof-signals,
.story-result,
.story-monogram,
.stories-visual {
  display: none;
}

.stories-shell {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(4rem, 10vw, 10rem);
}

.story-stage {
  position: relative;
}

.story blockquote {
  margin: 0;
  font-weight: 500;
  line-height: 1.35;
}

.story blockquote::before {
  content: "“";
}

.story blockquote::after {
  content: "”";
}

.story footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.story footer strong {
  font-size: 0.76rem;
}

.story footer span {
  color: var(--muted);
  font-size: 0.66rem;
}

.story-person,
.story-position {
  display: flex;
  flex-direction: column;
}

.story-person {
  gap: 0.2rem;
}

.story-position {
  align-items: center;
}

.story-dots {
  display: none;
}

.story-controls {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.story-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.story-controls > span {
  min-width: 56px;
  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
}

/* Insights */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2.3rem);
}

.article-photo {
  display: block;
  overflow: hidden;
}

.article-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.article-grid article:hover .article-photo img {
  transform: scale(1.035);
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-grid h3 {
  font-size: clamp(1.2rem, 2.2vw, 2rem);
}

/* CTA + footer */
.final-cta {
  text-align: center;
}

.final-cta .shell {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta .shell > p:not(.eyebrow) {
  max-width: 610px;
}

.site-footer {
  color: white;
}

.footer-grid {
  display: grid;
  padding-block: 5rem 3.5rem;
  grid-template-columns: 1.25fr 0.7fr 0.9fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-brand > a {
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.footer-brand img {
  width: 170px;
  filter: none;
}

.footer-brand p {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links h3 {
  margin-bottom: 0.9rem;
  color: white;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links address,
.footer-links address span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  font-style: normal;
}

.footer-links address {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links .footer-social-link {
  display: grid;
  width: 40px;
  height: 40px;
  margin-top: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  place-items: center;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-links .footer-social-link:hover {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-2px);
}

.footer-social-link svg,
.contact-details .linkedin-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   CONCEPT 01 — hopeful, centered, bright green nonprofit
   ========================================================= */
html[data-theme="1"] body {
  background: var(--cream);
}

html[data-theme="1"] .site-header {
  background: rgba(251, 248, 242, 0.94);
  backdrop-filter: blur(14px);
}

html[data-theme="1"] .site-header.is-scrolled {
  position: sticky;
  top: 0;
  box-shadow: 0 12px 30px rgba(70, 91, 73, 0.08);
}

html[data-theme="1"] .hero {
  padding: clamp(5rem, 8vw, 8rem) 0 4.5rem;
  background: #edf0e8;
}

html[data-theme="1"] .hero-copy {
  max-width: 980px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

html[data-theme="1"] .hero .eyebrow {
  display: inline-flex;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  background: var(--accent);
  letter-spacing: 0;
  text-transform: none;
  transform: rotate(-1deg);
}

html[data-theme="1"] .hero .eyebrow::before {
  display: none;
}

html[data-theme="1"] .hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.6rem, 7.4vw, 7rem);
  line-height: 0.92;
}

html[data-theme="1"] .hero h1 span {
  display: block;
}

html[data-theme="1"] .hero h1 span:last-child {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}

html[data-theme="1"] .hero h1 span:last-child::before,
html[data-theme="1"] .hero h1 span:last-child::after {
  position: absolute;
  top: 10%;
  bottom: 4%;
  width: 7px;
  border-radius: 8px;
  background: var(--olive);
  content: "";
}

html[data-theme="1"] .hero h1 span:last-child::before {
  left: -13px;
}

html[data-theme="1"] .hero h1 span:last-child::after {
  right: -13px;
}

html[data-theme="1"] .hero-intro {
  max-width: 670px;
  margin: 0 auto 1.8rem;
  font-size: 1rem;
}

html[data-theme="1"] .hero-actions {
  justify-content: center;
}

html[data-theme="1"] .hero-media {
  position: relative;
  display: grid;
  height: 360px;
  padding: 9px;
  border: 6px solid var(--accent);
  border-radius: 30px;
  background: white;
  box-shadow: 12px 14px 0 #465b49;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 9px;
}

html[data-theme="1"] .hero-photo {
  border-radius: 16px;
}

html[data-theme="1"] .hero-photo-main {
  order: 2;
}

html[data-theme="1"] .hero-photo-secondary {
  order: 1;
}

html[data-theme="1"] .hero-photo-tertiary {
  order: 3;
}

html[data-theme="1"] .hero-photo img {
  object-position: center 28%;
}

html[data-theme="1"] .hero-stamp {
  position: absolute;
  right: 25px;
  bottom: 22px;
  width: 118px;
  height: 118px;
  border: 5px solid white;
  background: var(--accent);
  color: var(--ink);
}

html[data-theme="1"] .hero-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 7vw, 6rem);
  margin-top: 4rem;
  color: #606b61;
}

html[data-theme="1"] .hero-rail span::before {
  margin-right: 0.55rem;
  color: var(--terracotta);
  content: "✦";
}

html[data-theme="1"] .impact {
  padding-bottom: 5.5rem;
  background: #edf0e8;
}

html[data-theme="1"] .impact-grid {
  padding-top: 2.7rem;
  border-top: 1px solid var(--line);
}

html[data-theme="1"] .impact article {
  align-items: center;
  padding-inline: 1rem;
  border-right: 1px solid var(--line);
  text-align: center;
}

html[data-theme="1"] .impact article:last-child {
  border-right: 0;
}

html[data-theme="1"] .impact strong {
  margin-bottom: 0.5rem;
}

html[data-theme="1"] .about {
  width: calc(100% - 32px);
  margin-inline: auto;
  border-radius: 48px;
  border: 1px solid rgba(70, 91, 73, 0.1);
  background: var(--warm-white);
  color: var(--ink);
}

html[data-theme="1"] .about-shell {
  grid-template-columns: 0.82fr 1fr;
  gap: 3rem 6rem;
}

html[data-theme="1"] .about .section-heading h2 {
  color: var(--ink);
}

html[data-theme="1"] .about-intro > p:not(.lead),
html[data-theme="1"] .about-principles p {
  color: #536056;
}

html[data-theme="1"] .about .text-link {
  color: var(--accent);
}

html[data-theme="1"] .about-visual {
  height: 500px;
  border-radius: 28px;
}

html[data-theme="1"] .about-visual > p {
  right: 1rem;
  bottom: 1rem;
  max-width: 230px;
  padding: 1.2rem;
  border-radius: 18px;
  background: white;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
}

html[data-theme="1"] .about-principles {
  display: grid;
  align-self: stretch;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

html[data-theme="1"] .about-principles article {
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  color: var(--ink);
}

html[data-theme="1"] .about-principles article > span {
  color: var(--olive);
}

html[data-theme="1"] .about-principles article:nth-child(2) {
  background: var(--sage-soft);
}

html[data-theme="1"] .about-principles p {
  color: var(--muted);
}

html[data-theme="1"] .purpose {
  background: var(--sand-soft);
}

html[data-theme="1"] .purpose-shell > .section-heading {
  max-width: 700px;
  margin-bottom: 4rem;
}

html[data-theme="1"] .purpose-cards {
  gap: 1rem;
}

html[data-theme="1"] .purpose-cards article {
  padding: clamp(2rem, 4vw, 4rem);
  border-radius: 28px;
  background: white;
}

html[data-theme="1"] .purpose-cards article:nth-child(2) {
  background: var(--sage-soft);
}

html[data-theme="1"] .purpose-cards article > span {
  display: inline-block;
  margin-bottom: 3rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid currentColor;
  border-radius: 999px;
}

html[data-theme="1"] .purpose-cards h3 {
  margin-bottom: 1.3rem;
}

html[data-theme="1"] .values {
  justify-content: space-between;
  gap: 3rem;
  margin-top: 1rem;
  padding: 2rem 2.4rem;
  border-radius: 20px;
  background: white;
}

html[data-theme="1"] .values ul {
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.2rem 2.8rem;
  font-weight: 700;
}

html[data-theme="1"] .founder {
  background: var(--cream);
}

html[data-theme="1"] .founder-photo > img {
  border: 7px solid var(--accent);
  border-radius: 32px;
}

html[data-theme="1"] .founder-photo > div {
  right: -22px;
  bottom: 24px;
  padding: 1.2rem 1.4rem;
  border: 5px solid white;
  border-radius: 18px;
  background: var(--accent);
  color: var(--ink);
}

html[data-theme="1"] .founder-copy h2 span {
  color: var(--terracotta);
}

html[data-theme="1"] .services {
  background: #edf0e8;
}

html[data-theme="1"] .service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

html[data-theme="1"] .service {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

html[data-theme="1"] .service:nth-child(3n + 2) {
  background: #eadcc7;
}

html[data-theme="1"] .service summary {
  display: grid;
  align-items: center;
  grid-template-columns: 36px 1fr 38px;
  gap: 0.8rem;
}

html[data-theme="1"] .service summary h3 {
  font-size: 1.15rem;
}

html[data-theme="1"] .service summary i {
  background: var(--primary);
  color: white;
}

html[data-theme="1"] .service > p {
  margin: 1.4rem 46px 0 36px;
  font-size: 0.78rem;
}

html[data-theme="1"] .approach {
  background: var(--sage-soft);
}

html[data-theme="1"] .approach-list {
  gap: 1rem;
}

html[data-theme="1"] .approach-list li {
  padding: 1.5rem;
  border: 1px solid rgba(16, 45, 36, 0.16);
  border-radius: 18px;
  background: rgba(253, 251, 247, 0.8);
}

html[data-theme="1"] .approach-list strong {
  margin: 1.3rem 0 0.6rem;
}

html[data-theme="1"] .stories {
  width: calc(100% - 32px);
  margin: 16px auto;
  border-radius: 48px;
  background: #465b49;
  color: white;
}

html[data-theme="1"] .stories h2 {
  color: white;
}

html[data-theme="1"] .story-stage {
  min-height: 440px;
  padding: clamp(2.3rem, 5vw, 5rem);
  border-radius: 28px;
  background: white;
  color: var(--ink);
}

html[data-theme="1"] .story blockquote {
  margin-bottom: 3rem;
  font-size: clamp(1.45rem, 2.8vw, 2.4rem);
}

html[data-theme="1"] .story-controls {
  position: absolute;
  right: clamp(2.3rem, 5vw, 5rem);
  bottom: clamp(2.3rem, 5vw, 5rem);
}

html[data-theme="1"] .insights {
  background: var(--cream);
}

html[data-theme="1"] .article-photo {
  height: 265px;
  border-radius: 22px;
}

html[data-theme="1"] .article-meta {
  margin: 1.2rem 0 0.8rem;
  color: var(--olive);
}

html[data-theme="1"] .article-grid h3 {
  margin-bottom: 1.4rem;
}

html[data-theme="1"] .final-cta {
  padding: 8rem 0;
  background: #e8d5b6;
}

html[data-theme="1"] .final-cta h2 {
  margin-bottom: 1.5rem;
}

html[data-theme="1"] .final-cta .shell > p:not(.eyebrow) {
  margin-bottom: 2rem;
}

html[data-theme="1"] .site-footer {
  background: var(--charcoal);
}

/* =========================================================
   CONCEPT 02 — image-led, rounded, editorial consulting
   ========================================================= */
html[data-theme="2"] body {
  padding: 10px;
  background: var(--charcoal);
}

html[data-theme="2"] .site-frame {
  border-radius: 48px;
  background: var(--cream);
}

html[data-theme="2"] .site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 0;
  color: white;
}

html[data-theme="2"] .header-inner {
  width: min(1300px, calc(100% - 76px));
  min-height: 92px;
}

html[data-theme="2"] .brand {
  width: 140px;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
}

html[data-theme="2"] .site-nav a {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

html[data-theme="2"] .header-cta {
  background: var(--accent);
  color: var(--ink);
}

html[data-theme="2"] .header-cta i {
  background: var(--ink);
  color: white;
}

html[data-theme="2"] .hero {
  min-height: 760px;
  padding: 10px;
}

html[data-theme="2"] .hero-shell {
  display: flex;
  min-height: 740px;
  width: 100%;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 40px;
}

html[data-theme="2"] .hero-media,
html[data-theme="2"] .hero-photo-main {
  position: absolute;
  inset: 0;
}

html[data-theme="2"] .hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 27, 27, 0.84) 0%, rgba(27, 27, 27, 0.32) 56%, rgba(27, 27, 27, 0.08) 100%);
  content: "";
}

html[data-theme="2"] .hero-photo-main img {
  object-position: center 39%;
  transform: scale(1.04);
}

html[data-theme="2"] .hero-photo-secondary,
html[data-theme="2"] .hero-photo-tertiary {
  display: none;
}

html[data-theme="2"] .hero-copy {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 0 0 8.5rem 5rem;
  color: white;
}

html[data-theme="2"] .hero .eyebrow {
  color: white;
}

html[data-theme="2"] .hero h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(3.7rem, 5.5vw, 5.2rem);
}

html[data-theme="2"] .hero h1 span {
  display: block;
}

html[data-theme="2"] .hero h1 span:last-child {
  color: var(--accent);
}

html[data-theme="2"] .hero-intro {
  max-width: 590px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.78);
}

html[data-theme="2"] .hero .button-primary {
  background: var(--accent);
  color: var(--ink);
}

html[data-theme="2"] .hero .button-primary i {
  background: var(--ink);
  color: white;
}

html[data-theme="2"] .hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  backdrop-filter: blur(10px);
}

html[data-theme="2"] .hero .button-secondary i {
  background: white;
  color: var(--ink);
}

html[data-theme="2"] .hero-stamp {
  position: absolute;
  z-index: 3;
  right: 3.5rem;
  bottom: 7rem;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  backdrop-filter: blur(14px);
}

html[data-theme="2"] .hero-rail {
  position: absolute;
  z-index: 4;
  right: 2.5rem;
  bottom: 1.5rem;
  left: 2.5rem;
  display: grid;
  color: var(--ink);
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

html[data-theme="2"] .hero-rail span {
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

html[data-theme="2"] .impact {
  padding: 5.5rem 0;
  background: var(--cream);
}

html[data-theme="2"] .impact-grid {
  gap: 1rem;
}

html[data-theme="2"] .impact article {
  min-height: 150px;
  justify-content: flex-end;
  padding: 1.8rem;
  border-radius: 22px;
  background: #f3eee6;
}

html[data-theme="2"] .impact article:nth-child(2) {
  background: #e5cfad;
}

html[data-theme="2"] .impact article:nth-child(3) {
  background: #afbdab;
  color: var(--ink);
}

html[data-theme="2"] .impact strong {
  margin-bottom: 0.5rem;
}

html[data-theme="2"] .about {
  padding-top: 3rem;
  background: var(--cream);
}

html[data-theme="2"] .about-shell {
  grid-template-columns: 1fr 0.82fr 1.05fr;
  grid-template-areas:
    "heading intro visual"
    "principles principles visual";
  gap: 1rem;
}

html[data-theme="2"] .about .section-heading,
html[data-theme="2"] .about-intro,
html[data-theme="2"] .about-visual,
html[data-theme="2"] .about-principles {
  border-radius: 28px;
}

html[data-theme="2"] .about .section-heading {
  grid-area: heading;
  padding: 2.2rem;
  background: #f3eee6;
}

html[data-theme="2"] .about .section-heading h2 {
  font-size: clamp(2.4rem, 3.7vw, 4.2rem);
}

html[data-theme="2"] .about-intro {
  grid-area: intro;
  padding: 2.2rem;
  background: #e5b59f;
}

html[data-theme="2"] .about-intro .lead {
  font-size: 1.2rem;
}

html[data-theme="2"] .about-intro > p:not(.lead) {
  font-size: 0.77rem;
}

html[data-theme="2"] .about-visual {
  min-height: 620px;
  grid-area: visual;
}

html[data-theme="2"] .about-visual > p {
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  padding: 1.3rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  backdrop-filter: blur(12px);
}

html[data-theme="2"] .about-principles {
  display: grid;
  padding: 1rem;
  background: #f3eee6;
  grid-area: principles;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

html[data-theme="2"] .about-principles article {
  padding: 1.4rem;
  border-radius: 18px;
  background: white;
}

html[data-theme="2"] .about-principles article:nth-child(2) {
  background: #cfd9cb;
  color: var(--ink);
}

html[data-theme="2"] .about-principles article:nth-child(2) p {
  color: var(--muted);
}

html[data-theme="2"] .purpose {
  margin: 0 10px;
  border-radius: 36px;
  background: #f3eee6;
}

html[data-theme="2"] .purpose .section-heading {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}

html[data-theme="2"] .purpose .eyebrow {
  justify-content: center;
}

html[data-theme="2"] .purpose-cards {
  gap: 1rem;
}

html[data-theme="2"] .purpose-cards article {
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 28px;
  background: white;
}

html[data-theme="2"] .purpose-cards article:nth-child(2) {
  background: #cfd9cb;
}

html[data-theme="2"] .purpose-cards article > span {
  display: inline-block;
  margin-bottom: 4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

html[data-theme="2"] .purpose-cards h3 {
  margin-bottom: 1.3rem;
}

html[data-theme="2"] .values {
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
  padding: 2rem;
  border-radius: 22px;
  background: var(--olive-deep);
  color: white;
}

html[data-theme="2"] .values ul {
  flex-wrap: wrap;
  gap: 1.4rem 2.8rem;
}

html[data-theme="2"] .founder {
  background: var(--cream);
}

html[data-theme="2"] .founder-shell {
  padding: 1rem;
  border-radius: 36px;
  background: #f3eee6;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

html[data-theme="2"] .founder-photo {
  min-height: 650px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--accent);
}

html[data-theme="2"] .founder-photo > img {
  height: 100%;
}

html[data-theme="2"] .founder-photo > div {
  right: 1rem;
  bottom: 1rem;
  padding: 1.2rem;
  border-radius: 16px;
  background: var(--cream);
}

html[data-theme="2"] .founder-copy {
  align-self: stretch;
  padding: clamp(2.5rem, 5vw, 5rem);
  border-radius: 28px;
  background: var(--cream);
}

html[data-theme="2"] .founder-copy h2 span {
  color: var(--terracotta);
}

html[data-theme="2"] .services {
  margin: 0 10px;
  border-radius: 36px;
  background: #f3eee6;
}

html[data-theme="2"] .services-heading {
  text-align: center;
}

html[data-theme="2"] .services-heading,
html[data-theme="2"] .services-heading .section-heading {
  align-items: center;
  flex-direction: column;
}

html[data-theme="2"] .services-heading > p {
  text-align: center;
}

html[data-theme="2"] .services-heading .eyebrow {
  justify-content: center;
}

html[data-theme="2"] .service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

html[data-theme="2"] .service {
  min-height: 260px;
  padding: 1.5rem;
  border-radius: 24px;
  background: white;
}

html[data-theme="2"] .service:nth-child(2),
html[data-theme="2"] .service:nth-child(7) {
  background: #e9dcc2;
}

html[data-theme="2"] .service:nth-child(4) {
  background: #cfd9cb;
  color: var(--ink);
}

html[data-theme="2"] .service:nth-child(4) > p {
  color: var(--muted);
}

html[data-theme="2"] .service summary {
  display: grid;
  height: 100%;
  align-content: space-between;
  grid-template-columns: 1fr 38px;
  grid-template-rows: auto 1fr;
  gap: 1rem;
}

html[data-theme="2"] .service summary span {
  grid-column: 1;
}

html[data-theme="2"] .service summary h3 {
  align-self: end;
  font-size: 1.15rem;
  grid-column: 1 / -1;
  grid-row: 2;
}

html[data-theme="2"] .service summary i {
  border: 1px solid var(--line);
  grid-column: 2;
  grid-row: 1;
}

html[data-theme="2"] .service > p {
  margin: 1.2rem 0 0;
  font-size: 0.75rem;
}

html[data-theme="2"] .approach {
  background: var(--cream);
}

html[data-theme="2"] .approach-shell {
  padding: clamp(2.5rem, 5vw, 5rem);
  border-radius: 36px;
  background: #efe8dc;
  color: var(--ink);
}

html[data-theme="2"] .approach-list {
  gap: 0.8rem;
}

html[data-theme="2"] .approach-list li {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
}

html[data-theme="2"] .approach-list li:nth-child(2) {
  background: #d9e1d5;
  color: var(--ink);
}

html[data-theme="2"] .approach-list strong {
  margin: 1.5rem 0 0.7rem;
}

html[data-theme="2"] .approach-list p {
  color: var(--muted);
}

html[data-theme="2"] .approach-list li:nth-child(2) p {
  color: var(--muted);
}

html[data-theme="2"] .stories {
  margin: 0 10px;
  border-radius: 36px;
  background: #e5d7c4;
}

html[data-theme="2"] .story-stage {
  min-height: 430px;
  padding: clamp(2.5rem, 5vw, 5rem);
  border-radius: 28px;
  background: white;
}

html[data-theme="2"] .story blockquote {
  margin-bottom: 3rem;
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
}

html[data-theme="2"] .story-controls {
  position: absolute;
  right: clamp(2.5rem, 5vw, 5rem);
  bottom: clamp(2.5rem, 5vw, 5rem);
}

html[data-theme="2"] .insights {
  background: white;
}

html[data-theme="2"] .article-grid article {
  padding: 1rem 1rem 1.8rem;
  border-radius: 26px;
  background: #f3eee6;
}

html[data-theme="2"] .article-grid article:nth-child(2) {
  background: var(--terracotta-soft);
}

html[data-theme="2"] .article-photo {
  height: 280px;
  border-radius: 20px;
}

html[data-theme="2"] .article-meta {
  margin: 1.3rem 0 0.8rem;
}

html[data-theme="2"] .article-grid h3 {
  min-height: 3.1em;
  margin-bottom: 1.5rem;
}

html[data-theme="2"] .final-cta {
  margin: 0 10px 10px;
  padding: 8rem 1rem;
  border-radius: 36px;
  background: #d8e1d4;
  color: var(--terracotta);
}

html[data-theme="2"] .final-cta h2 {
  margin-bottom: 1.5rem;
}

html[data-theme="2"] .final-cta .shell > p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: var(--muted);
}

html[data-theme="2"] .final-cta .button-primary {
  background: var(--charcoal);
  color: white;
}

html[data-theme="2"] .final-cta .button-primary i {
  background: var(--terracotta);
  color: var(--ink);
}

html[data-theme="2"] .site-footer {
  background: var(--charcoal);
}

/* =========================================================
   CONCEPT 03 — structured, high-contrast business consulting
   ========================================================= */
html[data-theme="3"] body {
  background: var(--cream);
}

html[data-theme="3"] .topbar {
  display: block;
  background: var(--accent);
  color: var(--ink);
}

html[data-theme="3"] .topbar-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.58rem;
  font-weight: 600;
}

html[data-theme="3"] .topbar-inner > div {
  display: flex;
  gap: 2rem;
}

html[data-theme="3"] .site-header {
  position: absolute;
  top: 34px;
  right: 0;
  left: 0;
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: rgba(70, 91, 73, 0.9);
  color: white;
  backdrop-filter: blur(12px);
}

html[data-theme="3"] .brand {
  width: 135px;
  padding: 0.4rem 0.55rem;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.92);
}

html[data-theme="3"] .header-cta {
  border: 1px solid var(--accent);
  background: transparent;
}

html[data-theme="3"] .header-cta i {
  background: var(--accent);
}

html[data-theme="3"] .hero {
  padding-top: 34px;
  background: var(--primary);
  color: white;
}

html[data-theme="3"] .hero-shell {
  display: grid;
  min-height: 760px;
  width: 100%;
  grid-template-columns: 1.05fr 0.95fr;
}

html[data-theme="3"] .hero-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 10rem max(3rem, calc((100vw - min(1180px, calc(100vw - 48px))) / 2)) 6rem;
}

html[data-theme="3"] .hero .eyebrow {
  color: white;
}

html[data-theme="3"] .hero h1 {
  margin-bottom: 1.7rem;
  font-size: clamp(3.5rem, 6.4vw, 6.4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

html[data-theme="3"] .hero h1 span {
  display: block;
}

html[data-theme="3"] .hero h1 span:last-child {
  color: var(--accent);
}

html[data-theme="3"] .hero-intro {
  max-width: 600px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

html[data-theme="3"] .hero .button-primary {
  border: 1px solid var(--accent);
  background: transparent;
}

html[data-theme="3"] .hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: white;
}

html[data-theme="3"] .hero-media {
  position: relative;
  overflow: hidden;
}

html[data-theme="3"] .hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(70, 91, 73, 0.18), transparent 30%);
  content: "";
}

html[data-theme="3"] .hero-photo-main {
  position: absolute;
  inset: 0;
}

html[data-theme="3"] .hero-photo-main img {
  object-position: center 30%;
}

html[data-theme="3"] .hero-photo-secondary,
html[data-theme="3"] .hero-photo-tertiary {
  display: none;
}

html[data-theme="3"] .hero-stamp {
  position: absolute;
  z-index: 3;
  right: 2rem;
  bottom: 2rem;
  width: 135px;
  height: 135px;
  background: var(--accent);
  color: var(--ink);
}

html[data-theme="3"] .hero-rail {
  display: none;
}

html[data-theme="3"] .impact {
  background: #435848;
  color: white;
}

html[data-theme="3"] .impact article {
  min-height: 165px;
  justify-content: center;
  padding: 1.6rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

html[data-theme="3"] .impact article:last-child {
  border-right: 0;
}

html[data-theme="3"] .impact strong {
  margin-bottom: 0.6rem;
}

html[data-theme="3"] .impact article:nth-child(2) {
  background: var(--sand);
  color: var(--ink);
}

html[data-theme="3"] .about {
  background: #f7f2e8;
}

html[data-theme="3"] .about-shell {
  grid-template-columns: 1fr 1fr;
  gap: 2rem 5rem;
}

html[data-theme="3"] .about .section-heading {
  align-self: end;
}

html[data-theme="3"] .about-intro {
  padding-top: 2rem;
}

html[data-theme="3"] .about-visual {
  height: 570px;
  border-radius: 16px;
}

html[data-theme="3"] .about-visual > p {
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1.25rem;
  border-radius: 10px;
  background: #ead5b1;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
}

html[data-theme="3"] .about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

html[data-theme="3"] .about-principles article {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

html[data-theme="3"] .about-principles article:nth-child(2) {
  background: #d9e1d5;
}

html[data-theme="3"] .about-principles article:nth-child(3) {
  background: #e8d8c0;
  color: var(--ink);
}

html[data-theme="3"] .about-principles article:nth-child(3) p {
  color: var(--muted);
}

html[data-theme="3"] .purpose {
  background: white;
}

html[data-theme="3"] .purpose-shell {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 5rem;
}

html[data-theme="3"] .purpose-cards {
  gap: 0.75rem;
}

html[data-theme="3"] .purpose-cards article {
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7f2e8;
}

html[data-theme="3"] .purpose-cards article:nth-child(2) {
  background: #adbcaa;
  color: var(--ink);
}

html[data-theme="3"] .purpose-cards article:nth-child(2) p {
  color: var(--muted);
}

html[data-theme="3"] .purpose-cards article > span {
  display: inline-block;
  margin-bottom: 4rem;
}

html[data-theme="3"] .purpose-cards h3 {
  margin-bottom: 1.3rem;
}

html[data-theme="3"] .values {
  justify-content: space-between;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
}

html[data-theme="3"] .values ul {
  gap: 2rem;
  font-weight: 700;
}

html[data-theme="3"] .founder {
  background: #f7f2e8;
}

html[data-theme="3"] .founder-photo > img {
  border-radius: 16px;
}

html[data-theme="3"] .founder-photo > div {
  right: -18px;
  bottom: 24px;
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--accent);
  color: var(--ink);
}

html[data-theme="3"] .founder-copy h2 span {
  color: var(--terracotta);
}

html[data-theme="3"] .services {
  background: white;
}

html[data-theme="3"] .service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

html[data-theme="3"] .service {
  min-height: 240px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7f2e8;
}

html[data-theme="3"] .service:nth-child(2),
html[data-theme="3"] .service:nth-child(6) {
  background: #eadcc2;
}

html[data-theme="3"] .service:nth-child(3) {
  background: #cfd9cb;
  color: var(--ink);
}

html[data-theme="3"] .service:nth-child(3) > p {
  color: var(--muted);
}

html[data-theme="3"] .service summary {
  display: grid;
  height: 100%;
  align-content: space-between;
  grid-template-columns: 1fr 38px;
  grid-template-rows: auto 1fr;
}

html[data-theme="3"] .service summary span {
  grid-column: 1;
}

html[data-theme="3"] .service summary h3 {
  align-self: end;
  font-size: 1.25rem;
  grid-column: 1 / -1;
  grid-row: 2;
}

html[data-theme="3"] .service summary i {
  border: 1px solid currentColor;
  grid-column: 2;
  grid-row: 1;
}

html[data-theme="3"] .service > p {
  margin: 1.25rem 0 0;
  font-size: 0.76rem;
}

html[data-theme="3"] .approach {
  background: #f1ebe2;
  color: var(--ink);
}

html[data-theme="3"] .approach-list {
  gap: 0.7rem;
}

html[data-theme="3"] .approach-list li {
  min-height: 210px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--olive);
  border-radius: 12px;
  background: var(--cream);
}

html[data-theme="3"] .approach-list li:nth-child(2) {
  border-top-color: var(--sage);
  background: var(--cream);
}

html[data-theme="3"] .approach-list li:nth-child(3) {
  border-top-color: var(--terracotta);
  background: var(--cream);
  color: var(--ink);
}

html[data-theme="3"] .approach-list li:nth-child(4) {
  border-top-color: var(--sand);
  background: var(--cream);
}

html[data-theme="3"] .approach-list strong {
  margin: 2.5rem 0 0.6rem;
}

html[data-theme="3"] .approach-list p {
  color: var(--muted);
}

html[data-theme="3"] .approach-list li:nth-child(3) p {
  color: var(--muted);
}

html[data-theme="3"] .stories {
  background: white;
}

html[data-theme="3"] .stories-shell {
  padding: clamp(2.5rem, 5vw, 5rem);
  border-radius: 16px;
  background: #f1e8da;
}

html[data-theme="3"] .story-stage {
  min-height: 420px;
  padding: clamp(2rem, 4vw, 4rem);
  border-radius: 14px;
  background: white;
}

html[data-theme="3"] .story blockquote {
  margin-bottom: 3rem;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
}

html[data-theme="3"] .story-controls {
  position: absolute;
  right: clamp(2rem, 4vw, 4rem);
  bottom: clamp(2rem, 4vw, 4rem);
}

html[data-theme="3"] .insights {
  background: #f8f3eb;
}

html[data-theme="3"] .article-photo {
  height: 260px;
  border-radius: 12px;
}

html[data-theme="3"] .article-meta {
  margin: 1.2rem 0 0.8rem;
}

html[data-theme="3"] .article-grid h3 {
  margin-bottom: 1.4rem;
}

html[data-theme="3"] .final-cta {
  padding: 8rem 0;
  background: #e7d4b5;
  color: var(--ink);
}

html[data-theme="3"] .final-cta h2 {
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

html[data-theme="3"] .final-cta .shell > p:not(.eyebrow) {
  margin-bottom: 2rem;
}

html[data-theme="3"] .site-footer {
  background: var(--charcoal);
}

/* Reference-proportion refinements */
html[data-theme="1"] {
  --section-space: clamp(5.5rem, 7.4vw, 7rem);
}

html[data-theme="1"] h1,
html[data-theme="1"] h2 {
  font-weight: 500;
}

html[data-theme="1"] h3 {
  font-weight: 600;
}

html[data-theme="1"] body {
  font-size: 15px;
}

html[data-theme="1"] .header-inner {
  min-height: 72px;
}

html[data-theme="1"] .brand {
  width: 132px;
}

html[data-theme="1"] .section-heading h2,
html[data-theme="1"] .services-heading h2,
html[data-theme="1"] .insights-heading h2,
html[data-theme="1"] .final-cta h2 {
  max-width: 760px;
  font-size: clamp(2.45rem, 4.1vw, 4.15rem);
  letter-spacing: -0.052em;
  line-height: 1.02;
}

html[data-theme="1"] .hero {
  padding-top: clamp(4.5rem, 6vw, 6rem);
}

html[data-theme="1"] .hero-copy {
  max-width: 1060px;
  margin-bottom: 3rem;
}

html[data-theme="1"] .hero h1 {
  font-size: clamp(3.4rem, 5.25vw, 4.75rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

html[data-theme="1"] .hero-intro {
  max-width: 620px;
  font-size: 0.92rem;
}

html[data-theme="1"] .hero-media {
  height: 310px;
}

html[data-theme="1"] .hero-rail {
  margin-top: 3.2rem;
}

html[data-theme="1"] .impact {
  padding-bottom: 4.75rem;
}

html[data-theme="1"] .about {
  border-radius: 38px;
}

html[data-theme="1"] .about-shell {
  gap: 2.5rem 5rem;
}

html[data-theme="1"] .about-visual {
  height: 450px;
}

html[data-theme="1"] .purpose-shell > .section-heading {
  margin-bottom: 3.25rem;
}

html[data-theme="1"] .purpose-cards article,
html[data-theme="1"] .story-stage {
  padding: clamp(2rem, 3.6vw, 3.5rem);
}

html[data-theme="1"] .founder-photo > img {
  height: 540px;
}

html[data-theme="1"] .services-heading,
html[data-theme="1"] .insights-heading {
  margin-bottom: 3.5rem;
}

html[data-theme="1"] .article-photo {
  height: 240px;
}

html[data-theme="2"] {
  --section-space: clamp(5rem, 6.5vw, 6.25rem);
}

html[data-theme="2"] h1,
html[data-theme="2"] h2 {
  font-weight: 500;
}

html[data-theme="2"] h3 {
  font-weight: 600;
}

html[data-theme="2"] body {
  font-size: 14px;
}

html[data-theme="2"] .site-frame {
  border-radius: 40px;
}

html[data-theme="2"] .header-inner {
  min-height: 78px;
}

html[data-theme="2"] .brand {
  width: 128px;
}

html[data-theme="2"] .section-heading h2,
html[data-theme="2"] .services-heading h2,
html[data-theme="2"] .insights-heading h2,
html[data-theme="2"] .final-cta h2 {
  max-width: 760px;
  font-size: clamp(2.3rem, 3.65vw, 3.6rem);
  letter-spacing: -0.048em;
  line-height: 1.06;
}

html[data-theme="2"] .hero,
html[data-theme="2"] .hero-shell {
  min-height: 650px;
}

html[data-theme="2"] .hero-shell {
  border-radius: 34px;
}

html[data-theme="2"] .hero-copy {
  max-width: 760px;
  padding: 0 0 7rem 4rem;
}

html[data-theme="2"] .hero h1 {
  max-width: 730px;
  font-size: clamp(3rem, 4.1vw, 3.8rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

html[data-theme="2"] .hero-intro {
  max-width: 520px;
  font-size: 0.88rem;
}

html[data-theme="2"] .hero-stamp {
  right: 2.75rem;
  bottom: 6rem;
  width: 108px;
  height: 108px;
}

html[data-theme="2"] .hero-rail span {
  padding: 1rem 1.3rem;
}

html[data-theme="2"] .impact {
  padding: 4.5rem 0;
}

html[data-theme="2"] .impact article {
  min-height: 132px;
}

html[data-theme="2"] .about-visual {
  min-height: 560px;
}

html[data-theme="2"] .purpose,
html[data-theme="2"] .services,
html[data-theme="2"] .stories,
html[data-theme="2"] .final-cta {
  border-radius: 30px;
}

html[data-theme="2"] .purpose .section-heading {
  margin-bottom: 3.25rem;
}

html[data-theme="2"] .purpose-cards article,
html[data-theme="2"] .founder-copy,
html[data-theme="2"] .story-stage {
  padding: clamp(2.25rem, 4vw, 3.75rem);
}

html[data-theme="2"] .founder-photo {
  min-height: 580px;
}

html[data-theme="2"] .service {
  min-height: 220px;
}

html[data-theme="2"] .service[open] {
  min-height: 280px;
}

html[data-theme="2"] .service[open] summary {
  height: auto;
  min-height: 138px;
}

html[data-theme="2"] .services-heading,
html[data-theme="2"] .insights-heading {
  margin-bottom: 3.5rem;
}

html[data-theme="2"] .article-photo {
  height: 235px;
}

html[data-theme="2"] .final-cta {
  padding-block: 6.5rem;
}

html[data-theme="3"] {
  --section-space: clamp(5rem, 6.8vw, 6.5rem);
}

html[data-theme="3"] h1 {
  font-weight: 700;
}

html[data-theme="3"] h2,
html[data-theme="3"] h3 {
  font-weight: 600;
}

html[data-theme="3"] body {
  font-size: 14px;
}

html[data-theme="3"] .topbar-inner {
  min-height: 30px;
}

html[data-theme="3"] .site-header {
  top: 30px;
}

html[data-theme="3"] .header-inner {
  min-height: 70px;
}

html[data-theme="3"] .brand {
  width: 122px;
}

html[data-theme="3"] .section-heading h2,
html[data-theme="3"] .services-heading h2,
html[data-theme="3"] .insights-heading h2,
html[data-theme="3"] .final-cta h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 3.85vw, 3.8rem);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

html[data-theme="3"] .hero {
  padding-top: 30px;
}

html[data-theme="3"] .hero-shell {
  min-height: 650px;
}

html[data-theme="3"] .hero-copy {
  padding-top: 8rem;
  padding-bottom: 4.5rem;
}

html[data-theme="3"] .hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 5.15vw, 4.75rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

html[data-theme="3"] .hero-intro {
  max-width: 560px;
  font-size: 0.9rem;
}

html[data-theme="3"] .hero-stamp {
  width: 112px;
  height: 112px;
}

html[data-theme="3"] .impact article {
  min-height: 136px;
}

html[data-theme="3"] .about-visual {
  height: 510px;
}

html[data-theme="3"] .purpose-shell {
  gap: 4rem;
}

html[data-theme="3"] .founder-photo > img {
  height: 540px;
}

html[data-theme="3"] .service {
  min-height: 215px;
}

html[data-theme="3"] .service[open] {
  min-height: 280px;
}

html[data-theme="3"] .service[open] summary {
  height: auto;
  min-height: 138px;
}

html[data-theme="3"] .about-principles {
  align-self: start;
}

html[data-theme="3"] .about-principles article {
  min-height: 245px;
}

html[data-theme="3"] .services-heading,
html[data-theme="3"] .insights-heading {
  margin-bottom: 3.5rem;
}

html[data-theme="3"] .article-photo {
  height: 235px;
}

html[data-theme="3"] .final-cta {
  padding-block: 6.5rem;
}

/* Responsive */
@media (max-width: 1080px) {
  .site-nav {
    gap: 1rem;
  }

  .header-cta span {
    display: none;
  }

  .header-cta {
    width: 49px;
    padding: 0;
  }

  html[data-theme="2"] .about-shell {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "heading intro"
      "visual visual"
      "principles principles";
  }

  html[data-theme="2"] .about-visual {
    min-height: 560px;
  }

  html[data-theme="2"] .service-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  :root,
  html[data-theme="2"],
  html[data-theme="3"] {
    --shell: calc(100vw - 36px);
    --section-space: 6rem;
  }

  html {
    scroll-padding-top: 80px;
  }

  html[data-theme="1"] .site-header,
  html[data-theme="3"] .site-header {
    backdrop-filter: none;
  }

  .header-inner,
  html[data-theme="2"] .header-inner {
    width: var(--shell);
    min-height: 78px;
  }

  .brand {
    position: relative;
    z-index: 102;
    width: 125px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    place-content: center;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 3px;
    background: var(--ink);
    transition: transform 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 0.8rem;
    padding: 7rem max(24px, calc((100vw - var(--shell)) / 2));
    background: var(--cream);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: clamp(1.7rem, 6vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    text-shadow: none !important;
  }

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

  .about-shell,
  html[data-theme="1"] .about-shell,
  html[data-theme="3"] .about-shell {
    grid-template-columns: 1fr;
  }

  .about-intro {
    max-width: 700px;
  }

  html[data-theme="1"] .about-visual,
  html[data-theme="3"] .about-visual {
    height: 560px;
  }

  html[data-theme="1"] .about-principles {
    grid-template-columns: repeat(3, 1fr);
  }

  html[data-theme="3"] .purpose-shell {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .founder-shell,
  html[data-theme="2"] .founder-shell {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .founder-photo {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  html[data-theme="2"] .founder-photo {
    width: 100%;
  }

  .services-heading,
  .insights-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  html[data-theme="1"] .service-list,
  html[data-theme="2"] .service-list,
  html[data-theme="3"] .service-list {
    grid-template-columns: 1fr 1fr;
  }

  .approach-shell,
  .stories-shell {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

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

  .article-grid article:last-child {
    grid-column: 1 / -1;
  }

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

  .footer-grid > div:nth-child(3) {
    display: none;
  }

  /* Concept 1 tablet */
  html[data-theme="1"] .hero h1 {
    font-size: clamp(3.5rem, 10vw, 5.7rem);
  }

  html[data-theme="1"] .hero-media {
    height: 330px;
  }

  /* Concept 2 tablet */
  html[data-theme="2"] body {
    padding: 6px;
  }

  html[data-theme="2"] .site-frame {
    border-radius: 32px;
  }

  html[data-theme="2"] .hero {
    padding: 6px;
  }

  html[data-theme="2"] .hero-shell {
    min-height: 710px;
    border-radius: 28px;
  }

  html[data-theme="2"] .hero-copy {
    padding: 0 3rem 9rem;
  }

  html[data-theme="2"] .hero-stamp {
    right: 2rem;
    bottom: 7rem;
  }

  html[data-theme="2"] .about-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "intro"
      "visual"
      "principles";
  }

  html[data-theme="2"] .about-principles {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Concept 3 tablet */
  html[data-theme="3"] .hero-shell {
    min-height: 700px;
    grid-template-columns: 1.15fr 0.85fr;
  }

  html[data-theme="3"] .hero-copy {
    padding-right: 2.5rem;
  }
}

@media (max-width: 620px) {
  :root,
  html[data-theme="2"],
  html[data-theme="3"] {
    --shell: calc(100vw - 28px);
    --section-space: 4.8rem;
  }

  .topbar {
    display: none !important;
  }

  html[data-theme="3"] .site-header {
    top: 0;
  }

  .section-heading h2,
  .services-heading h2,
  .insights-heading h2,
  .final-cta h2,
  .founder-copy h2 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

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

  .impact article,
  html[data-theme="1"] .impact article,
  html[data-theme="3"] .impact article {
    min-height: 115px;
    align-items: flex-start;
    padding: 1.7rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .purpose-cards,
  html[data-theme="1"] .about-principles,
  html[data-theme="2"] .about-principles,
  html[data-theme="3"] .about-principles {
    grid-template-columns: 1fr;
  }

  .values {
    align-items: flex-start;
    flex-direction: column;
  }

  .values ul {
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start !important;
    gap: 0.7rem 1.5rem !important;
  }

  .founder-photo > img {
    height: 510px;
  }

  html[data-theme="1"] .service-list,
  html[data-theme="2"] .service-list,
  html[data-theme="3"] .service-list {
    grid-template-columns: 1fr;
  }

  html[data-theme="2"] .service,
  html[data-theme="3"] .service {
    min-height: 210px;
  }

  .approach-list {
    grid-template-columns: 1fr;
  }

  .story-stage,
  html[data-theme="1"] .story-stage,
  html[data-theme="2"] .story-stage,
  html[data-theme="3"] .story-stage {
    min-height: 520px;
  }

  .story blockquote {
    font-size: 1.4rem !important;
  }

  .story-controls {
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem;
  }

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

  .article-grid article:last-child {
    grid-column: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:nth-child(3) {
    display: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  /* Concept 1 mobile */
  html[data-theme="1"] .hero {
    padding-top: 4.5rem;
  }

  html[data-theme="1"] .hero h1 {
    font-size: clamp(2.65rem, 13.7vw, 3.45rem);
    line-height: 0.98;
  }

  html[data-theme="1"] .hero h1 span:last-child {
    width: auto;
  }

  html[data-theme="1"] .hero h1 span:last-child::before,
  html[data-theme="1"] .hero h1 span:last-child::after {
    display: none;
  }

  html[data-theme="1"] .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  html[data-theme="1"] .hero-media {
    height: 330px;
    border-width: 4px;
    border-radius: 22px;
    box-shadow: 7px 8px 0 #465b49;
    grid-template-columns: 1fr 1fr;
  }

  html[data-theme="1"] .hero-photo-tertiary {
    display: none;
  }

  html[data-theme="1"] .hero-stamp {
    right: 12px;
    bottom: 12px;
    width: 96px;
    height: 96px;
  }

  html[data-theme="1"] .hero-rail {
    gap: 0.9rem;
    margin-top: 2.8rem;
    font-size: 0.51rem;
  }

  html[data-theme="1"] .hero-rail span::before {
    display: none;
  }

  html[data-theme="1"] .about,
  html[data-theme="1"] .stories {
    width: calc(100% - 12px);
    border-radius: 28px;
  }

  html[data-theme="1"] .about-shell {
    gap: 2.5rem;
  }

  html[data-theme="1"] .about-visual,
  html[data-theme="3"] .about-visual {
    height: 480px;
  }

  html[data-theme="1"] .founder-photo > div,
  html[data-theme="3"] .founder-photo > div {
    right: -8px;
  }

  /* Concept 2 mobile */
  html[data-theme="2"] body {
    padding: 4px;
  }

  html[data-theme="2"] .site-frame {
    border-radius: 24px;
  }

  html[data-theme="2"] .hero {
    min-height: 830px;
    padding: 4px;
  }

  html[data-theme="2"] .hero-shell {
    min-height: 820px;
    border-radius: 21px;
  }

  html[data-theme="2"] .hero-media::after {
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.2), rgba(27, 27, 27, 0.86) 75%);
  }

  html[data-theme="2"] .hero-copy {
    padding: 7rem 1.4rem 8.5rem;
  }

  html[data-theme="2"] .hero h1 {
    font-size: clamp(2.8rem, 13vw, 3.6rem);
  }

  html[data-theme="2"] .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  html[data-theme="2"] .hero-stamp {
    display: none;
  }

  html[data-theme="2"] .hero-rail {
    right: 0.8rem;
    bottom: 0.8rem;
    left: 0.8rem;
    gap: 0.3rem;
  }

  html[data-theme="2"] .hero-rail span {
    padding: 0.85rem 0.55rem;
    border-radius: 10px;
    font-size: 0.5rem;
    text-align: center;
  }

  html[data-theme="2"] .about-visual {
    min-height: 500px;
  }

  html[data-theme="2"] .purpose,
  html[data-theme="2"] .services,
  html[data-theme="2"] .stories,
  html[data-theme="2"] .final-cta {
    margin-right: 4px;
    margin-left: 4px;
    border-radius: 24px;
  }

  html[data-theme="2"] .founder-shell {
    border-radius: 24px;
  }

  html[data-theme="2"] .founder-photo {
    min-height: 540px;
  }

  html[data-theme="2"] .founder-copy {
    padding: 2rem 1.3rem;
  }

  /* Concept 3 mobile */
  html[data-theme="3"] .hero {
    padding-top: 0;
  }

  html[data-theme="3"] .hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  html[data-theme="3"] .hero-copy {
    min-height: 670px;
    padding: 8rem 18px 4.5rem;
  }

  html[data-theme="3"] .hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.3rem);
  }

  html[data-theme="3"] .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  html[data-theme="3"] .hero-media {
    height: 480px;
  }

  html[data-theme="3"] .purpose-shell {
    gap: 2.5rem;
  }
}

/* Pricing page refinement — source content from the 2026 investment guide */
html[data-theme="3"] .pricing-page {
  background: #f7f5ec;
}

.pricing-masthead {
  position: relative;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: #34493a;
  color: #fff;
}

.pricing-masthead::after {
  content: none;
}

.pricing-masthead-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.pricing-masthead .eyebrow {
  color: #e6a084;
}

.pricing-masthead .eyebrow::before {
  background: #f7f5ec;
}

.pricing-masthead h1 {
  max-width: 760px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2.7rem, 4.7vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 1;
}

html[data-theme="3"] .pricing-tagline {
  margin-bottom: 1.2rem;
  color: #e6a084;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: italic;
  font-weight: 600;
}

html[data-theme="3"] .pricing-introduction {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.9rem, 1.08vw, 1rem);
  line-height: 1.65;
}

.pricing-page .pricing-jump {
  position: sticky;
  z-index: 45;
  top: 0;
  border: 0;
  border-bottom: 1px solid rgba(70, 91, 73, 0.14);
  background: rgba(247, 245, 236, 0.95);
  box-shadow: 0 10px 35px rgba(44, 60, 49, 0.06);
  backdrop-filter: blur(16px);
}

.pricing-page .pricing-jump .shell {
  display: flex;
  overflow-x: auto;
  gap: clamp(1.4rem, 3vw, 3rem);
  scrollbar-width: none;
}

.pricing-page .pricing-jump .shell::-webkit-scrollbar {
  display: none;
}

.pricing-page .pricing-jump a {
  position: relative;
  padding: 1.2rem 0;
  color: #465b49;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-page .pricing-jump a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #a95237;
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pricing-page .pricing-jump a:hover::after,
.pricing-page .pricing-jump a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.pricing-section {
  padding-block: clamp(5.5rem, 9vw, 9rem);
  scroll-margin-top: 60px;
  background: #fff;
}

.pricing-section-soft {
  background: #f7f5ec;
}

.pricing-section-deep {
  background: #2c3c31;
}

.pricing-section-heading {
  display: grid;
  align-items: start;
  margin-bottom: clamp(2.8rem, 5vw, 4.8rem);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  grid-template-columns: 56px minmax(0, 1fr);
}

.pricing-section-heading > span,
.pricing-notes-grid > div > span {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(70, 91, 73, 0.22);
  border-radius: 50%;
  color: #a95237;
  font-size: 0.68rem;
  font-weight: 800;
  place-items: center;
}

.pricing-section-heading h2 {
  max-width: 960px;
  color: #465b49;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

html[data-theme="3"] .pricing-section-heading p {
  max-width: 760px;
  margin: 1rem 0 0;
  color: #69716c;
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  font-style: italic;
}

.pricing-section-deep .pricing-section-heading > span {
  border-color: rgba(255, 255, 255, 0.26);
  color: #e6a084;
}

.pricing-section-deep .pricing-section-heading h2,
html[data-theme="3"] .pricing-section-deep .pricing-section-heading p {
  color: #fff;
}

.pricing-section-hourly {
  background: #fff;
}

.pricing-page .rate-table-wrap {
  overflow: hidden;
  border: 1px solid rgba(70, 91, 73, 0.13);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(44, 60, 49, 0.08);
}

.pricing-page .rate-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-page .rate-table th {
  padding: 1.1rem clamp(1.2rem, 3vw, 2.2rem);
  background: #2c3c31;
  color: #fff;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}

.pricing-page .rate-table th:last-child,
.pricing-page .rate-table td:last-child {
  width: 245px;
  text-align: right;
}

.pricing-page .rate-table td {
  padding: 1.2rem clamp(1.2rem, 3vw, 2.2rem);
  border-bottom: 1px solid rgba(70, 91, 73, 0.1);
  color: #2c3c31;
  font-size: clamp(0.9rem, 1.25vw, 1.04rem);
  font-weight: 600;
}

.pricing-page .rate-table tr:nth-child(even) td {
  background: #f3f5f0;
}

.pricing-page .rate-table tr:last-child td {
  border-bottom: 0;
}

.pricing-page .rate-table td:last-child {
  color: #a95237;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 750;
  white-space: nowrap;
}

.pricing-page .rate-table td small {
  font-family: var(--font-body);
  font-size: 0.68em;
  font-weight: 600;
}

.pricing-card-grid {
  display: grid;
  align-items: stretch;
  gap: 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-card-grid-startup {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.pricing-card-grid-startup .pricing-card {
  grid-column: span 2;
}

.pricing-card-grid-startup .pricing-card:nth-child(4),
.pricing-card-grid-startup .pricing-card:nth-child(5) {
  grid-column: span 3;
}

.pricing-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(70, 91, 73, 0.14);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(44, 60, 49, 0.065);
  flex-direction: column;
}

.pricing-card::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: #cd7653;
  content: "";
}

.pricing-card > header {
  display: grid;
  padding: clamp(1.7rem, 3vw, 2.35rem);
  border-bottom: 1px solid rgba(70, 91, 73, 0.11);
  gap: 1.2rem;
}

.pricing-card h3 {
  max-width: 480px;
  color: #2c3c31;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.pricing-card > header strong,
.signature-pricing-card > header > strong {
  color: #a95237;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-card > header strong small {
  font-size: 0.5em;
}

html[data-theme="3"] .pricing-card-note {
  margin: 0;
  padding: 1rem clamp(1.7rem, 3vw, 2.35rem) 0;
  color: #69716c;
  font-size: 0.82rem;
  font-style: italic;
}

.pricing-card-body {
  padding: clamp(1.5rem, 3vw, 2.35rem);
  flex: 1;
}

.pricing-card-body h4,
.signature-pricing-body h4 {
  margin: 0 0 1rem;
  color: #a95237;
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pricing-card-body ul,
.signature-pricing-body ul,
.pricing-notes ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.72rem;
}

.pricing-card-body li,
.signature-pricing-body li,
.pricing-notes li {
  position: relative;
  padding-left: 1.15rem;
  color: #34493a;
  font-size: 0.87rem;
  line-height: 1.45;
}

.pricing-card-body li::before,
.signature-pricing-body li::before,
.pricing-notes li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #cd7653;
  content: "";
  transform: rotate(45deg);
}

.pricing-card-dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: #3b5040;
  box-shadow: none;
}

.pricing-card-dark > header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.pricing-card-dark h3,
.pricing-card-dark .pricing-card-body li {
  color: #fff;
}

.pricing-card-dark .pricing-card-body h4,
.pricing-card-dark > header strong {
  color: #e6a084;
}

.signature-pricing-card {
  overflow: hidden;
  border: 1px solid rgba(70, 91, 73, 0.14);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(44, 60, 49, 0.1);
}

.signature-pricing-card > header {
  display: grid;
  align-items: end;
  padding: clamp(2.2rem, 5vw, 4.2rem);
  background:
    radial-gradient(circle at 90% 20%, transparent 0 70px, rgba(247, 245, 236, 0.1) 71px 72px, transparent 73px),
    linear-gradient(135deg, #2c3c31, #465b49);
  color: #fff;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.signature-pricing-card h3 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(2.7rem, 5.5vw, 6rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

html[data-theme="3"] .signature-pricing-card > header p {
  max-width: 520px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-style: italic;
}

.signature-pricing-card > header > strong {
  color: #e6a084;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  white-space: nowrap;
}

.signature-pricing-body {
  padding: clamp(2rem, 5vw, 4rem);
  background: #f7f5ec;
}

.signature-pricing-body ul {
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signature-pricing-body li {
  padding-block: 0.8rem;
  padding-right: 1rem;
  padding-left: 1.2rem;
  border-bottom: 1px solid rgba(70, 91, 73, 0.12);
}

.pricing-page .pricing-notes {
  padding-block: clamp(5rem, 8vw, 8rem);
  background: #dfe7dc;
}

.pricing-page .pricing-notes-grid {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
}

.pricing-notes-grid > div {
  display: grid;
  gap: 1.4rem;
}

.pricing-page .pricing-notes h2 {
  color: #2c3c31;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.065em;
}

.pricing-page .pricing-notes ul {
  gap: 1.4rem;
}

.pricing-page .pricing-notes li {
  padding-left: 1.4rem;
  color: #2c3c31;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.6;
}

/* Services page pricing preview uses the same source hierarchy. */
.pricing-preview {
  background: #dfe7dc;
}

.pricing-preview .eyebrow {
  color: #a95237;
}

.pricing-preview-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.2rem);
  gap: clamp(2rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
}

.pricing-preview h2 {
  max-width: 780px;
  color: #2c3c31;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.065em;
}

html[data-theme="3"] .pricing-preview-heading > div:last-child > p {
  max-width: 480px;
  color: #465b49;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  font-weight: 600;
}

.pricing-preview-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(70, 91, 73, 0.14);
  border-radius: 22px;
  background: rgba(70, 91, 73, 0.14);
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-preview-grid article {
  min-height: 205px;
  padding: clamp(1.5rem, 2.8vw, 2.1rem);
  background: #f7f5ec;
}

.pricing-preview-grid span {
  display: block;
  min-height: 2.8em;
  margin-bottom: 1.4rem;
  color: #69716c;
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.075em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pricing-preview-grid strong {
  display: block;
  color: #2c3c31;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.pricing-preview-grid small {
  display: block;
  margin-top: 1rem;
  color: #a95237;
  font-size: 0.86rem;
  font-weight: 750;
}

@media (max-width: 1050px) {
  .pricing-card-grid-startup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card-grid-startup .pricing-card,
  .pricing-card-grid-startup .pricing-card:nth-child(4) {
    grid-column: span 1;
  }

  .pricing-card-grid-startup .pricing-card:nth-child(5) {
    grid-column: 1 / -1;
  }

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

@media (max-width: 900px) {
  .pricing-masthead-grid,
  .pricing-preview-heading,
  .pricing-page .pricing-notes-grid {
    grid-template-columns: 1fr;
  }

  .signature-pricing-body ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .pricing-masthead {
    padding-block: 3.8rem;
  }

  .pricing-masthead h1 {
    font-size: clamp(2.6rem, 11vw, 3.8rem);
  }

  .pricing-page .pricing-jump .shell {
    width: 100%;
    padding-inline: 14px;
  }

  .pricing-page .pricing-jump a {
    padding-block: 0.95rem;
    font-size: 0.6rem;
  }

  .pricing-section {
    scroll-margin-top: 48px;
  }

  .pricing-section-heading {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .pricing-section-heading > span,
  .pricing-notes-grid > div > span {
    width: 38px;
    height: 38px;
  }

  .pricing-card-grid,
  .pricing-card-grid-startup,
  .pricing-preview-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-grid-startup .pricing-card,
  .pricing-card-grid-startup .pricing-card:nth-child(4),
  .pricing-card-grid-startup .pricing-card:nth-child(5) {
    grid-column: 1;
  }

  .pricing-card,
  .pricing-page .rate-table-wrap,
  .pricing-preview-grid,
  .signature-pricing-card {
    border-radius: 17px;
  }

  .signature-pricing-card > header {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .signature-pricing-body ul {
    grid-template-columns: 1fr;
  }

  .pricing-page .rate-table th,
  .pricing-page .rate-table td {
    padding: 0.95rem 0.85rem;
  }

  .pricing-page .rate-table th:last-child,
  .pricing-page .rate-table td:last-child {
    width: 118px;
  }

  .pricing-page .rate-table td {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .pricing-page .rate-table td:last-child {
    font-size: 0.9rem;
    white-space: normal;
  }

  .pricing-preview-grid article {
    min-height: 0;
  }
}

/* Final preview specificity for the Services-page pricing summary. */
.pricing-preview .pricing-preview-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.2rem);
  gap: clamp(2rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
}

.pricing-preview .pricing-preview-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(70, 91, 73, 0.14);
  border-radius: 22px;
  background: rgba(70, 91, 73, 0.14);
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-preview .pricing-preview-grid article {
  min-height: 205px;
  padding: clamp(1.5rem, 2.8vw, 2.1rem);
  background: #f7f5ec;
}

.pricing-preview .pricing-preview-grid span {
  min-height: 2.8em;
  margin-bottom: 1.4rem;
}

.pricing-preview .pricing-preview-grid small {
  margin-top: 1rem;
  font-size: 0.86rem;
}

@media (max-width: 1050px) {
  .pricing-preview .pricing-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pricing-preview .pricing-preview-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .pricing-preview .pricing-preview-grid {
    grid-template-columns: 1fr;
  }

  .pricing-preview .pricing-preview-grid article {
    min-height: 0;
  }
}

/* Pricing conversion actions */
.pricing-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 clamp(1.5rem, 3vw, 2.35rem) clamp(1.5rem, 3vw, 2.1rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(70, 91, 73, 0.13);
  color: #8d492f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card-action span {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.pricing-card-action:hover span {
  transform: translateX(4px);
}

.pricing-card-dark .pricing-card-action {
  border-top-color: rgba(255, 255, 255, 0.14);
  color: #e6a084;
}

.signature-pricing-action {
  max-width: 300px;
  margin: 2rem 0 0;
}

.pricing-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 8vw, 8rem);
  background:
    radial-gradient(circle at 88% 18%, transparent 0 85px, rgba(247, 245, 236, 0.09) 86px 87px, transparent 88px),
    linear-gradient(135deg, #26362b 0%, #34493a 60%, #465b49 100%);
  color: #fff;
}

.pricing-cta::after {
  position: absolute;
  right: 8vw;
  bottom: -130px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(247, 245, 236, 0.08);
  border-radius: 50%;
  content: "";
}

.pricing-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: clamp(2.5rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1fr) auto;
}

.pricing-cta .eyebrow {
  color: #e6a084;
}

.pricing-cta .eyebrow::before {
  content: none;
}

.pricing-cta h2 {
  max-width: 850px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

html[data-theme="3"] .pricing-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.96rem, 1.3vw, 1.1rem);
}

html[data-theme="3"] .pricing-cta .button-primary {
  min-width: 230px;
  border-color: #cd7653;
  background: #cd7653;
  color: #243229;
}

html[data-theme="3"] .pricing-cta .button-primary:hover {
  border-color: #df8765;
  background: #df8765;
}

html[data-theme="3"] .pricing-cta .button-primary i {
  background: #243229;
  color: #fff;
}

@media (max-width: 800px) {
  .pricing-cta-inner {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .pricing-cta .button-primary {
    justify-self: start;
  }
}

/* Premium pricing-page finish */
.pricing-page .pricing-masthead {
  position: relative;
  overflow: hidden;
  padding-top: clamp(6rem, 8vw, 8rem);
  padding-bottom: clamp(4.5rem, 6vw, 6.25rem);
  border-bottom: 1px solid rgba(247, 245, 236, 0.1);
  background:
    radial-gradient(circle at 84% 20%, rgba(205, 118, 83, 0.16) 0 5px, transparent 6px),
    radial-gradient(circle at 84% 20%, transparent 0 94px, rgba(247, 245, 236, 0.08) 95px 96px, transparent 97px),
    linear-gradient(118deg, #26372c 0%, #34493a 58%, #405a47 100%);
}

.pricing-page .pricing-masthead::before {
  position: absolute;
  right: -90px;
  bottom: -180px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(247, 245, 236, 0.075);
  border-radius: 50%;
  content: "";
}

.pricing-page .pricing-masthead-grid {
  align-items: start;
  gap: clamp(4rem, 9vw, 9rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.pricing-page .pricing-masthead-title {
  position: relative;
}

.pricing-page .pricing-masthead .eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.8rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(230, 160, 132, 0.34);
  border-radius: 999px;
  background: rgba(230, 160, 132, 0.08);
  color: #efaa8e;
  letter-spacing: 0.11em;
}

.pricing-page .pricing-masthead .eyebrow::before {
  width: 6px;
  height: 6px;
  background: #efaa8e;
}

.pricing-page .pricing-masthead h1 {
  max-width: 720px;
  font-size: clamp(3rem, 4.6vw, 4.9rem);
  line-height: 0.98;
  text-wrap: balance;
}

.pricing-page .pricing-masthead-summary {
  max-width: 610px;
  padding: 0.65rem 0 0.6rem clamp(2rem, 4vw, 3.5rem);
  border-left: 1px solid rgba(247, 245, 236, 0.18);
}

html[data-theme="3"] .pricing-page .pricing-tagline {
  margin-bottom: 1.5rem;
  color: #efaa8e;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.35;
}

html[data-theme="3"] .pricing-page .pricing-introduction {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
  line-height: 1.75;
}

.pricing-page .pricing-jump {
  box-shadow: 0 14px 35px rgba(44, 60, 49, 0.075);
}

.pricing-page .pricing-jump a {
  padding-block: 1.25rem;
  transition: color 0.2s ease;
}

.pricing-page .pricing-jump a:hover {
  color: #8d492f;
  opacity: 1;
}

.pricing-page .pricing-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 9vw, 9rem);
}

.pricing-page .pricing-section-soft {
  background:
    radial-gradient(circle at 10% 12%, rgba(205, 118, 83, 0.08) 0 4px, transparent 5px),
    linear-gradient(180deg, #f8f6ef 0%, #f3efe4 100%);
}

.pricing-page #fundraising-packages {
  background:
    linear-gradient(90deg, rgba(223, 231, 220, 0.36) 0 1px, transparent 1px) 0 0 / 25% 100%,
    #fff;
}

.pricing-page #enterprise {
  background: linear-gradient(145deg, #f7f5ec 0%, #efe3d1 100%);
}

.pricing-page .pricing-section > .shell {
  position: relative;
  z-index: 1;
}

.pricing-page .pricing-section-heading {
  align-items: start;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(2rem, 3vw, 2.8rem);
  border-bottom: 1px solid rgba(70, 91, 73, 0.15);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  grid-template-columns: 62px minmax(0, 1fr);
}

.pricing-page .pricing-section-heading > span,
.pricing-page .pricing-notes-grid > div > span {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 16px;
  background: #efe3d1;
  box-shadow: inset 0 0 0 1px rgba(169, 82, 55, 0.12);
  color: #8d492f;
  font-size: 0.72rem;
}

.pricing-page .pricing-section-heading h2 {
  max-width: 920px;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  line-height: 0.98;
  text-wrap: balance;
}

html[data-theme="3"] .pricing-page .pricing-section-heading p {
  max-width: 720px;
  margin-top: 1.1rem;
  font-size: clamp(0.98rem, 1.22vw, 1.1rem);
  font-style: normal;
  line-height: 1.65;
}

.pricing-page .pricing-section-deep {
  background:
    radial-gradient(circle at 90% 10%, rgba(230, 160, 132, 0.12) 0 4px, transparent 5px),
    linear-gradient(135deg, #243229 0%, #2c3c31 58%, #3b5040 100%);
}

.pricing-page .pricing-section-deep .pricing-section-heading {
  border-bottom-color: rgba(255, 255, 255, 0.13);
}

.pricing-page .pricing-section-deep .pricing-section-heading > span {
  background: rgba(230, 160, 132, 0.13);
  box-shadow: inset 0 0 0 1px rgba(230, 160, 132, 0.25);
  color: #efaa8e;
}

.pricing-page .rate-table-wrap {
  position: relative;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(44, 60, 49, 0.11);
}

.pricing-page .rate-table-wrap::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, #cd7653, #e6a084);
  content: "";
}

.pricing-page .rate-table th {
  padding-block: 1.3rem;
  background: #26372c;
}

.pricing-page .rate-table td {
  padding-block: 1.3rem;
  transition: background 0.2s ease;
}

.pricing-page .rate-table tbody tr:hover td {
  background: #edf2e9;
}

.pricing-page .rate-table td:last-child {
  color: #91442e;
  font-size: clamp(1.15rem, 1.65vw, 1.4rem);
}

.pricing-page .pricing-card-grid {
  gap: clamp(1.4rem, 2vw, 2rem);
}

.pricing-page .pricing-card {
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow:
    0 20px 50px rgba(44, 60, 49, 0.08),
    0 2px 8px rgba(44, 60, 49, 0.04);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.pricing-page .pricing-card::after {
  height: 6px;
  background: linear-gradient(90deg, #a95237, #e6a084);
}

.pricing-page .pricing-card > header {
  min-height: 205px;
  align-content: space-between;
  padding: clamp(2rem, 3vw, 2.65rem);
  border-bottom: 1px solid rgba(70, 91, 73, 0.1);
  background: linear-gradient(145deg, #fff 0%, #f8f6ef 100%);
  gap: 1.6rem;
}

.pricing-page .pricing-card:nth-child(even) > header {
  background: linear-gradient(145deg, #fff 0%, #f3f7f0 100%);
}

.pricing-page .pricing-card h3 {
  font-size: clamp(1.55rem, 2.15vw, 2.05rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.pricing-page .pricing-card > header strong {
  display: inline-flex;
  width: fit-content;
  align-items: baseline;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(169, 82, 55, 0.13);
  border-radius: 999px;
  background: rgba(205, 118, 83, 0.1);
  color: #91442e;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

.pricing-page .pricing-card-body {
  padding: clamp(1.8rem, 3vw, 2.55rem);
}

.pricing-page .pricing-card-body h4,
.pricing-page .signature-pricing-body h4 {
  display: inline-flex;
  margin-bottom: 1.2rem;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: #efe3d1;
  color: #8d492f;
  font-size: 0.62rem;
}

.pricing-page .pricing-card-body ul {
  gap: 0;
}

.pricing-page .pricing-card-body li {
  padding-block: 0.72rem;
  padding-right: 0.25rem;
  padding-left: 1.3rem;
  border-bottom: 1px solid rgba(70, 91, 73, 0.09);
  color: #34493a;
  font-size: 0.9rem;
  line-height: 1.45;
}

.pricing-page .pricing-card-body li:last-child {
  border-bottom: 0;
}

.pricing-page .pricing-card-body li::before {
  top: 1.15rem;
  width: 7px;
  height: 7px;
  border-radius: 2px;
}

html[data-theme="3"] .pricing-page .pricing-card-note {
  padding: 1.15rem clamp(2rem, 3vw, 2.65rem) 0;
  color: #5f6964;
  font-size: 0.88rem;
}

.pricing-page .pricing-card-action {
  margin: 0;
  padding: 1.2rem clamp(1.8rem, 3vw, 2.55rem);
  border-top: 1px solid rgba(70, 91, 73, 0.11);
  background: #f7f5ec;
  color: #8d492f;
  transition: background 0.22s ease, color 0.22s ease;
}

.pricing-page .pricing-card-action:hover {
  background: #a95237;
  color: #fff;
}

.pricing-page .pricing-card-dark {
  background: linear-gradient(145deg, #3b5040 0%, #324536 100%);
  box-shadow: 0 24px 60px rgba(13, 23, 16, 0.22);
}

.pricing-page .pricing-card-dark > header,
.pricing-page .pricing-card-dark:nth-child(even) > header {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
}

.pricing-page .pricing-card-dark > header strong {
  border-color: rgba(230, 160, 132, 0.25);
  background: rgba(230, 160, 132, 0.12);
  color: #efaa8e;
}

.pricing-page .pricing-card-dark .pricing-card-body h4 {
  background: rgba(230, 160, 132, 0.12);
  color: #efaa8e;
}

.pricing-page .pricing-card-dark .pricing-card-body li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
}

.pricing-page .pricing-card-dark .pricing-card-action {
  border-top-color: rgba(255, 255, 255, 0.12);
  background: rgba(15, 26, 18, 0.18);
  color: #efaa8e;
}

.pricing-page .pricing-card-dark .pricing-card-action:hover {
  background: #cd7653;
  color: #243229;
}

.pricing-page .signature-pricing-card {
  border: 0;
  border-radius: 32px;
  box-shadow: 0 34px 90px rgba(44, 60, 49, 0.16);
}

.pricing-page .signature-pricing-card > header {
  min-height: 390px;
  align-items: end;
  padding: clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 88% 22%, rgba(230, 160, 132, 0.2) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 22%, transparent 0 100px, rgba(247, 245, 236, 0.09) 101px 102px, transparent 103px),
    linear-gradient(125deg, #243229 0%, #34493a 65%, #465b49 100%);
}

.pricing-page .signature-pricing-card h3 {
  max-width: 760px;
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.pricing-page .signature-pricing-card > header > strong {
  padding-bottom: 0.2rem;
  color: #efaa8e;
}

.pricing-page .signature-pricing-body {
  padding: clamp(2.5rem, 5vw, 4.5rem);
  background: rgba(255, 255, 255, 0.66);
}

.pricing-page .signature-pricing-body li {
  padding-block: 0.95rem;
  border-bottom-color: rgba(70, 91, 73, 0.14);
  font-size: 0.9rem;
}

.pricing-page .signature-pricing-action {
  max-width: 330px;
  margin-top: 2.5rem;
  padding-inline: 0;
  background: transparent;
}

.pricing-page .signature-pricing-action:hover {
  padding-inline: 1rem;
  border-radius: 10px;
}

.pricing-page .pricing-notes {
  background:
    radial-gradient(circle at 10% 20%, rgba(169, 82, 55, 0.07) 0 4px, transparent 5px),
    linear-gradient(135deg, #e8eee5 0%, #dbe5d8 100%);
}

.pricing-page .pricing-notes-grid {
  align-items: stretch;
}

.pricing-page .pricing-notes ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-page .pricing-notes li {
  min-height: 190px;
  padding: 3.4rem 1.5rem 1.5rem;
  border: 1px solid rgba(70, 91, 73, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 38px rgba(44, 60, 49, 0.055);
  color: #34493a;
  font-size: 0.92rem;
}

.pricing-page .pricing-notes li::before {
  top: 1.55rem;
  left: 1.55rem;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .pricing-page .pricing-card:hover {
    box-shadow:
      0 32px 70px rgba(44, 60, 49, 0.14),
      0 4px 12px rgba(44, 60, 49, 0.05);
    transform: translateY(-7px);
  }

  .pricing-page .pricing-card-dark:hover {
    box-shadow: 0 34px 75px rgba(13, 23, 16, 0.3);
  }
}

@media (max-width: 1050px) {
  .pricing-page .pricing-masthead-grid {
    gap: 4rem;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
  }

  .pricing-page .pricing-notes ul {
    grid-template-columns: 1fr;
  }

  .pricing-page .pricing-notes li {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .pricing-page .pricing-masthead {
    padding-top: 5.5rem;
  }

  .pricing-page .pricing-masthead-grid {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .pricing-page .pricing-masthead-summary {
    max-width: 720px;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(247, 245, 236, 0.16);
    border-left: 0;
  }

  .pricing-page .pricing-section-heading {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .pricing-page .signature-pricing-card > header {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .pricing-page .pricing-masthead {
    padding-top: 4.75rem;
    padding-bottom: 4rem;
  }

  .pricing-page .pricing-masthead .eyebrow {
    margin-bottom: 1.4rem;
  }

  .pricing-page .pricing-masthead h1 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .pricing-page .pricing-section {
    padding-block: 5.5rem;
  }

  .pricing-page .pricing-section-heading {
    gap: 1rem;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .pricing-page .pricing-section-heading > span,
  .pricing-page .pricing-notes-grid > div > span {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .pricing-page .pricing-section-heading h2 {
    font-size: clamp(2.35rem, 10vw, 3.6rem);
  }

  .pricing-page .rate-table-wrap,
  .pricing-page .pricing-card,
  .pricing-page .signature-pricing-card {
    border-radius: 21px;
  }

  .pricing-page .pricing-card > header {
    min-height: 0;
  }

  .pricing-page .signature-pricing-card > header {
    padding: 2rem;
  }

  .pricing-page .signature-pricing-body {
    padding: 2rem;
  }
}

/* Clean comparison-style pricing system */
.pricing-page {
  --pricing-ink: #172019;
  --pricing-green: #34493a;
  --pricing-soft: #e8eadc;
  --pricing-soft-2: #f4f5ef;
  --pricing-white: #fff;
  --pricing-accent: #b65f42;
}

.pricing-page .pricing-masthead {
  overflow: visible;
  padding: clamp(6.5rem, 9vw, 9rem) 0 clamp(5rem, 7vw, 7rem);
  border-bottom: 0;
  background: #f5f6f1;
  color: var(--pricing-ink);
}

.pricing-page .pricing-masthead::before,
.pricing-page .pricing-masthead::after {
  content: none;
}

.pricing-page .pricing-masthead-inner {
  display: flex;
  max-width: 980px;
  align-items: center;
  margin-inline: auto;
  flex-direction: column;
  text-align: center;
}

.pricing-page .pricing-masthead .eyebrow {
  display: block;
  width: auto;
  margin: 0 auto 1.5rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--pricing-green);
  font-size: 0.78rem;
}

.pricing-page .pricing-masthead .eyebrow::before {
  content: none;
}

.pricing-page .pricing-masthead h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--pricing-ink);
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.98;
  text-wrap: balance;
}

html[data-theme="3"] .pricing-page .pricing-tagline {
  margin: 1.7rem 0 1rem;
  color: var(--pricing-accent);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  font-style: normal;
  font-weight: 700;
}

html[data-theme="3"] .pricing-page .pricing-introduction {
  max-width: 820px;
  margin: 0 auto;
  color: #66706a;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.7;
}

.pricing-page .pricing-jump {
  border-block: 1px solid rgba(52, 73, 58, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(23, 32, 25, 0.045);
}

.pricing-page .pricing-jump .shell {
  justify-content: center;
}

.pricing-page .pricing-jump a {
  color: #4b574f;
}

.pricing-page .pricing-jump a::after {
  background: var(--pricing-ink);
}

.pricing-page .pricing-section,
.pricing-page .pricing-section-soft,
.pricing-page #fundraising-packages,
.pricing-page #enterprise,
.pricing-page .pricing-section-deep {
  overflow: visible;
  padding-block: clamp(6.5rem, 9vw, 9rem);
  background: #fff;
}

.pricing-page .pricing-section:nth-of-type(even),
.pricing-page .pricing-section-soft,
.pricing-page #enterprise {
  background: var(--pricing-soft-2);
}

.pricing-page #hourly,
.pricing-page #fundraising-packages,
.pricing-page #enterprise {
  background: #fff;
}

.pricing-page #startup,
.pricing-page #retainers {
  background: var(--pricing-soft-2);
}

.pricing-page .pricing-section-heading {
  display: flex;
  max-width: 850px;
  align-items: center;
  margin: 0 auto clamp(3rem, 5vw, 4.8rem);
  padding: 0;
  border: 0;
  gap: 1.1rem;
  flex-direction: column;
  text-align: center;
}

.pricing-page .pricing-section-heading > span,
.pricing-page .pricing-notes-heading > span {
  display: grid;
  width: 42px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: var(--pricing-soft);
  box-shadow: none;
  color: var(--pricing-green);
  font-size: 0.64rem;
  font-weight: 800;
  place-items: center;
}

.pricing-page .pricing-section-heading h2 {
  max-width: 850px;
  color: var(--pricing-ink);
  font-size: clamp(2.5rem, 4.2vw, 4.6rem);
  line-height: 1;
  text-align: center;
}

html[data-theme="3"] .pricing-page .pricing-section-heading p,
html[data-theme="3"] .pricing-page .pricing-section-deep .pricing-section-heading p {
  max-width: 680px;
  margin: 0.15rem auto 0;
  color: #707871;
  font-size: 0.96rem;
  font-style: normal;
  line-height: 1.6;
  text-align: center;
}

.pricing-page .pricing-section-deep .pricing-section-heading > span {
  background: var(--pricing-soft);
  box-shadow: none;
  color: var(--pricing-green);
}

.pricing-page .rate-table-wrap {
  border: 8px solid var(--pricing-soft);
  border-radius: 25px;
  background: var(--pricing-soft);
  box-shadow: none;
}

.pricing-page .rate-table-wrap::before {
  content: none;
}

.pricing-page .rate-table {
  overflow: hidden;
  border-radius: 17px;
  background: #fff;
}

.pricing-page .rate-table th {
  padding-block: 1.15rem;
  background: var(--pricing-ink);
  color: #fff;
}

.pricing-page .rate-table td {
  padding-block: 1.15rem;
  background: #fff;
}

.pricing-page .rate-table tr:nth-child(even) td {
  background: #f8f9f5;
}

.pricing-page .rate-table tbody tr:hover td {
  background: #f1f3ea;
}

.pricing-page .rate-table td:last-child {
  color: var(--pricing-ink);
  font-weight: 800;
}

.pricing-page .pricing-card-grid {
  gap: 1.25rem;
}

.pricing-page .pricing-card {
  padding: 8px;
  border: 1px solid rgba(52, 73, 58, 0.1);
  border-radius: 24px;
  background: var(--pricing-soft);
  box-shadow: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.pricing-page .pricing-card::after {
  content: none;
}

.pricing-page .pricing-card > header,
.pricing-page .pricing-card:nth-child(even) > header,
.pricing-page .pricing-card-dark > header,
.pricing-page .pricing-card-dark:nth-child(even) > header {
  min-height: 180px;
  align-content: space-between;
  padding: 1.55rem 1.45rem;
  border: 0;
  border-radius: 17px 17px 12px 12px;
  background: transparent;
  gap: 1.4rem;
}

.pricing-page .pricing-card h3,
.pricing-page .pricing-card-dark h3 {
  color: var(--pricing-ink);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.pricing-page .pricing-card > header strong,
.pricing-page .pricing-card-dark > header strong {
  display: flex;
  width: fit-content;
  align-items: baseline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
  font-weight: 750;
  letter-spacing: -0.06em;
}

.pricing-page .pricing-card > header strong small {
  margin-left: 0.25rem;
  color: #69716c;
  font-family: var(--font-body);
  font-size: 0.32em;
  font-weight: 600;
  letter-spacing: 0;
}

html[data-theme="3"] .pricing-page .pricing-card-note {
  margin: 0 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
  color: #66706a;
  font-size: 0.82rem;
}

.pricing-page .pricing-card-body,
.pricing-page .pricing-card-dark .pricing-card-body {
  margin: 0 0 8px;
  padding: 1.45rem;
  border-radius: 17px;
  background: #fff;
}

.pricing-page .pricing-card-body h4,
.pricing-page .pricing-card-dark .pricing-card-body h4,
.pricing-page .signature-pricing-body h4 {
  margin: 0 0 0.9rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #59635c;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.pricing-page .pricing-card-body ul {
  gap: 0.7rem;
}

.pricing-page .pricing-card-body li,
.pricing-page .pricing-card-dark .pricing-card-body li {
  min-height: 22px;
  padding: 0 0 0 1.65rem;
  border: 0;
  color: #4d5750;
  font-size: 0.82rem;
  line-height: 1.45;
}

.pricing-page .pricing-card-body li::before,
.pricing-page .pricing-card-dark .pricing-card-body li::before {
  top: 0.08rem;
  display: grid;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--pricing-green);
  color: #fff;
  content: "✓";
  font-size: 0.62rem;
  font-weight: 800;
  place-items: center;
  transform: none;
}

.pricing-page .pricing-card-action,
.pricing-page .pricing-card-dark .pricing-card-action {
  min-height: 46px;
  justify-content: center;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 10px;
  background: var(--pricing-ink);
  color: #fff;
  font-size: 0.65rem;
  text-align: center;
}

.pricing-page .pricing-card-action span {
  margin-left: 0.65rem;
}

.pricing-page .pricing-card-action:hover,
.pricing-page .pricing-card-dark .pricing-card-action:hover {
  background: var(--pricing-accent);
  color: #fff;
}

.pricing-page .pricing-card-dark {
  border-color: rgba(52, 73, 58, 0.1);
  background: var(--pricing-soft);
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .pricing-page .pricing-card:hover,
  .pricing-page .pricing-card-dark:hover {
    border-color: rgba(23, 32, 25, 0.5);
    box-shadow: 0 18px 40px rgba(23, 32, 25, 0.08);
    transform: translateY(-3px);
  }
}

.pricing-page .signature-pricing-card {
  padding: 8px;
  border: 2px solid var(--pricing-ink);
  border-radius: 26px;
  background: var(--pricing-soft);
  box-shadow: none;
}

.pricing-page .signature-pricing-card > header {
  min-height: 0;
  align-items: start;
  padding: clamp(2rem, 4vw, 3.2rem);
  border-radius: 17px 17px 12px 12px;
  background: transparent;
  color: var(--pricing-ink);
}

.pricing-page .signature-pricing-card h3 {
  max-width: 680px;
  color: var(--pricing-ink);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1;
}

html[data-theme="3"] .pricing-page .signature-pricing-card > header p {
  color: #69716c;
  font-style: normal;
}

.pricing-page .signature-pricing-card > header > strong {
  color: #111;
  font-size: clamp(3rem, 5vw, 5rem);
}

.pricing-page .signature-pricing-body {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 17px;
  background: #fff;
}

.pricing-page .signature-pricing-body ul {
  gap: 0.7rem 1.5rem;
}

.pricing-page .signature-pricing-body li {
  padding: 0 0 0 1.65rem;
  border: 0;
  color: #4d5750;
  font-size: 0.84rem;
}

.pricing-page .signature-pricing-body li::before {
  top: 0.08rem;
  display: grid;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--pricing-green);
  color: #fff;
  content: "✓";
  font-size: 0.62rem;
  font-weight: 800;
  place-items: center;
  transform: none;
}

.pricing-page .signature-pricing-action {
  width: 100%;
  max-width: none;
  margin: 2rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: var(--pricing-ink);
  color: #fff;
}

.pricing-page .signature-pricing-action:hover {
  padding-inline: 1rem;
  background: var(--pricing-accent);
}

.pricing-page .pricing-notes {
  padding-block: clamp(6.5rem, 9vw, 9rem);
  background: #f5f6f1;
}

.pricing-page .pricing-notes-heading {
  display: flex;
  max-width: 780px;
  align-items: center;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  gap: 1rem;
  flex-direction: column;
  text-align: center;
}

.pricing-page .pricing-notes-heading h2 {
  color: var(--pricing-ink);
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
  letter-spacing: -0.065em;
}

.pricing-notes-accordion {
  display: grid;
  max-width: 980px;
  margin-inline: auto;
  gap: 0.85rem;
}

.pricing-notes-accordion details {
  overflow: hidden;
  border: 1px solid rgba(52, 73, 58, 0.1);
  border-radius: 17px;
  background: var(--pricing-soft);
}

.pricing-notes-accordion summary {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 1.2rem 4.8rem 1.2rem 1.45rem;
  color: var(--pricing-ink);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  list-style: none;
}

.pricing-notes-accordion summary::-webkit-details-marker {
  display: none;
}

.pricing-notes-accordion summary::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--pricing-ink);
  color: #fff;
  content: "+";
  font-size: 1rem;
  place-items: center;
  transform: translateY(-50%);
}

.pricing-notes-accordion details[open] summary::after {
  content: "−";
}

html[data-theme="3"] .pricing-notes-accordion p {
  margin: 0 8px 8px;
  padding: 1.2rem 1.35rem;
  border-radius: 13px;
  background: #fff;
  color: #66706a;
  font-size: 0.88rem;
  line-height: 1.65;
}

.pricing-page .pricing-cta {
  background: var(--pricing-ink);
}

@media (max-width: 900px) {
  .pricing-page .pricing-jump .shell {
    justify-content: flex-start;
  }

  .pricing-page .signature-pricing-card > header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .pricing-page .pricing-masthead {
    padding-block: 5rem;
  }

  .pricing-page .pricing-masthead h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .pricing-page .pricing-section,
  .pricing-page .pricing-section-soft,
  .pricing-page #fundraising-packages,
  .pricing-page #enterprise,
  .pricing-page .pricing-section-deep,
  .pricing-page .pricing-notes {
    padding-block: 5.5rem;
  }

  .pricing-page .pricing-card > header,
  .pricing-page .pricing-card-dark > header {
    min-height: 0;
  }

  .pricing-page .pricing-card > header strong,
  .pricing-page .pricing-card-dark > header strong {
    font-size: clamp(2.4rem, 11vw, 3.3rem);
  }

  .pricing-notes-accordion summary {
    padding-left: 1.15rem;
  }
}

/* Services trust section — explicit high-contrast type on the dark panel. */
html[data-theme="3"] .why-pi .eyebrow,
html[data-theme="3"] .why-pi .why-heading-title {
  color: var(--brand-ivory);
}

html[data-theme="3"] .why-pi .why-heading-copy {
  color: rgba(247, 245, 236, 0.9);
  font-size: 1.05rem;
  line-height: 1.6;
}

html[data-theme="3"] .why-pi .why-grid {
  background: rgba(247, 245, 236, 0.28);
}

html[data-theme="3"] .why-pi .why-grid article {
  background: var(--brand-green);
}

html[data-theme="3"] .why-pi .why-grid strong {
  color: #e08a68;
  font-size: clamp(1.3rem, 1.8vw, 1.55rem);
  line-height: 1.25;
}

html[data-theme="3"] .why-pi .why-grid p {
  color: var(--brand-ivory);
  font-size: 1rem;
  line-height: 1.65;
}

/* Image-led service accordion */
.service-cards:has(.service-accordion) {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

.service-card.service-accordion {
  display: block;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 24px;
  background: #fff;
}

.service-card.service-accordion:hover {
  background: #fff;
  transform: none;
}

.service-accordion > summary {
  position: relative;
  display: grid;
  min-height: 270px;
  align-items: stretch;
  padding: 0;
  cursor: pointer;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr) 72px;
  list-style: none;
}

.service-accordion > summary::-webkit-details-marker { display: none; }

.service-accordion > summary::before {
  position: relative;
  z-index: 1;
  display: block;
  background:
    linear-gradient(180deg, rgba(70, 91, 73, 0.04) 20%, rgba(70, 91, 73, 0.72) 100%),
    linear-gradient(120deg, rgba(205, 118, 83, 0.1), transparent 58%);
  content: "";
  grid-column: 1;
  grid-row: 1;
  pointer-events: none;
}

.service-accordion > summary > img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  filter: saturate(0.62) contrast(0.96) sepia(0.08);
  grid-column: 1;
  grid-row: 1;
  transition: filter 0.35s ease, transform 0.5s ease;
}

.service-accordion:hover > summary > img,
.service-accordion[open] > summary > img {
  filter: saturate(0.82) contrast(0.98) sepia(0.03);
  transform: scale(1.018);
}

.service-accordion > summary > .service-summary-copy {
  display: flex;
  padding: clamp(2rem, 4vw, 3.5rem);
  flex-direction: column;
  justify-content: center;
  grid-column: 2;
  grid-row: 1;
}

.service-accordion > summary .service-kicker {
  color: #cd7653;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-accordion > summary .service-title {
  display: block;
  max-width: 720px;
  margin: 1.25rem 0 0.8rem;
  color: var(--primary);
  font-size: clamp(1.9rem, 3.4vw, 3.5rem);
  letter-spacing: -0.055em;
  font-family: var(--font-heading);
  font-weight: 650;
  line-height: 1.06;
}

.service-accordion > summary .service-summary {
  display: block;
  max-width: 660px;
  margin: 0;
  color: #66706a;
}

.service-accordion > summary > i {
  position: relative;
  display: grid;
  align-self: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(70, 91, 73, 0.2);
  border-radius: 50%;
  place-items: center;
  grid-column: 3;
  grid-row: 1;
}

.service-accordion > summary > i::before,
.service-accordion > summary > i::after {
  position: absolute;
  width: 14px;
  height: 1px;
  background: var(--primary);
  content: "";
  transition: transform 0.25s ease;
}

.service-accordion > summary > i::after { transform: rotate(90deg); }
.service-accordion[open] > summary > i::after { transform: rotate(0); }

.service-detail-panel {
  display: grid;
  align-items: start;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(70, 91, 73, 0.14);
  background: #f0f5ea;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr) auto;
}

.service-detail-panel h3 {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  letter-spacing: -0.04em;
}

.service-detail-panel p { color: #5d6862; }
.service-detail-panel ul { display: grid; margin: 0; padding: 0; list-style: none; gap: 0.8rem; }
.service-detail-panel li { display: flex; gap: 0.65rem; color: var(--primary); font-size: 0.8rem; }
.service-detail-panel li::before { color: #cd7653; content: "✓"; font-weight: 800; }
.service-detail-panel .button { align-self: end; white-space: nowrap; }

@media (max-width: 900px) {
  .service-accordion > summary { grid-template-columns: minmax(210px, 0.65fr) minmax(0, 1.35fr) 62px; }
  .service-detail-panel { grid-template-columns: 1fr 1fr; }
  .service-detail-panel .button { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 620px) {
  .service-accordion > summary { grid-template-columns: 1fr 58px; }
  .service-accordion > summary::before,
  .service-accordion > summary > img { height: 230px; min-height: 0; grid-column: 1 / -1; grid-row: 1; }
  .service-accordion > summary > .service-summary-copy { padding: 1.7rem 1.4rem 2rem; grid-column: 1; grid-row: 2; }
  .service-accordion > summary > i { margin-right: 0.8rem; grid-column: 2; grid-row: 2; }
  .service-detail-panel { grid-template-columns: 1fr; }
  .service-detail-panel .button { grid-column: 1; }
}

/* Contact page */
.contact-main {
  position: relative;
  min-height: 72vh;
  padding: clamp(11rem, 14vw, 13rem) 0 clamp(5.5rem, 9vw, 9rem);
  background: #edf3f4;
}

.contact-main::before {
  position: absolute;
  top: 0;
  right: 7vw;
  width: 1px;
  height: 82px;
  background: rgba(70, 91, 73, 0.22);
  content: "";
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: clamp(4rem, 9vw, 10rem);
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
}

.contact-copy h1 {
  max-width: 580px;
  margin-bottom: 2rem;
  color: var(--primary);
  font-size: clamp(3.2rem, 5.2vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.92;
  white-space: nowrap;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: #5f6964;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.contact-details {
  display: grid;
  margin-top: 3rem;
  gap: 1.2rem;
}

.contact-details a,
.contact-details address {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  color: var(--primary);
  font-style: normal;
  font-size: 1rem;
}

.contact-details i {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(70, 91, 73, 0.22);
  border-radius: 50%;
  color: #cd7653;
  font-style: normal;
  place-items: center;
}

.contact-details .linkedin-icon {
  color: #cd7653;
}

.contact-form {
  display: grid;
  padding-top: 2rem;
  gap: 2rem 2.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  position: relative;
  display: grid;
  gap: 0.65rem;
}

.form-field-wide { grid-column: 1 / -1; }

.form-field label {
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(70, 91, 73, 0.24);
  border-radius: 0;
  outline: 0;
  padding: 0.6rem 0 0.95rem;
  background: transparent;
  color: var(--primary);
  font: 500 1rem var(--font-body);
  transition: border-color 0.2s ease;
}

.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #8b9490; opacity: 1; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-bottom-color: #cd7653; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #5f6964;
  font-size: 0.78rem;
  grid-column: 1 / -1;
}

.form-consent input { width: 18px; height: 18px; margin: 0.1rem 0 0; accent-color: var(--primary); }
.contact-form-actions { display: flex; align-items: center; gap: 1.5rem; grid-column: 1 / -1; }
.contact-form .button { border: 0; border-radius: 3px; cursor: pointer; }
.contact-form .button:disabled { cursor: default; opacity: 0.75; transform: none; }
.form-status { max-width: 420px; margin: 0; color: var(--primary); font-size: 0.8rem; }

.contact-note {
  padding-block: 2rem;
  background: var(--accent);
  color: var(--primary);
}

.contact-note .shell { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.contact-note strong { font-family: var(--font-heading); font-size: clamp(1.2rem, 2vw, 1.7rem); }

html[data-theme="3"] .site-nav .nav-payment {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  white-space: nowrap;
}

html[data-theme="3"] .site-nav .nav-payment span {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

html[data-theme="3"] .site-nav .nav-payment:hover { opacity: 1; }
html[data-theme="3"] .site-nav .nav-payment:hover span { transform: translateX(3px); }

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

.site-nav a[aria-current="page"]::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 0.35rem;
  background: currentColor;
  content: "";
}

.why-heading-title { color: #fff; }
.why-heading-copy { color: rgba(255, 255, 255, 0.7); }

:where(a, button, summary, input, select, textarea):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy > p:not(.eyebrow) { max-width: 650px; }
}

@media (max-width: 620px) {
  .contact-main { padding-top: 9.5rem; }
  .contact-copy h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .contact-form { grid-template-columns: 1fr; }
  .form-field-wide, .form-consent, .contact-form-actions { grid-column: 1; }
  .contact-form-actions, .contact-note .shell { align-items: stretch; flex-direction: column; }
}

/* Internal pages */
.inner-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(5rem, 8vw, 7rem);
  background: linear-gradient(135deg, #465b49 0%, #0b5549 72%, #164f43 100%);
  color: #fff;
}

.inner-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -28%;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(205, 118, 83, 0.34);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 58px rgba(205, 118, 83, 0.04), 0 0 0 116px rgba(205, 118, 83, 0.025);
}

.inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
}

.inner-hero h1 {
  max-width: 880px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.inner-hero h1 em { color: var(--accent); font-style: normal; }
.inner-hero-copy { max-width: 450px; color: rgba(255,255,255,.76); font-size: clamp(1rem, 1.35vw, 1.18rem); }
.inner-hero .eyebrow { color: var(--accent); }
.inner-hero .eyebrow::before { background: #fff; }

.inner-hero-side {
  display: grid;
  gap: 1.5rem;
}

.inner-hero-side figure {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 180px 180px 20px 20px;
  background: rgba(255, 255, 255, 0.08);
}

.inner-hero-side figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(70, 91, 73, 0.42));
  content: "";
}

.inner-hero-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96);
}

.page-intro { background: #fff; }
.page-intro-grid { display: grid; gap: clamp(3rem, 7vw, 8rem); grid-template-columns: .8fr 1.2fr; }
.page-intro h2, .internal-heading h2 { color: var(--primary); font-size: clamp(2.7rem, 5vw, 5rem); font-weight: 650; letter-spacing: -.065em; }
.page-intro-copy { display: grid; gap: 1.25rem; color: #59645e; }
.page-intro-copy .lead { color: var(--primary); font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.35; }

.belief-grid { display: grid; gap: 1px; border: 1px solid rgba(70, 91, 73,.16); background: rgba(70, 91, 73,.16); grid-template-columns: repeat(3,1fr); }
.belief-grid article { min-height: 300px; overflow: hidden; padding: 0; background: #f7f2e8; }
.belief-grid article span, .service-card > span { color: #cd7653; font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.belief-image { position: relative; height: 230px; overflow: hidden; margin: 0; }
.belief-image::after { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(70, 91, 73,.06) 18%,rgba(70, 91, 73,.68) 100%); content: ""; pointer-events: none; }
.belief-grid article:nth-child(2) .belief-image::after { background: linear-gradient(135deg,rgba(205, 118, 83,.12),rgba(70, 91, 73,.66)); }
.belief-grid article:nth-child(3) .belief-image::after { background: linear-gradient(180deg,rgba(205, 118, 83,.08),rgba(70, 91, 73,.72)); }
.belief-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.58) contrast(.98) sepia(.06); transition: filter .35s ease, transform .45s ease; }
.belief-grid article:hover .belief-image img { transform: scale(1.025); }
.belief-grid article:hover .belief-image img { filter: saturate(.78) contrast(1) sepia(.02); }
.belief-content { padding: clamp(2rem, 3vw, 3rem); }
.belief-grid h3 { margin: 2.5rem 0 1rem; color: var(--primary); font-size: 1.7rem; }

.internal-founder { background: #f7f2e8; }
.internal-founder-grid { display: grid; align-items: center; gap: clamp(3rem, 8vw, 8rem); grid-template-columns: minmax(320px,.85fr) 1.15fr; }
.internal-founder figure { min-height: 620px; overflow: hidden; margin: 0; border-radius: 220px 220px 24px 24px; }
.internal-founder figure img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: center 18%; }
.internal-founder-copy h2 { margin-bottom: 1.5rem; color: var(--primary); font-size: clamp(2.8rem, 5vw, 5rem); letter-spacing: -.065em; }
.internal-founder-copy .lead { color: var(--primary); font-size: 1.35rem; }

.service-index { background: #f7f2e8; }
.internal-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3.5rem; }
.internal-heading > p { max-width: 430px; color: #69716c; }
.service-cards { display: grid; gap: 1.25rem; grid-template-columns: repeat(2,1fr); }
.service-card { display: grid; min-height: 330px; padding: clamp(2rem,4vw,3.25rem); border: 1px solid rgba(70, 91, 73,.16); border-radius: 22px; background: #fff; transition: transform .25s ease, background .25s ease; }
.service-card:hover { background: #eff6e7; transform: translateY(-5px); }
.service-card h2 { max-width: 500px; margin: 2.5rem 0 1rem; color: var(--primary); font-size: clamp(1.8rem,3vw,2.65rem); letter-spacing: -.05em; }
.service-card p { max-width: 540px; color: #66706a; }
.service-card .text-link { align-self: end; margin-top: 2rem; color: var(--primary); }

.why-pi { background: var(--primary); color: #fff; }
.why-grid { display: grid; gap: 1px; margin-top: 3rem; background: rgba(255,255,255,.18); grid-template-columns: repeat(3,1fr); }
.why-grid article { padding: 2.5rem; background: var(--primary); }
.why-grid strong { display: block; margin-bottom: .9rem; color: var(--accent); font-size: 1.3rem; }

.service-detail-hero .inner-hero-grid { align-items: center; }
.service-detail-hero .service-number { display: grid; width: 130px; height: 130px; border: 1px solid rgba(205, 118, 83,.65); border-radius: 50%; place-items: center; color: var(--accent); font: 700 1.2rem var(--font-ui); }
.detail-layout { display: grid; align-items: start; gap: clamp(3rem,8vw,9rem); grid-template-columns: minmax(0,1.2fr) minmax(280px,.55fr); }
.detail-copy h2 { margin-bottom: 1.5rem; color: var(--primary); font-size: clamp(2.6rem,4.5vw,4.7rem); letter-spacing: -.065em; }
.detail-copy > p { color: #606963; font-size: 1.08rem; }
.detail-aside { position: sticky; top: 120px; padding: 2.25rem; border-radius: 20px; background: #eef4e7; }
.detail-aside h3 { margin-bottom: 1.4rem; color: var(--primary); font-size: 1.35rem; }
.detail-aside ul { display: grid; margin: 0; padding: 0; list-style: none; gap: 1rem; }
.detail-aside li { display: flex; gap: .8rem; color: #4e5d55; }
.detail-aside li::before { color: #cd7653; content: "✓"; font-weight: 800; }
.included { background: #f7f2e8; }
.included-grid { display: grid; gap: 1rem; margin-top: 3rem; grid-template-columns: repeat(2,1fr); }
.included-grid article { padding: 2.25rem; border: 1px solid rgba(70, 91, 73,.15); border-radius: 18px; background: #fff; }
.included-grid span { color: #cd7653; font-size: .7rem; font-weight: 800; letter-spacing: .13em; }
.included-grid h3 { margin: 1.1rem 0 .7rem; color: var(--primary); font-size: 1.35rem; }

@media (max-width: 900px) {
  .inner-hero-grid, .page-intro-grid, .internal-founder-grid, .detail-layout { grid-template-columns: 1fr; }
  .inner-hero h1 { max-width: 720px; }
  .inner-hero-copy { max-width: 620px; }
  .inner-hero-side { grid-template-columns: minmax(220px, 340px) 1fr; align-items: end; }
  .belief-grid, .why-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
}

@media (max-width: 620px) {
  .inner-hero { padding-block: 4.5rem; }
  .inner-hero h1 { font-size: clamp(3rem,15vw,4.4rem); }
  .inner-hero-side { grid-template-columns: 1fr; }
  .inner-hero-side figure { width: 100%; max-height: 470px; }
  .internal-heading { display: block; }
  .internal-heading > p { margin-top: 1.5rem; }
  .included-grid { grid-template-columns: 1fr; }
  .internal-founder figure, .internal-founder figure img { min-height: 500px; }
}

/* =========================================================
   CONCEPT 02 — Finovate reference fidelity pass
   ========================================================= */
html[data-theme="2"] {
  --shell: min(1260px, calc(100vw - 72px));
  --section-space: clamp(6rem, 8vw, 8rem);
}

html[data-theme="2"] body {
  padding: 0;
  background: #fff;
}

html[data-theme="2"] .site-frame {
  border-radius: 46px;
  background: #fff;
}

html[data-theme="2"] h1,
html[data-theme="2"] h2 {
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}

html[data-theme="2"] h3,
html[data-theme="2"] .service summary h3 {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
}

html[data-theme="2"] .site-header {
  top: 0;
}

html[data-theme="2"] .header-inner {
  width: min(1240px, calc(100% - 72px));
  min-height: 88px;
  gap: 2rem;
}

html[data-theme="2"] .brand {
  width: 150px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

html[data-theme="2"] .brand img {
  filter: brightness(0) invert(1) drop-shadow(0 1px 10px rgba(0, 0, 0, 0.2));
}

html[data-theme="2"] .site-nav {
  gap: clamp(1.25rem, 2.2vw, 2.2rem);
}

html[data-theme="2"] .site-nav a {
  color: white;
  font-family: "Urbanist", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

html[data-theme="2"] .header-cta {
  min-height: 48px;
  padding: 0.65rem 0.75rem 0.65rem 1.25rem;
  background: var(--terracotta);
  color: var(--ink);
}

html[data-theme="2"] .header-cta i {
  background: var(--cream);
  color: var(--ink);
}

html[data-theme="2"] .hero {
  min-height: 680px;
  padding: 8px;
}

html[data-theme="2"] .hero-shell {
  min-height: 664px;
  border-radius: 38px;
}

html[data-theme="2"] .hero-media::after {
  background: linear-gradient(90deg, rgba(25, 28, 25, 0.72) 0%, rgba(25, 28, 25, 0.25) 52%, rgba(25, 28, 25, 0.08) 100%);
}

html[data-theme="2"] .hero-photo-main img {
  object-position: center;
  transform: scale(1.025);
}

html[data-theme="2"] .hero-copy {
  max-width: 760px;
  padding: 0 0 8.5rem 4rem;
}

html[data-theme="2"] .hero .eyebrow,
html[data-theme="2"] .hero-intro,
html[data-theme="2"] .hero .button-secondary,
html[data-theme="2"] .hero-stamp {
  display: none;
}

html[data-theme="2"] .hero h1 {
  max-width: 650px;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Work Sans", sans-serif;
  font-size: clamp(2.75rem, 3.4vw, 3.05rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
}

html[data-theme="2"] .hero h1 span {
  display: block;
}

html[data-theme="2"] .hero h1 span:first-child {
  position: relative;
  width: max-content;
  max-width: 100%;
}

html[data-theme="2"] .hero h1 span:first-child::after {
  position: absolute;
  top: 50%;
  left: calc(100% + 1rem);
  width: 100px;
  height: 1px;
  background: var(--terracotta);
  content: "";
}

html[data-theme="2"] .hero h1 span:last-child {
  color: rgba(255, 255, 255, 0.92);
}

html[data-theme="2"] .hero .button-primary {
  min-height: 47px;
  padding-left: 1.25rem;
  background: var(--terracotta);
}

html[data-theme="2"] .hero .button-primary i {
  background: var(--cream);
  color: var(--ink);
}

html[data-theme="2"] .hero-rail {
  right: 3.4rem;
  bottom: 1.45rem;
  left: 3.4rem;
  gap: 0.9rem;
}

html[data-theme="2"] .hero-rail span {
  min-height: 56px;
  padding: 1rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(251, 248, 242, 0.78);
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

html[data-theme="2"] .impact {
  padding: 3.4rem 0 0;
  background: #fff;
}

html[data-theme="2"] .impact-grid {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 0;
}

html[data-theme="2"] .impact article,
html[data-theme="2"] .impact article:nth-child(2),
html[data-theme="2"] .impact article:nth-child(3) {
  min-height: 104px;
  justify-content: center;
  padding: 1.4rem 1.8rem;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

html[data-theme="2"] .impact article:last-child {
  border-right: 0;
}

html[data-theme="2"] .impact strong {
  margin-bottom: 0.35rem;
  font-family: "Urbanist", sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
}

html[data-theme="2"] .about {
  padding: 5.8rem 0 7.5rem;
  background: #fff;
}

html[data-theme="2"] .about-shell {
  grid-template-columns: 1fr 1.05fr 1fr;
  grid-template-areas:
    "heading intro visual"
    "principles principles principles";
  gap: 1.1rem;
}

html[data-theme="2"] .about .section-heading,
html[data-theme="2"] .about-intro,
html[data-theme="2"] .about-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 26px;
}

html[data-theme="2"] .about .section-heading {
  padding: 2rem;
  background: #f3f2ef;
}

html[data-theme="2"] .about .section-heading::before {
  position: absolute;
  z-index: 3;
  top: 1.4rem;
  right: 1.4rem;
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  content: "↗";
  font-size: 1rem;
  place-items: center;
}

html[data-theme="2"] .about .section-heading::after {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  left: 1.4rem;
  height: 55%;
  border-radius: 20px;
  background: url("assets/article-strategy.jpeg") center / cover no-repeat;
  content: "";
}

html[data-theme="2"] .about .section-heading .eyebrow,
html[data-theme="2"] .purpose .eyebrow,
html[data-theme="2"] .services .eyebrow {
  display: inline-flex;
  width: auto;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.52rem;
  letter-spacing: 0.05em;
}

html[data-theme="2"] .about .section-heading .eyebrow::before,
html[data-theme="2"] .purpose .eyebrow::before,
html[data-theme="2"] .services .eyebrow::before {
  display: none;
}

html[data-theme="2"] .about .section-heading h2 {
  position: relative;
  z-index: 2;
  max-width: 300px;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.15;
}

html[data-theme="2"] .about-intro {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  max-width: none;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(205, 118, 83, 0.08) 0%, rgba(205, 118, 83, 0.96) 62%),
    url("assets/article-leadership.jpeg") center top / cover no-repeat;
  color: var(--ink);
}

html[data-theme="2"] .about-intro::before {
  position: absolute;
  top: -10%;
  right: -16%;
  width: 75%;
  height: 62%;
  border-radius: 46% 54% 36% 64%;
  background: var(--sand-soft);
  content: "";
  opacity: 0.88;
  transform: rotate(22deg);
}

html[data-theme="2"] .about-intro > * {
  position: relative;
  z-index: 2;
}

html[data-theme="2"] .about-intro .lead {
  margin-bottom: 1rem;
  font-family: "Work Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25;
}

html[data-theme="2"] .about-intro > p:not(.lead) {
  margin-bottom: 0.65rem;
  color: rgba(27, 27, 27, 0.76);
  font-size: 0.71rem;
  line-height: 1.5;
}

html[data-theme="2"] .about-intro .text-link {
  align-self: flex-start;
  margin-top: 0.4rem;
}

html[data-theme="2"] .about-visual {
  min-height: 500px;
  padding: 2rem;
  background: #f3f2ef;
}

html[data-theme="2"] .about-visual img {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  left: 1.4rem;
  width: calc(100% - 2.8rem);
  height: 57%;
  border-radius: 20px;
  object-position: center 26%;
}

html[data-theme="2"] .about-visual > p {
  top: 2rem;
  right: 4.5rem;
  bottom: auto;
  left: 2rem;
  padding: 0;
  background: transparent;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 500;
  line-height: 1.2;
  backdrop-filter: none;
}

html[data-theme="2"] .about-principles {
  padding: 0;
  background: transparent;
  gap: 1.1rem;
}

html[data-theme="2"] .about-principles article,
html[data-theme="2"] .about-principles article:nth-child(2) {
  min-height: 150px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f7f6f3;
  color: var(--ink);
}

html[data-theme="2"] .about-principles article:nth-child(2) {
  background: #e8dfcf;
}

html[data-theme="2"] .purpose,
html[data-theme="2"] .services {
  margin: 0 8px;
  border-radius: 38px;
  background: #f4f3f1;
}

html[data-theme="2"] .purpose .section-heading {
  max-width: 820px;
  margin: 0 auto 4rem;
  text-align: center;
}

html[data-theme="2"] .purpose .section-heading h2,
html[data-theme="2"] .services-heading h2 {
  max-width: 820px;
  color: var(--olive-deep);
  font-size: clamp(2.65rem, 4.2vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

html[data-theme="2"] .purpose-cards article {
  min-height: 330px;
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: 26px;
  background: white;
}

html[data-theme="2"] .purpose-cards article:nth-child(2) {
  background: #dfe6db;
}

html[data-theme="2"] .values {
  background: var(--olive-deep);
}

html[data-theme="2"] .founder {
  background: white;
}

html[data-theme="2"] .founder-shell {
  border: 1px solid rgba(27, 27, 27, 0.07);
  background: #f4f3f1;
}

html[data-theme="2"] .services-heading,
html[data-theme="2"] .services-heading .section-heading {
  align-items: center;
}

html[data-theme="2"] .service-list {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

html[data-theme="2"] .service,
html[data-theme="2"] .service:nth-child(2),
html[data-theme="2"] .service:nth-child(4),
html[data-theme="2"] .service:nth-child(7) {
  min-height: 350px;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(27, 27, 27, 0.06);
  border-radius: 24px;
  background: white;
  color: var(--ink);
}

html[data-theme="2"] .service::before {
  display: block;
  height: 155px;
  border-radius: 18px;
  background: url("assets/article-strategy.jpeg") center / cover no-repeat;
  content: "";
}

html[data-theme="2"] .service:nth-child(3n + 2)::before {
  background-image: url("assets/article-leadership.jpeg");
}

html[data-theme="2"] .service:nth-child(3n)::before {
  background-image: url("assets/article-shifts.jpg");
}

html[data-theme="2"] .service summary,
html[data-theme="2"] .service[open] summary {
  height: auto;
  min-height: 105px;
  margin-top: 1rem;
  align-content: start;
  grid-template-columns: 1fr 34px;
  grid-template-rows: auto auto;
  gap: 0.65rem;
}

html[data-theme="2"] .service summary h3 {
  align-self: start;
  margin-top: 0.65rem;
  font-size: 1rem;
  line-height: 1.2;
  grid-column: 1 / -1;
  grid-row: 2;
}

html[data-theme="2"] .service summary i {
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--terracotta);
}

html[data-theme="2"] .service > p,
html[data-theme="2"] .service:nth-child(4) > p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

html[data-theme="2"] .approach-shell {
  border-radius: 38px;
}

html[data-theme="2"] .stories,
html[data-theme="2"] .final-cta {
  margin-right: 8px;
  margin-left: 8px;
  border-radius: 38px;
}

@media (max-width: 1080px) {
  html[data-theme="2"] {
    --shell: calc(100vw - 52px);
  }

  html[data-theme="2"] .header-inner {
    width: calc(100% - 52px);
  }

  html[data-theme="2"] .about-shell {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
      "heading intro visual"
      "principles principles principles";
  }

  html[data-theme="2"] .about .section-heading,
  html[data-theme="2"] .about-intro,
  html[data-theme="2"] .about-visual {
    min-height: 440px;
  }

  html[data-theme="2"] .about-intro > p:not(.lead) {
    display: none;
  }

  html[data-theme="2"] .about-visual img {
    height: 55%;
  }

  html[data-theme="2"] .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  html[data-theme="2"] {
    --shell: calc(100vw - 40px);
    --section-space: 5.5rem;
  }

  html[data-theme="2"] body {
    padding: 0;
  }

  html[data-theme="2"] .site-frame {
    border-radius: 36px;
  }

  html[data-theme="2"] .site-header {
    top: 0;
  }

  html[data-theme="2"] .header-inner {
    width: calc(100% - 34px);
    min-height: 66px;
    gap: 1rem;
  }

  html[data-theme="2"] .brand {
    z-index: auto;
    width: 108px;
  }

  html[data-theme="2"] .menu-toggle {
    display: none;
  }

  html[data-theme="2"] .site-nav {
    position: static;
    inset: auto;
    display: flex;
    visibility: visible;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 0.7rem;
    padding: 0;
    border-top: 0;
    background: transparent;
    color: white;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  html[data-theme="2"] .site-nav a {
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0;
  }

  html[data-theme="2"] .header-cta {
    display: inline-flex;
    width: auto;
    min-height: 38px;
    padding: 0.45rem 0.45rem 0.45rem 0.8rem;
    font-size: 0.5rem;
  }

  html[data-theme="2"] .header-cta span {
    display: inline;
  }

  html[data-theme="2"] .header-cta i {
    width: 24px;
    height: 24px;
  }

  html[data-theme="2"] .hero {
    min-height: 490px;
    padding: 6px;
  }

  html[data-theme="2"] .hero-shell {
    min-height: 478px;
    border-radius: 26px;
  }

  html[data-theme="2"] .hero-copy {
    max-width: 520px;
    padding: 0 0 10rem 2.25rem;
  }

  html[data-theme="2"] .hero h1 {
    max-width: 480px;
    margin-bottom: 1.1rem;
    font-size: 2.25rem;
  }

  html[data-theme="2"] .hero h1 span:first-child::after {
    width: 70px;
  }

  html[data-theme="2"] .hero-photo-main img {
    object-position: 58% center;
  }

  html[data-theme="2"] .hero .button-primary {
    min-height: 38px;
    padding: 0.45rem 0.45rem 0.45rem 0.85rem;
    font-size: 0.53rem;
  }

  html[data-theme="2"] .hero .button-primary i {
    width: 24px;
    height: 24px;
  }

  html[data-theme="2"] .hero-rail {
    right: 2rem;
    bottom: 1.05rem;
    left: 2rem;
    gap: 0.6rem;
  }

  html[data-theme="2"] .hero-rail span {
    min-height: 38px;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    font-size: 0.45rem;
  }

  html[data-theme="2"] .impact {
    padding-top: 1.25rem;
  }

  html[data-theme="2"] .impact-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  html[data-theme="2"] .impact article,
  html[data-theme="2"] .impact article:nth-child(2),
  html[data-theme="2"] .impact article:nth-child(3) {
    min-height: 64px;
    padding: 0.65rem 0.75rem;
  }

  html[data-theme="2"] .impact strong {
    font-size: 1rem;
  }

  html[data-theme="2"] .impact span {
    font-size: 0.45rem;
  }

  html[data-theme="2"] .about {
    padding: 2.75rem 0 4.5rem;
  }

  html[data-theme="2"] .about .section-heading,
  html[data-theme="2"] .about-intro,
  html[data-theme="2"] .about-visual {
    min-height: 315px;
    border-radius: 20px;
  }

  html[data-theme="2"] .about .section-heading,
  html[data-theme="2"] .about-intro,
  html[data-theme="2"] .about-visual {
    padding: 1.35rem;
  }

  html[data-theme="2"] .about .section-heading::before {
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
  }

  html[data-theme="2"] .about .section-heading::after {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    height: 52%;
    border-radius: 14px;
  }

  html[data-theme="2"] .about .section-heading h2 {
    max-width: 180px;
    font-size: 1rem;
  }

  html[data-theme="2"] .about .section-heading .eyebrow {
    padding: 0.3rem 0.5rem;
    font-size: 0.4rem;
  }

  html[data-theme="2"] .about-intro .lead {
    font-size: 0.86rem;
  }

  html[data-theme="2"] .about-visual img {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 54%;
    border-radius: 14px;
  }

  html[data-theme="2"] .about-visual > p {
    top: 1.35rem;
    right: 3rem;
    left: 1.35rem;
    font-size: 0.9rem;
  }

  html[data-theme="2"] .about-principles article,
  html[data-theme="2"] .about-principles article:nth-child(2) {
    min-height: 96px;
    padding: 1rem;
  }
}

@media (max-width: 720px) {
  html[data-theme="2"] {
    --shell: calc(100vw - 28px);
    --section-space: 5rem;
  }

  html[data-theme="2"] body {
    padding: 0;
  }

  html[data-theme="2"] .site-frame {
    border-radius: 24px;
  }

  html[data-theme="2"] .site-header {
    top: 0;
  }

  html[data-theme="2"] .header-inner {
    width: var(--shell);
  }

  html[data-theme="2"] .brand {
    width: 122px;
    padding: 0.45rem 0.55rem;
    border-radius: 10px;
    background: rgba(251, 248, 242, 0.88);
  }

  html[data-theme="2"] .brand img {
    filter: none;
  }

  html[data-theme="2"] .hero {
    min-height: 760px;
    padding: 4px;
  }

  html[data-theme="2"] .hero-shell {
    min-height: 752px;
    border-radius: 21px;
  }

  html[data-theme="2"] .hero-media::after {
    background: linear-gradient(180deg, rgba(25, 28, 25, 0.14), rgba(25, 28, 25, 0.82) 74%);
  }

  html[data-theme="2"] .hero-photo-main img {
    object-position: 68% center;
  }

  html[data-theme="2"] .hero-copy {
    padding: 7rem 1.35rem 7.6rem;
  }

  html[data-theme="2"] .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.25rem);
  }

  html[data-theme="2"] .hero h1 span:first-child::after {
    display: none;
  }

  html[data-theme="2"] .hero-rail {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    gap: 0.3rem;
  }

  html[data-theme="2"] .hero-rail span {
    min-height: 48px;
    padding: 0.75rem 0.4rem;
    border-radius: 10px;
    text-align: center;
  }

  html[data-theme="2"] .impact {
    padding-top: 2.5rem;
  }

  html[data-theme="2"] .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  html[data-theme="2"] .impact article,
  html[data-theme="2"] .impact article:nth-child(2),
  html[data-theme="2"] .impact article:nth-child(3) {
    min-height: 96px;
    padding: 1.2rem 0.8rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  html[data-theme="2"] .about {
    padding-top: 4.5rem;
  }

  html[data-theme="2"] .about-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "intro"
      "visual"
      "principles";
  }

  html[data-theme="2"] .about .section-heading,
  html[data-theme="2"] .about-intro,
  html[data-theme="2"] .about-visual {
    min-height: 500px;
  }

  html[data-theme="2"] .about-intro > p:not(.lead) {
    display: block;
  }

  html[data-theme="2"] .about-principles {
    grid-template-columns: 1fr;
  }

  html[data-theme="2"] .purpose,
  html[data-theme="2"] .services,
  html[data-theme="2"] .stories,
  html[data-theme="2"] .final-cta {
    margin-right: 4px;
    margin-left: 4px;
    border-radius: 24px;
  }

  html[data-theme="2"] .service-list {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Generous whitespace pass — all concepts
   ========================================================= */
html[data-theme="1"] {
  --section-space: clamp(7.5rem, 10vw, 10.5rem);
}

html[data-theme="2"] {
  --section-space: clamp(8rem, 10vw, 10rem);
}

html[data-theme="3"] {
  --section-space: clamp(7.5rem, 9.5vw, 10rem);
}

html[data-theme="1"] .section-heading,
html[data-theme="3"] .section-heading {
  max-width: 780px;
}

html[data-theme="1"] .services-heading,
html[data-theme="1"] .insights-heading,
html[data-theme="3"] .services-heading,
html[data-theme="3"] .insights-heading {
  margin-bottom: clamp(4.5rem, 6vw, 6.5rem);
}

html[data-theme="1"] .about-shell,
html[data-theme="3"] .about-shell {
  column-gap: clamp(5rem, 8vw, 8rem);
  row-gap: clamp(3.5rem, 5vw, 5rem);
}

html[data-theme="1"] .purpose-shell > .section-heading,
html[data-theme="3"] .purpose-shell > .section-heading {
  margin-bottom: clamp(4.5rem, 6vw, 6rem);
}

html[data-theme="1"] .founder-shell,
html[data-theme="3"] .founder-shell,
html[data-theme="1"] .approach-shell,
html[data-theme="3"] .approach-shell,
html[data-theme="1"] .stories-shell,
html[data-theme="3"] .stories-shell {
  gap: clamp(6rem, 10vw, 10rem);
}

html[data-theme="1"] .article-grid,
html[data-theme="3"] .article-grid {
  gap: clamp(2rem, 3vw, 3.25rem);
}

html[data-theme="1"] .impact {
  padding-bottom: clamp(6.5rem, 8vw, 8rem);
}

html[data-theme="1"] .about-principles article,
html[data-theme="1"] .service,
html[data-theme="1"] .approach-list li,
html[data-theme="3"] .about-principles article,
html[data-theme="3"] .service,
html[data-theme="3"] .approach-list li {
  padding: clamp(1.8rem, 2.5vw, 2.4rem);
}

html[data-theme="1"] .purpose-cards,
html[data-theme="3"] .purpose-cards {
  gap: clamp(1.25rem, 2vw, 2rem);
}

html[data-theme="1"] .values,
html[data-theme="3"] .values {
  margin-top: 1.75rem;
  padding-block: 2.5rem;
}

html[data-theme="1"] .final-cta,
html[data-theme="3"] .final-cta {
  padding-block: clamp(9rem, 12vw, 12rem);
}

html[data-theme="2"] .impact {
  padding-top: clamp(4.5rem, 6vw, 6rem);
}

html[data-theme="2"] .impact article,
html[data-theme="2"] .impact article:nth-child(2),
html[data-theme="2"] .impact article:nth-child(3) {
  min-height: 126px;
  padding: 1.8rem 2.2rem;
}

html[data-theme="2"] .about {
  padding: clamp(7rem, 9vw, 9rem) 0 clamp(9rem, 11vw, 11rem);
}

html[data-theme="2"] .about-shell {
  gap: clamp(1.4rem, 2vw, 2rem);
}

html[data-theme="2"] .about .section-heading,
html[data-theme="2"] .about-intro,
html[data-theme="2"] .about-visual {
  min-height: 530px;
  padding: clamp(2.15rem, 2.8vw, 2.75rem);
}

html[data-theme="2"] .about-principles {
  margin-top: clamp(1rem, 2vw, 1.75rem);
  gap: clamp(1.25rem, 2vw, 2rem);
}

html[data-theme="2"] .about-principles article,
html[data-theme="2"] .about-principles article:nth-child(2) {
  min-height: 180px;
  padding: clamp(1.8rem, 2.4vw, 2.4rem);
}

html[data-theme="2"] .purpose .section-heading,
html[data-theme="2"] .services-heading,
html[data-theme="2"] .insights-heading {
  margin-bottom: clamp(4.75rem, 6vw, 6rem);
}

html[data-theme="2"] .purpose-cards {
  gap: clamp(1.25rem, 2vw, 2rem);
}

html[data-theme="2"] .purpose-cards article {
  min-height: 380px;
  padding: clamp(3.25rem, 5vw, 5rem);
}

html[data-theme="2"] .values {
  margin-top: 1.75rem;
  padding: 2.5rem 3rem;
}

html[data-theme="2"] .founder-shell {
  padding: clamp(1.25rem, 2vw, 2rem);
  gap: clamp(1.25rem, 2vw, 2rem);
}

html[data-theme="2"] .founder-copy {
  padding: clamp(3.5rem, 5vw, 5.75rem);
}

html[data-theme="2"] .service-list {
  gap: clamp(1.25rem, 2vw, 2rem);
}

html[data-theme="2"] .service,
html[data-theme="2"] .service:nth-child(2),
html[data-theme="2"] .service:nth-child(4),
html[data-theme="2"] .service:nth-child(7) {
  min-height: 385px;
  padding: 1.25rem;
}

html[data-theme="2"] .approach-shell,
html[data-theme="2"] .stories-shell {
  gap: clamp(5rem, 9vw, 9rem);
}

html[data-theme="2"] .article-grid {
  gap: clamp(1.75rem, 2.8vw, 3rem);
}

html[data-theme="2"] .article-grid article {
  padding: 1.25rem 1.25rem 2.5rem;
}

html[data-theme="2"] .final-cta {
  padding-block: clamp(9rem, 12vw, 12rem);
}

.footer-grid {
  padding-block: clamp(6.5rem, 8vw, 8rem) clamp(4rem, 5vw, 5rem);
}

@media (max-width: 900px) {
  html[data-theme="1"],
  html[data-theme="2"],
  html[data-theme="3"] {
    --section-space: 7.5rem;
  }

  html[data-theme="1"] .about-shell,
  html[data-theme="3"] .about-shell,
  html[data-theme="1"] .founder-shell,
  html[data-theme="2"] .founder-shell,
  html[data-theme="3"] .founder-shell,
  html[data-theme="1"] .approach-shell,
  html[data-theme="2"] .approach-shell,
  html[data-theme="3"] .approach-shell,
  html[data-theme="1"] .stories-shell,
  html[data-theme="2"] .stories-shell,
  html[data-theme="3"] .stories-shell {
    gap: 4.75rem;
  }

  html[data-theme="2"] .about {
    padding-block: 6.5rem 8rem;
  }

  html[data-theme="2"] .about .section-heading,
  html[data-theme="2"] .about-intro,
  html[data-theme="2"] .about-visual {
    padding: 1.75rem;
  }
}

@media (max-width: 620px) {
  html[data-theme="1"],
  html[data-theme="2"],
  html[data-theme="3"] {
    --section-space: 6.25rem;
  }

  html[data-theme="1"] .services-heading,
  html[data-theme="1"] .insights-heading,
  html[data-theme="2"] .services-heading,
  html[data-theme="2"] .insights-heading,
  html[data-theme="3"] .services-heading,
  html[data-theme="3"] .insights-heading {
    margin-bottom: 3.75rem;
  }

  html[data-theme="1"] .about-shell,
  html[data-theme="3"] .about-shell,
  html[data-theme="1"] .founder-shell,
  html[data-theme="2"] .founder-shell,
  html[data-theme="3"] .founder-shell,
  html[data-theme="1"] .approach-shell,
  html[data-theme="2"] .approach-shell,
  html[data-theme="3"] .approach-shell,
  html[data-theme="1"] .stories-shell,
  html[data-theme="2"] .stories-shell,
  html[data-theme="3"] .stories-shell {
    gap: 3.75rem;
  }

  html[data-theme="2"] .impact {
    padding-top: 3.5rem;
  }

  html[data-theme="2"] .about {
    padding-block: 6rem 7rem;
  }

  html[data-theme="2"] .about .section-heading,
  html[data-theme="2"] .about-intro,
  html[data-theme="2"] .about-visual {
    padding: 1.65rem;
  }

  html[data-theme="2"] .purpose-cards article {
    min-height: 340px;
    padding: 2.5rem 2rem;
  }

  html[data-theme="2"] .values {
    padding: 2.25rem 1.75rem;
  }

  html[data-theme="2"] .founder-copy {
    padding: 3rem 1.75rem;
  }

  html[data-theme="1"] .final-cta,
  html[data-theme="2"] .final-cta,
  html[data-theme="3"] .final-cta {
    padding-block: 8rem;
  }

  .footer-grid {
    padding-block: 6rem 4rem;
    row-gap: 4rem;
  }
}

/* Concept 02 — connected growth principles */
html[data-theme="2"] .about-principles {
  position: relative;
  display: grid;
  min-height: 310px;
  margin-top: clamp(1.5rem, 2.5vw, 2.5rem);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(27, 27, 27, 0.1);
  border-radius: 28px;
  background: #f8f7f3;
  grid-template-columns: minmax(230px, 1.08fr) repeat(3, 1fr);
  gap: 0;
}

html[data-theme="2"] .about-principles::after {
  position: absolute;
  z-index: 1;
  top: 76px;
  right: 2.5rem;
  left: calc(25% + 2.2rem);
  height: 1px;
  background: linear-gradient(90deg, var(--terracotta), var(--sand) 52%, var(--olive));
  content: "";
}

html[data-theme="2"] .principles-heading {
  position: relative;
  display: flex;
  min-width: 0;
  justify-content: flex-end;
  flex-direction: column;
  padding: clamp(2.2rem, 3vw, 3rem);
  overflow: hidden;
  background: #dfe7dc;
}

html[data-theme="2"] .principles-heading::before {
  position: absolute;
  top: -58%;
  right: -28%;
  width: 235px;
  height: 310px;
  border: 1px solid rgba(70, 91, 73, 0.22);
  border-radius: 50%;
  content: "";
  transform: rotate(28deg);
}

html[data-theme="2"] .principles-heading::after {
  position: absolute;
  top: 2.7rem;
  left: 2.7rem;
  width: 26px;
  height: 42px;
  border: 1px solid var(--terracotta);
  border-radius: 90% 0 90% 0;
  content: "";
  transform: rotate(22deg);
}

html[data-theme="2"] .principles-heading > span {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
  color: var(--olive-deep);
  font-family: "Urbanist", sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[data-theme="2"] .principles-heading h3 {
  position: relative;
  z-index: 2;
  max-width: 240px;
  color: var(--olive-deep);
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

html[data-theme="2"] .about-principles article,
html[data-theme="2"] .about-principles article:nth-child(2) {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 310px;
  justify-content: flex-end;
  flex-direction: column;
  padding: clamp(2rem, 2.7vw, 2.7rem);
  border: 0;
  border-left: 1px solid rgba(27, 27, 27, 0.1);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  transition: background-color 0.3s ease;
}

html[data-theme="2"] .about-principles article:hover {
  background: rgba(222, 195, 156, 0.16);
}

html[data-theme="2"] .about-principles article > span {
  position: absolute;
  z-index: 3;
  top: 3.25rem;
  left: clamp(2rem, 2.7vw, 2.7rem);
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(27, 27, 27, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-family: "Urbanist", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  place-items: center;
}

html[data-theme="2"] .about-principles article:nth-of-type(2) > span {
  background: var(--terracotta-soft);
}

html[data-theme="2"] .about-principles article:nth-of-type(3) > span {
  background: var(--sage-soft);
}

html[data-theme="2"] .about-principles article::before {
  position: absolute;
  top: 3.35rem;
  right: clamp(2rem, 2.7vw, 2.7rem);
  width: 18px;
  height: 30px;
  border: 1px solid var(--terracotta);
  border-radius: 85% 0 85% 0;
  content: "";
  transform: rotate(20deg);
}

html[data-theme="2"] .about-principles article:nth-of-type(2)::before {
  border-color: var(--sand);
  transform: rotate(42deg);
}

html[data-theme="2"] .about-principles article:nth-of-type(3)::before {
  border-color: var(--olive);
  transform: rotate(64deg);
}

html[data-theme="2"] .about-principles article h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  line-height: 1.08;
}

html[data-theme="2"] .about-principles article p {
  max-width: 270px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.65;
}

@media (min-width: 721px) and (max-width: 900px) {
  html[data-theme="2"] .about-principles {
    min-height: 245px;
    grid-template-columns: 0.9fr repeat(3, 1fr);
  }

  html[data-theme="2"] .about-principles::after {
    top: 58px;
    right: 1.25rem;
    left: calc(23% + 1rem);
  }

  html[data-theme="2"] .principles-heading,
  html[data-theme="2"] .about-principles article,
  html[data-theme="2"] .about-principles article:nth-child(2) {
    min-height: 245px;
    padding: 1.35rem;
  }

  html[data-theme="2"] .principles-heading::after {
    top: 1.7rem;
    left: 1.35rem;
  }

  html[data-theme="2"] .principles-heading h3 {
    font-size: 1.3rem;
  }

  html[data-theme="2"] .about-principles article > span {
    top: 2.2rem;
    left: 1.35rem;
    width: 38px;
    height: 38px;
  }

  html[data-theme="2"] .about-principles article::before {
    top: 2.35rem;
    right: 1.25rem;
    width: 14px;
    height: 24px;
  }

  html[data-theme="2"] .about-principles article h3 {
    font-size: 0.98rem;
  }

  html[data-theme="2"] .about-principles article p {
    font-size: 0.65rem;
  }
}

@media (max-width: 720px) {
  html[data-theme="2"] .about-principles {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  html[data-theme="2"] .about-principles::after {
    top: 265px;
    right: auto;
    bottom: 2.5rem;
    left: 2.95rem;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--terracotta), var(--sand) 52%, var(--olive));
  }

  html[data-theme="2"] .principles-heading {
    min-height: 240px;
    padding: 2.25rem;
  }

  html[data-theme="2"] .principles-heading::after {
    top: 2.25rem;
    left: 2.25rem;
  }

  html[data-theme="2"] .principles-heading h3 {
    font-size: 2rem;
  }

  html[data-theme="2"] .about-principles article,
  html[data-theme="2"] .about-principles article:nth-child(2) {
    min-height: 210px;
    justify-content: center;
    padding: 2.5rem 2rem 2.5rem 6.3rem;
    border-top: 1px solid rgba(27, 27, 27, 0.1);
    border-left: 0;
  }

  html[data-theme="2"] .about-principles article > span {
    top: 50%;
    left: 1.5rem;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
  }

  html[data-theme="2"] .about-principles article::before {
    top: 2rem;
    right: 1.5rem;
  }
}

/* Concept 02 — mission and vision editorial diptych */
html[data-theme="2"] .purpose {
  overflow: hidden;
}

html[data-theme="2"] .purpose-cards {
  position: relative;
  align-items: stretch;
  grid-template-columns: 1.22fr 0.78fr;
  gap: clamp(1rem, 1.8vw, 1.6rem);
}

html[data-theme="2"] .purpose-cards::after {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 61%;
  display: grid;
  width: 62px;
  height: 62px;
  border: 8px solid #f4f3f1;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--ink);
  content: "↗";
  font-family: "Urbanist", sans-serif;
  font-size: 1.1rem;
  place-items: center;
  transform: translate(-50%, -50%);
}

html[data-theme="2"] .purpose-cards article,
html[data-theme="2"] .purpose-cards article:nth-child(2) {
  position: relative;
  min-height: 570px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(27, 27, 27, 0.09);
  border-radius: 30px;
  background: #fff;
  color: var(--ink);
}

html[data-theme="2"] .purpose-cards article:first-child {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) 1.08fr;
  grid-template-rows: auto 1fr auto;
}

html[data-theme="2"] .purpose-image {
  position: relative;
  display: block;
  overflow: hidden;
}

html[data-theme="2"] .purpose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html[data-theme="2"] .purpose-cards article:first-child .purpose-image {
  min-height: 570px;
  grid-column: 1;
  grid-row: 1 / 4;
}

html[data-theme="2"] .purpose-cards article:first-child .purpose-image img {
  filter: saturate(0.76) contrast(0.94) sepia(0.08);
}

html[data-theme="2"] .purpose-cards article:first-child .purpose-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(205, 118, 83, 0.08), rgba(205, 118, 83, 0.34)),
    linear-gradient(90deg, transparent 64%, rgba(205, 118, 83, 0.24));
  content: "";
  mix-blend-mode: multiply;
}

html[data-theme="2"] .purpose-cards article:first-child > span {
  align-self: start;
  margin: clamp(2.5rem, 4vw, 4rem) clamp(2.3rem, 4vw, 4rem) 0;
  grid-column: 2;
  grid-row: 1;
}

html[data-theme="2"] .purpose-cards article:first-child h3 {
  align-self: end;
  margin: 0 clamp(2.3rem, 4vw, 4rem) 1.35rem;
  grid-column: 2;
  grid-row: 2;
}

html[data-theme="2"] .purpose-cards article:first-child p {
  margin: 0 clamp(2.3rem, 4vw, 4rem) clamp(2.5rem, 4vw, 4rem);
  grid-column: 2;
  grid-row: 3;
}

html[data-theme="2"] .purpose-cards article:nth-child(2) {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: clamp(2.5rem, 4vw, 4rem);
  background: #dfe7dc;
}

html[data-theme="2"] .purpose-cards article:nth-child(2) .purpose-image {
  position: absolute;
  inset: 0;
}

html[data-theme="2"] .purpose-cards article:nth-child(2) .purpose-image img {
  object-position: 48% center;
  filter: saturate(0.62) contrast(0.92) sepia(0.08);
}

html[data-theme="2"] .purpose-cards article:nth-child(2) .purpose-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(223, 231, 220, 0.04) 10%, rgba(223, 231, 220, 0.62) 52%, #dfe7dc 82%);
  content: "";
}

html[data-theme="2"] .purpose-cards article:nth-child(2) > span,
html[data-theme="2"] .purpose-cards article:nth-child(2) h3,
html[data-theme="2"] .purpose-cards article:nth-child(2) p {
  position: relative;
  z-index: 3;
}

html[data-theme="2"] .purpose-cards article > span {
  width: max-content;
  margin-bottom: 0;
  padding: 0.5rem 0.8rem;
  border-color: rgba(27, 27, 27, 0.16);
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: blur(10px);
}

html[data-theme="2"] .purpose-cards article:nth-child(2) > span {
  margin-bottom: auto;
}

html[data-theme="2"] .purpose-cards h3 {
  max-width: 530px;
  margin-bottom: 1.35rem;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.55rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

html[data-theme="2"] .purpose-cards p {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(27, 27, 27, 0.68);
  font-size: 0.83rem;
  line-height: 1.65;
}

html[data-theme="2"] .purpose-cards article:first-child::after {
  position: absolute;
  bottom: 2.2rem;
  left: 2.2rem;
  width: 32px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 90% 0 90% 0;
  content: "";
  transform: rotate(18deg);
}

html[data-theme="2"] .purpose-cards article:nth-child(2)::after {
  position: absolute;
  z-index: 2;
  top: 2.2rem;
  right: 2.2rem;
  width: 84px;
  height: 120px;
  border: 1px solid rgba(70, 91, 73, 0.34);
  border-radius: 50%;
  content: "";
  transform: rotate(34deg);
}

@media (min-width: 721px) and (max-width: 900px) {
  html[data-theme="2"] .purpose-cards {
    grid-template-columns: 1.12fr 0.88fr;
  }

  html[data-theme="2"] .purpose-cards::after {
    left: 56%;
    width: 50px;
    height: 50px;
    border-width: 6px;
  }

  html[data-theme="2"] .purpose-cards article,
  html[data-theme="2"] .purpose-cards article:nth-child(2) {
    min-height: 460px;
    border-radius: 22px;
  }

  html[data-theme="2"] .purpose-cards article:first-child {
    grid-template-columns: 0.78fr 1.22fr;
  }

  html[data-theme="2"] .purpose-cards article:first-child .purpose-image {
    min-height: 460px;
  }

  html[data-theme="2"] .purpose-cards article:first-child > span {
    margin: 1.8rem 1.5rem 0;
  }

  html[data-theme="2"] .purpose-cards article:first-child h3 {
    margin: 0 1.5rem 1rem;
  }

  html[data-theme="2"] .purpose-cards article:first-child p {
    margin: 0 1.5rem 1.8rem;
  }

  html[data-theme="2"] .purpose-cards article:nth-child(2) {
    padding: 1.8rem;
  }

  html[data-theme="2"] .purpose-cards h3 {
    font-size: clamp(1.45rem, 3.4vw, 2rem);
  }

  html[data-theme="2"] .purpose-cards p {
    font-size: 0.69rem;
  }
}

@media (max-width: 720px) {
  html[data-theme="2"] .purpose-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  html[data-theme="2"] .purpose-cards::after {
    display: none;
  }

  html[data-theme="2"] .purpose-cards article,
  html[data-theme="2"] .purpose-cards article:nth-child(2) {
    min-height: 0;
    border-radius: 24px;
  }

  html[data-theme="2"] .purpose-cards article:first-child {
    grid-template-columns: 1fr;
    grid-template-rows: 300px auto auto auto;
  }

  html[data-theme="2"] .purpose-cards article:first-child .purpose-image {
    min-height: 300px;
    grid-column: 1;
    grid-row: 1;
  }

  html[data-theme="2"] .purpose-cards article:first-child > span {
    margin: 2.2rem 2rem 2.5rem;
    grid-column: 1;
    grid-row: 2;
  }

  html[data-theme="2"] .purpose-cards article:first-child h3 {
    margin: 0 2rem 1.2rem;
    grid-column: 1;
    grid-row: 3;
  }

  html[data-theme="2"] .purpose-cards article:first-child p {
    margin: 0 2rem 2.5rem;
    grid-column: 1;
    grid-row: 4;
  }

  html[data-theme="2"] .purpose-cards article:nth-child(2) {
    min-height: 590px;
    padding: 2rem;
  }

  html[data-theme="2"] .purpose-cards h3 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
}

/* Concept 02 — values as visible commitments */
html[data-theme="2"] .values {
  position: relative;
  display: grid;
  min-height: 205px;
  align-items: stretch;
  margin-top: clamp(1.25rem, 2vw, 2rem);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(27, 27, 27, 0.1);
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  grid-template-columns: minmax(235px, 0.82fr) 2.65fr;
  grid-template-rows: 1fr auto;
  gap: 0;
}

html[data-theme="2"] .values > span {
  display: flex;
  align-items: flex-end;
  padding: 3rem 2.7rem 0.75rem;
  background: #dfe7dc;
  color: var(--olive-deep);
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: none;
}

html[data-theme="2"] .values > span::before {
  position: absolute;
  top: 2.25rem;
  left: 2.7rem;
  color: var(--terracotta);
  content: "05 commitments";
  font-family: "Urbanist", sans-serif;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[data-theme="2"] .values-note {
  display: block;
  margin: 0;
  padding: 0 2.7rem 2.7rem;
  background: #dfe7dc;
  color: rgba(70, 91, 73, 0.76);
  font-size: 0.75rem;
  line-height: 1.5;
}

html[data-theme="2"] .values ul {
  display: grid;
  width: 100%;
  align-items: stretch;
  grid-column: 2;
  grid-row: 1 / 3;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: value;
}

html[data-theme="2"] .values li {
  position: relative;
  display: flex;
  min-width: 0;
  justify-content: flex-end;
  flex-direction: column;
  padding: 2.2rem 1.45rem;
  border-left: 1px solid rgba(27, 27, 27, 0.09);
  background: #faf9f6;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  font-weight: 500;
  line-height: 1.15;
  counter-increment: value;
  transition: padding-bottom 0.25s ease, filter 0.25s ease;
}

html[data-theme="2"] .values li strong {
  display: block;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  font-weight: 500;
  line-height: 1.15;
}

html[data-theme="2"] .values li small {
  display: block;
  max-width: 150px;
  margin-top: 0.65rem;
  color: rgba(27, 27, 27, 0.62);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.59rem;
  font-weight: 500;
  line-height: 1.5;
}

html[data-theme="2"] .values li:nth-child(2) {
  background: #eee3d2;
}

html[data-theme="2"] .values li:nth-child(3) {
  background: #ead2c6;
}

html[data-theme="2"] .values li:nth-child(4) {
  background: #e2e8de;
}

html[data-theme="2"] .values li:nth-child(5) {
  background: #ead2c6;
}

html[data-theme="2"] .values li::before {
  position: absolute;
  top: 2rem;
  left: 1.45rem;
  color: rgba(27, 27, 27, 0.52);
  content: "0" counter(value);
  font-family: "Urbanist", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

html[data-theme="2"] .values li::after {
  position: absolute;
  top: 1.8rem;
  right: 1.2rem;
  width: 16px;
  height: 27px;
  border: 1px solid var(--terracotta);
  border-radius: 85% 0 85% 0;
  content: "";
  transform: rotate(18deg);
}

html[data-theme="2"] .values li:nth-child(2)::after {
  border-color: #b78a54;
  transform: rotate(34deg);
}

html[data-theme="2"] .values li:nth-child(3)::after {
  border-color: var(--terracotta);
  transform: rotate(50deg);
}

html[data-theme="2"] .values li:nth-child(4)::after {
  border-color: var(--olive);
  transform: rotate(66deg);
}

html[data-theme="2"] .values li:nth-child(5)::after {
  border-color: #a38a3e;
  transform: rotate(82deg);
}

html[data-theme="2"] .values li:hover {
  padding-bottom: 2.55rem;
  filter: saturate(1.12);
}

@media (min-width: 721px) and (max-width: 900px) {
  html[data-theme="2"] .values {
    min-height: 245px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
  }

  html[data-theme="2"] .values > span {
    min-height: 92px;
    align-items: flex-end;
    padding: 2.4rem 2rem 0.45rem;
    font-size: 1.8rem;
  }

  html[data-theme="2"] .values > span::before {
    top: 1.55rem;
    left: 2rem;
  }

  html[data-theme="2"] .values-note {
    padding: 0 2rem 1.7rem;
  }

  html[data-theme="2"] .values ul {
    grid-column: 1;
    grid-row: 3;
  }

  html[data-theme="2"] .values li {
    min-height: 165px;
    padding: 1.7rem 1rem;
    border-top: 1px solid rgba(27, 27, 27, 0.09);
    font-size: 0.82rem;
  }

  html[data-theme="2"] .values li::before {
    top: 1.35rem;
    left: 1rem;
  }

  html[data-theme="2"] .values li::after {
    top: 1.25rem;
    right: 0.85rem;
    width: 12px;
    height: 21px;
  }
}

@media (max-width: 720px) {
  html[data-theme="2"] .values {
    min-height: 0;
    padding: 0;
    border-radius: 24px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  html[data-theme="2"] .values > span {
    min-height: 125px;
    align-items: flex-end;
    padding: 3rem 2rem 0.65rem;
    font-size: 2.15rem;
  }

  html[data-theme="2"] .values > span::before {
    top: 2rem;
    left: 2rem;
  }

  html[data-theme="2"] .values-note {
    padding: 0 2rem 2.2rem;
  }

  html[data-theme="2"] .values ul {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr 1fr;
  }

  html[data-theme="2"] .values li {
    min-height: 175px;
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(27, 27, 27, 0.09);
    font-size: 1rem;
  }

  html[data-theme="2"] .values li:nth-child(5) {
    grid-column: 1 / -1;
  }

  html[data-theme="2"] .values li::before {
    top: 1.7rem;
    left: 1.5rem;
  }

  html[data-theme="2"] .values li::after {
    top: 1.55rem;
    right: 1.25rem;
  }
}

/* Concept 02 — interactive capability explorer */
html[data-theme="2"] .services-heading {
  align-items: flex-end;
  flex-direction: row;
  text-align: left;
}

html[data-theme="2"] .services-heading .section-heading {
  align-items: initial;
  text-align: left;
}

html[data-theme="2"] .services-heading .eyebrow {
  justify-content: flex-start;
}

html[data-theme="2"] .services-heading > p {
  max-width: 370px;
  margin-bottom: 0.4rem;
  text-align: left;
}

html[data-theme="2"] .service-explorer {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(390px, 0.88fr) 1.12fr;
  gap: clamp(3rem, 6vw, 6.5rem);
}

html[data-theme="2"] .service-feature {
  position: sticky;
  top: 110px;
  display: flex;
  min-height: 720px;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: 30px;
  background: #dfe7dc;
}

html[data-theme="2"] .service-feature::after {
  position: absolute;
  z-index: 2;
  top: 7.5rem;
  right: -2.5rem;
  width: 160px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  content: "";
  transform: rotate(28deg);
}

html[data-theme="2"] .service-feature-image {
  position: absolute;
  inset: 0;
  margin: 0;
}

html[data-theme="2"] .service-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.94) sepia(0.08);
}

html[data-theme="2"] .service-feature-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(70, 91, 73, 0.08) 0%, rgba(205, 118, 83, 0.15) 45%, rgba(70, 91, 73, 0.48) 100%),
    linear-gradient(90deg, rgba(27, 27, 27, 0.04), transparent 54%);
  content: "";
}

html[data-theme="2"] .service-feature-meta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: white;
  font-family: "Urbanist", sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[data-theme="2"] .service-feature-meta span,
html[data-theme="2"] .service-feature-meta strong {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(27, 27, 27, 0.16);
  backdrop-filter: blur(12px);
}

html[data-theme="2"] .service-feature-meta strong {
  margin-left: auto;
}

html[data-theme="2"] .service-feature-copy {
  position: relative;
  z-index: 4;
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: 24px;
  background: rgba(251, 248, 242, 0.9);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

html[data-theme="2"] .service-feature-copy > span {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--terracotta);
  font-family: "Urbanist", sans-serif;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[data-theme="2"] .service-feature-copy h3 {
  max-width: 420px;
  margin-bottom: 1.2rem;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

html[data-theme="2"] .service-feature-copy p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.65;
}

html[data-theme="2"] .service-list {
  display: block;
  border-top: 1px solid rgba(27, 27, 27, 0.13);
}

html[data-theme="2"] .service,
html[data-theme="2"] .service:nth-child(2),
html[data-theme="2"] .service:nth-child(4),
html[data-theme="2"] .service:nth-child(7),
html[data-theme="2"] .service[open] {
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(27, 27, 27, 0.13);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

html[data-theme="2"] .service::before {
  display: none;
}

html[data-theme="2"] .service summary,
html[data-theme="2"] .service[open] summary {
  display: grid;
  min-height: 94px;
  align-items: center;
  margin: 0;
  padding: 1.45rem 0;
  grid-template-columns: 52px 1fr 42px;
  grid-template-rows: auto;
  gap: 1.15rem;
}

html[data-theme="2"] .service summary span {
  color: var(--terracotta);
  font-family: "Urbanist", sans-serif;
  font-size: 0.6rem;
  grid-column: 1;
  grid-row: 1;
}

html[data-theme="2"] .service summary h3 {
  align-self: center;
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  font-weight: 500;
  line-height: 1.15;
  grid-column: 2;
  grid-row: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

html[data-theme="2"] .service[open] summary h3 {
  color: var(--olive-deep);
  transform: translateX(5px);
}

html[data-theme="2"] .service summary i {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(27, 27, 27, 0.13);
  background: transparent;
  grid-column: 3;
  grid-row: 1;
  transition: background-color 0.2s ease;
}

html[data-theme="2"] .service[open] summary i {
  background: var(--terracotta);
}

html[data-theme="2"] .service > p,
html[data-theme="2"] .service:nth-child(4) > p {
  max-width: 580px;
  margin: -0.35rem 3.5rem 1.8rem 4.3rem;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.7;
}

@media (max-width: 1000px) {
  html[data-theme="2"] .services-heading {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  html[data-theme="2"] .service-explorer {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  html[data-theme="2"] .service-feature {
    position: relative;
    top: auto;
    min-height: 500px;
  }

  html[data-theme="2"] .service-feature-copy {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  html[data-theme="2"] .service-explorer {
    gap: 3rem;
  }

  html[data-theme="2"] .service-feature {
    min-height: 600px;
    padding: 1rem;
    border-radius: 24px;
  }

  html[data-theme="2"] .service-feature-meta {
    padding: 0.35rem;
  }

  html[data-theme="2"] .service-feature-copy {
    padding: 2rem 1.6rem;
    border-radius: 19px;
  }

  html[data-theme="2"] .service-feature-copy h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  html[data-theme="2"] .service summary,
  html[data-theme="2"] .service[open] summary {
    min-height: 98px;
    padding-block: 1.4rem;
    grid-template-columns: 34px 1fr 38px;
    gap: 0.75rem;
  }

  html[data-theme="2"] .service summary i {
    width: 38px;
    height: 38px;
  }

  html[data-theme="2"] .service > p,
  html[data-theme="2"] .service:nth-child(4) > p {
    margin: -0.25rem 2.75rem 1.8rem 2.8rem;
  }
}

/* =========================================================
   CONCEPT 02 — editorial process progression
   ========================================================= */
html[data-theme="2"] .approach {
  padding-block: clamp(7rem, 10vw, 10rem);
  background: #fff;
}

html[data-theme="2"] .approach-shell {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: clamp(3.5rem, 5.5vw, 5.75rem);
  border-radius: 40px;
  background: #f1eadf;
  color: var(--ink);
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(4.5rem, 8vw, 8rem);
  row-gap: clamp(3.5rem, 5vw, 5rem);
}

html[data-theme="2"] .approach-shell::before {
  position: absolute;
  right: -145px;
  bottom: -235px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(70, 91, 73, 0.16);
  border-radius: 50%;
  content: "";
}

html[data-theme="2"] .approach-shell > .section-heading {
  position: relative;
  z-index: 2;
  align-self: start;
  max-width: 410px;
  grid-column: 1;
  grid-row: 1;
}

html[data-theme="2"] .approach-shell > .section-heading h2 {
  max-width: 390px;
  color: var(--olive-deep);
  font-family: "Urbanist", sans-serif;
  font-size: clamp(2.75rem, 4.3vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

html[data-theme="2"] .approach-shell > .section-heading .eyebrow {
  margin-bottom: 1.5rem;
}

html[data-theme="2"] .approach-visual {
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
  min-height: 350px;
  margin: 0;
  border-radius: 180px 180px 24px 24px;
  background: var(--sage);
  grid-column: 1;
  grid-row: 2;
}

html[data-theme="2"] .approach-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(70, 91, 73, 0.04) 24%, rgba(33, 44, 35, 0.78) 100%);
  content: "";
}

html[data-theme="2"] .approach-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  filter: saturate(0.68) sepia(0.08) contrast(0.94);
  transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

html[data-theme="2"] .approach-visual:hover img {
  transform: scale(1.035);
}

html[data-theme="2"] .approach-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  color: #fff;
}

html[data-theme="2"] .approach-visual figcaption span,
html[data-theme="2"] .approach-visual figcaption strong {
  display: block;
}

html[data-theme="2"] .approach-visual figcaption span {
  margin-bottom: 0.35rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

html[data-theme="2"] .approach-visual figcaption strong {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

html[data-theme="2"] .approach-list {
  position: relative;
  z-index: 2;
  display: flex;
  align-self: stretch;
  min-width: 0;
  margin: 0;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  grid-column: 2;
  grid-row: 1 / 3;
}

html[data-theme="2"] .approach-list li,
html[data-theme="2"] .approach-list li:nth-child(2) {
  position: relative;
  display: grid;
  min-height: 142px;
  padding: 1.6rem 0;
  border: 0;
  border-top: 1px solid rgba(27, 27, 27, 0.17);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  grid-template-columns: 54px minmax(120px, 0.72fr) minmax(190px, 1.28fr);
  align-items: center;
  column-gap: clamp(1rem, 2vw, 2rem);
  transition: color 0.25s ease, transform 0.35s ease;
}

html[data-theme="2"] .approach-list li:first-child {
  width: 82%;
  margin-left: 0;
  border-top-color: rgba(205, 118, 83, 0.72);
}

html[data-theme="2"] .approach-list li:nth-child(2) {
  width: 86%;
  margin-left: 5%;
  border-top-color: rgba(186, 144, 84, 0.7);
}

html[data-theme="2"] .approach-list li:nth-child(3) {
  width: 90%;
  margin-left: 10%;
  border-top-color: rgba(118, 142, 115, 0.72);
}

html[data-theme="2"] .approach-list li:nth-child(4) {
  width: 84%;
  margin-left: 16%;
  border-top-color: rgba(70, 91, 73, 0.8);
  border-bottom: 1px solid rgba(70, 91, 73, 0.28);
}

html[data-theme="2"] .approach-list li::after {
  position: absolute;
  top: 50%;
  right: 0.2rem;
  width: 13px;
  height: 21px;
  border: 1px solid currentColor;
  border-radius: 90% 0 90% 0;
  content: "";
  opacity: 0.2;
  transform: translateY(-50%) rotate(28deg);
}

html[data-theme="2"] .approach-list li:hover {
  color: var(--olive-deep);
  transform: translateX(8px);
}

html[data-theme="2"] .approach-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff8f1;
  color: var(--terracotta);
  font-family: "Urbanist", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  place-items: center;
}

html[data-theme="2"] .approach-list li:nth-child(2) > span {
  background: #f2dfbd;
  color: #765c32;
}

html[data-theme="2"] .approach-list li:nth-child(3) > span {
  background: #dce4d8;
  color: var(--olive-deep);
}

html[data-theme="2"] .approach-list li:nth-child(4) > span {
  background: var(--olive-deep);
  color: #fff;
}

html[data-theme="2"] .approach-list strong {
  display: block;
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

html[data-theme="2"] .approach-list p,
html[data-theme="2"] .approach-list li:nth-child(2) p {
  max-width: 330px;
  margin: 0;
  padding-right: 1.5rem;
  color: var(--muted);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.7rem;
  line-height: 1.65;
}

@media (max-width: 1080px) {
  html[data-theme="2"] .approach-shell {
    grid-template-columns: minmax(250px, 0.7fr) minmax(390px, 1.3fr);
    column-gap: 4rem;
  }

  html[data-theme="2"] .approach-list li,
  html[data-theme="2"] .approach-list li:nth-child(2) {
    min-height: 150px;
    grid-template-columns: 46px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 0.55rem;
  }

  html[data-theme="2"] .approach-list strong {
    grid-column: 2;
    grid-row: 1;
  }

  html[data-theme="2"] .approach-list p,
  html[data-theme="2"] .approach-list li:nth-child(2) p {
    grid-column: 2;
    grid-row: 2;
  }

  html[data-theme="2"] .approach-list li > span {
    grid-column: 1;
    grid-row: 1 / 3;
  }
}

@media (max-width: 820px) {
  html[data-theme="2"] .approach-shell {
    padding: clamp(2.5rem, 7vw, 4rem);
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 0;
    row-gap: 3.5rem;
  }

  html[data-theme="2"] .approach-shell > .section-heading {
    max-width: 600px;
    grid-column: 1;
    grid-row: 1;
  }

  html[data-theme="2"] .approach-shell > .section-heading h2 {
    max-width: 560px;
  }

  html[data-theme="2"] .approach-visual {
    min-height: 430px;
    border-radius: 230px 230px 24px 24px;
    grid-column: 1;
    grid-row: 2;
  }

  html[data-theme="2"] .approach-list {
    grid-column: 1;
    grid-row: 3;
  }

  html[data-theme="2"] .approach-list li:first-child {
    width: 88%;
  }

  html[data-theme="2"] .approach-list li:nth-child(2) {
    width: 90%;
    margin-left: 3%;
  }

  html[data-theme="2"] .approach-list li:nth-child(3) {
    width: 94%;
    margin-left: 6%;
  }

  html[data-theme="2"] .approach-list li:nth-child(4) {
    width: 91%;
    margin-left: 9%;
  }
}

@media (max-width: 560px) {
  html[data-theme="2"] .approach {
    padding-block: 6rem;
  }

  html[data-theme="2"] .approach-shell {
    padding: 2.25rem 1.35rem 2.75rem;
    border-radius: 26px;
    row-gap: 2.75rem;
  }

  html[data-theme="2"] .approach-shell > .section-heading h2 {
    font-size: clamp(2.55rem, 13vw, 3.55rem);
  }

  html[data-theme="2"] .approach-visual {
    min-height: 380px;
    border-radius: 190px 190px 20px 20px;
  }

  html[data-theme="2"] .approach-visual figcaption {
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }

  html[data-theme="2"] .approach-list li:first-child,
  html[data-theme="2"] .approach-list li:nth-child(2),
  html[data-theme="2"] .approach-list li:nth-child(3),
  html[data-theme="2"] .approach-list li:nth-child(4) {
    width: 100%;
    min-height: 145px;
    margin-left: 0;
    padding-block: 1.55rem;
    grid-template-columns: 44px 1fr;
  }

  html[data-theme="2"] .approach-list p,
  html[data-theme="2"] .approach-list li:nth-child(2) p {
    padding-right: 1rem;
  }
}

/* =========================================================
   CONCEPT 02 — client social proof
   ========================================================= */
html[data-theme="2"] .stories {
  overflow: hidden;
  margin: 0 10px;
  padding-block: clamp(7.5rem, 10vw, 10rem);
  border-radius: 40px;
  background: #e8eee8;
  color: var(--ink);
}

html[data-theme="2"] .stories-shell {
  display: block;
}

html[data-theme="2"] .stories-shell > .section-heading {
  max-width: 830px;
  margin: 0 auto clamp(4.5rem, 7vw, 6.5rem);
  text-align: center;
}

html[data-theme="2"] .stories-shell > .section-heading .eyebrow {
  justify-content: center;
}

html[data-theme="2"] .stories-shell > .section-heading h2 {
  max-width: 800px;
  margin-inline: auto;
  color: var(--olive-deep);
  font-family: "Urbanist", sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.93;
}

html[data-theme="2"] .stories-intro {
  display: block;
  max-width: 570px;
  margin: 2rem auto 0;
  color: var(--muted);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.78rem;
  line-height: 1.7;
}

html[data-theme="2"] .proof-signals {
  display: flex;
  max-width: 660px;
  margin: 2.75rem auto 0;
  padding: 0;
  justify-content: center;
  list-style: none;
}

html[data-theme="2"] .proof-signals li {
  display: grid;
  min-width: 180px;
  padding: 0.4rem 1.75rem;
  border-left: 1px solid rgba(70, 91, 73, 0.2);
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  text-align: left;
}

html[data-theme="2"] .proof-signals li:last-child {
  border-right: 1px solid rgba(70, 91, 73, 0.2);
}

html[data-theme="2"] .proof-signals strong {
  color: var(--terracotta);
  font-family: "Urbanist", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}

html[data-theme="2"] .proof-signals span {
  color: var(--olive-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.57rem;
  font-weight: 600;
  line-height: 1.35;
}

html[data-theme="2"] .story-stage {
  position: relative;
  display: grid;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.2vw, 2rem);
}

html[data-theme="2"] .story[hidden] {
  display: none;
}

html[data-theme="2"] .story:not([hidden]) {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 620px;
  padding: clamp(2.5rem, 3.6vw, 3.75rem);
  border: 1px solid rgba(70, 91, 73, 0.1);
  border-radius: 30px;
  background: #fff;
  flex-direction: column;
  animation: concept-two-story-in 0.45s ease both;
}

html[data-theme="2"] .story:nth-of-type(even):not([hidden]) {
  background: #fbf8f2;
}

html[data-theme="2"] .story::before {
  position: absolute;
  top: 1.1rem;
  right: 2rem;
  color: rgba(205, 118, 83, 0.16);
  content: "“";
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

html[data-theme="2"] .story-result {
  position: relative;
  z-index: 1;
  display: flex;
  margin: 0;
  color: var(--olive-deep);
  font-family: "Urbanist", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-items: center;
  gap: 0.8rem;
}

html[data-theme="2"] .story-result::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
  flex: 0 0 auto;
}

html[data-theme="2"] .story blockquote {
  position: relative;
  z-index: 1;
  margin: clamp(2.5rem, 4vw, 3.75rem) 0 3rem;
  color: var(--terracotta);
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1.35rem, 2.15vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.5;
  flex: 1;
}

html[data-theme="2"] .story blockquote::before {
  content: "“";
}

html[data-theme="2"] .story blockquote::after {
  content: "”";
}

html[data-theme="2"] .story footer {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: auto;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(27, 27, 27, 0.1);
  flex-direction: initial;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 1rem;
}

html[data-theme="2"] .story footer .story-monogram {
  display: grid;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--terracotta-soft);
  color: #8d492f;
  font-family: "Urbanist", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  place-items: center;
}

html[data-theme="2"] .story:nth-of-type(even) footer .story-monogram {
  background: #dce5da;
  color: var(--olive-deep);
}

html[data-theme="2"] .story footer .story-person {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.25rem;
}

html[data-theme="2"] .story footer .story-person strong {
  color: var(--ink);
  font-family: "Work Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
}

html[data-theme="2"] .story footer .story-person > span {
  color: var(--muted);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.59rem;
  line-height: 1.5;
}

html[data-theme="2"] .story-controls {
  position: static;
  display: flex;
  margin-top: 2.25rem;
  justify-content: center;
  grid-column: 1 / -1;
  align-items: center;
  gap: 1rem;
}

html[data-theme="2"] .story-controls button {
  width: 50px;
  height: 50px;
  border-color: rgba(70, 91, 73, 0.24);
  background: rgba(255, 255, 255, 0.5);
  color: var(--olive-deep);
  font-size: 1rem;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

html[data-theme="2"] .story-controls button:hover {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-2px);
}

html[data-theme="2"] .story-position {
  display: flex;
  min-width: 108px;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

html[data-theme="2"] .story-controls .story-position > [data-story-count] {
  min-width: 0;
  color: var(--olive-deep);
  font-family: "Urbanist", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

html[data-theme="2"] .story-dots {
  display: flex;
  gap: 0.35rem;
}

html[data-theme="2"] .story-dots i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(70, 91, 73, 0.22);
  transition: width 0.25s ease, background-color 0.25s ease;
}

html[data-theme="2"] .story-dots i.is-active {
  width: 18px;
  border-radius: 8px;
  background: var(--terracotta);
}

@keyframes concept-two-story-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  html[data-theme="2"] .stories-shell > .section-heading {
    margin-bottom: 4.5rem;
  }

  html[data-theme="2"] .story-stage {
    max-width: 720px;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }

  html[data-theme="2"] .story:not([hidden]) {
    min-height: 500px;
  }
}

@media (max-width: 620px) {
  html[data-theme="2"] .stories {
    margin-inline: 5px;
    padding-block: 6.5rem;
    border-radius: 28px;
  }

  html[data-theme="2"] .stories-shell > .section-heading h2 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  html[data-theme="2"] .stories-intro {
    max-width: 330px;
    margin-top: 1.65rem;
    font-size: 0.72rem;
  }

  html[data-theme="2"] .proof-signals {
    width: 100%;
    margin-top: 2.25rem;
  }

  html[data-theme="2"] .proof-signals li {
    min-width: 0;
    padding: 0.25rem 0.65rem;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.25rem;
    text-align: center;
    flex: 1;
  }

  html[data-theme="2"] .proof-signals strong {
    font-size: 1.1rem;
  }

  html[data-theme="2"] .proof-signals span {
    font-size: 0.5rem;
  }

  html[data-theme="2"] .story:not([hidden]) {
    min-height: 565px;
    padding: 2rem 1.6rem;
    border-radius: 24px;
  }

  html[data-theme="2"] .story::before {
    top: 0.8rem;
    right: 1.2rem;
    font-size: 6rem;
  }

  html[data-theme="2"] .story blockquote {
    margin: 2.5rem 0 2.25rem;
    font-size: clamp(1.2rem, 5.7vw, 1.45rem);
    line-height: 1.48;
  }

  html[data-theme="2"] .story footer {
    grid-template-columns: 48px 1fr;
  }

  html[data-theme="2"] .story footer .story-monogram {
    width: 48px;
    height: 48px;
  }

  html[data-theme="2"] .story-controls {
    right: auto !important;
    bottom: auto !important;
    left: auto;
  }
}

/* =========================================================
   CONCEPT 01 — image-led growth narrative
   ========================================================= */
html[data-theme="1"] .about {
  overflow: hidden;
  padding-block: clamp(7.5rem, 10vw, 10rem);
  border-radius: 52px;
  background: #fffdf9;
}

html[data-theme="1"] .about-shell {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 2.5vw, 2.75rem);
  row-gap: clamp(4rem, 6vw, 6rem);
}

html[data-theme="1"] .about .section-heading {
  max-width: none;
  grid-column: 1 / 6;
}

html[data-theme="1"] .about .section-heading h2 {
  max-width: 520px;
  color: var(--olive-deep);
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

html[data-theme="1"] .about-intro {
  align-self: end;
  max-width: 590px;
  padding-bottom: 0.5rem;
  grid-column: 7 / 13;
}

html[data-theme="1"] .about-intro .lead {
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

html[data-theme="1"] .about-visual {
  position: relative;
  height: 610px;
  overflow: visible;
  border-radius: 34px;
  background: var(--sage-soft);
  grid-column: 1 / 7;
}

html[data-theme="1"] .about-visual::before {
  position: absolute;
  z-index: 0;
  inset: -10px 10px 10px -10px;
  border: 3px solid var(--terracotta);
  border-radius: 39px;
  content: "";
}

html[data-theme="1"] .about-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(70, 91, 73, 0.03) 42%, rgba(35, 51, 40, 0.52) 100%);
  content: "";
}

html[data-theme="1"] .about-visual img {
  position: relative;
  z-index: 1;
  border-radius: 34px;
  filter: saturate(0.74) sepia(0.05) contrast(0.96);
}

html[data-theme="1"] .about-visual > p {
  z-index: 3;
  right: -24px;
  bottom: 30px;
  max-width: 275px;
  padding: 1.55rem 1.7rem;
  border: 4px solid #fff;
  border-radius: 22px;
  background: var(--terracotta);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

html[data-theme="1"] .about-principles {
  display: block;
  padding: clamp(1.5rem, 2.5vw, 2.75rem) 0 0 clamp(1rem, 2vw, 2rem);
  grid-column: 7 / 13;
}

html[data-theme="1"] .principles-heading {
  margin-bottom: 2.25rem;
}

html[data-theme="1"] .principles-heading > span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--terracotta);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

html[data-theme="1"] .principles-heading h3 {
  color: var(--olive-deep);
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

html[data-theme="1"] .about-principles article,
html[data-theme="1"] .about-principles article:nth-child(2) {
  display: grid;
  min-height: 132px;
  padding: 1.5rem 0;
  border: 0;
  border-top: 1px solid rgba(70, 91, 73, 0.2);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 1.25rem;
}

html[data-theme="1"] .about-principles article:last-child {
  border-bottom: 1px solid rgba(70, 91, 73, 0.2);
}

html[data-theme="1"] .about-principles article > span {
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--olive-deep);
  grid-column: 1;
  grid-row: 1 / 3;
  place-items: center;
}

html[data-theme="1"] .about-principles article:nth-of-type(2) > span {
  background: var(--sand-soft);
  color: #8b6547;
}

html[data-theme="1"] .about-principles article:nth-of-type(3) > span {
  background: var(--terracotta-soft);
  color: #9f4f32;
}

html[data-theme="1"] .about-principles article h3 {
  margin-bottom: 0.35rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  grid-column: 2;
}

html[data-theme="1"] .about-principles article p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  grid-column: 2;
}

html[data-theme="1"] .purpose {
  padding-block: clamp(8rem, 11vw, 11rem);
  background: #f1e5d2;
}

html[data-theme="1"] .purpose-shell > .section-heading {
  max-width: 820px;
  margin: 0 auto clamp(4.5rem, 7vw, 6.5rem);
  text-align: center;
}

html[data-theme="1"] .purpose-shell > .section-heading .eyebrow {
  justify-content: center;
}

html[data-theme="1"] .purpose-shell > .section-heading h2 {
  max-width: 820px;
  margin-inline: auto;
  color: var(--olive-deep);
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

html[data-theme="1"] .purpose-cards {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: clamp(1.25rem, 2vw, 2rem);
}

html[data-theme="1"] .purpose-cards article,
html[data-theme="1"] .purpose-cards article:nth-child(2) {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: 0;
  border: 0;
  border-radius: 34px;
}

html[data-theme="1"] .purpose-cards article:first-child {
  display: grid;
  background: #fff;
  grid-template-columns: 0.88fr 1.12fr;
  grid-template-rows: 1fr auto 1fr;
  grid-template-areas:
    "purpose-image purpose-label"
    "purpose-image purpose-title"
    "purpose-image purpose-copy";
}

html[data-theme="1"] .purpose-image {
  display: block;
  margin: 0;
}

html[data-theme="1"] .purpose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) contrast(0.94) sepia(0.05);
}

html[data-theme="1"] .purpose-cards article:first-child .purpose-image {
  min-height: 540px;
  grid-area: purpose-image;
}

html[data-theme="1"] .purpose-cards article:first-child .purpose-image img {
  object-position: 43% center;
}

html[data-theme="1"] .purpose-cards article:first-child > span {
  align-self: end;
  margin: 0 clamp(2.25rem, 4vw, 4rem) 1.1rem;
  grid-area: purpose-label;
}

html[data-theme="1"] .purpose-cards article:first-child h3 {
  margin: 0 clamp(2.25rem, 4vw, 4rem) 1.4rem;
  color: var(--olive-deep);
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  letter-spacing: -0.05em;
  line-height: 1;
  grid-area: purpose-title;
}

html[data-theme="1"] .purpose-cards article:first-child p {
  align-self: start;
  margin: 0 clamp(2.25rem, 4vw, 4rem);
  font-size: 0.78rem;
  line-height: 1.7;
  grid-area: purpose-copy;
}

html[data-theme="1"] .purpose-cards article:nth-child(2) {
  display: flex;
  justify-content: flex-end;
  padding: clamp(2.5rem, 4vw, 4rem);
  background: var(--olive-deep);
  color: #fff;
  flex-direction: column;
}

html[data-theme="1"] .purpose-cards article:nth-child(2)::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 49, 37, 0.08) 10%, rgba(32, 50, 38, 0.86) 82%);
  content: "";
}

html[data-theme="1"] .purpose-cards article:nth-child(2) .purpose-image {
  position: absolute;
  z-index: 0;
  inset: 0;
}

html[data-theme="1"] .purpose-cards article:nth-child(2) .purpose-image img {
  object-position: 54% center;
  filter: saturate(0.62) contrast(0.9) sepia(0.08);
}

html[data-theme="1"] .purpose-cards article:nth-child(2) > span,
html[data-theme="1"] .purpose-cards article:nth-child(2) h3,
html[data-theme="1"] .purpose-cards article:nth-child(2) p {
  position: relative;
  z-index: 2;
}

html[data-theme="1"] .purpose-cards article:nth-child(2) > span {
  align-self: flex-start;
  margin-bottom: 1.25rem;
  border-color: rgba(255, 255, 255, 0.55);
}

html[data-theme="1"] .purpose-cards article:nth-child(2) h3 {
  max-width: 420px;
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

html[data-theme="1"] .purpose-cards article:nth-child(2) p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.7;
}

html[data-theme="1"] .values {
  display: grid;
  margin-top: clamp(1.5rem, 2.5vw, 2.5rem);
  padding: clamp(2.5rem, 4vw, 4rem);
  border: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1.55fr);
  align-items: start;
  column-gap: clamp(2rem, 5vw, 5rem);
}

html[data-theme="1"] .values > span {
  color: var(--terracotta);
}

html[data-theme="1"] .values-note {
  display: block;
  max-width: 150px;
  margin: 1rem 0 0;
  color: var(--olive-deep);
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  grid-column: 1;
}

html[data-theme="1"] .values ul {
  display: grid;
  width: 100%;
  counter-reset: concept-one-values;
  grid-column: 2;
  grid-row: 1 / 3;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

html[data-theme="1"] .values li {
  min-width: 0;
  padding: 0 1.1rem;
  border-left: 1px solid rgba(70, 91, 73, 0.18);
  counter-increment: concept-one-values;
}

html[data-theme="1"] .values li::before {
  display: block;
  margin-bottom: 2rem;
  color: var(--terracotta);
  content: "0" counter(concept-one-values);
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
}

html[data-theme="1"] .values li strong {
  display: block;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

html[data-theme="1"] .values li small {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 400;
  line-height: 1.5;
}

html[data-theme="1"] .services {
  padding-block: clamp(8rem, 11vw, 11rem);
  background: #edf1e9;
}

html[data-theme="1"] .services-heading {
  margin-bottom: clamp(4.5rem, 7vw, 6.5rem);
}

html[data-theme="1"] .services-heading h2 {
  max-width: 680px;
  color: var(--olive-deep);
  font-size: clamp(3.2rem, 5.3vw, 5rem);
  line-height: 0.94;
}

html[data-theme="1"] .service-explorer {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(4rem, 7vw, 7rem);
  align-items: start;
}

html[data-theme="1"] .service-feature {
  position: sticky;
  top: 105px;
  display: block;
  overflow: visible;
  min-height: 650px;
  border: 6px solid var(--terracotta);
  border-radius: 32px;
  background: var(--olive-deep);
  box-shadow: 12px 14px 0 var(--olive-deep);
}

html[data-theme="1"] .service-feature::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: 25px;
  background: linear-gradient(180deg, rgba(30, 45, 35, 0.05) 28%, rgba(26, 42, 32, 0.84) 100%);
  content: "";
  pointer-events: none;
}

html[data-theme="1"] .service-feature-image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border-radius: 25px;
  inset: 0;
}

html[data-theme="1"] .service-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) sepia(0.08) contrast(0.95);
  transition: transform 0.65s ease;
}

html[data-theme="1"] .service-feature:hover .service-feature-image img {
  transform: scale(1.035);
}

html[data-theme="1"] .service-feature-meta {
  position: absolute;
  z-index: 3;
  top: 1.25rem;
  right: 1.25rem;
  left: 1.25rem;
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--olive-deep);
  backdrop-filter: blur(12px);
}

html[data-theme="1"] .service-feature-meta span,
html[data-theme="1"] .service-feature-meta strong {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[data-theme="1"] .service-feature-copy {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(2rem, 3.5vw, 3.5rem);
  color: #fff;
}

html[data-theme="1"] .service-feature-copy > span {
  display: block;
  margin-bottom: 1rem;
  color: #f1d9c8;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

html[data-theme="1"] .service-feature-copy h3 {
  max-width: 420px;
  margin-bottom: 1.1rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

html[data-theme="1"] .service-feature-copy p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  line-height: 1.65;
}

html[data-theme="1"] .service-list {
  display: block;
  border-top: 1px solid rgba(70, 91, 73, 0.22);
}

html[data-theme="1"] .service,
html[data-theme="1"] .service:nth-child(3n + 2) {
  min-height: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(70, 91, 73, 0.22);
  border-radius: 0;
  background: transparent;
  transition: background-color 0.3s ease;
}

html[data-theme="1"] .service[open] {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
}

html[data-theme="1"] .service summary {
  min-height: 102px;
  padding: 1.55rem 1rem;
  grid-template-columns: 42px 1fr 44px;
  gap: 1.1rem;
}

html[data-theme="1"] .service summary span {
  color: var(--terracotta);
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
}

html[data-theme="1"] .service summary h3 {
  max-width: 480px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

html[data-theme="1"] .service summary i {
  width: 44px;
  height: 44px;
  background: var(--olive-deep);
  color: #fff;
}

html[data-theme="1"] .service > p {
  max-width: 560px;
  margin: -0.45rem 4.7rem 1.8rem 4.25rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

html[data-theme="1"] .approach {
  padding-block: clamp(8rem, 11vw, 11rem);
  background: #fffdf9;
}

html[data-theme="1"] .approach-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(500px, 1.28fr);
  grid-template-rows: auto auto;
  column-gap: clamp(4rem, 8vw, 8rem);
  row-gap: clamp(4.5rem, 7vw, 7rem);
}

html[data-theme="1"] .approach-shell > .section-heading {
  align-self: center;
  max-width: 410px;
  grid-column: 1;
  grid-row: 1;
}

html[data-theme="1"] .approach-shell > .section-heading h2 {
  color: var(--olive-deep);
  font-size: clamp(3rem, 5vw, 4.8rem);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

html[data-theme="1"] .approach-visual {
  position: relative;
  display: block;
  height: 400px;
  overflow: visible;
  margin: 0;
  border: 6px solid var(--terracotta);
  border-radius: 30px;
  background: var(--sage-soft);
  box-shadow: 11px 13px 0 var(--olive-deep);
  grid-column: 2;
  grid-row: 1;
}

html[data-theme="1"] .approach-visual::after {
  position: absolute;
  inset: 0;
  border-radius: 23px;
  background: linear-gradient(180deg, rgba(23, 41, 30, 0.02) 38%, rgba(30, 46, 35, 0.62) 100%);
  content: "";
}

html[data-theme="1"] .approach-visual img {
  width: 100%;
  height: 100%;
  border-radius: 23px;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.72) sepia(0.05) contrast(0.95);
}

html[data-theme="1"] .approach-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 1.75rem;
  left: 2rem;
  color: #fff;
}

html[data-theme="1"] .approach-visual figcaption span,
html[data-theme="1"] .approach-visual figcaption strong {
  display: block;
}

html[data-theme="1"] .approach-visual figcaption span {
  margin-bottom: 0.25rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html[data-theme="1"] .approach-visual figcaption strong {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 600;
}

html[data-theme="1"] .approach-list {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-column: 1 / -1;
  grid-row: 2;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  gap: 0;
}

html[data-theme="1"] .approach-list::before {
  position: absolute;
  top: 23px;
  right: 10%;
  left: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--sand), var(--sage), var(--olive-deep));
  content: "";
}

html[data-theme="1"] .approach-list li {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 0 clamp(1rem, 2vw, 2rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

html[data-theme="1"] .approach-list li > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 2rem;
  border: 5px solid #fffdf9;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-family: "Outfit", sans-serif;
  place-items: center;
}

html[data-theme="1"] .approach-list li:nth-child(2) > span {
  background: #c8a46f;
}

html[data-theme="1"] .approach-list li:nth-child(3) > span {
  background: var(--sage);
}

html[data-theme="1"] .approach-list li:nth-child(4) > span {
  background: var(--olive-deep);
}

html[data-theme="1"] .approach-list strong {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
}

html[data-theme="1"] .approach-list p {
  max-width: 235px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.6;
}

html[data-theme="1"] .story-result {
  display: flex;
  margin: 0 0 2rem;
  color: var(--terracotta);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-items: center;
  gap: 0.65rem;
}

html[data-theme="1"] .story-result::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

html[data-theme="1"] .story footer {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
}

html[data-theme="1"] .story-monogram {
  display: grid;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--terracotta-soft);
  color: #9b4f35;
  font-size: 0.65rem;
  font-weight: 700;
  place-items: center;
}

html[data-theme="1"] .story-person strong {
  color: var(--ink);
}

html[data-theme="1"] .article-grid article {
  padding-top: 1rem;
  border-top: 1px solid rgba(70, 91, 73, 0.2);
}

html[data-theme="1"] .article-grid article:nth-child(2) .article-photo {
  border-radius: 70px 22px 22px 22px;
}

html[data-theme="1"] .article-grid article:nth-child(3) .article-photo {
  border-radius: 22px 70px 22px 22px;
}

html[data-theme="1"] .article-photo img {
  filter: saturate(0.76) contrast(0.95);
  transition: filter 0.35s ease, transform 0.55s ease;
}

html[data-theme="1"] .article-photo:hover img {
  filter: saturate(1) contrast(1);
}

@media (max-width: 1050px) {
  html[data-theme="1"] .about .section-heading,
  html[data-theme="1"] .about-intro,
  html[data-theme="1"] .about-visual,
  html[data-theme="1"] .about-principles {
    grid-column: 1 / -1;
  }

  html[data-theme="1"] .about .section-heading h2,
  html[data-theme="1"] .about-intro {
    max-width: 700px;
  }

  html[data-theme="1"] .about-visual {
    height: 540px;
  }

  html[data-theme="1"] .about-principles {
    padding-left: 0;
  }

  html[data-theme="1"] .purpose-cards {
    grid-template-columns: 1fr;
  }

  html[data-theme="1"] .purpose-cards article:nth-child(2) {
    min-height: 580px;
  }

  html[data-theme="1"] .values {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }

  html[data-theme="1"] .values-note {
    max-width: 320px;
  }

  html[data-theme="1"] .values ul {
    grid-column: 1;
    grid-row: auto;
  }

  html[data-theme="1"] .service-explorer {
    grid-template-columns: 1fr;
  }

  html[data-theme="1"] .service-feature {
    position: relative;
    top: auto;
    min-height: 590px;
  }

  html[data-theme="1"] .approach-shell {
    grid-template-columns: 1fr;
  }

  html[data-theme="1"] .approach-shell > .section-heading,
  html[data-theme="1"] .approach-visual,
  html[data-theme="1"] .approach-list {
    grid-column: 1;
  }

  html[data-theme="1"] .approach-shell > .section-heading {
    max-width: 650px;
    grid-row: 1;
  }

  html[data-theme="1"] .approach-visual {
    height: 480px;
    grid-row: 2;
  }

  html[data-theme="1"] .approach-list {
    grid-row: 3;
  }
}

@media (max-width: 760px) {
  html[data-theme="1"] .about-visual {
    height: 470px;
  }

  html[data-theme="1"] .about-visual > p {
    right: 16px;
  }

  html[data-theme="1"] .purpose-cards article:first-child {
    display: flex;
    padding-bottom: 2.5rem;
    flex-direction: column;
  }

  html[data-theme="1"] .purpose-cards article:first-child .purpose-image {
    width: 100%;
    min-height: 390px;
  }

  html[data-theme="1"] .purpose-cards article:first-child > span {
    align-self: flex-start;
    margin-top: 2.5rem;
  }

  html[data-theme="1"] .values ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2.5rem;
  }

  html[data-theme="1"] .values li {
    min-height: 135px;
  }

  html[data-theme="1"] .approach-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.5rem 0;
  }

  html[data-theme="1"] .approach-list::before {
    display: none;
  }

  html[data-theme="1"] .approach-list li {
    text-align: left;
  }

  html[data-theme="1"] .approach-list li > span {
    margin-right: 0;
    margin-left: 0;
    border-color: #fffdf9;
  }

  html[data-theme="1"] .approach-list p {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  html[data-theme="1"] .about {
    width: calc(100% - 10px);
    padding-block: 6.5rem;
    border-radius: 30px;
  }

  html[data-theme="1"] .about-shell {
    row-gap: 3.25rem;
  }

  html[data-theme="1"] .about .section-heading h2 {
    font-size: clamp(2.7rem, 13vw, 3.6rem);
  }

  html[data-theme="1"] .about-visual {
    height: 420px;
  }

  html[data-theme="1"] .about-visual > p {
    right: 12px;
    bottom: 18px;
    max-width: 235px;
    padding: 1.2rem 1.3rem;
    border-width: 3px;
    font-size: 0.92rem;
  }

  html[data-theme="1"] .purpose {
    padding-block: 6.5rem;
  }

  html[data-theme="1"] .purpose-shell > .section-heading h2 {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  html[data-theme="1"] .purpose-cards article,
  html[data-theme="1"] .purpose-cards article:nth-child(2) {
    min-height: 520px;
    border-radius: 26px;
  }

  html[data-theme="1"] .purpose-cards article:first-child .purpose-image {
    min-height: 320px;
  }

  html[data-theme="1"] .purpose-cards article:first-child > span,
  html[data-theme="1"] .purpose-cards article:first-child h3,
  html[data-theme="1"] .purpose-cards article:first-child p {
    margin-right: 1.6rem;
    margin-left: 1.6rem;
  }

  html[data-theme="1"] .purpose-cards article:nth-child(2) {
    padding: 2rem 1.6rem;
  }

  html[data-theme="1"] .values {
    padding: 2.25rem 1.4rem;
    border-radius: 24px;
  }

  html[data-theme="1"] .values ul {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  html[data-theme="1"] .values li {
    min-height: 0;
    padding: 1.4rem 0 1.4rem 1rem;
    border-bottom: 1px solid rgba(70, 91, 73, 0.14);
  }

  html[data-theme="1"] .values li::before {
    margin-bottom: 0.75rem;
  }

  html[data-theme="1"] .services {
    padding-block: 6.5rem;
  }

  html[data-theme="1"] .service-explorer {
    gap: 4rem;
  }

  html[data-theme="1"] .service-feature {
    min-height: 570px;
    border-width: 5px;
    border-radius: 26px;
    box-shadow: 8px 10px 0 var(--olive-deep);
  }

  html[data-theme="1"] .service-feature-copy {
    padding: 2rem 1.5rem;
  }

  html[data-theme="1"] .service-feature-copy h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  html[data-theme="1"] .service summary {
    min-height: 96px;
    padding-inline: 0.25rem;
    grid-template-columns: 34px 1fr 40px;
    gap: 0.75rem;
  }

  html[data-theme="1"] .service summary i {
    width: 40px;
    height: 40px;
  }

  html[data-theme="1"] .service > p {
    margin-right: 2.8rem;
    margin-left: 2.15rem;
  }

  html[data-theme="1"] .approach {
    padding-block: 6.5rem;
  }

  html[data-theme="1"] .approach-shell {
    row-gap: 3.5rem;
  }

  html[data-theme="1"] .approach-shell > .section-heading h2 {
    font-size: clamp(2.8rem, 13.5vw, 3.7rem);
  }

  html[data-theme="1"] .approach-visual {
    height: 430px;
    border-width: 5px;
    border-radius: 26px;
    box-shadow: 8px 10px 0 var(--olive-deep);
  }

  html[data-theme="1"] .approach-list {
    padding-left: 1.25rem;
    border-left: 2px solid var(--sage);
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  html[data-theme="1"] .approach-list li {
    padding-left: 1rem;
  }

  html[data-theme="1"] .approach-list li > span {
    margin-bottom: 1.25rem;
  }
}

/* =========================================================
   CONCEPT 01 — shared social-proof system
   ========================================================= */
html[data-theme="1"] .stories {
  overflow: hidden;
  width: auto;
  margin: 0 10px;
  padding-block: clamp(7.5rem, 10vw, 10rem);
  border-radius: 40px;
  background: #e8eee8;
  color: var(--ink);
}

html[data-theme="1"] .stories-shell {
  display: block;
}

html[data-theme="1"] .stories-shell > .section-heading {
  max-width: 830px;
  margin: 0 auto clamp(4.5rem, 7vw, 6.5rem);
  text-align: center;
}

html[data-theme="1"] .stories-shell > .section-heading .eyebrow {
  justify-content: center;
}

html[data-theme="1"] .stories-shell > .section-heading h2,
html[data-theme="1"] .stories h2 {
  max-width: 800px;
  margin-inline: auto;
  color: var(--olive-deep);
  font-family: "Outfit", sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.93;
}

html[data-theme="1"] .stories-intro {
  display: block;
  max-width: 570px;
  margin: 2rem auto 0;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  line-height: 1.7;
}

html[data-theme="1"] .proof-signals {
  display: flex;
  max-width: 660px;
  margin: 2.75rem auto 0;
  padding: 0;
  justify-content: center;
  list-style: none;
}

html[data-theme="1"] .proof-signals li {
  display: grid;
  min-width: 180px;
  padding: 0.4rem 1.75rem;
  border-left: 1px solid rgba(70, 91, 73, 0.2);
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  text-align: left;
}

html[data-theme="1"] .proof-signals li:last-child {
  border-right: 1px solid rgba(70, 91, 73, 0.2);
}

html[data-theme="1"] .proof-signals strong {
  color: var(--terracotta);
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}

html[data-theme="1"] .proof-signals span {
  color: var(--olive-deep);
  font-family: "DM Sans", sans-serif;
  font-size: 0.57rem;
  font-weight: 600;
  line-height: 1.35;
}

html[data-theme="1"] .story-stage {
  position: relative;
  display: grid;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.2vw, 2rem);
}

html[data-theme="1"] .story[hidden] {
  display: none;
}

html[data-theme="1"] .story:not([hidden]) {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 620px;
  padding: clamp(2.5rem, 3.6vw, 3.75rem);
  border: 1px solid rgba(70, 91, 73, 0.1);
  border-radius: 30px;
  background: #fff;
  flex-direction: column;
  animation: concept-two-story-in 0.45s ease both;
}

html[data-theme="1"] .story:nth-of-type(even):not([hidden]) {
  background: #fbf8f2;
}

html[data-theme="1"] .story::before {
  position: absolute;
  top: 1.1rem;
  right: 2rem;
  color: rgba(205, 118, 83, 0.16);
  content: "“";
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

html[data-theme="1"] .story-result {
  position: relative;
  z-index: 1;
  display: flex;
  margin: 0;
  color: var(--olive-deep);
  font-family: "Outfit", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-items: center;
  gap: 0.8rem;
}

html[data-theme="1"] .story-result::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
  flex: 0 0 auto;
}

html[data-theme="1"] .story blockquote {
  position: relative;
  z-index: 1;
  margin: clamp(2.5rem, 4vw, 3.75rem) 0 3rem;
  color: var(--terracotta);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.35rem, 2.15vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.5;
  flex: 1;
}

html[data-theme="1"] .story footer {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: auto;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(27, 27, 27, 0.1);
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 1rem;
}

html[data-theme="1"] .story footer .story-monogram {
  display: grid;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--terracotta-soft);
  color: #8d492f;
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  place-items: center;
}

html[data-theme="1"] .story:nth-of-type(even) footer .story-monogram {
  background: #dce5da;
  color: var(--olive-deep);
}

html[data-theme="1"] .story footer .story-person {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.25rem;
}

html[data-theme="1"] .story footer .story-person strong {
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
}

html[data-theme="1"] .story footer .story-person > span {
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.59rem;
  line-height: 1.5;
}

html[data-theme="1"] .story-controls {
  position: static;
  display: flex;
  margin-top: 2.25rem;
  justify-content: center;
  grid-column: 1 / -1;
  align-items: center;
  gap: 1rem;
}

html[data-theme="1"] .story-controls button {
  width: 50px;
  height: 50px;
  border-color: rgba(70, 91, 73, 0.24);
  background: rgba(255, 255, 255, 0.5);
  color: var(--olive-deep);
  font-size: 1rem;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

html[data-theme="1"] .story-controls button:hover {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-2px);
}

html[data-theme="1"] .story-position {
  display: flex;
  min-width: 108px;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

html[data-theme="1"] .story-controls .story-position > [data-story-count] {
  min-width: 0;
  color: var(--olive-deep);
  font-family: "Outfit", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

html[data-theme="1"] .story-dots {
  display: flex;
  gap: 0.35rem;
}

html[data-theme="1"] .story-dots i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(70, 91, 73, 0.22);
  transition: width 0.25s ease, background-color 0.25s ease;
}

html[data-theme="1"] .story-dots i.is-active {
  width: 18px;
  border-radius: 8px;
  background: var(--terracotta);
}

@media (max-width: 900px) {
  html[data-theme="1"] .stories-shell > .section-heading {
    margin-bottom: 4.5rem;
  }

  html[data-theme="1"] .story-stage {
    max-width: 720px;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }

  html[data-theme="1"] .story:not([hidden]) {
    min-height: 500px;
  }
}

@media (max-width: 620px) {
  html[data-theme="1"] .stories {
    margin-inline: 5px;
    padding-block: 6.5rem;
    border-radius: 28px;
  }

  html[data-theme="1"] .stories-shell > .section-heading h2,
  html[data-theme="1"] .stories h2 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  html[data-theme="1"] .stories-intro {
    max-width: 330px;
    margin-top: 1.65rem;
    font-size: 0.72rem;
  }

  html[data-theme="1"] .proof-signals {
    width: 100%;
    margin-top: 2.25rem;
  }

  html[data-theme="1"] .proof-signals li {
    min-width: 0;
    padding: 0.25rem 0.65rem;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.25rem;
    text-align: center;
    flex: 1;
  }

  html[data-theme="1"] .proof-signals strong {
    font-size: 1.1rem;
  }

  html[data-theme="1"] .proof-signals span {
    font-size: 0.5rem;
  }

  html[data-theme="1"] .story:not([hidden]) {
    min-height: 565px;
    padding: 2rem 1.6rem;
    border-radius: 24px;
  }

  html[data-theme="1"] .story::before {
    top: 0.8rem;
    right: 1.2rem;
    font-size: 6rem;
  }

  html[data-theme="1"] .story blockquote {
    margin: 2.5rem 0 2.25rem;
    font-size: clamp(1.2rem, 5.7vw, 1.45rem);
    line-height: 1.48;
  }

  html[data-theme="1"] .story footer {
    grid-template-columns: 48px 1fr;
  }

  html[data-theme="1"] .story footer .story-monogram {
    width: 48px;
    height: 48px;
  }

  html[data-theme="1"] .story-controls {
    right: auto !important;
    bottom: auto !important;
    left: auto;
  }
}

/* =========================================================
   CONCEPT 03 — Biztop consulting fidelity pass
   ========================================================= */
html[data-theme="3"] {
  --primary: #465b49;
  --accent: #cd7653;
  --surface: #f5f3e9;
  --paper: #fff;
  --line: rgba(70, 91, 73, 0.16);
  --section-space: clamp(7.5rem, 9vw, 9.5rem);
  --shell: min(1180px, calc(100vw - 48px));
}

html[data-theme="3"] body,
html[data-theme="3"] .site-frame {
  background: #fff;
}

html[data-theme="3"] .topbar {
  display: block;
  background: var(--accent);
  color: var(--primary);
}

html[data-theme="3"] .topbar-inner {
  min-height: 36px;
  font-family: "Public Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
}

html[data-theme="3"] .topbar a,
html[data-theme="3"] .topbar span {
  color: var(--primary);
}

html[data-theme="3"] .site-header {
  top: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(70, 91, 73, 0.95);
  color: #fff;
  backdrop-filter: blur(14px);
}

html[data-theme="3"] .site-header.is-scrolled {
  position: fixed;
  top: 0;
  background: rgba(70, 91, 73, 0.97);
  box-shadow: 0 10px 30px rgba(3, 40, 35, 0.14);
}

html[data-theme="3"] .header-inner {
  min-height: 78px;
}

html[data-theme="3"] .brand {
  width: 150px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

html[data-theme="3"] .brand img {
  filter: brightness(0) invert(1);
}

html[data-theme="3"] .site-nav a {
  color: rgba(255, 255, 255, 0.84);
  font-family: "Public Sans", sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
}

html[data-theme="3"] .site-nav a:hover {
  color: var(--accent);
}

html[data-theme="3"] .header-cta {
  min-height: 46px;
  border: 0;
  background: var(--accent);
  color: var(--primary);
}

html[data-theme="3"] .header-cta i {
  background: var(--primary);
  color: #fff;
}

html[data-theme="3"] .hero {
  min-height: 735px;
  padding-top: 36px;
  background: var(--primary);
  color: #fff;
}

html[data-theme="3"] .hero-shell {
  display: grid;
  width: 100%;
  min-height: 735px;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.98fr);
}

html[data-theme="3"] .hero-copy {
  position: relative;
  z-index: 2;
  padding: 11rem max(3rem, calc((100vw - min(1180px, calc(100vw - 48px))) / 2)) 6rem;
}

html[data-theme="3"] .hero .eyebrow {
  display: inline-flex;
  width: max-content;
  margin-bottom: 1.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(205, 118, 83, 0.38);
  border-radius: 999px;
  background: rgba(205, 118, 83, 0.1);
  color: var(--accent);
  letter-spacing: 0.08em;
}

html[data-theme="3"] .hero .eyebrow::before {
  background: var(--accent);
}

html[data-theme="3"] .hero h1 {
  max-width: 720px;
  margin-bottom: 1.75rem;
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: clamp(3.8rem, 5.7vw, 5.7rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-transform: uppercase;
}

html[data-theme="3"] .hero h1 span:last-child {
  color: var(--accent);
}

html[data-theme="3"] .hero-intro {
  max-width: 590px;
  margin-bottom: 2.15rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Public Sans", sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
}

html[data-theme="3"] .hero .button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--primary);
}

html[data-theme="3"] .hero .button-primary i {
  background: var(--primary);
  color: #fff;
}

html[data-theme="3"] .hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.26);
  background: transparent;
  color: #fff;
}

html[data-theme="3"] .hero-media {
  position: relative;
  overflow: hidden;
}

html[data-theme="3"] .hero-media::before {
  position: absolute;
  z-index: 2;
  top: 15%;
  left: 0;
  width: 70px;
  height: 1px;
  background: var(--accent);
  content: "";
}

html[data-theme="3"] .hero-media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(70, 91, 73, 0.72) 0%, rgba(70, 91, 73, 0.08) 30%, rgba(70, 91, 73, 0.03) 100%);
  content: "";
}

html[data-theme="3"] .hero-photo-main {
  position: absolute;
  inset: 0;
}

html[data-theme="3"] .hero-photo-main img {
  object-position: center 24%;
  filter: saturate(0.86) contrast(0.97);
}

html[data-theme="3"] .hero-stamp {
  z-index: 3;
  right: 2.5rem;
  bottom: 2.5rem;
  width: 122px;
  height: 122px;
  border: 5px solid rgba(255, 255, 255, 0.86);
  background: var(--accent);
  color: var(--primary);
}

html[data-theme="3"] .impact {
  padding-block: 0;
  background: #f7f5ec;
  color: var(--primary);
}

html[data-theme="3"] .impact-grid {
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

html[data-theme="3"] .impact article,
html[data-theme="3"] .impact article:nth-child(2) {
  min-height: 150px;
  justify-content: center;
  padding: 2rem 2.25rem;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--primary);
}

html[data-theme="3"] .impact article:nth-child(2) {
  background: rgba(205, 118, 83, 0.24);
}

html[data-theme="3"] .impact strong {
  margin-bottom: 0.65rem;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  letter-spacing: -0.05em;
}

html[data-theme="3"] .impact span {
  color: rgba(70, 91, 73, 0.64);
}

html[data-theme="3"] .about {
  padding-block: clamp(8rem, 10vw, 10rem);
  background: #f7f5ec;
}

html[data-theme="3"] .about-shell {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: clamp(4.5rem, 7vw, 6.5rem);
}

html[data-theme="3"] .about .section-heading {
  align-self: start;
  max-width: 560px;
  grid-column: 1 / 6;
}

html[data-theme="3"] .about .section-heading h2 {
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: clamp(3rem, 4.7vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

html[data-theme="3"] .about-intro {
  align-self: end;
  max-width: 560px;
  padding-top: 0;
  grid-column: 7 / 13;
}

html[data-theme="3"] .about-intro .lead {
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

html[data-theme="3"] .about-intro > p:not(.lead) {
  font-size: 0.72rem;
  line-height: 1.65;
}

html[data-theme="3"] .about-visual {
  display: none;
}

html[data-theme="3"] .about-principles {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

html[data-theme="3"] .principles-heading {
  display: none;
}

html[data-theme="3"] .about-principles article,
html[data-theme="3"] .about-principles article:nth-child(2),
html[data-theme="3"] .about-principles article:nth-child(3) {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 320px;
  padding: clamp(2rem, 3vw, 3rem);
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: var(--primary);
  flex-direction: column;
  transition: transform 0.3s ease;
}

html[data-theme="3"] .about-principles article:nth-of-type(2) {
  background: var(--accent);
}

html[data-theme="3"] .about-principles article:nth-of-type(3) {
  background: var(--primary);
  color: #fff;
}

html[data-theme="3"] .about-principles article::after {
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 170px;
  height: 170px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.1;
}

html[data-theme="3"] .about-principles article:hover {
  transform: translateY(-6px);
}

html[data-theme="3"] .about-principles article > span {
  color: inherit;
  font-family: "Archivo", sans-serif;
  font-size: 0.68rem;
}

html[data-theme="3"] .about-principles article h3 {
  max-width: 250px;
  margin-top: auto;
  margin-bottom: 1rem;
  color: inherit;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

html[data-theme="3"] .about-principles article p,
html[data-theme="3"] .about-principles article:nth-child(3) p {
  max-width: 290px;
  margin: 0;
  color: inherit;
  font-size: 0.68rem;
  line-height: 1.6;
  opacity: 0.72;
}

html[data-theme="3"] .purpose {
  padding-block: clamp(8rem, 10vw, 10rem);
  background: #fff;
}

html[data-theme="3"] .purpose-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(4rem, 7vw, 7rem);
}

html[data-theme="3"] .purpose-shell > .section-heading {
  align-self: start;
  margin: 0;
}

html[data-theme="3"] .purpose-shell > .section-heading h2 {
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

html[data-theme="3"] .purpose-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

html[data-theme="3"] .purpose-cards article,
html[data-theme="3"] .purpose-cards article:nth-child(2) {
  min-height: 390px;
  padding: clamp(2.25rem, 3.5vw, 3.5rem);
  border: 0;
  border-radius: 18px;
  background: #f7f5ec;
  color: var(--primary);
}

html[data-theme="3"] .purpose-cards article:nth-child(2) {
  background: var(--accent);
}

html[data-theme="3"] .purpose-cards article > span {
  margin-bottom: 5rem;
  color: var(--primary);
}

html[data-theme="3"] .purpose-cards h3 {
  margin-bottom: 1.25rem;
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

html[data-theme="3"] .purpose-cards p,
html[data-theme="3"] .purpose-cards article:nth-child(2) p {
  color: rgba(70, 91, 73, 0.68);
  font-size: 0.7rem;
  line-height: 1.65;
}

html[data-theme="3"] .values {
  display: grid;
  margin-top: 0;
  padding: 3rem 0 0;
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: start;
  gap: 2rem;
}

html[data-theme="3"] .values > span {
  color: var(--primary);
}

html[data-theme="3"] .values-note {
  display: block;
  max-width: 160px;
  margin: 0.8rem 0 0;
  color: rgba(70, 91, 73, 0.64);
  font-size: 0.68rem;
  line-height: 1.5;
  grid-column: 1;
}

html[data-theme="3"] .values ul {
  display: grid;
  width: 100%;
  grid-column: 2;
  grid-row: 1 / 3;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

html[data-theme="3"] .values li {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

html[data-theme="3"] .values li strong {
  display: block;
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
}

html[data-theme="3"] .values li small {
  display: block;
  margin-top: 0.65rem;
  color: rgba(70, 91, 73, 0.6);
  font-size: 0.54rem;
  font-weight: 400;
  line-height: 1.45;
}

html[data-theme="3"] .founder {
  padding-block: clamp(8rem, 10vw, 10rem);
  background: #fff;
}

html[data-theme="3"] .founder-shell {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(4rem, 7vw, 7rem);
}

html[data-theme="3"] .founder-photo {
  position: relative;
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  grid-template-rows: 390px 190px;
  gap: 14px;
}

html[data-theme="3"] .founder-photo > img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.78) contrast(0.96);
  grid-column: 1 / -1;
  grid-row: 1;
}

html[data-theme="3"] .founder-photo > div {
  position: static;
  display: flex;
  min-width: 0;
  padding: 1.5rem 1.15rem;
  border-radius: 18px;
  background: var(--accent);
  color: var(--primary);
  justify-content: center;
  grid-column: 1;
  grid-row: 2;
}

html[data-theme="3"] .founder-photo > div strong {
  font-family: "Archivo", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.05em;
}

html[data-theme="3"] .founder-copy h2 {
  max-width: 650px;
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: clamp(3rem, 4.8vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

html[data-theme="3"] .founder-copy h2 span {
  color: #6f8d35;
}

html[data-theme="3"] .founder-copy .lead {
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.35;
}

html[data-theme="3"] .founder-copy .button-outline {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--primary);
}

html[data-theme="3"] .founder-copy .button-outline i {
  background: var(--primary);
  color: #fff;
}

html[data-theme="3"] .services {
  padding-block: clamp(8rem, 10vw, 10rem);
  background: #f7f5ec;
}

html[data-theme="3"] .services-heading {
  margin-bottom: clamp(4.5rem, 7vw, 6.5rem);
}

html[data-theme="3"] .services-heading h2 {
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: clamp(3.1rem, 4.8vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

html[data-theme="3"] .service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

html[data-theme="3"] .service,
html[data-theme="3"] .service:nth-child(2),
html[data-theme="3"] .service:nth-child(3),
html[data-theme="3"] .service:nth-child(6) {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: clamp(1.8rem, 2.6vw, 2.6rem);
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: var(--primary);
  transition: transform 0.3s ease;
}

html[data-theme="3"] .service:nth-child(3n + 2) {
  background: var(--accent);
}

html[data-theme="3"] .service:nth-child(3n) {
  background: var(--primary);
  color: #fff;
}

html[data-theme="3"] .service:nth-child(7) {
  background: #fff;
}

html[data-theme="3"] .service::after {
  position: absolute;
  right: -72px;
  bottom: -72px;
  width: 190px;
  height: 190px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.08;
  pointer-events: none;
}

html[data-theme="3"] .service:hover {
  transform: translateY(-5px);
}

html[data-theme="3"] .service[open] {
  min-height: 340px;
}

html[data-theme="3"] .service summary,
html[data-theme="3"] .service[open] summary {
  position: relative;
  z-index: 1;
  display: grid;
  height: auto;
  min-height: 210px;
  padding: 0;
  grid-template-columns: 1fr 42px;
  grid-template-rows: auto 1fr;
}

html[data-theme="3"] .service summary span {
  color: inherit;
  font-family: "Archivo", sans-serif;
  font-size: 0.65rem;
  grid-column: 1;
}

html[data-theme="3"] .service summary h3 {
  align-self: end;
  max-width: 260px;
  color: inherit;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  grid-column: 1 / -1;
  grid-row: 2;
}

html[data-theme="3"] .service summary i {
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(70, 91, 73, 0.1);
  color: inherit;
  grid-column: 2;
  grid-row: 1;
}

html[data-theme="3"] .service:nth-child(3n) summary i {
  background: var(--accent);
  color: var(--primary);
}

html[data-theme="3"] .service > p,
html[data-theme="3"] .service:nth-child(3) > p {
  position: relative;
  z-index: 1;
  margin: 1.25rem 0 0;
  color: inherit;
  font-size: 0.68rem;
  line-height: 1.6;
  opacity: 0.7;
}

html[data-theme="3"] .approach {
  padding-block: clamp(8rem, 10vw, 10rem);
  background: var(--primary);
  color: #fff;
}

html[data-theme="3"] .approach-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(4rem, 7vw, 7rem);
}

html[data-theme="3"] .approach-shell > .section-heading {
  align-self: center;
}

html[data-theme="3"] .approach-shell > .section-heading .eyebrow,
html[data-theme="3"] .approach-shell > .section-heading h2 {
  color: #fff;
}

html[data-theme="3"] .approach-shell > .section-heading h2 {
  font-family: "Archivo", sans-serif;
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

html[data-theme="3"] .approach-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

html[data-theme="3"] .approach-list li,
html[data-theme="3"] .approach-list li:nth-child(2),
html[data-theme="3"] .approach-list li:nth-child(3),
html[data-theme="3"] .approach-list li:nth-child(4) {
  min-height: 245px;
  padding: 2.25rem;
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: var(--primary);
}

html[data-theme="3"] .approach-list li:nth-child(2) {
  background: var(--accent);
}

html[data-theme="3"] .approach-list li:nth-child(3) {
  background: #dce5d8;
}

html[data-theme="3"] .approach-list li:nth-child(4) {
  background: #f4ead8;
}

html[data-theme="3"] .approach-list li > span {
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: 0.65rem;
}

html[data-theme="3"] .approach-list strong {
  margin: 3.5rem 0 0.8rem;
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.045em;
}

html[data-theme="3"] .approach-list p,
html[data-theme="3"] .approach-list li:nth-child(3) p {
  color: rgba(70, 91, 73, 0.65);
  font-size: 0.68rem;
  line-height: 1.6;
}

html[data-theme="3"] .stories {
  padding-block: clamp(8rem, 10vw, 10rem);
  background: #fff;
}

html[data-theme="3"] .stories-shell {
  padding: clamp(3rem, 5vw, 5rem);
  border-radius: 28px;
  background: #f7f5ec;
}

html[data-theme="3"] .stories h2 {
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-weight: 600;
}

html[data-theme="3"] .story-stage {
  border-radius: 18px;
}

html[data-theme="3"] .insights {
  padding-block: clamp(8rem, 10vw, 10rem);
  background: #f7f5ec;
}

html[data-theme="3"] .insights-heading h2 {
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-weight: 600;
}

html[data-theme="3"] .article-grid article {
  padding: 1rem 1rem 2rem;
  border-radius: 18px;
  background: #fff;
}

html[data-theme="3"] .article-grid article:nth-child(2) {
  background: rgba(205, 118, 83, 0.38);
}

html[data-theme="3"] .article-photo {
  height: 250px;
  border-radius: 14px;
}

html[data-theme="3"] .article-photo img {
  filter: saturate(0.78) contrast(0.96);
}

html[data-theme="3"] .final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(8rem, 11vw, 10rem);
  background: var(--accent);
  color: var(--primary);
}

html[data-theme="3"] .final-cta::after {
  position: absolute;
  right: -170px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(70, 91, 73, 0.16);
  border-radius: 50%;
  content: "";
}

html[data-theme="3"] .final-cta h2 {
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
}

html[data-theme="3"] .final-cta .button-primary {
  background: var(--primary);
  color: #fff;
}

html[data-theme="3"] .site-footer {
  background: #082f2b;
}

@media (max-width: 1050px) {
  html[data-theme="3"] .hero-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  }

  html[data-theme="3"] .hero h1 {
    font-size: clamp(3.4rem, 5.7vw, 4.7rem);
  }

  html[data-theme="3"] .about-principles,
  html[data-theme="3"] .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[data-theme="3"] .about-principles article:nth-of-type(3) {
    grid-column: 1 / -1;
  }

  html[data-theme="3"] .purpose-shell,
  html[data-theme="3"] .approach-shell {
    grid-template-columns: 1fr;
  }

  html[data-theme="3"] .purpose-shell > .section-heading,
  html[data-theme="3"] .approach-shell > .section-heading {
    max-width: 650px;
  }

  html[data-theme="3"] .founder-shell {
    grid-template-columns: 1fr;
  }

  html[data-theme="3"] .founder-photo {
    width: min(100%, 720px);
    margin-inline: auto;
  }
}

@media (max-width: 820px) {
  html[data-theme="3"] .hero {
    min-height: auto;
  }

  html[data-theme="3"] .hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  html[data-theme="3"] .hero-copy {
    min-height: 670px;
    padding: 10rem 24px 5rem;
  }

  html[data-theme="3"] .hero-media {
    height: 560px;
  }

  html[data-theme="3"] .hero-media::after {
    background: linear-gradient(180deg, rgba(70, 91, 73, 0.08), rgba(70, 91, 73, 0.55));
  }

  html[data-theme="3"] .about .section-heading,
  html[data-theme="3"] .about-intro {
    grid-column: 1 / -1;
  }

  html[data-theme="3"] .purpose-cards {
    grid-template-columns: 1fr;
  }

  html[data-theme="3"] .values {
    grid-template-columns: 1fr;
  }

  html[data-theme="3"] .values-note {
    max-width: 300px;
  }

  html[data-theme="3"] .values ul {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  html[data-theme="3"] {
    --shell: calc(100vw - 36px);
  }

  html[data-theme="3"] .topbar-inner > div {
    display: none;
  }

  html[data-theme="3"] .topbar-inner {
    justify-content: center;
  }

  html[data-theme="3"] .site-header {
    top: 36px;
  }

  html[data-theme="3"] .brand {
    width: 125px;
  }

  html[data-theme="3"] .menu-toggle span {
    background: #fff;
  }

  html[data-theme="3"] .hero {
    padding-top: 36px;
  }

  html[data-theme="3"] .hero-copy {
    min-height: 640px;
    padding: 9rem 18px 4.5rem;
  }

  html[data-theme="3"] .hero h1 {
    font-size: clamp(2.35rem, 10.4vw, 2.7rem);
    letter-spacing: -0.05em;
    line-height: 0.98;
  }

  html[data-theme="3"] .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  html[data-theme="3"] .hero-media {
    height: 490px;
  }

  html[data-theme="3"] .hero-stamp {
    right: 1rem;
    bottom: 1rem;
    width: 96px;
    height: 96px;
  }

  html[data-theme="3"] .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[data-theme="3"] .impact article,
  html[data-theme="3"] .impact article:nth-child(2) {
    min-height: 120px;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--line);
  }

  html[data-theme="3"] .about,
  html[data-theme="3"] .purpose,
  html[data-theme="3"] .founder,
  html[data-theme="3"] .services,
  html[data-theme="3"] .approach,
  html[data-theme="3"] .stories,
  html[data-theme="3"] .insights {
    padding-block: 6.5rem;
  }

  html[data-theme="3"] .about .section-heading h2,
  html[data-theme="3"] .purpose-shell > .section-heading h2,
  html[data-theme="3"] .founder-copy h2,
  html[data-theme="3"] .services-heading h2,
  html[data-theme="3"] .approach-shell > .section-heading h2 {
    font-size: clamp(2.7rem, 13vw, 3.65rem);
  }

  html[data-theme="3"] .about-principles,
  html[data-theme="3"] .service-list,
  html[data-theme="3"] .approach-list {
    grid-template-columns: 1fr;
  }

  html[data-theme="3"] .about-principles article:nth-of-type(3) {
    grid-column: auto;
  }

  html[data-theme="3"] .about-principles article,
  html[data-theme="3"] .about-principles article:nth-child(2),
  html[data-theme="3"] .about-principles article:nth-child(3) {
    min-height: 290px;
  }

  html[data-theme="3"] .purpose-cards article,
  html[data-theme="3"] .purpose-cards article:nth-child(2) {
    min-height: 360px;
    padding: 2rem;
  }

  html[data-theme="3"] .values ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2rem;
  }

  html[data-theme="3"] .values li {
    min-height: 90px;
  }

  html[data-theme="3"] .founder-photo {
    grid-template-columns: 120px minmax(0, 1fr);
    grid-template-rows: 380px 165px;
  }

  html[data-theme="3"] .founder-photo > div {
    padding: 1.2rem 0.9rem;
  }

  html[data-theme="3"] .founder-photo > div strong {
    font-size: 1.15rem;
  }

  html[data-theme="3"] .service,
  html[data-theme="3"] .service:nth-child(2),
  html[data-theme="3"] .service:nth-child(3),
  html[data-theme="3"] .service:nth-child(6) {
    min-height: 290px;
    padding: 2rem;
  }

  html[data-theme="3"] .service[open] {
    min-height: 330px;
  }

  html[data-theme="3"] .approach-list li,
  html[data-theme="3"] .approach-list li:nth-child(2),
  html[data-theme="3"] .approach-list li:nth-child(3),
  html[data-theme="3"] .approach-list li:nth-child(4) {
    min-height: 220px;
  }

  html[data-theme="3"] .stories-shell {
    padding: 2rem 1.25rem;
    border-radius: 22px;
  }
}

/* =========================================================
   CONCEPT 03 — intentional card and content-system pass
   ========================================================= */
html[data-theme="3"] .about-principles {
  align-items: stretch;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.15rem;
}

html[data-theme="3"] .about-principles article,
html[data-theme="3"] .about-principles article:nth-child(2),
html[data-theme="3"] .about-principles article:nth-child(3) {
  isolation: isolate;
  min-height: 430px;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(70, 91, 73, 0.06);
}

html[data-theme="3"] .about-principles article::before,
html[data-theme="3"] .about-principles article::after {
  pointer-events: none;
}

html[data-theme="3"] .about-principles article > span,
html[data-theme="3"] .about-principles article h3,
html[data-theme="3"] .about-principles article p {
  position: relative;
  z-index: 3;
}

html[data-theme="3"] .about-principles article > span {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
}

html[data-theme="3"] .about-principles article:nth-of-type(1) {
  justify-content: flex-end;
  background: var(--primary);
  color: #fff;
  grid-column: span 5;
}

html[data-theme="3"] .about-principles article:nth-of-type(1)::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("assets/article-strategy.jpeg") center / cover no-repeat;
  content: "";
  filter: saturate(0.72) contrast(0.98);
  transition: transform 0.55s ease;
}

html[data-theme="3"] .about-principles article:nth-of-type(1)::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(70, 91, 73, 0.12) 8%, rgba(70, 91, 73, 0.35) 42%, rgba(70, 91, 73, 0.95) 100%);
  content: "";
  opacity: 1;
}

html[data-theme="3"] .about-principles article:nth-of-type(1):hover::before {
  transform: scale(1.035);
}

html[data-theme="3"] .about-principles article:nth-of-type(1) > span {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: rgba(70, 91, 73, 0.42);
  backdrop-filter: blur(10px);
}

html[data-theme="3"] .about-principles article:nth-of-type(1) p {
  color: rgba(255, 255, 255, 0.76);
  opacity: 1;
}

html[data-theme="3"] .about-principles article:nth-of-type(2) {
  min-height: 370px;
  align-self: end;
  background:
    radial-gradient(circle at 85% 16%, rgba(255, 255, 255, 0.36) 0 5px, transparent 6px),
    radial-gradient(circle at 85% 16%, transparent 0 55px, rgba(70, 91, 73, 0.12) 56px 57px, transparent 58px),
    var(--accent);
  color: var(--primary);
  grid-column: span 3;
}

html[data-theme="3"] .about-principles article:nth-of-type(2)::before {
  position: absolute;
  right: 1.6rem;
  bottom: -1.7rem;
  color: rgba(70, 91, 73, 0.07);
  content: "02";
  font-family: "Archivo", sans-serif;
  font-size: 9rem;
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 1;
}

html[data-theme="3"] .about-principles article:nth-of-type(2)::after {
  display: none;
}

html[data-theme="3"] .about-principles article:nth-of-type(3) {
  padding-top: 245px;
  background: #fff;
  color: var(--primary);
  grid-column: span 4;
}

html[data-theme="3"] .about-principles article:nth-of-type(3)::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 210px;
  background:
    linear-gradient(180deg, rgba(70, 91, 73, 0.04), rgba(70, 91, 73, 0.28)),
    url("assets/hero-team-large.jpg") center 36% / cover no-repeat;
  content: "";
  filter: saturate(0.76) contrast(0.96);
}

html[data-theme="3"] .about-principles article:nth-of-type(3)::after {
  top: 188px;
  right: 2rem;
  bottom: auto;
  width: 44px;
  height: 44px;
  border: 5px solid #fff;
  background: var(--accent);
  opacity: 1;
}

html[data-theme="3"] .about-principles article:nth-of-type(3) > span {
  position: absolute;
  z-index: 3;
  top: 1.5rem;
  left: 1.5rem;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(70, 91, 73, 0.46);
  color: #fff;
  backdrop-filter: blur(10px);
}

html[data-theme="3"] .about-principles article h3 {
  max-width: 290px;
  font-size: clamp(1.65rem, 2.1vw, 2rem);
}

html[data-theme="3"] .purpose-shell {
  grid-template-columns: minmax(245px, 0.48fr) minmax(0, 1.52fr);
}

html[data-theme="3"] .purpose-cards {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

html[data-theme="3"] .purpose-cards article,
html[data-theme="3"] .purpose-cards article:nth-child(2) {
  position: relative;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
}

html[data-theme="3"] .purpose-image {
  display: block;
  overflow: hidden;
  margin: 0;
}

html[data-theme="3"] .purpose-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html[data-theme="3"] .purpose-cards article:first-child {
  display: grid;
  background: #f7f5ec;
  grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: auto 1fr auto;
}

html[data-theme="3"] .purpose-cards article:first-child .purpose-image {
  position: relative;
  min-height: 420px;
  grid-column: 1;
  grid-row: 1 / 4;
}

html[data-theme="3"] .purpose-cards article:first-child .purpose-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(205, 118, 83, 0.03), rgba(70, 91, 73, 0.34));
  content: "";
}

html[data-theme="3"] .purpose-cards article:first-child .purpose-image img {
  object-position: 42% center;
  filter: saturate(0.72) contrast(0.96);
}

html[data-theme="3"] .purpose-cards article:first-child > span {
  align-self: start;
  margin: 2.7rem 2.7rem 0;
  grid-column: 2;
  grid-row: 1;
}

html[data-theme="3"] .purpose-cards article:first-child h3 {
  align-self: end;
  margin: 0 2.7rem 1.2rem;
  grid-column: 2;
  grid-row: 2;
}

html[data-theme="3"] .purpose-cards article:first-child p {
  margin: 0 2.7rem 2.7rem;
  grid-column: 2;
  grid-row: 3;
}

html[data-theme="3"] .purpose-cards article:nth-child(2) {
  display: flex;
  justify-content: flex-end;
  padding: 3rem;
  background: var(--primary);
  color: #fff;
  flex-direction: column;
}

html[data-theme="3"] .purpose-cards article:nth-child(2) .purpose-image {
  position: absolute;
  inset: 0;
}

html[data-theme="3"] .purpose-cards article:nth-child(2) .purpose-image img {
  object-position: center 38%;
  filter: saturate(0.62) contrast(0.96);
}

html[data-theme="3"] .purpose-cards article:nth-child(2) .purpose-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(70, 91, 73, 0.94) 0%, rgba(70, 91, 73, 0.72) 48%, rgba(70, 91, 73, 0.26) 100%);
  content: "";
}

html[data-theme="3"] .purpose-cards article:nth-child(2) > span,
html[data-theme="3"] .purpose-cards article:nth-child(2) h3,
html[data-theme="3"] .purpose-cards article:nth-child(2) p {
  position: relative;
  z-index: 2;
  max-width: 430px;
  color: #fff;
}

html[data-theme="3"] .purpose-cards article:nth-child(2) > span {
  position: absolute;
  top: 2.5rem;
  left: 3rem;
  margin: 0;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--accent);
}

html[data-theme="3"] .purpose-cards article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.74);
}

html[data-theme="3"] .purpose-cards article > span {
  width: max-content;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

html[data-theme="3"] .purpose-cards h3 {
  font-size: clamp(2rem, 3vw, 3.15rem);
}

html[data-theme="3"] .service-explorer {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(380px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(3rem, 6vw, 6.5rem);
}

html[data-theme="3"] .service-feature {
  position: sticky;
  top: 105px;
  display: flex;
  min-height: 690px;
  justify-content: space-between;
  flex-direction: column;
  padding: 1.35rem;
  overflow: hidden;
  border-radius: 28px;
  background: var(--primary);
}

html[data-theme="3"] .service-feature::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(70, 91, 73, 0.08) 12%, rgba(70, 91, 73, 0.2) 44%, rgba(70, 91, 73, 0.88) 100%);
  content: "";
}

html[data-theme="3"] .service-feature::after {
  position: absolute;
  z-index: 2;
  top: 6.5rem;
  right: -3rem;
  width: 190px;
  height: 260px;
  border: 1px solid rgba(205, 118, 83, 0.58);
  border-radius: 50%;
  content: "";
  transform: rotate(28deg);
}

html[data-theme="3"] .service-feature-image {
  position: absolute;
  inset: 0;
  margin: 0;
}

html[data-theme="3"] .service-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.98);
}

html[data-theme="3"] .service-feature-meta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
  font-family: "Public Sans", sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[data-theme="3"] .service-feature-meta span,
html[data-theme="3"] .service-feature-meta strong {
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(70, 91, 73, 0.25);
  backdrop-filter: blur(12px);
}

html[data-theme="3"] .service-feature-meta strong {
  margin-left: auto;
}

html[data-theme="3"] .service-feature-copy {
  position: relative;
  z-index: 4;
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: 22px;
  background: rgba(247, 245, 236, 0.94);
  color: var(--primary);
  backdrop-filter: blur(16px);
}

html[data-theme="3"] .service-feature-copy > span {
  display: block;
  margin-bottom: 1.15rem;
  color: #768e73;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[data-theme="3"] .service-feature-copy h3 {
  max-width: 430px;
  margin-bottom: 1.15rem;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

html[data-theme="3"] .service-feature-copy p {
  max-width: 430px;
  margin: 0;
  color: rgba(70, 91, 73, 0.68);
  font-size: 0.72rem;
  line-height: 1.65;
}

html[data-theme="3"] .service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

html[data-theme="3"] .service,
html[data-theme="3"] .service:nth-child(2),
html[data-theme="3"] .service:nth-child(3),
html[data-theme="3"] .service:nth-child(6),
html[data-theme="3"] .service:nth-child(3n + 2),
html[data-theme="3"] .service:nth-child(3n),
html[data-theme="3"] .service:nth-child(7),
html[data-theme="3"] .service[open] {
  min-height: 0;
  padding: 0 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--primary);
  box-shadow: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

html[data-theme="3"] .service::after {
  display: none;
}

html[data-theme="3"] .service:hover {
  border-color: rgba(70, 91, 73, 0.28);
  transform: translateX(5px);
}

html[data-theme="3"] .service[open] {
  border-color: var(--accent);
  background: var(--accent);
  transform: none;
}

html[data-theme="3"] .service summary,
html[data-theme="3"] .service[open] summary {
  display: grid;
  min-height: 92px;
  align-items: center;
  padding: 1.15rem 0;
  grid-template-columns: 44px minmax(0, 1fr) 42px;
  grid-template-rows: auto;
  gap: 1rem;
}

html[data-theme="3"] .service summary span {
  color: #768e73;
  grid-column: 1;
  grid-row: 1;
}

html[data-theme="3"] .service summary h3 {
  align-self: center;
  max-width: none;
  margin: 0;
  font-size: clamp(1rem, 1.55vw, 1.3rem);
  grid-column: 2;
  grid-row: 1;
}

html[data-theme="3"] .service summary i,
html[data-theme="3"] .service:nth-child(3n) summary i {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(70, 91, 73, 0.15);
  background: transparent;
  color: var(--primary);
  grid-column: 3;
  grid-row: 1;
}

html[data-theme="3"] .service[open] summary i {
  background: var(--primary);
  color: #fff;
}

html[data-theme="3"] .service > p,
html[data-theme="3"] .service:nth-child(3) > p {
  max-width: 470px;
  margin: 0;
  padding: 0 1rem 1.6rem 60px;
  color: rgba(70, 91, 73, 0.7);
  font-size: 0.69rem;
  line-height: 1.65;
  opacity: 1;
}

html[data-theme="3"] .approach-shell {
  align-items: start;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  grid-template-rows: auto auto;
  gap: 2.5rem clamp(4rem, 7vw, 7rem);
}

html[data-theme="3"] .approach-shell > .section-heading {
  align-self: start;
  grid-column: 1;
  grid-row: 1;
}

html[data-theme="3"] .approach-visual {
  position: relative;
  display: block;
  height: 410px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(205, 118, 83, 0.28);
  border-radius: 180px 180px 24px 24px;
  grid-column: 1;
  grid-row: 2;
}

html[data-theme="3"] .approach-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(70, 91, 73, 0.08), rgba(70, 91, 73, 0.7));
  content: "";
}

html[data-theme="3"] .approach-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.68) contrast(0.96);
  transition: transform 0.55s ease;
}

html[data-theme="3"] .approach-visual:hover img {
  transform: scale(1.035);
}

html[data-theme="3"] .approach-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  color: #fff;
}

html[data-theme="3"] .approach-visual figcaption span,
html[data-theme="3"] .approach-visual figcaption strong {
  display: block;
}

html[data-theme="3"] .approach-visual figcaption span {
  margin-bottom: 0.3rem;
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[data-theme="3"] .approach-visual figcaption strong {
  font-family: "Archivo", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

html[data-theme="3"] .approach-list {
  position: relative;
  display: grid;
  padding-left: 0;
  grid-column: 2;
  grid-row: 1 / 3;
  grid-template-columns: 1fr;
  gap: 0;
}

html[data-theme="3"] .approach-list::before {
  position: absolute;
  top: 56px;
  bottom: 56px;
  left: 27px;
  width: 1px;
  background: rgba(205, 118, 83, 0.3);
  content: "";
}

html[data-theme="3"] .approach-list li,
html[data-theme="3"] .approach-list li:nth-child(2),
html[data-theme="3"] .approach-list li:nth-child(3),
html[data-theme="3"] .approach-list li:nth-child(4) {
  position: relative;
  display: grid;
  min-height: 168px;
  align-items: center;
  padding: 2rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  color: #fff;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 1.75rem;
}

html[data-theme="3"] .approach-list li:last-child {
  border-bottom: 0;
}

html[data-theme="3"] .approach-list li > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(205, 118, 83, 0.55);
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  grid-column: 1;
  grid-row: 1 / 3;
  place-items: center;
  transition: background 0.3s ease, color 0.3s ease;
}

html[data-theme="3"] .approach-list li:hover > span,
html[data-theme="3"] .approach-list li:nth-child(2) > span {
  background: var(--accent);
  color: var(--primary);
}

html[data-theme="3"] .approach-list strong {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  grid-column: 2;
  grid-row: 1;
}

html[data-theme="3"] .approach-list p,
html[data-theme="3"] .approach-list li:nth-child(3) p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
  grid-column: 2;
  grid-row: 2;
}

@media (max-width: 1000px) {
  html[data-theme="3"] .about-principles article:nth-of-type(1) {
    grid-column: span 7;
  }

  html[data-theme="3"] .about-principles article:nth-of-type(2) {
    grid-column: span 5;
  }

  html[data-theme="3"] .about-principles article:nth-of-type(3) {
    grid-column: 1 / -1;
  }

  html[data-theme="3"] .service-explorer {
    grid-template-columns: 1fr;
  }

  html[data-theme="3"] .service-feature {
    position: relative;
    top: auto;
    min-height: 620px;
  }
}

@media (max-width: 820px) {
  html[data-theme="3"] .purpose-shell,
  html[data-theme="3"] .approach-shell {
    grid-template-columns: 1fr;
  }

  html[data-theme="3"] .approach-shell > .section-heading,
  html[data-theme="3"] .approach-visual,
  html[data-theme="3"] .approach-list {
    grid-column: 1;
    grid-row: auto;
  }

  html[data-theme="3"] .approach-visual {
    width: min(100%, 540px);
  }
}

@media (max-width: 620px) {
  html[data-theme="3"] .about-principles {
    grid-template-columns: 1fr;
  }

  html[data-theme="3"] .about-principles article:nth-of-type(1),
  html[data-theme="3"] .about-principles article:nth-of-type(2),
  html[data-theme="3"] .about-principles article:nth-of-type(3) {
    min-height: 390px;
    grid-column: 1;
  }

  html[data-theme="3"] .about-principles article:nth-of-type(2) {
    min-height: 330px;
  }

  html[data-theme="3"] .about-principles article:nth-of-type(3) {
    min-height: 430px;
    padding-top: 245px;
  }

  html[data-theme="3"] .purpose-cards article:first-child {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto auto auto;
  }

  html[data-theme="3"] .purpose-cards article:first-child .purpose-image {
    min-height: 280px;
    grid-column: 1;
    grid-row: 1;
  }

  html[data-theme="3"] .purpose-cards article:first-child > span {
    margin: 2rem 2rem 0;
    grid-column: 1;
    grid-row: 2;
  }

  html[data-theme="3"] .purpose-cards article:first-child h3 {
    margin: 2rem 2rem 1rem;
    grid-column: 1;
    grid-row: 3;
  }

  html[data-theme="3"] .purpose-cards article:first-child p {
    margin: 0 2rem 2.2rem;
    grid-column: 1;
    grid-row: 4;
  }

  html[data-theme="3"] .purpose-cards article:nth-child(2) {
    min-height: 520px;
    padding: 2rem;
  }

  html[data-theme="3"] .purpose-cards article:nth-child(2) > span {
    top: 2rem;
    left: 2rem;
  }

  html[data-theme="3"] .purpose-cards article:nth-child(2) .purpose-image::after {
    background: linear-gradient(180deg, rgba(70, 91, 73, 0.18) 5%, rgba(70, 91, 73, 0.9) 76%, var(--primary) 100%);
  }

  html[data-theme="3"] .service-feature {
    min-height: 560px;
    padding: 1rem;
  }

  html[data-theme="3"] .service-feature-copy {
    padding: 1.75rem 1.4rem;
  }

  html[data-theme="3"] .service-feature-copy h3 {
    font-size: clamp(1.9rem, 10vw, 2.55rem);
  }

  html[data-theme="3"] .service,
  html[data-theme="3"] .service:nth-child(2),
  html[data-theme="3"] .service:nth-child(3),
  html[data-theme="3"] .service:nth-child(6),
  html[data-theme="3"] .service:nth-child(3n + 2),
  html[data-theme="3"] .service:nth-child(3n),
  html[data-theme="3"] .service:nth-child(7),
  html[data-theme="3"] .service[open] {
    padding-inline: 1rem;
  }

  html[data-theme="3"] .service summary,
  html[data-theme="3"] .service[open] summary {
    min-height: 84px;
    grid-template-columns: 34px minmax(0, 1fr) 38px;
    gap: 0.65rem;
  }

  html[data-theme="3"] .service > p,
  html[data-theme="3"] .service:nth-child(3) > p {
    padding: 0 0 1.4rem 44px;
  }

  html[data-theme="3"] .approach-visual {
    height: 390px;
    border-radius: 150px 150px 20px 20px;
  }

  html[data-theme="3"] .approach-list li,
  html[data-theme="3"] .approach-list li:nth-child(2),
  html[data-theme="3"] .approach-list li:nth-child(3),
  html[data-theme="3"] .approach-list li:nth-child(4) {
    min-height: 156px;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 1.25rem;
  }

  html[data-theme="3"] .approach-list::before {
    left: 23px;
  }

  html[data-theme="3"] .approach-list li > span {
    width: 48px;
    height: 48px;
  }
}

/* =========================================================
   CONCEPT 03 — values and social-proof hierarchy
   ========================================================= */
html[data-theme="3"] .values {
  position: relative;
  display: grid;
  overflow: hidden;
  margin-top: 2.5rem;
  padding: clamp(2.25rem, 4vw, 3.5rem);
  border: 0;
  border-radius: 26px;
  background: #e7eee2;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: end;
  gap: 1.25rem 2.5rem;
}

html[data-theme="3"] .values::after {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(70, 91, 73, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

html[data-theme="3"] .values > span {
  position: relative;
  z-index: 1;
  color: #768e73;
  font-family: "Public Sans", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

html[data-theme="3"] .values-note {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 520px;
  margin: 0;
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
  grid-column: 2;
  grid-row: 1;
}

html[data-theme="3"] .values ul {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(70, 91, 73, 0.15);
  counter-reset: concept-three-values;
  grid-column: 1 / -1;
  grid-row: 2;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

html[data-theme="3"] .values li {
  min-height: 175px;
  padding: 1.7rem 1.25rem 0;
  border-left: 1px solid rgba(70, 91, 73, 0.15);
  counter-increment: concept-three-values;
}

html[data-theme="3"] .values li:first-child {
  padding-left: 0;
  border-left: 0;
}

html[data-theme="3"] .values li::before {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 2rem;
  border: 1px solid rgba(70, 91, 73, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: #768e73;
  content: "0" counter(concept-three-values);
  font-family: "Archivo", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  place-items: center;
}

html[data-theme="3"] .values li:nth-child(3)::before {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--primary);
}

html[data-theme="3"] .values li strong {
  display: block;
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

html[data-theme="3"] .values li small {
  display: block;
  max-width: 165px;
  margin-top: 0.8rem;
  color: rgba(70, 91, 73, 0.66);
  font-family: "Public Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.55;
}

html[data-theme="3"] .stories {
  overflow: hidden;
  padding-block: clamp(8rem, 10vw, 10rem);
  background: #fff;
}

html[data-theme="3"] .stories-shell {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 760px;
  padding: 0;
  border: 1px solid rgba(70, 91, 73, 0.1);
  border-radius: 34px;
  background: #e7eee2;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
}

html[data-theme="3"] .stories-shell > .section-heading {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 760px;
  padding: clamp(3rem, 5vw, 4.75rem);
  flex-direction: column;
}

html[data-theme="3"] .stories-shell > .section-heading .eyebrow {
  margin-bottom: 1.8rem;
  color: #768e73;
}

html[data-theme="3"] .stories-shell > .section-heading h2,
html[data-theme="3"] .stories h2 {
  max-width: 480px;
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: clamp(3rem, 4.7vw, 4.7rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

html[data-theme="3"] .stories-intro {
  display: block;
  max-width: 440px;
  margin: 1.7rem 0 0;
  color: rgba(70, 91, 73, 0.66);
  font-size: 0.72rem;
  line-height: 1.65;
}

html[data-theme="3"] .proof-signals {
  display: grid;
  margin: 2.25rem 0 2.75rem;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

html[data-theme="3"] .proof-signals li {
  padding: 0 1.1rem;
  border-left: 1px solid rgba(70, 91, 73, 0.16);
}

html[data-theme="3"] .proof-signals li:first-child {
  padding-left: 0;
  border-left: 0;
}

html[data-theme="3"] .proof-signals strong,
html[data-theme="3"] .proof-signals span {
  display: block;
}

html[data-theme="3"] .proof-signals strong {
  margin-bottom: 0.2rem;
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.05em;
}

html[data-theme="3"] .proof-signals span {
  color: rgba(70, 91, 73, 0.6);
  font-size: 0.54rem;
  line-height: 1.35;
}

html[data-theme="3"] .stories-visual {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 235px;
  margin: auto 0 0;
  border-radius: 120px 20px 20px 20px;
}

html[data-theme="3"] .stories-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(70, 91, 73, 0.03), rgba(70, 91, 73, 0.72));
  content: "";
}

html[data-theme="3"] .stories-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.7) contrast(0.96);
}

html[data-theme="3"] .stories-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 1.8rem;
  bottom: 1.6rem;
  left: 1.8rem;
  color: #fff;
}

html[data-theme="3"] .stories-visual figcaption span,
html[data-theme="3"] .stories-visual figcaption strong {
  display: block;
}

html[data-theme="3"] .stories-visual figcaption span {
  margin-bottom: 0.2rem;
  color: var(--accent);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[data-theme="3"] .stories-visual figcaption strong {
  font-family: "Archivo", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

html[data-theme="3"] .story-stage {
  position: relative;
  display: block;
  min-height: 760px;
  padding: clamp(3rem, 5vw, 5rem);
  border-radius: 0;
  background: #fff;
}

html[data-theme="3"] .story[hidden] {
  display: none;
}

html[data-theme="3"] .story:not([hidden]) {
  position: relative;
  display: flex;
  min-height: 600px;
  flex-direction: column;
  animation: concept-three-story-in 0.4s ease both;
}

html[data-theme="3"] .story:not([hidden])::before {
  position: absolute;
  top: -1.5rem;
  right: 0;
  color: rgba(205, 118, 83, 0.32);
  content: "“";
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
}

html[data-theme="3"] .story-result {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: max-content;
  margin: 0;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(70, 91, 73, 0.14);
  border-radius: 999px;
  color: #768e73;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[data-theme="3"] .story blockquote {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: clamp(2.5rem, 4vw, 4rem) 0 3rem;
  color: var(--terracotta);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.65rem, 2.65vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.24;
  flex: 1;
}

html[data-theme="3"] .story blockquote::before,
html[data-theme="3"] .story blockquote::after {
  content: none;
}

html[data-theme="3"] .story footer {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 520px;
  margin-top: auto;
  padding-top: 1.65rem;
  border-top: 1px solid rgba(70, 91, 73, 0.12);
  flex-direction: initial;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
}

html[data-theme="3"] .story footer .story-monogram {
  display: grid;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  font-family: "Archivo", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  place-items: center;
}

html[data-theme="3"] .story footer .story-avatar {
  width: 54px;
  height: 54px;
  border: 2px solid rgba(70, 91, 73, 0.12);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

html[data-theme="3"] .story footer .story-person strong {
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

html[data-theme="3"] .story footer .story-person > span {
  color: rgba(70, 91, 73, 0.62);
  font-size: 0.58rem;
  line-height: 1.5;
}

html[data-theme="3"] .story-controls {
  position: absolute;
  right: clamp(3rem, 5vw, 5rem);
  bottom: clamp(3rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

html[data-theme="3"] .story-controls button {
  width: 48px;
  height: 48px;
  border-color: rgba(70, 91, 73, 0.18);
  background: #f7f5ec;
  color: var(--primary);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

html[data-theme="3"] .story-controls button:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

html[data-theme="3"] .story-position {
  min-width: 76px;
  gap: 0.5rem;
}

html[data-theme="3"] .story-controls .story-position > [data-story-count] {
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
}

html[data-theme="3"] .story-dots {
  display: flex;
  gap: 0.3rem;
}

html[data-theme="3"] .story-dots i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(70, 91, 73, 0.18);
  transition: width 0.25s ease, background 0.25s ease;
}

html[data-theme="3"] .story-dots i.is-active {
  width: 16px;
  border-radius: 8px;
  background: #768e73;
}

@keyframes concept-three-story-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  html[data-theme="3"] .values {
    grid-template-columns: 1fr;
  }

  html[data-theme="3"] .values-note {
    grid-column: 1;
    grid-row: auto;
  }

  html[data-theme="3"] .values ul {
    grid-row: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  html[data-theme="3"] .values li:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }

  html[data-theme="3"] .stories-shell {
    max-width: 740px;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }

  html[data-theme="3"] .stories-shell > .section-heading {
    min-height: auto;
  }

  html[data-theme="3"] .stories-visual {
    height: 300px;
    margin-top: 1rem;
  }

  html[data-theme="3"] .story-stage {
    min-height: 650px;
  }

  html[data-theme="3"] .story:not([hidden]) {
    min-height: 500px;
  }
}

@media (max-width: 620px) {
  html[data-theme="3"] .values {
    padding: 2rem 1.35rem;
    border-radius: 22px;
  }

  html[data-theme="3"] .values-note {
    font-size: 1.25rem;
  }

  html[data-theme="3"] .values ul {
    margin-top: 1rem;
    grid-template-columns: 1fr;
  }

  html[data-theme="3"] .values li,
  html[data-theme="3"] .values li:first-child,
  html[data-theme="3"] .values li:nth-child(4) {
    display: grid;
    min-height: 0;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(70, 91, 73, 0.13);
    border-left: 0;
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 0.9rem;
  }

  html[data-theme="3"] .values li:last-child {
    border-bottom: 0;
  }

  html[data-theme="3"] .values li::before {
    width: 34px;
    height: 34px;
    margin: 0;
    grid-column: 1;
    grid-row: 1 / 3;
  }

  html[data-theme="3"] .values li strong,
  html[data-theme="3"] .values li small {
    grid-column: 2;
  }

  html[data-theme="3"] .values li small {
    max-width: none;
    margin-top: 0.35rem;
    font-size: 0.7rem;
  }

  html[data-theme="3"] .values li strong {
    font-size: 1.08rem;
  }

  html[data-theme="3"] .stories {
    padding-block: 6.5rem;
  }

  html[data-theme="3"] .stories-shell {
    border-radius: 24px;
  }

  html[data-theme="3"] .stories-shell > .section-heading {
    padding: 2.4rem 1.4rem 1.4rem;
  }

  html[data-theme="3"] .stories-shell > .section-heading h2,
  html[data-theme="3"] .stories h2 {
    font-size: clamp(2.65rem, 13.5vw, 3.45rem);
  }

  html[data-theme="3"] .proof-signals {
    margin-block: 2rem;
  }

  html[data-theme="3"] .proof-signals li {
    padding-inline: 0.55rem;
  }

  html[data-theme="3"] .proof-signals strong {
    font-size: 1.1rem;
  }

  html[data-theme="3"] .proof-signals span {
    font-size: 0.48rem;
  }

  html[data-theme="3"] .stories-visual {
    height: 245px;
    min-height: 0;
    border-radius: 100px 18px 18px 18px;
  }

  html[data-theme="3"] .story-stage {
    min-height: 640px;
    padding: 2.5rem 1.4rem;
  }

  html[data-theme="3"] .story:not([hidden]) {
    min-height: 520px;
  }

  html[data-theme="3"] .story blockquote {
    margin: 2.5rem 0 2.25rem;
    font-size: clamp(1.35rem, 6.2vw, 1.65rem);
    line-height: 1.32;
  }

  html[data-theme="3"] .story footer {
    padding-bottom: 5.5rem;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  html[data-theme="3"] .story footer .story-monogram {
    width: 48px;
    height: 48px;
  }

  html[data-theme="3"] .story footer .story-avatar {
    width: 48px;
    height: 48px;
  }

  html[data-theme="3"] .story-controls {
    right: 1.4rem;
    bottom: 2.5rem;
    left: 1.4rem;
    justify-content: space-between;
  }
}

/* =========================================================
   CONCEPT 03 — full-bleed gradient hero
   ========================================================= */
html[data-theme="3"] .site-header {
  position: absolute;
  top: 36px;
  right: 0;
  left: 0;
  background: #465b49;
  backdrop-filter: blur(12px);
}

html[data-theme="3"] .hero {
  position: relative;
  min-height: 760px;
  padding: 0;
  overflow: hidden;
  background: var(--primary);
}

html[data-theme="3"] .hero-shell {
  position: relative;
  display: block;
  width: 100%;
  min-height: 760px;
}

html[data-theme="3"] .hero-copy {
  position: relative;
  z-index: 4;
  width: var(--shell);
  min-height: 760px;
  margin-inline: auto;
  padding: 12.5rem 0 5.5rem;
}

html[data-theme="3"] .hero .eyebrow {
  display: none;
}

html[data-theme="3"] .hero h1 {
  max-width: 700px;
  font-size: clamp(3.75rem, 5.65vw, 5.55rem);
  text-shadow: 0 2px 18px rgba(3, 35, 31, 0.12);
}

html[data-theme="3"] .hero-intro {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
}

html[data-theme="3"] .hero-media {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 24%;
  overflow: hidden;
}

html[data-theme="3"] .hero-media::before {
  display: none;
}

html[data-theme="3"] .hero-media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, var(--primary) 0%, rgba(70, 91, 73, 0.96) 18%, rgba(70, 91, 73, 0.78) 38%, rgba(70, 91, 73, 0.25) 70%, rgba(70, 91, 73, 0.08) 100%),
    linear-gradient(180deg, rgba(70, 91, 73, 0.3) 0%, transparent 34%, rgba(70, 91, 73, 0.15) 100%);
  content: "";
}

html[data-theme="3"] .hero-photo-main {
  position: absolute;
  inset: 0;
}

html[data-theme="3"] .hero-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.82) contrast(0.98);
}

html[data-theme="3"] .hero-stamp,
html[data-theme="3"] .impact {
  display: none;
}

@media (max-width: 1050px) {
  html[data-theme="3"] .hero h1 {
    max-width: 620px;
    font-size: clamp(3.35rem, 6.7vw, 4.55rem);
  }

  html[data-theme="3"] .hero-media {
    left: 12%;
  }
}

@media (max-width: 820px) {
  html[data-theme="3"] .hero,
  html[data-theme="3"] .hero-shell,
  html[data-theme="3"] .hero-copy {
    min-height: 760px;
  }

  html[data-theme="3"] .hero-copy {
    width: var(--shell);
    padding: 11rem 0 5rem;
  }

  html[data-theme="3"] .hero-media {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
  }

  html[data-theme="3"] .hero-media::after {
    background:
      linear-gradient(90deg, rgba(70, 91, 73, 0.98) 0%, rgba(70, 91, 73, 0.89) 46%, rgba(70, 91, 73, 0.44) 100%),
      linear-gradient(180deg, rgba(70, 91, 73, 0.32) 0%, transparent 38%, rgba(70, 91, 73, 0.35) 100%);
  }

  html[data-theme="3"] .hero-photo-main img {
    object-position: 66% center;
  }
}

@media (max-width: 620px) {
  html[data-theme="3"] .hero,
  html[data-theme="3"] .hero-shell,
  html[data-theme="3"] .hero-copy {
    min-height: 720px;
  }

  html[data-theme="3"] .hero-copy {
    padding: 10rem 0 4.5rem;
  }

  html[data-theme="3"] .hero h1 {
    max-width: 340px;
    font-size: clamp(2.35rem, 10.4vw, 2.7rem);
  }

  html[data-theme="3"] .hero-intro {
    max-width: 330px;
    color: rgba(255, 255, 255, 0.82);
  }

  html[data-theme="3"] .hero-actions {
    width: min(100%, 250px);
  }

  html[data-theme="3"] .hero-media::after {
    background:
      linear-gradient(90deg, rgba(70, 91, 73, 0.94) 0%, rgba(70, 91, 73, 0.8) 64%, rgba(70, 91, 73, 0.5) 100%),
      linear-gradient(180deg, rgba(70, 91, 73, 0.54) 0%, rgba(70, 91, 73, 0.5) 40%, rgba(70, 91, 73, 0.94) 100%);
  }

  html[data-theme="3"] .hero-photo-main img {
    object-position: 69% center;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ================================================================
   CONCEPT 03 — selected process layout
   Concept 02's editorial composition, translated into Concept 03's
   forest-and-lime visual system.
   ================================================================ */

html[data-theme="3"] .approach {
  padding-block: clamp(7rem, 10vw, 10rem);
  background: #fff;
  color: var(--primary);
}

html[data-theme="3"] .approach-shell {
  position: relative;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  padding: clamp(3.5rem, 5.5vw, 5.75rem);
  border-radius: 40px;
  background: #e1eadc;
  color: var(--primary);
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(4.5rem, 8vw, 8rem);
  row-gap: clamp(3.5rem, 5vw, 5rem);
}

html[data-theme="3"] .approach-shell::before {
  position: absolute;
  right: -145px;
  bottom: -235px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(70, 91, 73, 0.13);
  border-radius: 50%;
  content: "";
}

html[data-theme="3"] .approach-shell::after {
  position: absolute;
  bottom: 46px;
  left: 43%;
  width: 110px;
  height: 55px;
  border: 1px solid rgba(100, 131, 51, 0.18);
  border-bottom: 0;
  border-radius: 110px 110px 0 0;
  content: "";
  transform: rotate(-25deg);
}

html[data-theme="3"] .approach-shell > .section-heading {
  position: relative;
  z-index: 2;
  align-self: start;
  max-width: 410px;
  grid-column: 1;
  grid-row: 1;
}

html[data-theme="3"] .approach-shell > .section-heading .eyebrow {
  color: #768e73;
}

html[data-theme="3"] .approach-shell > .section-heading h2 {
  max-width: 395px;
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.75rem, 4.3vw, 4.65rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

html[data-theme="3"] .approach-visual {
  position: relative;
  z-index: 2;
  display: block;
  align-self: end;
  min-height: 350px;
  height: auto;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 180px 180px 24px 24px;
  background: #dce5d8;
  grid-column: 1;
  grid-row: 2;
}

html[data-theme="3"] .approach-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(70, 91, 73, 0.02) 34%, rgba(70, 91, 73, 0.82) 100%);
  content: "";
}

html[data-theme="3"] .approach-visual img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.72) contrast(0.94);
  transition: transform 600ms ease;
}

html[data-theme="3"] .approach-visual:hover img {
  transform: scale(1.025);
}

html[data-theme="3"] .approach-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 2.15rem;
  bottom: 2.25rem;
  left: 2.15rem;
  display: grid;
  color: #fff;
  gap: 0.5rem;
}

html[data-theme="3"] .approach-visual figcaption span {
  color: var(--accent);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

html[data-theme="3"] .approach-visual figcaption strong {
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

html[data-theme="3"] .approach-list {
  position: relative;
  z-index: 2;
  display: flex;
  align-self: stretch;
  min-width: 0;
  margin: 0;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  grid-column: 2;
  grid-row: 1 / 3;
}

html[data-theme="3"] .approach-list::before {
  content: none;
}

html[data-theme="3"] .approach-list li,
html[data-theme="3"] .approach-list li:nth-child(2),
html[data-theme="3"] .approach-list li:nth-child(3),
html[data-theme="3"] .approach-list li:nth-child(4) {
  position: relative;
  display: grid;
  min-height: 142px;
  padding: 1.6rem 0;
  border: 0;
  border-top: 1px solid rgba(70, 91, 73, 0.18);
  border-radius: 0;
  background: transparent;
  color: var(--primary);
  grid-template-columns: 54px minmax(120px, 0.72fr) minmax(190px, 1.28fr);
  grid-template-rows: auto;
  align-items: center;
  column-gap: clamp(1rem, 2vw, 2rem);
  box-shadow: none;
  transform: none;
}

html[data-theme="3"] .approach-list li:first-child {
  width: 82%;
  margin-left: 0;
  border-top-color: rgba(205, 118, 83, 0.72);
}

html[data-theme="3"] .approach-list li:nth-child(2) {
  width: 86%;
  margin-left: 5%;
  border-top-color: rgba(185, 150, 77, 0.58);
}

html[data-theme="3"] .approach-list li:nth-child(3) {
  width: 90%;
  margin-left: 10%;
  border-top-color: rgba(100, 131, 51, 0.48);
}

html[data-theme="3"] .approach-list li:nth-child(4) {
  width: 84%;
  margin-left: 16%;
  border-top-color: rgba(70, 91, 73, 0.46);
  border-bottom: 1px solid rgba(70, 91, 73, 0.18);
}

html[data-theme="3"] .approach-list li::after {
  position: absolute;
  right: 0.4rem;
  width: 28px;
  height: 13px;
  border: 1px solid currentColor;
  border-radius: 100% 0 100% 0;
  color: var(--primary);
  content: "";
  opacity: 0.17;
  transform: rotate(-18deg);
}

html[data-theme="3"] .approach-list li > span {
  position: static;
  display: inline-grid;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  place-items: center;
  color: var(--primary);
  background: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: none;
  transform: none;
}

html[data-theme="3"] .approach-list li:nth-child(2) > span {
  color: var(--primary);
  background: rgba(205, 118, 83, 0.44);
}

html[data-theme="3"] .approach-list li:nth-child(3) > span {
  color: var(--primary);
  background: #f4ecdf;
}

html[data-theme="3"] .approach-list li:nth-child(4) > span {
  color: var(--accent);
  background: var(--primary);
}

html[data-theme="3"] .approach-list li:hover > span {
  color: var(--primary);
  background: var(--accent);
  transform: translateY(-2px);
}

html[data-theme="3"] .approach-list strong {
  align-self: center;
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
  grid-column: 2;
  grid-row: 1;
}

html[data-theme="3"] .approach-list p,
html[data-theme="3"] .approach-list li:nth-child(3) p {
  align-self: center;
  max-width: 300px;
  margin: 0;
  color: rgba(70, 91, 73, 0.67);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.71rem;
  line-height: 1.65;
  grid-column: 3;
  grid-row: 1;
}

@media (max-width: 1080px) {
  html[data-theme="3"] .approach-shell {
    padding: clamp(3rem, 5vw, 4.5rem);
    grid-template-columns: minmax(270px, 0.78fr) minmax(410px, 1.22fr);
    column-gap: clamp(3rem, 5vw, 5rem);
  }

  html[data-theme="3"] .approach-list li,
  html[data-theme="3"] .approach-list li:nth-child(2),
  html[data-theme="3"] .approach-list li:nth-child(3),
  html[data-theme="3"] .approach-list li:nth-child(4) {
    min-height: 135px;
    grid-template-columns: 50px minmax(0, 1fr);
    grid-template-rows: auto auto;
    row-gap: 0.55rem;
  }

  html[data-theme="3"] .approach-list strong {
    grid-column: 2;
    grid-row: 1;
  }

  html[data-theme="3"] .approach-list p,
  html[data-theme="3"] .approach-list li:nth-child(3) p {
    max-width: 330px;
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 820px) {
  html[data-theme="3"] .approach {
    padding-block: clamp(5.5rem, 12vw, 7rem);
  }

  html[data-theme="3"] .approach-shell {
    padding: clamp(2.5rem, 7vw, 4rem);
    border-radius: 32px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 3rem;
  }

  html[data-theme="3"] .approach-shell > .section-heading,
  html[data-theme="3"] .approach-visual,
  html[data-theme="3"] .approach-list {
    width: 100%;
    max-width: none;
    grid-column: 1;
  }

  html[data-theme="3"] .approach-shell > .section-heading {
    grid-row: 1;
  }

  html[data-theme="3"] .approach-visual {
    min-height: 420px;
    border-radius: 220px 220px 24px 24px;
    grid-row: 2;
  }

  html[data-theme="3"] .approach-visual img {
    min-height: 420px;
  }

  html[data-theme="3"] .approach-list {
    grid-row: 3;
  }
}

@media (max-width: 560px) {
  html[data-theme="3"] .approach-shell {
    padding: 2rem 1.3rem 2.35rem;
    border-radius: 26px;
    gap: 2.25rem;
  }

  html[data-theme="3"] .approach-shell > .section-heading h2 {
    font-size: clamp(2.55rem, 13vw, 3.45rem);
  }

  html[data-theme="3"] .approach-visual,
  html[data-theme="3"] .approach-visual img {
    min-height: 340px;
  }

  html[data-theme="3"] .approach-visual {
    border-radius: 170px 170px 20px 20px;
  }

  html[data-theme="3"] .approach-visual figcaption {
    right: 1.5rem;
    bottom: 1.7rem;
    left: 1.5rem;
  }

  html[data-theme="3"] .approach-list li,
  html[data-theme="3"] .approach-list li:first-child,
  html[data-theme="3"] .approach-list li:nth-child(2),
  html[data-theme="3"] .approach-list li:nth-child(3),
  html[data-theme="3"] .approach-list li:nth-child(4) {
    width: 100%;
    min-height: 0;
    margin-left: 0;
    padding: 1.55rem 0;
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 0.9rem;
  }

  html[data-theme="3"] .approach-list li::after {
    display: none;
  }

  html[data-theme="3"] .approach-list li > span {
    width: 38px;
    height: 38px;
  }

  html[data-theme="3"] .approach-list strong {
    font-size: 1.35rem;
  }

  html[data-theme="3"] .approach-list p,
  html[data-theme="3"] .approach-list li:nth-child(3) p {
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html[data-theme="3"] .approach-visual img,
  html[data-theme="3"] .approach-list li > span {
    transition: none;
  }
}

/* ================================================================
   CONCEPT 03 — stronger brand presence
   A more confident navigation mark and oversized handwritten PI
   signatures across the white Foundation and Founder sections.
   ================================================================ */

html[data-theme="3"] .header-inner {
  min-height: 108px;
}

html[data-theme="3"] .brand {
  width: 205px;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(70, 91, 73, 0.1);
  border-radius: 6px;
  background: #fff;
}

html[data-theme="3"] .brand img {
  filter: none;
}

html[data-theme="3"] .purpose,
html[data-theme="3"] .founder {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

html[data-theme="3"] .purpose::before,
html[data-theme="3"] .founder::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(145vw, 2100px);
  aspect-ratio: 1794 / 756;
  background: url("assets/pi-signature-green.svg") center / contain no-repeat;
  content: "";
  filter: drop-shadow(0 30px 48px rgba(70, 91, 73, 0.18));
  mix-blend-mode: multiply;
  opacity: 0.09;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

html[data-theme="3"] .purpose::before {
  top: 44%;
  left: 51%;
  transform: translate(-50%, -50%) rotate(-5deg);
}

html[data-theme="3"] .founder::before {
  top: 48%;
  left: 49%;
  width: min(135vw, 1950px);
  opacity: 0.075;
  transform: translate(-50%, -50%) rotate(5deg);
}

html[data-theme="3"] .purpose > .shell,
html[data-theme="3"] .founder > .shell {
  position: relative;
  z-index: 1;
}

html[data-theme="3"] .section-signature {
  position: absolute;
  z-index: 0;
  display: block;
  aspect-ratio: 1794 / 756;
  background: url("assets/pi-signature-green.svg") center / contain no-repeat;
  filter: drop-shadow(0 28px 44px rgba(70, 91, 73, 0.15));
  mix-blend-mode: multiply;
  pointer-events: none;
}

html[data-theme="3"] .approach,
html[data-theme="3"] .stories {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

html[data-theme="3"] .approach-shell,
html[data-theme="3"] .stories-shell {
  position: relative;
  z-index: 1;
}

html[data-theme="3"] .approach-signature {
  top: 50%;
  left: 50%;
  width: min(148vw, 2140px);
  opacity: 0.09;
  transform: translate(-50%, -50%) rotate(-5deg);
}

html[data-theme="3"] .stories-signature {
  top: 50%;
  left: 50%;
  width: min(140vw, 2020px);
  opacity: 0.085;
  transform: translate(-50%, -50%) rotate(6deg);
}

@media (max-width: 1120px) {
  html[data-theme="3"] .header-inner {
    min-height: 94px;
  }

  html[data-theme="3"] .brand {
    width: 178px;
  }
}

@media (max-width: 900px) {
  html[data-theme="3"] .header-inner {
    min-height: 88px;
  }

  html[data-theme="3"] .brand {
    width: 160px;
  }

  html[data-theme="3"] .purpose::before {
    width: 185vw;
    opacity: 0.065;
  }

  html[data-theme="3"] .founder::before {
    width: 185vw;
    opacity: 0.055;
  }

  html[data-theme="3"] .approach-signature {
    width: 205vw;
    opacity: 0.07;
  }

  html[data-theme="3"] .stories-signature {
    top: 50%;
    left: 50%;
    width: 195vw;
    opacity: 0.065;
  }
}

@media (max-width: 560px) {
  html[data-theme="3"] .brand {
    width: 148px;
  }

  html[data-theme="3"] .purpose::before {
    width: 235vw;
    opacity: 0.06;
  }

  html[data-theme="3"] .founder::before {
    width: 235vw;
    opacity: 0.05;
  }

  html[data-theme="3"] .approach-signature {
    top: 50%;
    width: 270vw;
    opacity: 0.065;
  }

  html[data-theme="3"] .stories-signature {
    top: 50%;
    width: 260vw;
    opacity: 0.06;
  }
}

/* ================================================================
   CONCEPT 03 — focused founder portrait
   ================================================================ */

html[data-theme="3"] .founder-photo {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(570px, 47vw, 680px);
  overflow: hidden;
  border-radius: 24px;
  background: #171717;
}

html[data-theme="3"] .founder-photo > img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.82) contrast(0.98);
  grid-column: auto;
  grid-row: auto;
}

html[data-theme="3"] .founder-photo > .founder-experience {
  position: absolute;
  right: auto;
  bottom: 1.5rem;
  left: 1.5rem;
  display: grid;
  width: 168px;
  max-width: calc(100% - 3rem);
  min-width: 0;
  padding: 1.15rem 1.2rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px 18px 18px 5px;
  background: rgba(205, 118, 83, 0.92);
  color: var(--primary);
  box-shadow: 0 14px 34px rgba(3, 40, 35, 0.16);
  backdrop-filter: blur(12px);
  gap: 0.55rem;
}

html[data-theme="3"] .founder-photo > .founder-experience strong {
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--primary);
  font-family: "Archivo", sans-serif;
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

html[data-theme="3"] .founder-photo > .founder-experience span {
  max-width: 120px;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(70, 91, 73, 0.25);
  color: var(--primary);
  font-family: "Public Sans", sans-serif;
  font-size: 0.55rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Insights library and article pages */
.insights-library { background: #f7f2e8; }
.insights-library-grid { display: grid; gap: 1.5rem; }
.insight-card { display: grid; overflow: hidden; border: 1px solid rgba(70, 91, 73,.14); border-radius: 24px; background: #fff; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); }
.insight-card:nth-child(2) { background: #ead2c6; }
.insight-card-image { min-height: 390px; overflow: hidden; }
.insight-card-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(.96); transition: transform .45s ease; }
.insight-card:hover .insight-card-image img { transform: scale(1.025); }
.insight-card > div { display: flex; padding: clamp(2rem,5vw,4.5rem); flex-direction: column; justify-content: center; }
.insight-card h2 { max-width: 760px; margin: 1.25rem 0 1rem; color: var(--primary); font-size: clamp(2rem,4vw,4rem); letter-spacing: -.06em; }
.insight-card > div > p:not(.article-meta) { max-width: 650px; color: #637069; }
.insight-card .text-link { align-self: flex-start; margin-top: 1.5rem; }

.article-hero { padding: clamp(11rem,14vw,13rem) 0 clamp(3.5rem,6vw,5.5rem); background: #f7f2e8; color: var(--primary); text-align: center; }
.article-hero-copy { max-width: 960px; }
.article-back { display: inline-block; margin-bottom: clamp(2.5rem,5vw,4rem); color: #6d766f; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.article-back:hover { color: var(--primary); }
.article-kicker { margin-bottom: 1.25rem; color: #cd7653; font-size: .68rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.article-hero h1 { max-width: 940px; margin-inline: auto; font-size: clamp(3rem,5.5vw,5.8rem); font-weight: 650; letter-spacing: -.065em; line-height: 1; }
.article-deck { max-width: 720px; margin: 1.75rem auto 1.35rem; color: #5e6963; font-size: clamp(1.05rem,1.5vw,1.25rem); line-height: 1.65; }
.article-byline { margin: 0; color: #7a837e; font-size: .7rem; }
.article-feature { position: relative; z-index: 2; height: clamp(360px,48vw,620px); overflow: hidden; margin-top: 0; border: 0; border-radius: 20px; background: #e8eee7; box-shadow: 0 18px 50px rgba(70, 91, 73,.08); }
.article-feature img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { display: grid; align-items: start; padding-block: clamp(4.5rem,8vw,8rem); gap: clamp(3rem,6vw,6rem); grid-template-columns: 190px minmax(0,720px); justify-content: center; }
.article-aside { position: sticky; top: 120px; display: grid; padding: 1.35rem; border: 1px solid rgba(70, 91, 73,.13); border-radius: 12px; background: #f8faf7; gap: .8rem; }
.article-aside span { margin-bottom: .5rem; color: #cd7653; font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-aside a { color: #637069; font-size: .7rem; }
.article-aside a:hover { color: var(--primary); }
.article-body { color: #3f4944; font-size: clamp(1rem,1.15vw,1.1rem); line-height: 1.85; }
.article-body > p, .article-body section > p { max-width: 68ch; }
.article-lead { margin-bottom: 3.5rem; color: var(--primary); font-size: clamp(1.25rem,1.9vw,1.65rem); line-height: 1.55; }
.article-body section { padding-block: 3rem; border-top: 1px solid rgba(70, 91, 73,.13); scroll-margin-top: 120px; }
.article-number { color: #cd7653; font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.article-body h2 { margin: .9rem 0 1.3rem; color: var(--primary); font-size: clamp(1.8rem,3vw,2.8rem); letter-spacing: -.045em; }
.article-body blockquote { margin: 2.75rem 0; padding: 2rem 2.25rem; border-left: 4px solid var(--accent); background: #eef4e7; color: var(--primary); font-family: var(--font-heading); font-size: clamp(1.25rem,2vw,1.7rem); line-height: 1.5; }
.article-action { margin-top: 2rem; padding: 1.5rem 1.7rem; border-radius: 12px; background: #f7f2e8; color: #58645e; }
.article-action strong { color: var(--primary); }
.article-source { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(70, 91, 73,.16); color: #77807b; font-size: .72rem; }
.article-source a { color: var(--primary); font-weight: 700; }
.article-next { padding-block: clamp(3.5rem,6vw,5rem); border-block: 1px solid rgba(70, 91, 73,.12); background: #f7f2e8; color: var(--primary); }
.article-next p { font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-next a { display: grid; align-items: center; gap: 1rem; grid-template-columns: 150px minmax(0,1fr) auto; }
.article-next a span { font-size: .75rem; }
.article-next a strong { font-family: var(--font-heading); font-size: clamp(1.7rem,4vw,3.5rem); letter-spacing: -.05em; }
.article-next a i { font-size: 2rem; font-style: normal; }

@media (max-width: 820px) {
  .insight-card { grid-template-columns: 1fr; }
  .insight-card-image { min-height: 320px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; grid-template-columns: repeat(2,1fr); }
  .article-aside span { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .article-hero { padding-top: 10rem; }
  .article-hero h1 { font-size: clamp(2.7rem,12vw,3.8rem); }
  .article-feature { width: calc(100% - 28px); height: 310px; border-width: 6px; border-radius: 20px; }
  .article-next a { grid-template-columns: 1fr auto; }
  .article-next a span { grid-column: 1 / -1; }
}

@media (max-width: 1080px) {
  html[data-theme="3"] .founder-photo {
    width: min(100%, 720px);
    height: clamp(570px, 78vw, 760px);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  html[data-theme="3"] .founder-photo {
    height: 520px;
    border-radius: 20px;
  }

  html[data-theme="3"] .founder-photo > .founder-experience {
    right: auto;
    bottom: 1rem;
    left: 1rem;
    width: 148px;
    max-width: calc(100% - 2rem);
    min-width: 0;
    padding: 1rem;
    border-radius: 16px 16px 16px 5px;
  }

  html[data-theme="3"] .founder-photo > .founder-experience strong {
    width: auto;
    height: auto;
    font-size: 1.85rem;
  }
}

/* Concept 03 — refined mobile navigation */
@media (max-width: 900px) {
  html[data-theme="3"] .site-header {
    z-index: 1000;
    background: var(--primary);
    backdrop-filter: none;
  }

  html[data-theme="3"] .header-inner {
    min-height: 76px;
  }

  html[data-theme="3"] .brand {
    z-index: 1002;
    width: 142px;
    padding: 0.35rem 0.5rem;
  }

  html[data-theme="3"] .menu-toggle {
    z-index: 1003;
    width: 48px;
    height: 48px;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  html[data-theme="3"] .menu-toggle:hover,
  html[data-theme="3"] .menu-toggle[aria-expanded="true"] {
    border-color: var(--accent);
    background: var(--accent);
  }

  html[data-theme="3"] .menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
  }

  html[data-theme="3"] .menu-toggle[aria-expanded="true"] span {
    background: var(--primary);
  }

  html[data-theme="3"] .site-nav {
    z-index: 1001;
    inset: 0;
    justify-content: flex-start;
    gap: 0;
    padding: clamp(9.5rem, 22vh, 12rem) 24px 9.5rem;
    background:
      radial-gradient(circle at 100% 0, rgba(205, 118, 83, 0.13), transparent 34%),
      var(--primary);
    color: #fff;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  html[data-theme="3"] .site-nav::before {
    display: block;
    margin-bottom: 1.35rem;
    color: var(--accent);
    content: "Explore";
    font-family: "Public Sans", sans-serif;
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  html[data-theme="3"] .site-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 62px;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-family: "Archivo", sans-serif;
    font-size: clamp(1.65rem, 7vw, 2.15rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.1;
  }

  html[data-theme="3"] .site-nav a::after {
    position: static;
    width: auto;
    height: auto;
    margin-left: auto;
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    content: "↗";
    font-size: 1rem;
    transform: none;
  }

  html[data-theme="3"] .site-nav a[aria-current="page"] {
    color: var(--accent);
  }

  html[data-theme="3"] .site-nav a[aria-current="page"]::after {
    color: var(--accent);
    content: "●";
    font-size: 0.55rem;
  }

  html[data-theme="3"] .site-nav .nav-payment {
    min-height: 54px;
    margin-top: 1.4rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(205, 118, 83, 0.55);
    border-radius: 999px;
    color: var(--accent);
    font-family: "Public Sans", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0;
  }

  html[data-theme="3"] .site-nav .nav-payment::after {
    display: none;
  }

  html[data-theme="3"] .site-nav .nav-payment span {
    margin-left: auto;
    font-size: 1.1rem;
  }

  html[data-theme="3"] body.menu-open .header-cta {
    position: fixed;
    z-index: 1002;
    right: 24px;
    bottom: max(22px, env(safe-area-inset-bottom));
    left: 24px;
    display: flex;
    width: auto;
    min-height: 58px;
    justify-content: space-between;
    padding: 0.45rem 0.5rem 0.45rem 1.25rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  }

  html[data-theme="3"] body.menu-open .header-cta span {
    display: inline;
  }
}

@media (max-width: 420px) {
  html[data-theme="3"] .topbar {
    display: none;
  }

  html[data-theme="3"] .site-header,
  html[data-theme="3"] .site-header.is-scrolled {
    top: 0;
  }

  html[data-theme="3"] .site-nav {
    padding-top: 7.5rem;
  }

  html[data-theme="3"] .hero {
    padding-top: 0;
  }
}

/* Brand palette — warm ivory navigation */
html[data-theme="3"] .site-header,
html[data-theme="3"] .site-header.is-scrolled {
  background: rgba(247, 245, 236, 0.98);
  color: var(--primary);
  border-bottom-color: rgba(70, 91, 73, 0.14);
  box-shadow: 0 10px 30px rgba(70, 91, 73, 0.08);
}

html[data-theme="3"] .brand {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

html[data-theme="3"] .site-nav a {
  color: var(--primary);
}

html[data-theme="3"] .site-nav a:hover,
html[data-theme="3"] .site-nav a[aria-current="page"],
html[data-theme="3"] .site-nav .nav-payment {
  color: var(--terracotta);
}

@media (max-width: 900px) {
  html[data-theme="3"] .menu-toggle {
    border-color: rgba(70, 91, 73, 0.3);
    background: rgba(70, 91, 73, 0.05);
  }

  html[data-theme="3"] .menu-toggle span {
    background: var(--primary);
  }

  html[data-theme="3"] .menu-toggle:hover,
  html[data-theme="3"] .menu-toggle[aria-expanded="true"] {
    border-color: var(--terracotta);
    background: var(--terracotta);
  }

  html[data-theme="3"] .menu-toggle:hover span,
  html[data-theme="3"] .menu-toggle[aria-expanded="true"] span {
    background: #fff;
  }

  html[data-theme="3"] .site-nav {
    background:
      radial-gradient(circle at 100% 0, rgba(222, 195, 156, 0.28), transparent 38%),
      #f7f5ec;
    color: var(--primary);
  }

  html[data-theme="3"] .site-nav a {
    border-bottom-color: rgba(70, 91, 73, 0.18);
    color: var(--primary);
  }

  html[data-theme="3"] .site-nav a::after {
    color: rgba(70, 91, 73, 0.5);
  }

  html[data-theme="3"] .site-nav a[aria-current="page"],
  html[data-theme="3"] .site-nav a[aria-current="page"]::after {
    color: var(--terracotta);
  }

  html[data-theme="3"] .site-nav .nav-payment {
    border-color: rgba(205, 118, 83, 0.65);
    color: var(--terracotta);
  }
}

/* Final accent system — terracotta replaces soft gold */
html[data-theme="3"] .topbar,
html[data-theme="3"] .topbar a,
html[data-theme="3"] .topbar span {
  color: #1b1b1b;
}

html[data-theme="3"] .header-cta,
html[data-theme="3"] .hero .button-primary {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: #1b1b1b;
}

html[data-theme="3"] .header-cta span,
html[data-theme="3"] .hero .button-primary span {
  color: #1b1b1b;
}

html[data-theme="3"] .header-cta i,
html[data-theme="3"] .hero .button-primary i {
  background: #1b1b1b;
  color: #fff;
}

html[data-theme="3"] .site-nav a:hover,
html[data-theme="3"] .site-nav a[aria-current="page"],
html[data-theme="3"] .site-nav .nav-payment {
  color: #8d492f;
}

html[data-theme="3"] .hero,
html[data-theme="3"] .inner-hero {
  background-color: #2c3c31;
}

html[data-theme="3"] .hero-media::after {
  background:
    linear-gradient(90deg, #2c3c31 0%, rgba(44, 60, 49, 0.96) 18%, rgba(44, 60, 49, 0.78) 38%, rgba(44, 60, 49, 0.25) 70%, rgba(44, 60, 49, 0.08) 100%),
    linear-gradient(180deg, rgba(44, 60, 49, 0.3) 0%, transparent 34%, rgba(44, 60, 49, 0.16) 100%);
}

html[data-theme="3"] .inner-hero {
  background: linear-gradient(135deg, #2c3c31 0%, #465b49 72%, #5f7461 100%);
}

html[data-theme="3"] .founder-photo > .founder-experience {
  background: rgba(205, 118, 83, 0.94);
  color: #1b1b1b;
}

html[data-theme="3"] .founder-photo > .founder-experience strong,
html[data-theme="3"] .founder-photo > .founder-experience span {
  color: #1b1b1b;
}

html[data-theme="3"] .founder-photo > .founder-experience span {
  border-top-color: rgba(27, 27, 27, 0.3);
}

html[data-theme="3"] .contact-note,
html[data-theme="3"] .contact-note strong,
html[data-theme="3"] .contact-note .text-link,
html[data-theme="3"] .contact-note .text-link span {
  color: #1b1b1b;
}

html[data-theme="3"] .contact-note .text-link {
  border-bottom-color: rgba(27, 27, 27, 0.55);
}

html[data-theme="3"] .contact-copy > p,
html[data-theme="3"] .form-consent > span {
  color: #5f6964;
}

@media (max-width: 820px) {
  html[data-theme="3"] .hero-media::after {
    background:
      linear-gradient(90deg, rgba(44, 60, 49, 0.98) 0%, rgba(44, 60, 49, 0.91) 48%, rgba(44, 60, 49, 0.48) 100%),
      linear-gradient(180deg, rgba(44, 60, 49, 0.34) 0%, transparent 38%, rgba(44, 60, 49, 0.38) 100%);
  }
}

@media (max-width: 620px) {
  html[data-theme="3"] .hero-media::after {
    background:
      linear-gradient(90deg, rgba(44, 60, 49, 0.96) 0%, rgba(44, 60, 49, 0.84) 64%, rgba(44, 60, 49, 0.54) 100%),
      linear-gradient(180deg, rgba(44, 60, 49, 0.58) 0%, rgba(44, 60, 49, 0.52) 40%, rgba(44, 60, 49, 0.96) 100%);
  }
}

/* Terracotta actions use a deeper interactive shade with white labels */
html[data-theme="3"] .header-cta,
html[data-theme="3"] .hero .button-primary {
  border-color: #b45d40;
  background: #b45d40;
  color: #fff;
}

html[data-theme="3"] .header-cta span,
html[data-theme="3"] .hero .button-primary span {
  color: #fff;
}

html[data-theme="3"] .header-cta:hover,
html[data-theme="3"] .hero .button-primary:hover {
  border-color: #a64f35;
  background: #a64f35;
}

/* Cohesive brand color system — balanced surfaces, readable type, deliberate accents */
html[data-theme="3"] {
  --brand-ink: #243229;
  --brand-green: #465b49;
  --brand-green-deep: #2c3c31;
  --brand-terracotta: #cd7653;
  --brand-terracotta-action: #a95237;
  --brand-terracotta-hover: #91442e;
  --brand-sage: #dfe7dc;
  --brand-sand: #efe3d1;
  --brand-ivory: #f7f5ec;
  --brand-muted: #5f6964;
}

html[data-theme="3"] body,
html[data-theme="3"] .site-frame {
  color: var(--brand-ink);
  background: var(--brand-ivory);
}

/* The utility strip should support the identity, not compete with the page. */
html[data-theme="3"] .topbar {
  background: var(--brand-sand);
  border-bottom: 1px solid rgba(70, 91, 73, 0.14);
}

html[data-theme="3"] .topbar,
html[data-theme="3"] .topbar a,
html[data-theme="3"] .topbar span {
  color: var(--brand-ink);
}

/* Terracotta is reserved for actions and small moments of emphasis. */
html[data-theme="3"] .header-cta,
html[data-theme="3"] .hero .button-primary,
html[data-theme="3"] .founder-copy .button-outline,
html[data-theme="3"] .contact-form .button-primary,
html[data-theme="3"] .contact-form button[type="submit"] {
  border-color: var(--brand-terracotta-action);
  background: var(--brand-terracotta-action);
  color: #fff;
}

html[data-theme="3"] .header-cta span,
html[data-theme="3"] .hero .button-primary span,
html[data-theme="3"] .founder-copy .button-outline span,
html[data-theme="3"] .contact-form .button-primary span,
html[data-theme="3"] .contact-form button[type="submit"] span {
  color: #fff;
}

html[data-theme="3"] .header-cta:hover,
html[data-theme="3"] .hero .button-primary:hover,
html[data-theme="3"] .founder-copy .button-outline:hover,
html[data-theme="3"] .contact-form .button-primary:hover,
html[data-theme="3"] .contact-form button[type="submit"]:hover {
  border-color: var(--brand-terracotta-hover);
  background: var(--brand-terracotta-hover);
}

html[data-theme="3"] .site-nav a:hover,
html[data-theme="3"] .site-nav a[aria-current="page"],
html[data-theme="3"] .site-nav .nav-payment {
  color: #8d492f;
}

/* Large cards use quiet supporting colors; this keeps text easy to scan. */
html[data-theme="3"] .about-principles article:nth-of-type(2),
html[data-theme="3"] .purpose-cards article:nth-child(2),
html[data-theme="3"] .service:nth-child(3n + 2),
html[data-theme="3"] .approach-list li:nth-child(2),
html[data-theme="3"] .insight-card:nth-child(2) {
  background: var(--brand-sand);
  color: var(--brand-ink);
}

html[data-theme="3"] .service[open] {
  border-color: rgba(70, 91, 73, 0.28);
  background: var(--brand-sage);
  color: var(--brand-ink);
}

html[data-theme="3"] .founder-photo > .founder-experience,
html[data-theme="3"] .founder-photo > div {
  background: rgba(239, 227, 209, 0.96);
  color: var(--brand-ink);
}

html[data-theme="3"] .founder-photo > .founder-experience strong,
html[data-theme="3"] .founder-photo > .founder-experience span {
  color: var(--brand-ink);
}

html[data-theme="3"] .founder-photo > .founder-experience span {
  border-top-color: rgba(36, 50, 41, 0.24);
}

html[data-theme="3"] .contact-note {
  background: var(--brand-sage);
  color: var(--brand-ink);
}

html[data-theme="3"] .contact-note strong,
html[data-theme="3"] .contact-note .text-link,
html[data-theme="3"] .contact-note .text-link span {
  color: var(--brand-green-deep);
}

html[data-theme="3"] .contact-note .text-link {
  border-bottom-color: rgba(44, 60, 49, 0.48);
}

/* End with authority and contrast instead of another oversized accent panel. */
html[data-theme="3"] .final-cta {
  background: var(--brand-green-deep);
  color: #fff;
}

html[data-theme="3"] .final-cta h2,
html[data-theme="3"] .final-cta p,
html[data-theme="3"] .final-cta .eyebrow {
  color: #fff;
}

html[data-theme="3"] .final-cta .button-primary,
html[data-theme="3"] .final-cta .button-outline {
  border-color: var(--brand-terracotta);
  background: var(--brand-terracotta);
  color: var(--brand-ink);
}

html[data-theme="3"] .final-cta .button-primary:hover,
html[data-theme="3"] .final-cta .button-outline:hover {
  border-color: #df8765;
  background: #df8765;
}

html[data-theme="3"] p,
html[data-theme="3"] .contact-copy > p,
html[data-theme="3"] .form-consent > span {
  color: var(--brand-muted);
}

html[data-theme="3"] .hero p,
html[data-theme="3"] .inner-hero p,
html[data-theme="3"] .final-cta p,
html[data-theme="3"] footer p {
  color: rgba(255, 255, 255, 0.78);
}

/* Brighter display accent for legibility over the dark photographic hero. */
html[data-theme="3"] .hero h1 span:last-child {
  color: #e08a68;
}

/* Homepage founder credential and featured process step. */
html[data-theme="3"] .founder-copy h2 span {
  color: var(--brand-terracotta);
}

html[data-theme="3"] .approach-list li:nth-child(2) {
  border-top-color: rgba(169, 82, 55, 0.48);
  background: rgba(205, 118, 83, 0.34);
  color: var(--brand-ink);
}

html[data-theme="3"] .approach-list li:nth-child(2) > span {
  background: var(--brand-terracotta);
  color: var(--brand-green-deep);
}

html[data-theme="3"] .approach-list li:nth-child(2) strong {
  color: var(--brand-green-deep);
}

html[data-theme="3"] .approach-list li:nth-child(2) p {
  color: #59635c;
}

/* Preserve the original sage treatment on the Values panel. */
html[data-theme="3"] .values {
  background: #e7eee2;
  color: var(--brand-ink);
}

html[data-theme="3"] .values::after {
  border-color: rgba(70, 91, 73, 0.1);
}

html[data-theme="3"] .values > span,
html[data-theme="3"] .values li::before {
  color: #768e73;
}

html[data-theme="3"] .values-note,
html[data-theme="3"] .values li strong {
  color: var(--brand-green-deep);
}

html[data-theme="3"] .values ul,
html[data-theme="3"] .values li {
  border-color: rgba(70, 91, 73, 0.15);
}

html[data-theme="3"] .values li small {
  color: rgba(70, 91, 73, 0.66);
}

html[data-theme="3"] .values li::before {
  border-color: rgba(70, 91, 73, 0.16);
  background: rgba(255, 255, 255, 0.62);
}

html[data-theme="3"] .values li:nth-child(3)::before {
  border-color: var(--brand-terracotta);
  background: var(--brand-terracotta);
  color: var(--brand-green-deep);
}

/* Full How We Work panel — softened terracotta with accessible dark typography. */
html[data-theme="3"] .approach-shell {
  background: rgba(205, 118, 83, 0.72);
  color: var(--brand-ink);
}

html[data-theme="3"] .approach-shell::before,
html[data-theme="3"] .approach-shell::after {
  border-color: rgba(44, 60, 49, 0.18);
}

html[data-theme="3"] .approach-shell > .section-heading .eyebrow,
html[data-theme="3"] .approach-shell > .section-heading h2,
html[data-theme="3"] .approach-list strong {
  color: #252923;
}

html[data-theme="3"] .approach-list li,
html[data-theme="3"] .approach-list li:nth-child(2),
html[data-theme="3"] .approach-list li:nth-child(3),
html[data-theme="3"] .approach-list li:nth-child(4) {
  border-color: rgba(44, 60, 49, 0.28);
  background: transparent;
  color: var(--brand-green-deep);
}

html[data-theme="3"] .approach-list li:nth-child(2) {
  border-top-color: rgba(44, 60, 49, 0.35);
  background: rgba(255, 255, 255, 0.26);
}

html[data-theme="3"] .approach-list p,
html[data-theme="3"] .approach-list li:nth-child(2) p,
html[data-theme="3"] .approach-list li:nth-child(3) p {
  color: #41413b;
}

html[data-theme="3"] .approach-list li > span,
html[data-theme="3"] .approach-list li:nth-child(3) > span {
  background: rgba(247, 245, 236, 0.86);
  color: #252923;
}

html[data-theme="3"] .approach-list li:nth-child(2) > span {
  background: #252923;
  color: #fff;
}

html[data-theme="3"] .approach-list li:nth-child(4) > span {
  background: #252923;
  color: #fff;
}

html[data-theme="3"] .approach-list li::after {
  color: #252923;
  opacity: 0.24;
}

/* Deeper terracotta supports warm-ivory typography at accessible contrast. */
html[data-theme="3"] .approach-shell {
  background:
    linear-gradient(125deg, rgba(247, 245, 236, 0.1) 0 31%, transparent 31%),
    rgba(169, 82, 55, 0.9);
  color: var(--brand-ivory);
}

html[data-theme="3"] .approach-shell::before,
html[data-theme="3"] .approach-shell::after {
  border-color: rgba(247, 245, 236, 0.2);
}

html[data-theme="3"] .approach-shell > .section-heading .eyebrow,
html[data-theme="3"] .approach-shell > .section-heading h2,
html[data-theme="3"] .approach-list strong,
html[data-theme="3"] .approach-list p,
html[data-theme="3"] .approach-list li:nth-child(2) p,
html[data-theme="3"] .approach-list li:nth-child(3) p {
  color: var(--brand-ivory);
}

html[data-theme="3"] .approach-list li,
html[data-theme="3"] .approach-list li:nth-child(2),
html[data-theme="3"] .approach-list li:nth-child(3),
html[data-theme="3"] .approach-list li:nth-child(4) {
  border-color: rgba(247, 245, 236, 0.3);
  color: var(--brand-ivory);
}

html[data-theme="3"] .approach-list li:nth-child(2) {
  background: rgba(44, 60, 49, 0.22);
}

html[data-theme="3"] .approach-list li:nth-child(2) strong {
  color: var(--brand-ivory);
}

html[data-theme="3"] .approach-list li > span,
html[data-theme="3"] .approach-list li:nth-child(3) > span {
  background: var(--brand-ivory);
  color: #733522;
}

html[data-theme="3"] .approach-list li:nth-child(2) > span,
html[data-theme="3"] .approach-list li:nth-child(4) > span {
  background: var(--brand-green-deep);
  color: var(--brand-ivory);
}

html[data-theme="3"] .approach-list li::after {
  color: var(--brand-ivory);
  opacity: 0.34;
}

/* Readable type and a contained featured step on the translucent panel. */
html[data-theme="3"] .approach-shell > .section-heading .eyebrow,
html[data-theme="3"] .approach-shell > .section-heading h2,
html[data-theme="3"] .approach-list strong,
html[data-theme="3"] .approach-list li:nth-child(2) strong {
  color: #24241f;
}

html[data-theme="3"] .approach-list p,
html[data-theme="3"] .approach-list li:nth-child(2) p,
html[data-theme="3"] .approach-list li:nth-child(3) p {
  color: #24241f;
}

html[data-theme="3"] .approach-list li,
html[data-theme="3"] .approach-list li:nth-child(3),
html[data-theme="3"] .approach-list li:nth-child(4) {
  border-color: rgba(44, 60, 49, 0.24);
  color: var(--brand-green-deep);
}

html[data-theme="3"] .approach-list li:nth-child(2) {
  width: calc(95% - 1rem);
  min-height: 128px;
  margin: 0.7rem 0 0.7rem 5%;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(44, 60, 49, 0.18);
  border-radius: 18px;
  background: rgba(247, 245, 236, 0.38);
  color: var(--brand-green-deep);
  box-sizing: border-box;
}

html[data-theme="3"] .approach-list li:nth-child(2) > span {
  position: static;
  width: 44px;
  height: 44px;
  margin: 0;
  background: var(--brand-green-deep);
  color: var(--brand-ivory);
  transform: none;
}

html[data-theme="3"] .approach-list li:nth-child(2)::after {
  right: 1.35rem;
  color: var(--brand-green-deep);
  opacity: 0.25;
}

/* Process-card treatment appears only on pointer hover. */
html[data-theme="3"] .approach-list li,
html[data-theme="3"] .approach-list li:nth-child(2),
html[data-theme="3"] .approach-list li:nth-child(3),
html[data-theme="3"] .approach-list li:nth-child(4) {
  min-height: 128px;
  padding: 1.5rem 1.6rem;
  border: 1px solid transparent;
  border-top-color: rgba(44, 60, 49, 0.24);
  border-radius: 18px;
  background: transparent;
  box-sizing: border-box;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

html[data-theme="3"] .approach-list li:nth-child(2) {
  width: 86%;
  margin: 0 0 0 5%;
}

html[data-theme="3"] .approach-list li:nth-child(2) > span {
  background: var(--brand-ivory);
  color: #733522;
}

html[data-theme="3"] .approach-list li:hover {
  border-color: rgba(44, 60, 49, 0.2);
  background: rgba(247, 245, 236, 0.38);
  box-shadow: 0 12px 28px rgba(82, 45, 32, 0.08);
  transform: translateY(-2px);
}

html[data-theme="3"] .approach-list li:hover > span,
html[data-theme="3"] .approach-list li:nth-child(2):hover > span {
  background: var(--brand-green-deep);
  color: var(--brand-ivory);
  transform: none;
}

html[data-theme="3"] .approach-shell > .section-heading h2 {
  color: var(--brand-ivory);
}

html[data-theme="3"] .approach-list p,
html[data-theme="3"] .approach-list li:nth-child(2) p,
html[data-theme="3"] .approach-list li:nth-child(3) p,
html[data-theme="3"] .approach-list li:hover p {
  color: var(--brand-ivory);
}

/* Values badges use terracotta only as a hover response. */
html[data-theme="3"] .values li:nth-child(3)::before {
  border-color: rgba(70, 91, 73, 0.16);
  background: rgba(255, 255, 255, 0.62);
  color: #768e73;
}

html[data-theme="3"] .values li::before {
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

html[data-theme="3"] .values li:hover::before,
html[data-theme="3"] .values li:nth-child(3):hover::before {
  border-color: var(--brand-terracotta);
  background: var(--brand-terracotta);
  color: var(--brand-green-deep);
  transform: translateY(-2px);
}

/* Readability pass — raise undersized supporting type without flattening hierarchy. */
html[data-theme="3"] .topbar-inner {
  font-size: 0.68rem;
}

html[data-theme="3"] .site-nav a {
  font-size: 0.76rem;
}

html[data-theme="3"] .hero-intro {
  font-size: 0.92rem;
}

html[data-theme="3"] .about-intro > p:not(.lead),
html[data-theme="3"] .about-principles article p,
html[data-theme="3"] .purpose-cards p,
html[data-theme="3"] .purpose-cards article:nth-child(2) p {
  font-size: 0.86rem;
  line-height: 1.65;
}

html[data-theme="3"] .about-principles article > span,
html[data-theme="3"] .values > span {
  font-size: 0.72rem;
}

html[data-theme="3"] .values-note {
  font-size: 0.82rem;
}

html[data-theme="3"] .values li small {
  max-width: 190px;
  font-size: 0.82rem;
  line-height: 1.5;
}

html[data-theme="3"] .service-feature-meta,
html[data-theme="3"] .service-feature-meta strong,
html[data-theme="3"] .service-feature-copy > span,
html[data-theme="3"] .service summary span {
  font-size: 0.7rem;
}

html[data-theme="3"] .service-feature-copy p,
html[data-theme="3"] .service > p,
html[data-theme="3"] .service:nth-child(3) > p {
  font-size: 0.86rem;
  line-height: 1.65;
}

html[data-theme="3"] .approach-visual figcaption span,
html[data-theme="3"] .approach-list li > span {
  font-size: 0.72rem;
}

html[data-theme="3"] .approach-list p,
html[data-theme="3"] .approach-list li:nth-child(2) p,
html[data-theme="3"] .approach-list li:nth-child(3) p,
html[data-theme="3"] .approach-list li:hover p {
  font-size: 0.85rem;
  line-height: 1.55;
}

html[data-theme="3"] .stories-intro {
  font-size: 0.88rem;
}

html[data-theme="3"] .proof-signals span,
html[data-theme="3"] .stories-visual figcaption span,
html[data-theme="3"] .story-result,
html[data-theme="3"] .story footer .story-person > span,
html[data-theme="3"] .story-controls .story-position > [data-story-count] {
  font-size: 0.7rem;
}

html[data-theme="3"] .article-back,
html[data-theme="3"] .article-kicker,
html[data-theme="3"] .article-byline,
html[data-theme="3"] .article-meta {
  font-size: 0.78rem;
}

html[data-theme="3"] .form-status,
html[data-theme="3"] .form-consent,
html[data-theme="3"] .contact-details,
html[data-theme="3"] .site-footer {
  font-size: 0.9rem;
}

@media (max-width: 620px) {
  html[data-theme="3"] .site-nav a {
    font-size: 0.92rem;
  }

  html[data-theme="3"] .about-intro > p:not(.lead),
  html[data-theme="3"] .about-principles article p,
  html[data-theme="3"] .purpose-cards p,
  html[data-theme="3"] .values li small,
  html[data-theme="3"] .service-feature-copy p,
  html[data-theme="3"] .service > p,
  html[data-theme="3"] .approach-list p,
  html[data-theme="3"] .approach-list li:nth-child(2) p,
  html[data-theme="3"] .approach-list li:nth-child(3) p {
    font-size: 0.9rem;
  }
}

/* Built together — stronger hierarchy and a more intentional use of space. */
html[data-theme="3"] .about-principles .principle-collaboration {
  min-height: 430px;
  padding: clamp(2.25rem, 3.2vw, 2.85rem);
  border: 1px solid rgba(70, 91, 73, 0.12);
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.5) 0 5px, transparent 6px),
    radial-gradient(circle at 82% 16%, transparent 0 58px, rgba(70, 91, 73, 0.13) 59px 60px, transparent 61px),
    linear-gradient(145deg, #f4eadc 0%, var(--brand-sand) 58%, #e8d8c2 100%);
  box-shadow: 0 28px 70px rgba(70, 91, 73, 0.1);
}

html[data-theme="3"] .about-principles .principle-collaboration > span {
  width: 54px;
  height: 54px;
  border-color: rgba(36, 50, 41, 0.72);
  background: rgba(247, 245, 236, 0.42);
  font-size: 0.82rem;
  font-weight: 700;
}

html[data-theme="3"] .about-principles .principle-collaboration > small {
  position: absolute;
  z-index: 3;
  top: clamp(2.6rem, 3.6vw, 3.15rem);
  right: clamp(2.25rem, 3.2vw, 2.85rem);
  max-width: 110px;
  color: rgba(36, 50, 41, 0.72);
  font-family: "Public Sans", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

html[data-theme="3"] .about-principles .principle-collaboration::before {
  right: 1.2rem;
  bottom: -1.2rem;
  color: rgba(70, 91, 73, 0.075);
  font-size: clamp(9rem, 13vw, 11.5rem);
}

html[data-theme="3"] .about-principles .principle-collaboration::after {
  position: absolute;
  top: 7.75rem;
  bottom: 10.7rem;
  left: calc(clamp(2.25rem, 3.2vw, 2.85rem) + 27px);
  display: block;
  width: 1px;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(70, 91, 73, 0.34), rgba(70, 91, 73, 0.04));
  content: "";
  opacity: 1;
}

html[data-theme="3"] .about-principles .principle-collaboration h3 {
  max-width: 330px;
  margin-bottom: 1.1rem;
  font-size: clamp(2.15rem, 3.1vw, 3.15rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

html[data-theme="3"] .about-principles .principle-collaboration p {
  max-width: 31ch;
  color: rgba(36, 50, 41, 0.76);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.55;
  opacity: 1;
}

html[data-theme="3"] .about-principles .principle-collaboration:hover {
  box-shadow: 0 34px 82px rgba(70, 91, 73, 0.15);
}

@media (max-width: 620px) {
  html[data-theme="3"] .about-principles .principle-collaboration {
    min-height: 390px;
  }

  html[data-theme="3"] .about-principles .principle-collaboration h3 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  html[data-theme="3"] .about-principles .principle-collaboration p {
    font-size: 1rem;
  }
}

/* Values — replace the table-like treatment with a clearer card hierarchy. */
html[data-theme="3"] .values {
  padding: clamp(2.5rem, 4.5vw, 4.25rem);
  border: 1px solid rgba(70, 91, 73, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at 94% 4%, rgba(255, 255, 255, 0.38) 0 6px, transparent 7px),
    #e7eee2;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  align-items: start;
  gap: 1.5rem clamp(2rem, 4vw, 4.5rem);
}

html[data-theme="3"] .values::after {
  top: -135px;
  right: -90px;
  width: 320px;
  height: 320px;
  border-color: rgba(70, 91, 73, 0.11);
  box-shadow: 0 0 0 54px rgba(255, 255, 255, 0.08);
}

html[data-theme="3"] .values > span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.45rem;
  color: var(--brand-green);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
}

html[data-theme="3"] .values > span::before {
  width: 28px;
  height: 2px;
  background: var(--brand-terracotta);
  content: "";
}

html[data-theme="3"] .values-note {
  max-width: 720px;
  color: var(--brand-green-deep);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

html[data-theme="3"] .values ul {
  gap: 0.9rem;
  margin-top: clamp(2rem, 3.5vw, 3.25rem);
  border-top: 0;
}

html[data-theme="3"] .values li,
html[data-theme="3"] .values li:first-child,
html[data-theme="3"] .values li:nth-child(4) {
  position: relative;
  display: flex;
  min-height: 245px;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid rgba(70, 91, 73, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  flex-direction: column;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

html[data-theme="3"] .values li::before,
html[data-theme="3"] .values li:nth-child(3)::before {
  width: 42px;
  height: 42px;
  margin-bottom: auto;
  border-color: rgba(70, 91, 73, 0.18);
  background: rgba(247, 245, 236, 0.78);
  color: var(--brand-green);
  font-size: 0.68rem;
}

html[data-theme="3"] .values li strong {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 2.1em;
  align-items: flex-end;
  color: var(--brand-green-deep);
  font-size: clamp(1.35rem, 1.75vw, 1.75rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
  transition: color 180ms ease;
}

html[data-theme="3"] .values li small {
  position: relative;
  z-index: 1;
  max-width: none;
  min-height: 4.5em;
  margin-top: 0.7rem;
  color: rgba(44, 60, 49, 0.68);
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.5;
  transition: color 180ms ease;
}

html[data-theme="3"] .values li:nth-child(3) {
  border-color: rgba(70, 91, 73, 0.12);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

html[data-theme="3"] .values li:nth-child(3)::after {
  position: absolute;
  right: -1rem;
  bottom: -2.6rem;
  color: rgba(247, 245, 236, 0.055);
  content: "03";
  font-family: "Archivo", sans-serif;
  font-size: 8.5rem;
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 1;
  opacity: 0;
  transition: opacity 180ms ease;
}

html[data-theme="3"] .values li:nth-child(3)::before {
  border-color: rgba(70, 91, 73, 0.18);
  background: rgba(247, 245, 236, 0.78);
  color: var(--brand-green);
  transform: none;
}

html[data-theme="3"] .values li:nth-child(3) strong {
  color: var(--brand-green-deep);
}

html[data-theme="3"] .values li:nth-child(3) small {
  color: rgba(44, 60, 49, 0.68);
}

html[data-theme="3"] .values li:nth-child(3):hover {
  border-color: var(--brand-green-deep);
  background: var(--brand-green-deep);
  box-shadow: 0 20px 46px rgba(44, 60, 49, 0.16);
}

html[data-theme="3"] .values li:nth-child(3):hover::after {
  opacity: 1;
}

html[data-theme="3"] .values li:nth-child(3):hover::before {
  border-color: rgba(205, 118, 83, 0.76);
  background: var(--brand-terracotta);
  color: var(--brand-green-deep);
  transform: none;
}

html[data-theme="3"] .values li:nth-child(3):hover strong {
  color: #fff;
}

html[data-theme="3"] .values li:nth-child(3):hover small {
  color: rgba(255, 255, 255, 0.7);
}

html[data-theme="3"] .values li:hover {
  border-color: rgba(70, 91, 73, 0.24);
  box-shadow: 0 18px 42px rgba(70, 91, 73, 0.11);
  transform: translateY(-4px);
}

@media (max-width: 1050px) {
  html[data-theme="3"] .values {
    grid-template-columns: 1fr;
  }

  html[data-theme="3"] .values-note {
    grid-column: 1;
    grid-row: auto;
  }

  html[data-theme="3"] .values ul {
    grid-row: auto;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  html[data-theme="3"] .values li,
  html[data-theme="3"] .values li:first-child,
  html[data-theme="3"] .values li:nth-child(4) {
    grid-column: span 2;
  }

  html[data-theme="3"] .values li:nth-child(4),
  html[data-theme="3"] .values li:nth-child(5) {
    grid-column: span 3;
  }
}

@media (max-width: 700px) {
  html[data-theme="3"] .values {
    padding: 2rem 1.35rem;
    border-radius: 24px;
  }

  html[data-theme="3"] .values-note {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  html[data-theme="3"] .values ul {
    gap: 0.7rem;
    grid-template-columns: 1fr;
  }

  html[data-theme="3"] .values li,
  html[data-theme="3"] .values li:first-child,
  html[data-theme="3"] .values li:nth-child(4),
  html[data-theme="3"] .values li:nth-child(5) {
    display: grid;
    min-height: 0;
    padding: 1.25rem;
    border: 1px solid rgba(70, 91, 73, 0.12);
    grid-column: 1;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 0.9rem;
  }

  html[data-theme="3"] .values li::before,
  html[data-theme="3"] .values li:nth-child(3)::before {
    margin: 0;
    grid-column: 1;
    grid-row: 1 / 3;
  }

  html[data-theme="3"] .values li strong,
  html[data-theme="3"] .values li small {
    grid-column: 2;
  }

  html[data-theme="3"] .values li strong {
    display: block;
    min-height: 0;
    font-size: 1.28rem;
  }

  html[data-theme="3"] .values li small {
    min-height: 0;
    margin-top: 0.35rem;
    font-size: 0.94rem;
  }
}

/* Pricing and packages */
.pricing-hero .inner-hero-grid {
  align-items: end;
}

.pricing-hero h1 {
  max-width: 820px;
}

.pricing-hero-copy {
  display: grid;
  max-width: 520px;
  gap: 1rem;
}

.pricing-hero-copy .inner-hero-copy {
  max-width: none;
  margin-bottom: 0;
}

.pricing-hero-copy > p:last-child {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.pricing-jump {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(70, 91, 73, 0.13);
  background: rgba(247, 245, 236, 0.96);
  backdrop-filter: blur(16px);
}

.pricing-jump .shell {
  display: flex;
  overflow-x: auto;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  scrollbar-width: none;
}

.pricing-jump .shell::-webkit-scrollbar {
  display: none;
}

.pricing-jump a {
  position: relative;
  padding: 1.15rem 0;
  color: var(--brand-green-deep, #2c3c31);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-jump a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--brand-terracotta, #cd7653);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pricing-jump a:hover::after,
.pricing-jump a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.pricing-category {
  scroll-margin-top: 58px;
  background: #fff;
}

.pricing-category-tinted {
  background: var(--brand-ivory, #f7f5ec);
}

.pricing-category-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  gap: clamp(2rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
}

.pricing-category-heading .eyebrow {
  color: var(--brand-terracotta-action, #a95237);
}

.pricing-category-heading h2 {
  max-width: 760px;
  color: var(--brand-green, #465b49);
  font-size: clamp(2.5rem, 4.8vw, 4.9rem);
  font-weight: 650;
  letter-spacing: -0.065em;
}

.pricing-category-heading > p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--brand-muted, #5f6964);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.rate-table-wrap {
  overflow: hidden;
  border: 1px solid rgba(70, 91, 73, 0.14);
  border-radius: 24px;
  background: var(--brand-ivory, #f7f5ec);
  box-shadow: 0 24px 65px rgba(44, 60, 49, 0.08);
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
}

.rate-table th {
  padding: 1rem clamp(1.2rem, 3vw, 2.2rem);
  background: var(--brand-green-deep, #2c3c31);
  color: #fff;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}

.rate-table th:last-child,
.rate-table td:last-child {
  text-align: right;
}

.rate-table td {
  padding: 1.15rem clamp(1.2rem, 3vw, 2.2rem);
  border-bottom: 1px solid rgba(70, 91, 73, 0.11);
  color: var(--brand-green-deep, #2c3c31);
  font-size: clamp(0.9rem, 1.3vw, 1.06rem);
  font-weight: 600;
}

.rate-table tr:last-child td {
  border-bottom: 0;
}

.rate-table tr:nth-child(even) td {
  background: rgba(223, 231, 220, 0.44);
}

.rate-table td:last-child {
  color: var(--brand-terracotta-action, #a95237);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 750;
  white-space: nowrap;
}

.rate-table td:last-child span {
  font-family: var(--font-body);
  font-size: 0.72em;
  font-weight: 600;
}

.package-grid {
  display: grid;
  align-items: stretch;
  gap: 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.7rem, 3vw, 2.5rem);
  border: 1px solid rgba(70, 91, 73, 0.14);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(44, 60, 49, 0.065);
}

.package-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--brand-terracotta, #cd7653);
  content: "";
}

.package-card > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.package-card > header span,
.enterprise-card-intro > span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--brand-terracotta-action, #a95237);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-card h3 {
  max-width: 430px;
  color: var(--brand-green-deep, #2c3c31);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 650;
  letter-spacing: -0.045em;
}

.package-card > header > strong {
  color: var(--brand-terracotta-action, #a95237);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1;
  white-space: nowrap;
}

.package-card > header > strong small {
  font-size: 0.55em;
}

.package-fit {
  margin: 1rem 0 0;
  color: var(--brand-muted, #5f6964);
  font-size: 0.82rem;
  font-style: italic;
}

.package-card h4,
.enterprise-includes h4 {
  margin: 2rem 0 0.8rem;
  color: var(--brand-green, #465b49);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-card ul,
.enterprise-includes ul,
.pricing-notes ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.65rem;
}

.package-card li,
.enterprise-includes li,
.pricing-notes li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--brand-green-deep, #2c3c31);
  font-size: 0.88rem;
  line-height: 1.45;
}

.package-card li::before,
.enterprise-includes li::before,
.pricing-notes li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--brand-terracotta, #cd7653);
  content: "";
  transform: rotate(45deg);
}

.package-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  column-gap: clamp(3rem, 8vw, 8rem);
}

.package-card-wide h4,
.package-card-wide ul {
  grid-column: 2;
}

.package-card-wide h4 {
  margin-top: 0;
  grid-row: 1;
}

.package-card-wide ul {
  padding-top: 2rem;
  grid-row: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-category-dark {
  background: var(--brand-green-deep, #2c3c31);
}

.pricing-category-dark .pricing-category-heading h2,
.pricing-category-dark .pricing-category-heading > p,
.pricing-category-dark .pricing-category-heading .eyebrow {
  color: #fff;
}

.package-card-dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--brand-green, #465b49);
  box-shadow: none;
}

.package-card-dark h3,
.package-card-dark h4,
.package-card-dark li {
  color: #fff;
}

.package-card-dark > header span,
.package-card-dark > header > strong {
  color: #e6a084;
}

.enterprise-card {
  display: grid;
  padding: 0;
  background: var(--brand-sand, #efe3d1);
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
}

.enterprise-card::before {
  width: 7px;
  height: 100%;
  right: auto;
}

.enterprise-card-intro {
  display: flex;
  padding: clamp(2rem, 5vw, 4rem);
  flex-direction: column;
  justify-content: center;
}

.enterprise-card-intro h3 {
  max-width: 520px;
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  letter-spacing: -0.065em;
}

.enterprise-card-intro > strong {
  margin-top: 1.3rem;
  color: var(--brand-terracotta-action, #a95237);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1;
}

.enterprise-card-intro > p {
  max-width: 420px;
  margin: 1.2rem 0 1.8rem;
  color: var(--brand-muted, #5f6964);
}

.enterprise-card-intro .button {
  align-self: flex-start;
}

.enterprise-includes {
  padding: clamp(2rem, 5vw, 4rem);
  border-left: 1px solid rgba(70, 91, 73, 0.14);
  background: rgba(255, 255, 255, 0.55);
}

.enterprise-includes h4 {
  margin-top: 0;
}

.enterprise-includes ul {
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enterprise-includes li {
  padding-block: 0.7rem;
  padding-right: 1rem;
  padding-left: 1.15rem;
  border-bottom: 1px solid rgba(70, 91, 73, 0.11);
}

.pricing-notes {
  padding-block: clamp(4rem, 7vw, 7rem);
  background: var(--brand-sage, #dfe7dc);
}

.pricing-notes-grid {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
}

.pricing-notes h2 {
  max-width: 460px;
  color: var(--brand-green-deep, #2c3c31);
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  letter-spacing: -0.065em;
}

.pricing-notes ul {
  gap: 1.25rem;
}

.pricing-notes li {
  padding-left: 1.4rem;
  color: var(--brand-green-deep, #2c3c31);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
}

/* Compact investment preview on Services */
.pricing-preview {
  background: var(--brand-sage, #dfe7dc);
}

.pricing-preview-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
}

.pricing-preview h2 {
  max-width: 760px;
  color: var(--brand-green-deep, #2c3c31);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.065em;
}

.pricing-preview-heading > div:last-child > p {
  max-width: 500px;
  color: var(--brand-muted, #5f6964);
}

.pricing-preview-grid {
  display: grid;
  margin-bottom: 2rem;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(70, 91, 73, 0.16);
  border-radius: 22px;
  background: rgba(70, 91, 73, 0.16);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-preview-grid article {
  min-height: 170px;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  background: rgba(247, 245, 236, 0.9);
}

.pricing-preview-grid span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--brand-muted, #5f6964);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-preview-grid strong {
  display: block;
  color: var(--brand-green-deep, #2c3c31);
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.pricing-preview-grid small {
  display: block;
  margin-top: 0.5rem;
  color: var(--brand-terracotta-action, #a95237);
  font-size: 0.78rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .pricing-category-heading,
  .pricing-preview-heading,
  .pricing-notes-grid {
    grid-template-columns: 1fr;
  }

  .pricing-category-heading > p {
    max-width: 650px;
  }

  .package-card-wide {
    display: block;
  }

  .package-card-wide h4 {
    margin-top: 2rem;
  }

  .package-card-wide ul {
    padding-top: 0;
  }

  .enterprise-card {
    grid-template-columns: 1fr;
  }

  .enterprise-includes {
    border-top: 1px solid rgba(70, 91, 73, 0.14);
    border-left: 0;
  }

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

@media (max-width: 620px) {
  .pricing-jump .shell {
    width: 100%;
    padding-inline: 14px;
  }

  .pricing-jump a {
    padding-block: 0.9rem;
    font-size: 0.62rem;
  }

  .pricing-category {
    scroll-margin-top: 48px;
  }

  .pricing-category-heading {
    margin-bottom: 2rem;
  }

  .package-grid,
  .pricing-preview-grid {
    grid-template-columns: 1fr;
  }

  .package-card,
  .rate-table-wrap,
  .pricing-preview-grid {
    border-radius: 18px;
  }

  .package-card > header {
    display: block;
  }

  .package-card > header > strong {
    display: block;
    margin-top: 1rem;
  }

  .package-card-wide ul,
  .enterprise-includes ul {
    grid-template-columns: 1fr;
  }

  .enterprise-card-intro,
  .enterprise-includes {
    padding: 1.7rem;
  }

  .rate-table th,
  .rate-table td {
    padding: 0.9rem 0.85rem;
  }

  .rate-table td {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .rate-table td:last-child {
    font-size: 0.9rem;
    white-space: normal;
  }

  .pricing-preview-grid article {
    min-height: 0;
  }
}

/* Services pricing summary: preserve the guide's card hierarchy. */
.pricing-preview .pricing-preview-heading {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
}

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

.pricing-preview .pricing-preview-grid article {
  min-height: 205px;
}

.pricing-preview .pricing-preview-grid span {
  min-height: 2.8em;
  margin-bottom: 1.4rem;
}

.pricing-preview .pricing-preview-grid small {
  margin-top: 1rem;
  font-size: 0.86rem;
}

@media (max-width: 1050px) {
  .pricing-preview .pricing-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pricing-preview .pricing-preview-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .pricing-preview .pricing-preview-grid {
    grid-template-columns: 1fr;
  }

  .pricing-preview .pricing-preview-grid article {
    min-height: 0;
  }
}

/* Keep the retainer heading at the same editorial scale as every pricing category. */
.pricing-page #retainers .pricing-section-heading h2 {
  max-width: 850px;
  margin-inline: auto;
  color: var(--pricing-ink, #172019);
  font-size: clamp(2.5rem, 4.2vw, 4.6rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

/* Contact scheduling CTA — visually distinct from supporting text links. */
.contact-note {
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
}

.contact-note .contact-note-cta {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.55rem 0.55rem 1.5rem;
  border: 1px solid #b85f44;
  border-radius: 999px;
  background: #b85f44;
  box-shadow: 0 12px 28px rgba(86, 43, 30, 0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 1.35rem;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-note .contact-note-cta span {
  color: #fff;
}

.contact-note .contact-note-cta i {
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: #2c3c31;
  font-size: 1rem;
  font-style: normal;
  place-items: center;
  transition: transform 180ms ease;
}

.contact-note .contact-note-cta:hover {
  border-color: #97472f;
  background: #97472f;
  box-shadow: 0 16px 34px rgba(86, 43, 30, 0.24);
  color: #fff;
  transform: translateY(-2px);
}

.contact-note .contact-note-cta:hover i {
  transform: translate(2px, -2px);
}

.contact-note .contact-note-cta:focus-visible {
  outline: 3px solid #2c3c31;
  outline-offset: 4px;
}

@media (max-width: 620px) {
  .contact-note .contact-note-cta {
    width: 100%;
  }
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

html[data-theme="3"] .final-cta .final-cta-rates {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
}

html[data-theme="3"] .final-cta .final-cta-rates span {
  color: #fff;
}

html[data-theme="3"] .final-cta .final-cta-rates i {
  background: #fff;
  color: var(--brand-green-deep, #2c3c31);
}

html[data-theme="3"] .final-cta .final-cta-rates:hover {
  border-color: #fff;
  background: #fff;
  color: var(--brand-green-deep, #2c3c31);
}

html[data-theme="3"] .final-cta .final-cta-rates:hover span {
  color: var(--brand-green-deep, #2c3c31);
}

html[data-theme="3"] .final-cta .final-cta-rates:hover i {
  background: var(--brand-terracotta, #cd7653);
}

@media (max-width: 620px) {
  .final-cta-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta-actions .button {
    width: 100%;
    justify-content: space-between;
  }
}

/* Pricing typography — confident and scannable without overpowering site content. */
.pricing-page .pricing-masthead h1 {
  max-width: 820px;
  font-size: clamp(2.75rem, 4.4vw, 4.75rem);
  letter-spacing: -0.065em;
  line-height: 1;
}

.pricing-page .pricing-section-heading h2,
.pricing-page #retainers .pricing-section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.15rem, 3.2vw, 3.35rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.pricing-page .pricing-card h3,
.pricing-page .pricing-card-dark h3 {
  font-size: clamp(1.15rem, 1.45vw, 1.4rem);
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.pricing-page .pricing-card > header strong,
.pricing-page .pricing-card-dark > header strong {
  font-size: clamp(1.9rem, 2.35vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -0.04em;
}

.pricing-page .pricing-card > header strong small,
.pricing-page .pricing-card-dark > header strong small {
  font-size: 0.42em;
}

.pricing-page .rate-table td:last-child {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.pricing-page .signature-pricing-card h3 {
  max-width: 620px;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.08;
}

.pricing-page .signature-pricing-card > header > strong {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 750;
  letter-spacing: -0.04em;
}

/* Package prices are supporting investment metadata, not competing headlines. */
.pricing-page .pricing-card > header,
.pricing-page .pricing-card:nth-child(even) > header,
.pricing-page .pricing-card-dark > header,
.pricing-page .pricing-card-dark:nth-child(even) > header {
  min-height: 160px;
  align-content: start;
  padding: 1.35rem 1.3rem;
  gap: 0.85rem;
}

.pricing-page .pricing-card > header strong,
.pricing-page .pricing-card-dark > header strong {
  display: block;
  color: #7f4634;
  font-size: clamp(1.3rem, 1.55vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.pricing-page .pricing-card > header strong::before,
.pricing-page .pricing-card-dark > header strong::before {
  display: block;
  margin-bottom: 0.25rem;
  color: #59635c;
  content: "Investment";
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.pricing-page #retainers .pricing-card > header strong::before {
  content: "Monthly retainer";
}

.pricing-page .pricing-card > header strong small,
.pricing-page .pricing-card-dark > header strong small {
  margin-left: 0.2rem;
  color: #59635c;
  font-size: 0.64em;
  font-weight: 600;
}

.pricing-page .rate-table td:last-child {
  color: #3f5144;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.pricing-page .signature-pricing-card > header {
  align-items: center;
}

.pricing-page .signature-pricing-card > header > strong {
  display: block;
  color: #7f4634;
  font-size: clamp(1.5rem, 1.85vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-align: right;
}

.pricing-page .signature-pricing-card > header > strong::before {
  display: block;
  margin-bottom: 0.25rem;
  color: #59635c;
  content: "Investment";
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .pricing-page .signature-pricing-card > header > strong {
    text-align: left;
  }
}

/* Quiet supporting note; repeated package actions use the brand green. */
html[data-theme="3"] .pricing-page .pricing-card-note {
  max-width: 34ch;
  margin: -0.15rem 1.3rem 1rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #59635c;
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.5;
}

.pricing-page .pricing-card-action,
.pricing-page .pricing-card-dark .pricing-card-action,
.pricing-page .signature-pricing-action {
  border-color: var(--pricing-green);
  background: var(--pricing-green);
  color: #fff;
}

.pricing-page .pricing-card-action:hover,
.pricing-page .pricing-card-dark .pricing-card-action:hover,
.pricing-page .signature-pricing-action:hover {
  border-color: #a95237;
  background: #a95237;
  color: #fff;
}

.pricing-page .pricing-card-action:focus-visible,
.pricing-page .signature-pricing-action:focus-visible {
  outline: 3px solid #a95237;
  outline-offset: 3px;
}

/* Client payments — quiet, focused gateway to secure Stripe Checkout. */
html[data-theme="3"] .payment-page {
  background: #f3f3ec;
}

.payment-intro {
  position: relative;
  padding: clamp(9rem, 11vw, 11rem) 0 clamp(3.5rem, 5vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(205, 118, 83, 0.16) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 18%, transparent 0 72px, rgba(70, 91, 73, 0.1) 73px 74px, transparent 75px),
    linear-gradient(120deg, #e6ebe2 0%, #dfe7dc 58%, #f1e5d9 100%);
  color: #2c3c31;
}

.payment-intro::after {
  position: absolute;
  right: -8vw;
  bottom: -155px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(70, 91, 73, 0.12);
  border-radius: 50%;
  content: "";
}

.payment-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: clamp(2.5rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
}

.payment-eyebrow,
.payment-prep-kicker {
  margin-bottom: 1.15rem;
  color: #9a4e37;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.payment-eyebrow::before {
  display: inline-block;
  width: 26px;
  height: 2px;
  margin-right: 0.75rem;
  background: #b95f42;
  content: "";
  vertical-align: middle;
}

.payment-intro h1 {
  max-width: 720px;
  margin: 0;
  color: #26372c;
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.payment-intro-copy {
  max-width: 510px;
  margin: 0 0 0.35rem;
  color: #526057;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.65;
}

.payment-content {
  padding: clamp(3.25rem, 5.5vw, 5.5rem) 0;
  background: #f7f5ed;
}

.payment-layout {
  display: grid;
  align-items: start;
  max-width: 920px;
  margin-inline: auto;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
}

.payment-card {
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid rgba(70, 91, 73, 0.15);
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 22px 54px rgba(52, 70, 57, 0.09);
}

.payment-card::before {
  position: absolute;
  top: 0;
  right: 38px;
  width: 72px;
  height: 5px;
  border-radius: 0 0 6px 6px;
  background: #cd7653;
  content: "";
}

.payment-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(70, 91, 73, 0.15);
  color: #34483b;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-processor {
  color: #68736c;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.payment-card-copy {
  padding: clamp(1.25rem, 2.4vw, 1.75rem) 0 clamp(1.15rem, 2vw, 1.5rem);
}

.payment-lock {
  display: grid;
  width: 32px;
  height: 32px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(70, 91, 73, 0.18);
  border-radius: 50%;
  background: #e6ebe2;
  color: #405746;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 800;
  place-items: center;
}

.payment-card h2 {
  margin-bottom: 0.65rem;
  color: #26372c;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.payment-card-copy p {
  max-width: 540px;
  margin: 0;
  color: #59645c;
  font-size: 0.8rem;
  line-height: 1.55;
}

.payment-checkout-button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  border-radius: 12px;
  padding: 0.5rem 0.55rem 0.5rem 1.15rem;
  background: #b95f42;
  box-shadow: 0 10px 24px rgba(121, 63, 45, 0.18);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.payment-checkout-button i {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  color: #364c3d;
  font-size: 0.95rem;
  font-style: normal;
  place-items: center;
  transition: transform 180ms ease;
}

.payment-checkout-button:hover {
  background: #99472f;
  box-shadow: 0 20px 42px rgba(121, 63, 45, 0.3);
  transform: translateY(-2px);
}

.payment-checkout-button:hover i {
  transform: translateX(3px);
}

.payment-checkout-button:focus-visible {
  outline: 3px solid #465b49;
  outline-offset: 4px;
}

.payment-checkout-button:disabled {
  background: #7f8c82;
  box-shadow: none;
  cursor: wait;
  opacity: 0.86;
  transform: none;
}

.payment-form {
  margin: 0;
}

.payment-form > label {
  display: block;
  margin-bottom: 0.55rem;
  color: #33483a;
  font-family: var(--font-ui);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.payment-amount-field {
  display: grid;
  min-height: 52px;
  align-items: center;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(70, 91, 73, 0.27);
  border-radius: 12px;
  background: #f7f5ed;
  grid-template-columns: auto minmax(0, 1fr) auto;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.payment-amount-field:focus-within {
  border-color: #465b49;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(70, 91, 73, 0.11);
}

.payment-amount-field > span {
  padding-left: 1rem;
  color: #435448;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
}

.payment-amount-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0.55rem 0.65rem;
  background: transparent;
  color: #26372c;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.55vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.payment-amount-field input::placeholder {
  color: #8d948e;
  opacity: 1;
}

.payment-amount-field small {
  padding-right: 1rem;
  color: #68736c;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.payment-amount-help {
  margin: 0 0 1rem;
  color: #737a75;
  font-size: 0.68rem;
}

.payment-form-status {
  min-height: 1.1rem;
  margin: 0.5rem 0 0;
  color: #8d432e;
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.5;
}

.payment-privacy {
  max-width: 560px;
  margin: 1rem 0 0;
  color: #737a75;
  font-size: 0.68rem;
  line-height: 1.55;
}

.payment-prep {
  padding-top: 1.1rem;
}

.payment-prep h2 {
  max-width: 400px;
  margin-bottom: 1.4rem;
  color: #2c3c31;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.payment-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.payment-steps li {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 34px 1fr;
  padding: 1rem 0;
  border-top: 1px solid rgba(70, 91, 73, 0.18);
}

.payment-steps li > span {
  padding-top: 0.1rem;
  color: #a55239;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.payment-steps strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #2c3c31;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: -0.025em;
}

.payment-steps p {
  margin: 0;
  color: #626d65;
  font-size: 0.76rem;
  line-height: 1.58;
}

.payment-help {
  margin-top: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(70, 91, 73, 0.13);
  border-radius: 18px;
  background: #e5eade;
}

.payment-help strong {
  color: #2c3c31;
  font-family: var(--font-heading);
  font-size: 0.84rem;
}

.payment-help p {
  margin: 0.45rem 0 0.8rem;
  color: #59665d;
  font-size: 0.74rem;
  line-height: 1.55;
}

.payment-help a {
  display: block;
  color: #8d432e;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 800;
}

.payment-help a span {
  display: inline-block;
  transition: transform 180ms ease;
}

.payment-help a:hover span {
  transform: translateX(3px);
}

.payment-help .payment-square-fallback {
  margin-top: 0.65rem;
  color: #59665d;
  font-size: 0.7rem;
  font-weight: 650;
}

.payment-guidance {
  background: #33483a;
  color: #fff;
}

.payment-guidance .shell {
  display: flex;
  min-height: 170px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 2.2rem;
}

.payment-guidance p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.payment-guidance p strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: -0.035em;
}

.payment-guidance a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0.65rem 0.72rem 0.65rem 1.25rem;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.payment-guidance a i {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #cd7653;
  color: #26372c;
  font-style: normal;
  place-items: center;
}

.payment-guidance a:hover {
  background: #fff;
  color: #2c3c31;
  transform: translateY(-2px);
}

.payment-confirmation-main {
  display: grid;
  min-height: 690px;
  padding: clamp(5.5rem, 9vw, 9rem) 0;
  background:
    radial-gradient(circle at 84% 17%, rgba(205, 118, 83, 0.15) 0 5px, transparent 6px),
    radial-gradient(circle at 84% 17%, transparent 0 70px, rgba(70, 91, 73, 0.1) 71px 72px, transparent 73px),
    linear-gradient(135deg, #e6ebe2 0%, #f7f5ed 62%, #f0e4d8 100%);
  place-items: center;
}

.payment-confirmation-shell {
  max-width: 850px;
  padding: clamp(2.25rem, 5.5vw, 5.25rem);
  border: 1px solid rgba(70, 91, 73, 0.15);
  border-radius: 30px;
  background: #fffdf8;
  box-shadow: 0 30px 80px rgba(52, 70, 57, 0.12);
}

.payment-confirmation-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 1.8rem;
  border-radius: 50%;
  background: #465b49;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 800;
  place-items: center;
}

.payment-confirmation-shell h1 {
  max-width: 720px;
  margin-bottom: 1.25rem;
  color: #26372c;
  font-size: clamp(2.6rem, 5.4vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.payment-confirmation-copy {
  max-width: 650px;
  margin-bottom: 2rem;
  color: #59645c;
  font-size: 1rem;
  line-height: 1.7;
}

.payment-confirmation-details {
  display: grid;
  margin: 0 0 2rem;
  border-block: 1px solid rgba(70, 91, 73, 0.15);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-confirmation-details[hidden] {
  display: none;
}

.payment-confirmation-details > div {
  min-width: 0;
  padding: 1.3rem 1rem 1.3rem 0;
}

.payment-confirmation-details dt {
  margin-bottom: 0.3rem;
  color: #7a827c;
  font-family: var(--font-ui);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-confirmation-details dd {
  margin: 0;
  color: #2c3c31;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.payment-confirmation-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.payment-confirmation-link {
  color: #8d432e;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .payment-intro-grid,
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .payment-intro {
    padding-top: 8rem;
  }

  .payment-intro-copy {
    max-width: 660px;
  }

  .payment-prep {
    padding-top: 1.5rem;
  }
}

@media (max-width: 620px) {
  .payment-intro {
    padding: 7rem 0 3.5rem;
  }

  .payment-intro h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 0.98;
  }

  .payment-content {
    padding: 3.5rem 0;
  }

  .payment-card {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .payment-card-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .payment-card-copy {
    padding: 1.5rem 0 1.35rem;
  }

  .payment-card h2 {
    font-size: 1.65rem;
  }

  .payment-checkout-button {
    min-height: 50px;
    padding-left: 1rem;
    font-size: 0.74rem;
  }

  .payment-checkout-button i {
    width: 34px;
    height: 34px;
  }

  .payment-guidance .shell {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 2.5rem;
  }

  .payment-guidance a {
    width: 100%;
    justify-content: space-between;
  }

  .payment-confirmation-main {
    min-height: 590px;
    padding: 3.5rem 0;
  }

  .payment-confirmation-shell {
    border-radius: 22px;
  }

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

  .payment-confirmation-details > div + div {
    border-top: 1px solid rgba(70, 91, 73, 0.12);
  }

  .payment-confirmation-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Values — a straightforward editorial list in place of repeated cards. */
html[data-theme="3"] .values {
  position: relative;
  display: grid;
  overflow: visible;
  padding: clamp(2.5rem, 4vw, 4rem) clamp(1.5rem, 3.5vw, 3.75rem);
  border: 1px solid rgba(44, 60, 49, 0.1);
  border-top: 3px solid var(--brand-terracotta-action);
  border-radius: 0;
  background:
    linear-gradient(125deg, rgba(255, 252, 246, 0.6) 0 31%, transparent 31%),
    linear-gradient(145deg, #e9efe4 0%, #e2eadf 62%, #ece7dc 100%);
  box-shadow: none;
  grid-template-columns: minmax(220px, 0.7fr) minmax(440px, 1.3fr);
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: 1rem clamp(3rem, 7vw, 7rem);
}

html[data-theme="3"] .values::after {
  display: none;
}

html[data-theme="3"] .values > span {
  display: block;
  padding: 0;
  color: var(--brand-terracotta-action);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  grid-column: 1;
  grid-row: 1;
}

html[data-theme="3"] .values > span::before {
  display: none;
}

html[data-theme="3"] .values-note {
  max-width: 12ch;
  color: var(--brand-green-deep);
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
  grid-column: 1;
  grid-row: 2;
}

html[data-theme="3"] .values-note::after {
  display: block;
  width: 3.25rem;
  height: 3px;
  margin-top: 1.4rem;
  background: var(--brand-terracotta-action);
  content: "";
}

html[data-theme="3"] .values ul {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(44, 60, 49, 0.24);
  grid-column: 2;
  grid-row: 1 / 3;
}

html[data-theme="3"] .values li,
html[data-theme="3"] .values li:first-child,
html[data-theme="3"] .values li:nth-child(3),
html[data-theme="3"] .values li:nth-child(4),
html[data-theme="3"] .values li:nth-child(5) {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: visible;
  margin-left: -1rem;
  padding: 1.35rem 3.25rem 1.35rem 1rem;
  border: 0;
  border-bottom: 1px solid rgba(44, 60, 49, 0.24);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 1.5rem;
  transform: none;
  transition:
    padding-left 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

html[data-theme="3"] .values li::before,
html[data-theme="3"] .values li:nth-child(3)::before,
html[data-theme="3"] .values li:nth-child(3)::before {
  display: none;
  content: none;
}

html[data-theme="3"] .values li::after,
html[data-theme="3"] .values li:nth-child(3)::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  display: block;
  width: 0;
  height: 2px;
  background: var(--brand-terracotta-action);
  content: "";
  opacity: 0;
  transform: translateY(-50%);
  transition:
    width 220ms ease,
    opacity 180ms ease;
}

html[data-theme="3"] .values li strong,
html[data-theme="3"] .values li:nth-child(3) strong {
  display: block;
  min-height: 0;
  color: var(--brand-green-deep);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.2;
  transition:
    color 180ms ease,
    transform 220ms ease;
}

html[data-theme="3"] .values li small,
html[data-theme="3"] .values li:nth-child(3) small {
  display: block;
  max-width: 52ch;
  min-height: 0;
  margin: 0;
  color: rgba(44, 60, 49, 0.72);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.55;
  transition: color 180ms ease;
}

html[data-theme="3"] .values li:hover,
html[data-theme="3"] .values li:nth-child(3):hover {
  padding-left: 1.35rem;
  border-color: rgba(184, 82, 52, 0.5);
  background: rgba(255, 252, 246, 0.62);
  box-shadow: none;
  transform: none;
}

html[data-theme="3"] .values li:hover strong,
html[data-theme="3"] .values li:nth-child(3):hover strong {
  color: var(--brand-terracotta-action);
  transform: translateX(0.15rem);
}

html[data-theme="3"] .values li:hover small,
html[data-theme="3"] .values li:nth-child(3):hover small {
  color: rgba(44, 60, 49, 0.88);
}

html[data-theme="3"] .values li:hover::after,
html[data-theme="3"] .values li:nth-child(3):hover::after {
  width: 1.5rem;
  opacity: 1;
}

@media (max-width: 900px) {
  html[data-theme="3"] .values {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  html[data-theme="3"] .values > span,
  html[data-theme="3"] .values-note,
  html[data-theme="3"] .values ul {
    grid-column: 1;
    grid-row: auto;
  }

  html[data-theme="3"] .values-note {
    max-width: 18ch;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 620px) {
  html[data-theme="3"] .values {
    padding: 2.25rem 1.35rem;
    border-radius: 0;
  }

  html[data-theme="3"] .values ul {
    display: block;
    gap: 0;
  }

  html[data-theme="3"] .values li,
  html[data-theme="3"] .values li:first-child,
  html[data-theme="3"] .values li:nth-child(3),
  html[data-theme="3"] .values li:nth-child(4),
  html[data-theme="3"] .values li:nth-child(5) {
    display: grid;
    min-height: 0;
    margin-left: -0.75rem;
    padding: 1.2rem 2.5rem 1.2rem 0.75rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.35rem;
  }

  html[data-theme="3"] .values li strong,
  html[data-theme="3"] .values li small {
    grid-column: 1;
  }
}

@media (hover: none) {
  html[data-theme="3"] .values li:hover,
  html[data-theme="3"] .values li:nth-child(3):hover {
    padding-left: 1rem;
    border-color: rgba(44, 60, 49, 0.24);
    background: transparent;
  }

  html[data-theme="3"] .values li:hover strong,
  html[data-theme="3"] .values li:nth-child(3):hover strong {
    color: var(--brand-green-deep);
    transform: none;
  }

  html[data-theme="3"] .values li:hover::after,
  html[data-theme="3"] .values li:nth-child(3):hover::after {
    width: 0;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html[data-theme="3"] .values li,
  html[data-theme="3"] .values li strong,
  html[data-theme="3"] .values li small,
  html[data-theme="3"] .values li::after {
    transition: none;
  }
}

/* Services — image-led feature with an editorial selector. */
html[data-theme="3"] .service-explorer {
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.75rem, 5vw, 5.5rem);
}

html[data-theme="3"] .service-feature {
  display: grid;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(44, 60, 49, 0.16);
  border-radius: 3px;
  background: #e5ece1;
  box-shadow: 0 24px 60px rgba(44, 60, 49, 0.1);
  grid-template-rows: minmax(410px, 54vh) auto;
}

html[data-theme="3"] .service-feature::before,
html[data-theme="3"] .service-feature::after {
  display: none;
}

html[data-theme="3"] .service-feature-image {
  position: relative;
  inset: auto;
  overflow: hidden;
  grid-row: 1;
}

html[data-theme="3"] .service-feature-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 60, 49, 0.03), rgba(44, 60, 49, 0.3));
  content: "";
  pointer-events: none;
}

html[data-theme="3"] .service-feature-image img {
  transition:
    filter 420ms ease,
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

html[data-theme="3"] .service-feature:hover .service-feature-image img {
  filter: saturate(0.92) contrast(1);
  transform: scale(1.025);
}

html[data-theme="3"] .service-feature-meta {
  position: absolute;
  z-index: 3;
  top: 1.35rem;
  right: 1.35rem;
}

html[data-theme="3"] .service-feature-meta strong {
  margin: 0;
  padding: 0.7rem 0.9rem;
  border: 0;
  border-radius: 2px;
  background: rgba(44, 60, 49, 0.86);
  color: #fff;
  backdrop-filter: blur(10px);
}

html[data-theme="3"] .service-feature-copy {
  position: relative;
  z-index: 2;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border-top: 3px solid var(--brand-terracotta-action);
  border-radius: 0;
  background: #eef2e9;
  backdrop-filter: none;
  grid-row: 2;
}

html[data-theme="3"] .service-feature-copy > span {
  margin-bottom: 0.85rem;
  color: var(--brand-terracotta-action);
  font-size: 0.7rem;
}

html[data-theme="3"] .service-feature-copy h3 {
  max-width: 520px;
  margin-bottom: 0.85rem;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  line-height: 1.04;
}

html[data-theme="3"] .service-feature-copy p {
  max-width: 520px;
  color: rgba(44, 60, 49, 0.76);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

html[data-theme="3"] .service-list {
  display: block;
  border-top: 1px solid rgba(44, 60, 49, 0.26);
}

html[data-theme="3"] .service,
html[data-theme="3"] .service:nth-child(2),
html[data-theme="3"] .service:nth-child(3),
html[data-theme="3"] .service:nth-child(6),
html[data-theme="3"] .service:nth-child(3n + 2),
html[data-theme="3"] .service:nth-child(3n),
html[data-theme="3"] .service:nth-child(7),
html[data-theme="3"] .service[open] {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(44, 60, 49, 0.26);
  border-radius: 0;
  background: transparent;
  color: var(--brand-green-deep);
  box-shadow: none;
  transform: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease;
}

html[data-theme="3"] .service[open] {
  border-color: var(--brand-green-deep);
  background: var(--brand-green-deep);
  color: #fff;
}

html[data-theme="3"] .service summary,
html[data-theme="3"] .service[open] summary {
  min-height: 94px;
  padding: 1.25rem 1rem;
  grid-template-columns: 48px minmax(0, 1fr) 28px;
  gap: 1rem;
  transition: padding 220ms ease;
}

html[data-theme="3"] .service summary span {
  color: #71876f;
  transition: color 180ms ease;
}

html[data-theme="3"] .service summary h3 {
  color: inherit;
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  transition:
    color 180ms ease,
    transform 220ms ease;
}

html[data-theme="3"] .service summary i,
html[data-theme="3"] .service:nth-child(3n) summary i,
html[data-theme="3"] .service[open] summary i {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  transition: transform 220ms ease;
}

html[data-theme="3"] .service summary i::before,
html[data-theme="3"] .service summary i::after {
  width: 15px;
  background: currentColor;
}

html[data-theme="3"] .service[open] summary span {
  color: #e3a184;
}

html[data-theme="3"] .service[open] summary h3 {
  color: #fff;
}

html[data-theme="3"] .service > p,
html[data-theme="3"] .service:nth-child(3) > p {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(50%);
}

@media (hover: hover) {
  html[data-theme="3"] .service:not([open]):hover {
    border-color: rgba(184, 82, 52, 0.55);
    background: rgba(255, 252, 246, 0.78);
    transform: none;
  }

  html[data-theme="3"] .service:not([open]):hover summary {
    padding-left: 1.4rem;
  }

  html[data-theme="3"] .service:not([open]):hover summary h3 {
    color: var(--brand-terracotta-action);
    transform: translateX(0.2rem);
  }

  html[data-theme="3"] .service:not([open]):hover summary i {
    color: var(--brand-terracotta-action);
    transform: rotate(90deg);
  }
}

html[data-theme="3"] .service summary:focus-visible {
  outline: 2px solid var(--brand-terracotta-action);
  outline-offset: -4px;
}

@media (max-width: 1000px) {
  html[data-theme="3"] .service-explorer {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  html[data-theme="3"] .service-feature {
    position: relative;
    top: auto;
    grid-template-rows: minmax(400px, 56vw) auto;
  }
}

@media (max-width: 620px) {
  html[data-theme="3"] .service-feature {
    min-height: 0;
    padding: 0;
    grid-template-rows: minmax(300px, 76vw) auto;
  }

  html[data-theme="3"] .service-feature-copy {
    padding: 1.6rem 1.3rem 1.75rem;
  }

  html[data-theme="3"] .service,
  html[data-theme="3"] .service:nth-child(2),
  html[data-theme="3"] .service:nth-child(3),
  html[data-theme="3"] .service:nth-child(6),
  html[data-theme="3"] .service:nth-child(3n + 2),
  html[data-theme="3"] .service:nth-child(3n),
  html[data-theme="3"] .service:nth-child(7),
  html[data-theme="3"] .service[open] {
    padding: 0;
  }

  html[data-theme="3"] .service summary,
  html[data-theme="3"] .service[open] summary {
    min-height: 80px;
    padding: 1rem 0.75rem;
    grid-template-columns: 34px minmax(0, 1fr) 26px;
    gap: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html[data-theme="3"] .service-feature-image img,
  html[data-theme="3"] .service,
  html[data-theme="3"] .service summary,
  html[data-theme="3"] .service summary h3,
  html[data-theme="3"] .service summary i {
    transition: none;
  }
}

/* Process — terracotta retained, with a quieter editorial timeline. */
html[data-theme="3"] .approach-signature {
  display: none;
}

html[data-theme="3"] .approach-shell {
  overflow: hidden;
  padding: clamp(3rem, 5vw, 5rem);
  border: 1px solid rgba(247, 245, 236, 0.2);
  border-radius: 3px;
  background:
    linear-gradient(125deg, rgba(247, 245, 236, 0.1) 0 31%, transparent 31%),
    rgba(169, 82, 55, 0.9);
  color: var(--brand-ivory);
  grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.22fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(4rem, 7vw, 7rem);
  row-gap: clamp(2.75rem, 4vw, 4rem);
}

html[data-theme="3"] .approach-shell::before,
html[data-theme="3"] .approach-shell::after {
  display: none;
}

html[data-theme="3"] .approach-shell > .section-heading {
  max-width: 440px;
}

html[data-theme="3"] .approach-shell > .section-heading .eyebrow {
  color: rgba(247, 245, 236, 0.76);
}

html[data-theme="3"] .approach-shell > .section-heading .eyebrow::before {
  background: var(--brand-ivory);
  opacity: 0.7;
}

html[data-theme="3"] .approach-shell > .section-heading h2 {
  max-width: 430px;
  color: var(--brand-ivory);
  font-size: clamp(2.7rem, 4vw, 4.2rem);
  line-height: 0.98;
}

html[data-theme="3"] .approach-visual {
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(247, 245, 236, 0.32);
  border-radius: 2px;
  background: var(--brand-green-deep);
}

html[data-theme="3"] .approach-visual img {
  min-height: 330px;
  filter: saturate(0.76) contrast(0.98);
  transition:
    filter 400ms ease,
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

html[data-theme="3"] .approach-visual::after {
  background: linear-gradient(180deg, rgba(44, 60, 49, 0.02) 28%, rgba(44, 60, 49, 0.8) 100%);
}

html[data-theme="3"] .approach-visual:hover img {
  filter: saturate(0.94) contrast(1);
  transform: scale(1.025);
}

html[data-theme="3"] .approach-visual figcaption {
  right: 1.75rem;
  bottom: 1.75rem;
  left: 1.75rem;
  gap: 0.35rem;
}

html[data-theme="3"] .approach-visual figcaption span {
  color: #e3a184;
}

html[data-theme="3"] .approach-list {
  justify-content: start;
  border-top: 1px solid rgba(247, 245, 236, 0.35);
}

html[data-theme="3"] .approach-list li,
html[data-theme="3"] .approach-list li:first-child,
html[data-theme="3"] .approach-list li:nth-child(2),
html[data-theme="3"] .approach-list li:nth-child(3),
html[data-theme="3"] .approach-list li:nth-child(4) {
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: clamp(1.45rem, 2vw, 1.9rem) 1rem;
  border: 0;
  border-bottom: 1px solid rgba(247, 245, 236, 0.35);
  border-radius: 0;
  background: transparent;
  color: var(--brand-ivory);
  grid-template-columns: 46px minmax(130px, 0.58fr) minmax(210px, 1fr);
  grid-template-rows: auto;
  column-gap: clamp(1rem, 2vw, 1.8rem);
  box-shadow: none;
  transform: none;
  transition:
    padding-left 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

html[data-theme="3"] .approach-list li::after {
  display: none;
}

html[data-theme="3"] .approach-list li > span,
html[data-theme="3"] .approach-list li:first-child > span,
html[data-theme="3"] .approach-list li:nth-child(2) > span,
html[data-theme="3"] .approach-list li:nth-child(3) > span,
html[data-theme="3"] .approach-list li:nth-child(4) > span {
  position: static;
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(247, 245, 236, 0.7);
  font-size: 0.72rem;
  line-height: 1;
  box-shadow: none;
  transform: none;
  transition:
    color 180ms ease,
    transform 220ms ease;
}

html[data-theme="3"] .approach-list strong,
html[data-theme="3"] .approach-list li:nth-child(2) strong {
  margin: 0;
  color: var(--brand-ivory);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  transition:
    color 180ms ease,
    transform 220ms ease;
}

html[data-theme="3"] .approach-list p,
html[data-theme="3"] .approach-list li:nth-child(2) p,
html[data-theme="3"] .approach-list li:nth-child(3) p,
html[data-theme="3"] .approach-list li:hover p {
  max-width: 400px;
  color: rgba(247, 245, 236, 0.82);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  line-height: 1.55;
  transition: color 180ms ease;
}

@media (hover: hover) {
  html[data-theme="3"] .approach-list li:hover,
  html[data-theme="3"] .approach-list li:nth-child(2):hover {
    padding-left: 1.4rem;
    border-color: rgba(247, 245, 236, 0.58);
    background: rgba(247, 245, 236, 0.1);
    box-shadow: none;
    transform: none;
  }

  html[data-theme="3"] .approach-list li:hover > span,
  html[data-theme="3"] .approach-list li:nth-child(2):hover > span {
    background: transparent;
    color: #f2b092;
    transform: translateX(0.2rem);
  }

  html[data-theme="3"] .approach-list li:hover strong,
  html[data-theme="3"] .approach-list li:nth-child(2):hover strong {
    color: #fff;
    transform: translateX(0.2rem);
  }

  html[data-theme="3"] .approach-list li:hover p {
    color: #fff;
  }
}

@media (max-width: 1080px) {
  html[data-theme="3"] .approach-shell {
    grid-template-columns: minmax(270px, 0.72fr) minmax(430px, 1.28fr);
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
  }

  html[data-theme="3"] .approach-list li,
  html[data-theme="3"] .approach-list li:first-child,
  html[data-theme="3"] .approach-list li:nth-child(2),
  html[data-theme="3"] .approach-list li:nth-child(3),
  html[data-theme="3"] .approach-list li:nth-child(4) {
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto;
    row-gap: 0.5rem;
  }

  html[data-theme="3"] .approach-list strong {
    grid-column: 2;
    grid-row: 1;
  }

  html[data-theme="3"] .approach-list p,
  html[data-theme="3"] .approach-list li:nth-child(3) p {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 820px) {
  html[data-theme="3"] .approach-shell {
    padding: clamp(2.5rem, 7vw, 4rem);
    border-radius: 3px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 2.5rem;
  }

  html[data-theme="3"] .approach-visual {
    min-height: 390px;
    border-radius: 2px;
  }

  html[data-theme="3"] .approach-visual img {
    min-height: 390px;
  }
}

@media (max-width: 560px) {
  html[data-theme="3"] .approach-shell {
    padding: 2rem 1.25rem 2.25rem;
    border-radius: 2px;
  }

  html[data-theme="3"] .approach-shell > .section-heading h2 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  html[data-theme="3"] .approach-visual,
  html[data-theme="3"] .approach-visual img {
    min-height: 320px;
  }

  html[data-theme="3"] .approach-list li,
  html[data-theme="3"] .approach-list li:first-child,
  html[data-theme="3"] .approach-list li:nth-child(2),
  html[data-theme="3"] .approach-list li:nth-child(3),
  html[data-theme="3"] .approach-list li:nth-child(4) {
    padding: 1.35rem 0.5rem;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html[data-theme="3"] .approach-visual img,
  html[data-theme="3"] .approach-list li,
  html[data-theme="3"] .approach-list li > span,
  html[data-theme="3"] .approach-list strong,
  html[data-theme="3"] .approach-list p {
    transition: none;
  }
}

/* Corner system — structured panels, restrained cards, rounded actions. */
html[data-theme="3"] {
  --corner-panel: 6px;
  --corner-card: 12px;
  --corner-field: 8px;
}

/* Large compositions read as editorial frames, not floating app panels. */
html[data-theme="3"] body .stories-shell,
html[data-theme="3"] body .story-stage,
html[data-theme="3"] body .about-visual,
html[data-theme="3"] body .founder-photo,
html[data-theme="3"] body .internal-founder figure,
html[data-theme="3"] body .stories-visual,
html[data-theme="3"] body .article-feature,
html[data-theme="3"] body .rate-table-wrap,
html[data-theme="3"] body .pricing-preview-grid,
html[data-theme="3"] body .pricing-cta-inner,
html[data-theme="3"] body .contact-form,
html[data-theme="3"] body .contact-note,
html[data-theme="3"] body .payment-card,
html[data-theme="3"] body .payment-confirmation-shell,
html[data-theme="3"] body .payment-concept-window,
html[data-theme="3"] body .payment-concept-form-panel {
  border-radius: var(--corner-panel);
}

/* Content cards keep enough softness for warmth without becoming bubbly. */
html[data-theme="3"] body .about-principles article,
html[data-theme="3"] body .purpose-cards article,
html[data-theme="3"] body .belief-grid article,
html[data-theme="3"] body .service-card,
html[data-theme="3"] body .included-grid article,
html[data-theme="3"] body .insight-card,
html[data-theme="3"] body .article-grid article,
html[data-theme="3"] body .article-next a,
html[data-theme="3"] body .story,
html[data-theme="3"] body .pricing-card,
html[data-theme="3"] body .signature-pricing-card,
html[data-theme="3"] body .payment-help,
html[data-theme="3"] body .payment-concept-note,
html[data-theme="3"] body .payment-concept-security {
  border-radius: var(--corner-card);
}

/* Images sit cleanly inside their parent frame. */
html[data-theme="3"] body .purpose-image,
html[data-theme="3"] body .belief-image,
html[data-theme="3"] body .insight-card-image {
  border-radius: 0;
}

/* Inputs stay approachable, while primary actions retain their pill shape. */
html[data-theme="3"] body input:not([type="checkbox"]):not([type="radio"]),
html[data-theme="3"] body select,
html[data-theme="3"] body textarea,
html[data-theme="3"] body .payment-amount-field,
html[data-theme="3"] body .payment-concept-field {
  border-radius: var(--corner-field);
}

html[data-theme="3"] body .payment-checkout-button,
html[data-theme="3"] body .payment-concept-submit {
  border-radius: var(--corner-field);
}

/* Pricing CTA — use the established final-CTA green instead of near-black. */
html[data-theme="3"] body.pricing-page .pricing-cta,
html[data-theme="3"] body .pricing-page .pricing-cta {
  background: var(--brand-green);
}

/* Branded consultation booking — Calendly remains the scheduling engine while
   the surrounding experience belongs unmistakably to TPI. */
html[data-theme="3"] .consultation-page,
.tpi-elementor-site.consultation-page {
  background: #f7f5ed;
}

.booking-intro {
  position: relative;
  padding: clamp(9.5rem, 12vw, 11rem) 0 clamp(4rem, 6vw, 5.75rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(70, 91, 73, 0.14);
  background:
    linear-gradient(118deg, rgba(251, 248, 242, 0.96) 0 46%, rgba(226, 232, 222, 0.94) 46.1% 100%);
  color: #26372c;
}

.booking-intro::before {
  position: absolute;
  top: -220px;
  right: -150px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(70, 91, 73, 0.12);
  border-radius: 50%;
  content: "";
}

.booking-intro::after {
  position: absolute;
  right: clamp(1.5rem, 7vw, 8rem);
  bottom: 2.2rem;
  width: 66px;
  height: 3px;
  background: #cd7653;
  content: "";
}

.booking-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
}

.booking-eyebrow,
.booking-context-kicker {
  margin-bottom: 1.2rem;
  color: #a95339;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 0.75rem;
  background: #cd7653;
  content: "";
  vertical-align: middle;
}

.booking-intro h1 {
  max-width: 770px;
  margin: 0;
  color: #26372c;
  font-size: clamp(3rem, 5.6vw, 5.65rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.booking-intro-copy > p {
  max-width: 530px;
  margin: 0 0 1.55rem;
  color: #526057;
  font-size: clamp(0.92rem, 1.25vw, 1.05rem);
  line-height: 1.7;
}

.booking-facts {
  display: flex;
  gap: 0.7rem 1.25rem;
  flex-wrap: wrap;
  color: #34483b;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 750;
}

.booking-facts span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-facts span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cd7653;
  content: "";
}

.booking-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background:
    linear-gradient(90deg, rgba(70, 91, 73, 0.035) 1px, transparent 1px) 0 0 / 88px 88px,
    #f7f5ed;
}

.booking-layout {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
}

.booking-context {
  position: sticky;
  top: 2rem;
  padding: clamp(0.5rem, 1vw, 1rem) 0;
}

.booking-context h2 {
  max-width: 430px;
  margin-bottom: 1.1rem;
  color: #26372c;
  font-size: clamp(2.1rem, 3.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.booking-context > p:not(.booking-context-kicker):not(.booking-help) {
  max-width: 450px;
  margin-bottom: 1.65rem;
  color: #606b63;
  font-size: 0.88rem;
  line-height: 1.7;
}

.booking-agenda {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(70, 91, 73, 0.18);
  list-style: none;
}

.booking-agenda li {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 34px 1fr;
  padding: 1rem 0;
  border-top: 1px solid rgba(70, 91, 73, 0.18);
}

.booking-agenda li > span {
  padding-top: 0.12rem;
  color: #a95339;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.booking-agenda strong {
  display: block;
  margin-bottom: 0.28rem;
  color: #2c3c31;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: -0.025em;
}

.booking-agenda p {
  margin: 0;
  color: #68736c;
  font-size: 0.75rem;
  line-height: 1.55;
}

.booking-help {
  margin: 1.2rem 0 0;
  color: #68736c;
  font-size: 0.74rem;
}

.booking-help a,
.booking-calendar-fallback a,
.booking-noscript a {
  color: #98482f;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(152, 72, 47, 0.35);
  text-underline-offset: 0.22em;
}

.booking-calendar-panel {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(70, 91, 73, 0.18);
  border-radius: var(--corner-panel, 6px);
  background: #fffdf8;
  box-shadow: 0 24px 65px rgba(52, 70, 57, 0.1);
  overflow: hidden;
}

.booking-calendar-panel::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #cd7653 0 22%, #465b49 22% 100%);
  content: "";
}

.booking-calendar-heading {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 1.45rem;
  border-bottom: 1px solid rgba(70, 91, 73, 0.14);
}

.booking-calendar-heading div > span,
.booking-calendar-secure {
  display: block;
  color: #a95339;
  font-family: var(--font-ui);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-calendar-heading div > strong {
  display: block;
  margin-top: 0.2rem;
  color: #26372c;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.booking-calendar-secure {
  max-width: 180px;
  color: #6d776f;
  letter-spacing: 0.045em;
  line-height: 1.45;
  text-align: right;
  text-transform: none;
}

.booking-calendar-embed {
  width: 100%;
  min-width: 280px;
  height: 760px;
  background: #fbf8f2;
}

.booking-calendar-embed iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.booking-calendar-loading {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  color: #6d776f;
  font-size: 0.75rem;
  transform: translate(-50%, -50%);
}

.booking-calendar-panel[data-calendar-ready="true"] .booking-calendar-loading {
  display: none;
}

.booking-calendar-fallback {
  display: none;
  padding: 1rem 1.45rem 1.35rem;
  border-top: 1px solid rgba(70, 91, 73, 0.14);
  color: #68736c;
  font-size: 0.72rem;
}

.booking-calendar-fallback p {
  margin: 0 0 0.35rem;
}

.booking-calendar-panel[data-calendar-error="true"] .booking-calendar-fallback {
  display: block;
}

.booking-noscript {
  margin: 0;
  padding: 1.2rem;
  color: #59655d;
  font-size: 0.8rem;
}

.booking-reassurance {
  background: #465b49;
  color: #fff;
}

.booking-reassurance .shell {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 2.1rem;
}

.booking-reassurance strong {
  max-width: 560px;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.7vw, 2.45rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.booking-reassurance p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

@media (max-width: 900px) {
  .booking-intro-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-intro {
    padding-top: 8.5rem;
    background: linear-gradient(145deg, #fbf8f2 0 48%, #e2e8de 48.1% 100%);
  }

  .booking-context {
    position: static;
  }

  .booking-calendar-embed {
    height: 820px;
  }
}

@media (max-width: 620px) {
  .booking-intro {
    padding: 7.5rem 0 3.5rem;
  }

  .booking-intro h1 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  .booking-section {
    padding: 3rem 0;
  }

  .booking-context h2 {
    font-size: 2.2rem;
  }

  .booking-calendar-heading,
  .booking-reassurance .shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-calendar-heading {
    gap: 0.5rem;
    padding: 1.15rem;
  }

  .booking-calendar-secure {
    max-width: none;
    text-align: left;
  }

  .booking-calendar-embed {
    min-width: 0;
    height: 1080px;
  }
}
