:root {
  --ink: #18201d;
  --ink-soft: #39443f;
  --paper: #f8f1e4;
  --paper-deep: #efe3cf;
  --green: #063f2f;
  --green-soft: #15513f;
  --gold: #c2a257;
  --white: #fffdf8;
  --line: rgba(24, 32, 29, 0.14);
  --gold-line: rgba(194, 162, 87, 0.42);
  --shadow: 0 24px 70px rgba(20, 28, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper), #fbf5ea 48%, var(--paper-deep));
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  right: max(-180px, -10vw);
  bottom: max(-190px, -12vw);
  z-index: 0;
  width: min(760px, 72vw);
  height: min(760px, 72vw);
  background: url("assets/peony-line-art-transparent.png") center / contain no-repeat;
  opacity: 0.035;
  pointer-events: none;
}

body.financial-body::before {
  display: none;
}

body.real-estate-body::before {
  display: none;
}

body.publishing-body {
  background: var(--paper);
}

body.literary-body {
  background:
    url("assets/peony-botanical-transparent.png") right -140px top 240px / min(620px, 72vw) auto no-repeat,
    linear-gradient(180deg, var(--paper), #fffaf0 45%, var(--paper-deep));
}

body.literary-body::before {
  display: none;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(12, 18, 15, 0.72), rgba(12, 18, 15, 0));
}

.site-header.inner-header {
  position: sticky;
  color: var(--ink);
  background: rgba(248, 241, 228, 0.94);
  border-bottom: 1px solid var(--gold-line);
  backdrop-filter: blur(14px);
}

.inner-header .brand-mark {
  background: rgba(6, 63, 47, 0.06);
  color: var(--green);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.32rem;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(194, 162, 87, 0.72);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.13);
  color: #f9ecd0;
}

.nav-links {
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  overflow: hidden;
  contain: paint;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: clamp(14px, 2vw, 24px);
  z-index: 1;
  border: 1px solid rgba(194, 162, 87, 0.34);
  pointer-events: none;
}

.hero-bg,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero-bg {
  background-image: url("assets/swann-legacy-hero.png");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 16, 13, 0.88) 0%, rgba(9, 16, 13, 0.68) 34%, rgba(9, 16, 13, 0.18) 72%),
    linear-gradient(0deg, rgba(9, 16, 13, 0.34), rgba(9, 16, 13, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(760px, 100%);
  padding: 128px clamp(20px, 6vw, 84px) 96px;
}

.peony-shadow {
  pointer-events: none;
  position: absolute;
  background-image: url("assets/peony-line-art-transparent.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green-soft);
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
}

h1 {
  margin-bottom: 22px;
  max-width: 690px;
  font-size: clamp(4.2rem, 12vw, 9.8rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 32px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: var(--green);
  border-color: rgba(194, 162, 87, 0.5);
  background: var(--white);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.42);
  background: rgba(255, 253, 248, 0.08);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(122px, 16vw, 190px) 0 clamp(68px, 9vw, 110px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 63, 47, 0.96), rgba(6, 63, 47, 0.82)),
    url("assets/swann-legacy-hero.png") center / cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: clamp(14px, 2vw, 24px);
  border: 1px solid rgba(194, 162, 87, 0.34);
  pointer-events: none;
}

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

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 8vw, 7.6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.consulting-hero {
  background:
    linear-gradient(90deg, rgba(6, 63, 47, 0.95), rgba(6, 63, 47, 0.74)),
    url("assets/swann-legacy-hero.png") center 42% / cover;
}

.architecture-hero {
  color: var(--green);
  background:
    linear-gradient(105deg, rgba(248, 241, 228, 0.95) 0%, rgba(219, 188, 112, 0.92) 48%, rgba(194, 162, 87, 0.88) 100%),
    url("assets/swann-legacy-hero.png") center / cover;
  background-blend-mode: normal, soft-light;
}

.architecture-hero p:not(.eyebrow) {
  color: rgba(6, 63, 47, 0.82);
}

.architecture-hero .eyebrow {
  color: var(--green);
}

.publishing-hero {
  background:
    linear-gradient(90deg, rgba(6, 63, 47, 0.95), rgba(6, 63, 47, 0.78)),
    url("assets/peony-line-art-transparent.png") right -130px bottom -230px / min(680px, 72vw) auto no-repeat,
    var(--green);
}

.education-hero {
  background:
    linear-gradient(90deg, rgba(6, 63, 47, 0.94), rgba(21, 81, 63, 0.72)),
    url("assets/swann-legacy-hero.png") center 58% / cover;
}

.financial-hero {
  background:
    linear-gradient(90deg, rgba(24, 32, 29, 0.95), rgba(6, 63, 47, 0.78)),
    url("assets/swann-legacy-hero.png") center 35% / cover;
}

.real-estate-hero {
  background:
    linear-gradient(90deg, rgba(6, 63, 47, 0.94), rgba(24, 32, 29, 0.64)),
    url("assets/swann-legacy-hero.png") center 64% / cover;
}

.page-section {
  padding: clamp(62px, 9vw, 112px) 0;
}

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

.detail-panel {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.detail-panel h2,
.offering-list h2 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
}

.publishing-page-content {
  position: relative;
  overflow: hidden;
}

.book-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin-bottom: clamp(34px, 6vw, 64px);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(194, 162, 87, 0.58);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 63, 47, 0.98), rgba(12, 78, 59, 0.94)),
    var(--green);
  box-shadow: var(--shadow);
}

.book-feature .eyebrow {
  color: #e8cf86;
}

.book-feature h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4.4vw, 4.8rem);
  color: var(--white);
}

.book-feature p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 253, 248, 0.84);
}

.imprint-note {
  width: min(430px, 100%);
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.07);
}

.imprint-note span {
  display: block;
  margin-bottom: 6px;
  color: #e8cf86;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.imprint-note p {
  margin: 0;
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
}

.book-action {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.book-cover {
  display: block;
  width: min(220px, 100%);
  aspect-ratio: 386 / 500;
  object-fit: cover;
  border: 1px solid rgba(255, 253, 248, 0.45);
  border-radius: 6px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.book-action .button {
  width: min(220px, 100%);
}

.collection-feature {
  margin-bottom: clamp(34px, 6vw, 64px);
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.collection-feature h2 {
  max-width: 760px;
  color: var(--green);
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
}

.collection-feature p:not(.eyebrow) {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.collection-feature .collection-copyright {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--gold-line);
  color: var(--green-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.collection-button {
  margin-top: 24px;
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.literary-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 15vw, 180px) 0 clamp(54px, 8vw, 92px);
  background:
    linear-gradient(90deg, rgba(248, 241, 228, 0.98), rgba(248, 241, 228, 0.84)),
    url("assets/peony-botanical-transparent.png") right -90px bottom -180px / min(620px, 66vw) auto no-repeat;
  border-bottom: 1px solid var(--gold-line);
}

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

.literary-hero h1 {
  max-width: 920px;
  color: var(--green);
  font-size: clamp(3.6rem, 9vw, 8.4rem);
}

.literary-hero p:not(.eyebrow):not(.collection-copyright) {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.literary-hero .collection-copyright {
  width: fit-content;
  max-width: 100%;
  margin-top: 28px;
  padding: 12px 16px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  color: var(--green-soft);
  background: rgba(255, 253, 248, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
}

.literary-index {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 0 0;
}

.literary-index a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 253, 248, 0.74);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.poems-section {
  display: grid;
  gap: clamp(34px, 6vw, 70px);
  padding: clamp(40px, 7vw, 82px) 0 clamp(74px, 11vw, 132px);
}

.poem-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 54px rgba(20, 28, 24, 0.08);
}

.poem-card::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -170px;
  width: min(430px, 58vw);
  height: min(430px, 58vw);
  background: url("assets/peony-botanical-transparent.png") center / contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.poem-card h2 {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-size: clamp(2.6rem, 5vw, 5.6rem);
}

.poem-text {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.poem-text p {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.34rem, 2.4vw, 1.9rem);
  line-height: 1.28;
}

.highlighted-panel {
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}

.highlighted-panel h2,
.highlighted-panel .price-label {
  color: var(--white);
}

.highlighted-panel p,
.highlighted-panel li,
.highlighted-panel .fine-print {
  color: rgba(255, 253, 248, 0.92);
}

.clean-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.consulting-matters {
  background: var(--white);
}

.architecture-matters {
  background: var(--white);
}

.consulting-matters-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.architecture-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.consulting-copy {
  max-width: 790px;
}

.consulting-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.consulting-copy p + p {
  margin-top: 18px;
}

.consulting-list-panel h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
}

.architecture-list-panel h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
}

.architecture-list-panel > p {
  color: var(--ink-soft);
}

.architecture-list-panel.highlighted-panel > p {
  color: rgba(255, 253, 248, 0.92);
}

.architecture-list-panel .number {
  margin-bottom: 24px;
}

.fine-print {
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.offering-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--gold-line);
}

.offering-list article {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--gold-line);
  align-items: start;
}

.offering-list p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.intro-band {
  position: relative;
  overflow: hidden;
  contain: paint;
  padding: clamp(52px, 8vw, 92px) 0;
  background: var(--paper);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.peony-cream {
  right: max(-150px, -8vw);
  bottom: -180px;
  width: min(52vw, 620px);
  min-width: 360px;
  height: min(52vw, 620px);
  min-height: 360px;
  opacity: 0.045;
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 7vw, 80px);
  align-items: start;
}

.intro-grid p:last-child {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}

.core-belief-copy p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}

.core-belief-copy blockquote {
  margin: 28px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--gold-line);
}

.core-belief-copy blockquote p {
  margin: 0;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.08;
}

.core-belief-copy cite {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faith-band {
  padding: clamp(58px, 9vw, 104px) 0;
  background: var(--white);
  border-top: 1px solid var(--gold-line);
}

.faith-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 1.22fr);
  gap: clamp(30px, 7vw, 84px);
  align-items: start;
}

.faith-layout p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.faith-layout p + p {
  margin-top: 18px;
}

.feature-section,
.timeline-section,
.pricing-band {
  padding: clamp(64px, 10vw, 126px) 0;
}

.section-heading {
  max-width: 690px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.section-lead {
  max-width: 820px;
  margin: -18px 0 clamp(26px, 4vw, 42px);
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.7vw, 1.24rem);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.86), rgba(248, 241, 228, 0.92));
  box-shadow: 0 14px 40px rgba(20, 28, 24, 0.05);
}

.number {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.value-card p,
.timeline p,
.closing p {
  color: var(--ink-soft);
}

.legacy-band {
  position: relative;
  overflow: hidden;
  contain: paint;
  padding: clamp(62px, 10vw, 112px) 0;
  color: var(--white);
  background: var(--green);
}

.legacy-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(180, 138, 74, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.04), transparent 42%);
}

.peony-band {
  right: max(-150px, -9vw);
  top: -170px;
  width: min(54vw, 680px);
  min-width: 380px;
  height: min(54vw, 680px);
  min-height: 380px;
  opacity: 0.09;
  filter: invert(92%) sepia(18%) saturate(448%) hue-rotate(350deg) brightness(109%);
}

.archive-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(34px, 8vw, 92px);
  align-items: start;
}

.archive-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(194, 162, 87, 0.46);
}

.archive-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(194, 162, 87, 0.46);
}

.archive-list strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
}

.archive-list span {
  color: rgba(255, 253, 248, 0.76);
}

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

.timeline li {
  position: relative;
  min-height: 230px;
  padding: 34px 24px 0 0;
  border-right: 1px solid var(--gold-line);
}

.timeline li:last-child {
  border-right: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px var(--paper);
}

.year {
  display: block;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.pricing-band {
  background: var(--paper);
  border-top: 1px solid var(--gold-line);
}

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

.path-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.path-card:hover {
  border-color: rgba(194, 162, 87, 0.72);
  box-shadow: 0 18px 48px rgba(20, 28, 24, 0.12);
  transform: translateY(-3px);
}

.path-card h3 {
  color: var(--green);
}

.path-card p {
  color: var(--ink-soft);
}

.path-card strong {
  margin-top: auto;
  padding-top: 22px;
  color: var(--green);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.architecture-pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.architecture-pricing-grid .pricing-card {
  min-height: 410px;
}

.architecture-pricing-grid .pricing-card h3 {
  overflow-wrap: anywhere;
  font-size: clamp(2.05rem, 2.8vw, 2.9rem);
}

.architecture-pricing-grid .enterprise-card {
  display: grid;
  min-height: 0;
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.7fr) minmax(320px, 1.1fr) minmax(260px, 0.8fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(248, 241, 228, 0.82));
}

.architecture-pricing-grid .enterprise-card .price-label,
.architecture-pricing-grid .enterprise-card h3,
.architecture-pricing-grid .enterprise-card p,
.architecture-pricing-grid .enterprise-card span {
  margin: 0;
  padding: 0;
}

.architecture-pricing-grid .enterprise-card .price-label {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.architecture-pricing-grid .enterprise-card h3 {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.architecture-pricing-grid .enterprise-card p {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 520px;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.architecture-pricing-grid .enterprise-card span {
  display: block;
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: stretch;
  padding: 22px 24px;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  color: var(--green);
  background: rgba(6, 63, 47, 0.06);
  font-size: 0.96rem;
  line-height: 1.45;
}

.pricing-detail-grid {
  margin-top: 18px;
}

.pricing-detail-grid h3 {
  color: var(--green);
  overflow-wrap: anywhere;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
}

.support-pricing-grid {
  margin-top: clamp(34px, 6vw, 62px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(239, 227, 207, 0.58));
}

.support-pricing-grid .detail-panel {
  min-height: 280px;
  background: rgba(255, 253, 248, 0.88);
}

.support-pricing-grid .detail-panel:last-child {
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}

.support-pricing-grid .detail-panel:last-child .price-label,
.support-pricing-grid .detail-panel:last-child h3 {
  color: var(--white);
}

.support-pricing-grid .detail-panel:last-child p {
  color: rgba(255, 253, 248, 0.9);
}

.investment-block {
  margin-top: clamp(42px, 7vw, 78px);
}

.investment-block:first-of-type {
  margin-top: 0;
}

.investment-intro {
  max-width: 860px;
  margin-bottom: 24px;
}

.investment-intro h3 {
  color: var(--green);
  font-size: clamp(2.3rem, 4vw, 4.6rem);
}

.investment-intro p:not(.eyebrow) {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.launch-price-card {
  max-width: 680px;
}

.pricing-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
  min-width: 0;
}

.pricing-card.featured-price {
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}

.price-label {
  margin-bottom: 22px;
  color: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-price .price-label,
.featured-price p,
.featured-price span {
  color: rgba(255, 253, 248, 0.92);
}

.pricing-card h3 {
  margin-bottom: 18px;
  color: var(--green);
  font-size: clamp(2.45rem, 4.4vw, 4.2rem);
  overflow-wrap: anywhere;
}

.featured-price h3 {
  color: var(--white);
}

.pricing-card p:not(.price-label) {
  color: var(--ink-soft);
}

.pricing-card.featured-price p:not(.price-label),
.pricing-card.featured-price span {
  color: rgba(255, 253, 248, 0.92);
}

.pricing-card span {
  display: block;
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.pricing-card.featured-price span {
  color: rgba(255, 253, 248, 0.92);
}

.pricing-note {
  max-width: 850px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.closing {
  position: relative;
  overflow: hidden;
  contain: paint;
  padding: clamp(68px, 11vw, 132px) 0;
  background: var(--white);
  border-top: 1px solid var(--gold-line);
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.closing .button.primary {
  margin-top: 10px;
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.contact-placeholder {
  display: inline-flex;
  margin-top: 10px;
  padding: 13px 18px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 253, 248, 0.72);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 4vw, 56px);
  color: rgba(255, 253, 248, 0.72);
  background: #101612;
  font-size: 0.92rem;
}

.site-footer span:first-child {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-header.inner-header {
    position: sticky;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 16, 13, 0.88), rgba(9, 16, 13, 0.34)),
      linear-gradient(0deg, rgba(9, 16, 13, 0.48), rgba(9, 16, 13, 0.1));
  }

  .hero-content {
    padding: 112px 22px 72px;
  }

  .intro-grid,
  .archive-layout,
  .detail-grid,
  .book-feature,
  .architecture-summary-grid,
  .consulting-matters-grid,
  .publishing-mark-section,
  .faith-layout,
  .path-grid,
  .value-grid,
  .timeline,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .offering-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing-card {
    min-height: 280px;
  }

  .value-card {
    min-height: 220px;
  }

  .number {
    margin-bottom: 28px;
  }

  .archive-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline {
    border-top: 0;
  }

  .timeline li {
    min-height: 0;
    padding: 12px 0 30px 28px;
    border-right: 0;
    border-left: 1px solid var(--line);
  }

  .timeline li::before {
    top: 18px;
    left: -7px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 940px) {
  .architecture-pricing-grid .enterprise-card {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 460px) {
  .brand {
    font-size: 1.12rem;
  }

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

  .hero-actions,
  .button {
    width: 100%;
  }
}

/* Preserve the original Lens of My Eyes art direction. */
body.literary-body {
  background:
    url("assets/peony-botanical-transparent.png") right -140px top 240px / min(620px, 72vw) auto no-repeat,
    linear-gradient(180deg, var(--paper), #fffaf0 45%, var(--paper-deep)) !important;
}

body.literary-body::before {
  content: none !important;
}

body.literary-body .literary-hero {
  background:
    linear-gradient(90deg, rgba(248, 241, 228, 0.98), rgba(248, 241, 228, 0.84)),
    url("assets/peony-botanical-transparent.png") right -90px bottom -180px / min(620px, 66vw) auto no-repeat !important;
}

body.literary-body .poem-card::after {
  right: -160px;
  top: -170px;
  width: min(430px, 58vw);
  height: min(430px, 58vw);
  background: url("assets/peony-botanical-transparent.png") center / contain no-repeat !important;
  opacity: 0.05;
}
